summaryrefslogtreecommitdiff
path: root/src/frontend/displaywindow/cbookreadwindow.h
blob: b059aff2f50a6d80688c963306cc5c6db7c7bc23 (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
/*********
*
* This file is part of BibleTime's BtActionCollection code, http://www.bibletime.info/.
*
* Copyright 1999-2009 by the BibleTime developers.
* The BibleTime BtActionCollection code is licensed under the GNU General Public License version 2.0.
*
**********/

#ifndef CBOOKREADWINDOW_H
#define CBOOKREADWINDOW_H

#include "frontend/displaywindow/clexiconreadwindow.h"


class BtActionCollection;
class CBookTreeChooser;
class QAction;

/**
  * @author The BibleTime team
  */
class CBookReadWindow : public CLexiconReadWindow  {
        Q_OBJECT
    public:
        static void insertKeyboardActions( BtActionCollection* const a );

        CBookReadWindow(QList<CSwordModuleInfo*> modules, CMDIArea* parent);

        virtual ~CBookReadWindow();
        /**
        * Store the settings of this window in the given CProfileWindow object.
        */
        virtual void storeProfileSettings( Profile::CProfileWindow* profileWindow );
        /**
        * Store the settings of this window in the given profile window.
        */
        virtual void applyProfileSettings( Profile::CProfileWindow* profileWindow );

    public slots:
        /**
        * Refreshes the content of this display window and the content of the keychooser.
        */
        virtual void reload(CSwordBackend::SetupChangedReason reason);

    protected:
        virtual void initActions();
        virtual void initToolbars();
        virtual void initConnections();
        virtual void initView();

        virtual void setupPopupMenu();

    protected slots: // Protected slots
        /**
         * Reimplementation to take care of the tree chooser.
         */
        virtual void modulesChanged();

    private:
        QAction* m_treeAction;
        CBookTreeChooser* m_treeChooser;

    private slots: // Private slots
        /**
        * Is called when the action was executed to toggle the tree view.
        */
        void treeToggled();
};

#endif