summaryrefslogtreecommitdiff
path: root/src/frontend/display/creaddisplay.cpp
blob: 690ee57284044df2ccae0d4a7b0bd7898932c919 (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
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2011 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/

#include "frontend/display/creaddisplay.h"

#include "backend/drivers/cswordbiblemoduleinfo.h"
#include "backend/drivers/cswordbookmoduleinfo.h"
#include "backend/drivers/cswordlexiconmoduleinfo.h"
#include "backend/drivers/cswordmoduleinfo.h"
#include "backend/keys/cswordkey.h"
#include "backend/keys/cswordldkey.h"
#include "backend/keys/cswordtreekey.h"
#include "backend/keys/cswordversekey.h"
#include "frontend/cexportmanager.h"
#include "frontend/displaywindow/cdisplaywindow.h"
#include "frontend/displaywindow/creadwindow.h"


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

CReadDisplay::~CReadDisplay() {}

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

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


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


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

    const CDisplayWindow *displayWindow = parentWindow();
    CExportManager mgr(QObject::tr("Print keys"), false, QString::null, displayWindow->filterOptions(), displayWindow->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);

                const CSBiMI *bible = dynamic_cast<const CSBiMI*>(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;
    }
}