summaryrefslogtreecommitdiffstats
path: root/bibletime/backend/cswordtreekey.cpp
blob: 9a3eb255ebbb9a4c32efc367ed9df0f8a7e770bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2007 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/



#include "cswordtreekey.h"
#include "cswordbookmoduleinfo.h"

#include <tqtextcodec.h>

CSwordTreeKey::CSwordTreeKey( const CSwordTreeKey& k ) : CSwordKey(k), TreeKeyIdx(k) {}

CSwordTreeKey::CSwordTreeKey( const TreeKeyIdx *k, CSwordModuleInfo* module ) : CSwordKey(module), TreeKeyIdx(*k) {}

CSwordTreeKey* CSwordTreeKey::copy() const {
	return new CSwordTreeKey(*this);
}

const TQString CSwordTreeKey::getLocalNameUnicode() const
{
	Q_ASSERT(m_module);
	CSwordTreeKey* nonconst_this = const_cast<CSwordTreeKey*>(this);
	if (!m_module || m_module->isUnicode()) {
		return TQString::fromUtf8(nonconst_this->getLocalName());
	} else {
		TQTextCodec *codec = TQTextCodec::codecForName("CP1252");
		return codec->toUnicode(nonconst_this->getLocalName());
	}
}

/** Returns the key of this instance */
const TQString CSwordTreeKey::key() const {
	Q_ASSERT(m_module);
	if (!m_module || m_module->isUnicode()) {
		return TQString::fromUtf8(getText());
	} else {
		TQTextCodec *codec = TQTextCodec::codecForName("CP1252");
		return codec->toUnicode(getText());
	}
}

/** Returns the raw key for use by Sword */
const char* CSwordTreeKey::rawKey() const {
	return getText();
}

const bool CSwordTreeKey::key( const TQString& newKey ) {
	Q_ASSERT(m_module);
	if (!m_module || m_module->isUnicode()) {
		return key((const char*)newKey.utf8());
	} else {
		TQTextCodec *codec = TQTextCodec::codecForName("CP1252");
		return key((const char*)codec->fromUnicode(newKey));
	}
}

const bool CSwordTreeKey::key( const char* newKey ) {
	Q_ASSERT(newKey);

	if (newKey) {
		TreeKeyIdx::operator = (newKey);
	}
	else {
		root();
	}

	return !Error();
}

CSwordModuleInfo* const CSwordTreeKey::module( CSwordModuleInfo* const newModule ) {
	if (newModule && (newModule != m_module) && (newModule->type() == CSwordModuleInfo::GenericBook) ) {
		m_module = newModule;

		const TQString oldKey = key();

		CSwordBookModuleInfo* newBook = dynamic_cast<CSwordBookModuleInfo*>(newModule);
		copyFrom( *(newBook->tree()) );

		key(oldKey); //try to restore our old key

		//set the key to the root node
		root();
		firstChild();
	}

	return m_module;
}

/** Assignment operator. */
CSwordTreeKey& CSwordTreeKey::operator = (const TQString& keyname ) {
			key(keyname);
			return *this;
		}