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
|
/******************************************************************************
* swtext.cpp - code for base class 'SWText'- The basis for all text modules
*/
#include <swtext.h>
#include <listkey.h>
/******************************************************************************
* SWText Constructor - Initializes data for instance of SWText
*
* ENT: imodname - Internal name for module
* imoddesc - Name to display to user for module
* idisp - Display object to use for displaying
*/
SWText::SWText(const char *imodname, const char *imoddesc, SWDisplay *idisp, SWTextEncoding enc, SWTextDirection dir, SWTextMarkup mark, const char* ilang): SWModule(imodname, imoddesc, idisp, "Biblical Texts", enc, dir, mark, ilang)
{
delete key;
key = CreateKey();
skipConsecutiveLinks = false;
}
/******************************************************************************
* SWText Destructor - Cleans up instance of SWText
*/
SWText::~SWText() {
}
/******************************************************************************
* SWText CreateKey - Create the correct key (VerseKey) for use with SWText
*/
SWKey *SWText::CreateKey()
{
return new VerseKey();
}
long SWText::Index() const {
VerseKey *key = 0;
try {
key = SWDYNAMIC_CAST(VerseKey, this->key);
}
catch ( ... ) {}
if (!key)
key = new VerseKey(this->key);
entryIndex = key->NewIndex();
if (key != this->key)
delete key;
return entryIndex;
}
long SWText::Index(long iindex) {
VerseKey *key = 0;
try {
key = SWDYNAMIC_CAST(VerseKey, this->key);
}
catch ( ... ) {}
if (!key)
key = new VerseKey(this->key);
key->Testament(1);
key->Index(iindex);
if (key != this->key) {
this->key->copyFrom(*key);
delete key;
}
return Index();
}
|