summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/display/creaddisplay.cpp
blob: 22baf2443c27f3cc959be12ba2575671e85eace7 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/



//BibleTime includes
#include "creaddisplay.h"

#include "backend/cswordmoduleinfo.h"
#include "backend/cswordbiblemoduleinfo.h"
#include "backend/cswordlexiconmoduleinfo.h"
#include "backend/cswordbookmoduleinfo.h"
#include "backend/cswordkey.h"
#include "backend/cswordversekey.h"
#include "backend/cswordtreekey.h"
#include "backend/cswordldkey.h"

#include "frontend/displaywindow/cdisplaywindow.h"
#include "frontend/displaywindow/creadwindow.h"

#include "frontend/cexportmanager.h"

#include "util/scoped_resource.h"

//Qt includes
#include <tqpopupmenu.h>

//KDE includes
#include <klocale.h>

CReadDisplay::CReadDisplay(CReadWindow* readWindow) :
CDisplay(readWindow),
m_activeAnchor(TQString::null),
m_useMouseTracking(true) {}

CReadDisplay::~CReadDisplay() {}

/** Returns the current active anchor. */
const TQString& CReadDisplay::activeAnchor() {
	return m_activeAnchor;
}

/** Sets the current anchor to the parameter. */
void CReadDisplay::setActiveAnchor( const TQString& anchor ) {
	m_activeAnchor = anchor;
}


/** Returns true if the display has an active anchor. */
const bool CReadDisplay::hasActiveAnchor() {
	return !activeAnchor().isEmpty();
}


void CReadDisplay::print(const CDisplay::TextPart type, CSwordBackend::DisplayOptions displayOptions, CSwordBackend::FilterOptions filterOptions) {
	CDisplayWindow* window = parentWindow();
	CSwordKey* const key = window->key();
	CSwordModuleInfo* module = key->module();


	CExportManager mgr(i18n("Print keys"),false, TQString::null, parentWindow()->filterOptions(), parentWindow()->displayOptions());

	switch (type) {
		case Document: {
			if (module->type() == CSwordModuleInfo::Bible) {
				CSwordVerseKey* vk = dynamic_cast<CSwordVerseKey*>(key);

				CSwordVerseKey startKey(*vk);
				startKey.Verse(1);

				CSwordVerseKey stopKey(*vk);

				CSwordBibleModuleInfo* bible = dynamic_cast<CSwordBibleModuleInfo*>(module);
				if (bible) {
					stopKey.Verse( bible->verseCount( bible->bookNumber(startKey.book()), startKey.Chapter() ) );
				}

				mgr.printKey(module, startKey.key(), stopKey.key(), displayOptions, filterOptions);
			}
			else if (module->type() == CSwordModuleInfo::Lexicon || module->type() == CSwordModuleInfo::Commentary ) {
				mgr.printKey(module, key->key(), key->key(), displayOptions, filterOptions);
			}
			else if (module->type() == CSwordModuleInfo::GenericBook) {
				CSwordTreeKey* tree = dynamic_cast<CSwordTreeKey*>(key);

				CSwordTreeKey startKey(*tree);
				//        while (startKey.previousSibling()) { // go to first sibling on this level!
				//        }

				CSwordTreeKey stopKey(*tree);
				//    if (CSwordBookModuleInfo* book = dynamic_cast<CSwordBookModuleInfo*>(module)) {
				//          while ( stopKey.nextSibling() ) { //go to last displayed sibling!
				//          }
				//        }
				mgr.printKey(module, startKey.key(), stopKey.key(), displayOptions, filterOptions);
			}
		}

		case AnchorWithText: {
			if (hasActiveAnchor()) {
				mgr.printByHyperlink( activeAnchor(), displayOptions, filterOptions );
			}
		}

		default:
		break;
	}
}