summaryrefslogtreecommitdiff
path: root/src/backend/bookshelfmodel/btbookshelffiltermodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/bookshelfmodel/btbookshelffiltermodel.h')
-rw-r--r--src/backend/bookshelfmodel/btbookshelffiltermodel.h210
1 files changed, 107 insertions, 103 deletions
diff --git a/src/backend/bookshelfmodel/btbookshelffiltermodel.h b/src/backend/bookshelfmodel/btbookshelffiltermodel.h
index 55322ed..b1b22e6 100644
--- a/src/backend/bookshelfmodel/btbookshelffiltermodel.h
+++ b/src/backend/bookshelfmodel/btbookshelffiltermodel.h
@@ -4,7 +4,7 @@
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
-* Copyright 1999-2011 by the BibleTime developers.
+* Copyright 1999-2014 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License
* version 2.0.
*
@@ -19,109 +19,113 @@
class BtBookshelfFilterModel: public QSortFilterProxyModel {
+
Q_OBJECT
- public:
- BtBookshelfFilterModel(QObject *parent = 0);
- virtual ~BtBookshelfFilterModel();
-
- // Common methods:
- inline bool enabled() const {
- return m_enabled;
- }
-
- virtual bool filterAcceptsRow(int row, const QModelIndex &parent) const;
-
- // Name filter:
- inline int nameFilterRole() const {
- return m_nameFilterRole;
- }
-
- inline int nameFilterKeyColumn() const {
- return m_nameFilterColumn;
- }
-
- inline const QString &nameFilter() const {
- return m_nameFilter;
- }
-
- inline const Qt::CaseSensitivity nameFilterCase() const {
- return m_nameFilterCase;
- }
-
- // Hidden filter:
- int hiddenFilterRole() const {
- return m_hiddenFilterRole;
- }
-
- int hiddenFilterKeyColumn() const {
- return m_hiddenFilterColumn;
- }
-
- inline bool showHidden() const {
- return m_showHidden;
- }
-
- inline bool showShown() const {
- return m_showShown;
- }
-
- // Category filter:
- int categoryFilterRole() const {
- return m_categoryFilterRole;
- }
-
- int categoryFilterKeyColumn() const {
- return m_categoryFilterColumn;
- }
-
- inline CSwordModuleInfo::Categories shownCategories() const {
- return m_categoryFilter;
- }
-
- public slots:
- void setEnabled(bool enable);
-
- // Name filter:
- void setNameFilterRole(int role);
- void setNameFilterKeyColumn(int column);
- void setNameFilterFixedString(const QString &nameFilter);
- void setNameFilterCase(Qt::CaseSensitivity value);
-
- // Hidden filter:
- void setHiddenFilterRole(int role);
- void setHiddenFilterKeyColumn(int column);
- void setShowHidden(bool show);
- void setShowShown(bool show);
-
- // Category filter:
- void setCategoryFilterRole(int role);
- void setCategoryFilterKeyColumn(int column);
- void setShownCategories(const CSwordModuleInfo::Categories &categories);
-
- protected:
- bool nameFilterAcceptsRow(int row, const QModelIndex &parent) const;
- bool hiddenFilterAcceptsRow(int row, const QModelIndex &parent) const;
- bool categoryFilterAcceptsRow(int row, const QModelIndex &parent) const;
-
- protected:
- bool m_enabled;
-
- // Name filter:
- QString m_nameFilter;
- int m_nameFilterRole;
- int m_nameFilterColumn;
- Qt::CaseSensitivity m_nameFilterCase;
-
- // Hidden filter:
- int m_hiddenFilterRole;
- int m_hiddenFilterColumn;
- bool m_showHidden;
- bool m_showShown;
-
- // Categories filter:
- CSwordModuleInfo::Categories m_categoryFilter;
- int m_categoryFilterRole;
- int m_categoryFilterColumn;
+
+public: /* Methods: */
+
+ BtBookshelfFilterModel(QObject * parent = 0);
+
+ inline bool enabled() const {
+ return m_enabled;
+ }
+
+ virtual bool filterAcceptsRow(int row, const QModelIndex & parent) const;
+
+ // Name filter:
+ inline int nameFilterRole() const {
+ return m_nameFilterRole;
+ }
+
+ inline int nameFilterKeyColumn() const {
+ return m_nameFilterColumn;
+ }
+
+ inline const QString &nameFilter() const {
+ return m_nameFilter;
+ }
+
+ inline Qt::CaseSensitivity nameFilterCase() const {
+ return m_nameFilterCase;
+ }
+
+ // Hidden filter:
+ int hiddenFilterRole() const {
+ return m_hiddenFilterRole;
+ }
+
+ int hiddenFilterKeyColumn() const {
+ return m_hiddenFilterColumn;
+ }
+
+ inline bool showHidden() const {
+ return m_showHidden;
+ }
+
+ inline bool showShown() const {
+ return m_showShown;
+ }
+
+ // Category filter:
+ int categoryFilterRole() const {
+ return m_categoryFilterRole;
+ }
+
+ int categoryFilterKeyColumn() const {
+ return m_categoryFilterColumn;
+ }
+
+ inline CSwordModuleInfo::Categories shownCategories() const {
+ return m_categoryFilter;
+ }
+
+public slots:
+ void setEnabled(bool enable);
+
+ // Name filter:
+ void setNameFilterRole(int role);
+ void setNameFilterKeyColumn(int column);
+ void setNameFilterFixedString(const QString & nameFilter);
+ void setNameFilterCase(Qt::CaseSensitivity value);
+
+ // Hidden filter:
+ void setHiddenFilterRole(int role);
+ void setHiddenFilterKeyColumn(int column);
+ void setShowHidden(bool show);
+ void setShowShown(bool show);
+
+ // Category filter:
+ void setCategoryFilterRole(int role);
+ void setCategoryFilterKeyColumn(int column);
+ void setShownCategories(const CSwordModuleInfo::Categories & categories);
+
+private: /* Methods: */
+
+ bool nameFilterAcceptsRow(int row, const QModelIndex & parent) const;
+ bool hiddenFilterAcceptsRow(int row, const QModelIndex & parent) const;
+ bool categoryFilterAcceptsRow(int row, const QModelIndex & parent) const;
+
+private: /* Fields: */
+
+ bool m_enabled;
+
+ // Name filter:
+ QString m_nameFilter;
+ int m_nameFilterRole;
+ int m_nameFilterColumn;
+ Qt::CaseSensitivity m_nameFilterCase;
+
+ // Hidden filter:
+ int m_hiddenFilterRole;
+ int m_hiddenFilterColumn;
+ bool m_showHidden;
+ bool m_showShown;
+
+ // Categories filter:
+ CSwordModuleInfo::Categories m_categoryFilter;
+ int m_categoryFilterRole;
+ int m_categoryFilterColumn;
+
};
#endif // BTBOOKSHELFFILTERMODEL_H