~ubuntu-branches/ubuntu/trusty/bibletime/trusty

« back to all changes in this revision

Viewing changes to src/frontend/bookshelfmanager/indexpage/btindexpage.h

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs, Jonathan Marsden, Dmitrijs Ledkovs
  • Date: 2012-04-14 18:11:50 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20120414181150-17l2liq7bl7oaxjz
Tags: 2.9.1-1
[ Jonathan Marsden ]
* New upstream version 2.9.1
* debian/patches/*: Remove all patches (incorporated upstream)
* debian/control: bibletime now depends on a matching version of
  bibletime-data.

[ Dmitrijs Ledkovs ]
* Add more strict alternative build-dependency on the libqt4-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#include "frontend/bookshelfmanager/btconfigdialog.h"
14
14
 
15
15
 
 
16
class BtModuleManagerDialog;
16
17
class QCheckBox;
17
18
class QTreeWidget;
18
19
class QTreeWidgetItem;
19
20
 
 
21
/** \todo add void retranslateUi(); */
 
22
 
20
23
/**
21
24
* This class encapsulates the "Manage search indices" page of the Bookshelf
22
25
* Manager.  It allows for creation and deletion of search indicies for each
23
26
* installed module.  It also allows for deletion of orphaned indices.
24
27
*/
25
 
class BtIndexPage : public BtConfigPage {
 
28
class BtIndexPage: public BtConfigDialog::Page {
 
29
 
26
30
        Q_OBJECT
27
31
 
28
32
    public:
29
 
        BtIndexPage(QWidget *parent = 0);
 
33
 
 
34
        BtIndexPage(BtModuleManagerDialog *parent = 0);
30
35
        ~BtIndexPage();
31
36
 
32
 
        /** Reimplemented from BtConfigPage. */
33
 
        virtual QString header() const;
34
 
 
35
 
        /** Reimplemented from BtConfigPage. */
36
 
        virtual const QIcon &icon() const;
37
 
 
38
37
    public slots:
39
38
        void slotSwordSetupChanged();
40
39
 
45
44
        */
46
45
        void populateModuleList();
47
46
 
48
 
 
 
47
        void retranslateUi();
49
48
 
50
49
    public slots:
51
50
        /**
66
65
 
67
66
        QTreeWidgetItem* m_modsWithIndices;
68
67
        QTreeWidgetItem* m_modsWithoutIndices;
 
68
 
69
69
};
70
70
 
71
71