Provide a contextmenu for the ignore list
[quassel.git] / src / qtui / settingspages / ignorelistmodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef IGNORELISTMODEL_H
22 #define IGNORELISTMODEL_H
23
24 #include <QAbstractItemModel>
25 #include <QPointer>
26
27 #include "clientignorelistmanager.h"
28
29 class IgnoreListModel : public QAbstractItemModel {
30   Q_OBJECT
31
32 public:
33   IgnoreListModel(QObject *parent = 0);
34
35   virtual QVariant data(const QModelIndex &index, int role) const;
36   virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
37
38   virtual Qt::ItemFlags flags(const QModelIndex &index) const;
39
40   QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
41
42   QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
43
44   inline QModelIndex parent(const QModelIndex &) const { return QModelIndex(); }
45
46   inline int rowCount(const QModelIndex &parent = QModelIndex()) const;
47   inline int columnCount(const QModelIndex &parent = QModelIndex()) const;
48
49   inline bool configChanged() const { return _configChanged; }
50   inline bool isReady() const { return _modelReady; }
51
52   const IgnoreListManager::IgnoreListItem &ignoreListItemAt(int row) const;
53   void setIgnoreListItemAt(int row, const IgnoreListManager::IgnoreListItem &item);
54   bool newIgnoreRule(const IgnoreListManager::IgnoreListItem &item);
55   const QModelIndex indexOf(const QString &rule);
56
57 public slots:
58   void loadDefaults();
59   void removeIgnoreRule(int index);
60   void revert();
61   void commit();
62
63 signals:
64   void configChanged(bool);
65   void modelReady(bool);
66
67 private:
68   ClientIgnoreListManager _clonedIgnoreListManager;
69   bool _configChanged;
70   bool _modelReady;
71
72   const IgnoreListManager &ignoreListManager() const;
73   IgnoreListManager &ignoreListManager();
74   IgnoreListManager &cloneIgnoreListManager();
75
76 private slots:
77   void clientConnected();
78   void clientDisconnected();
79   void initDone();
80 };
81
82 // Inlines
83 int IgnoreListModel::rowCount(const QModelIndex &parent) const {
84   Q_UNUSED(parent);
85   return isReady() ? ignoreListManager().count() : 0;
86 }
87
88 int IgnoreListModel::columnCount(const QModelIndex &parent) const {
89   Q_UNUSED(parent);
90   return isReady() ? 3 : 0;
91 }
92
93 #endif //IGNORELISTMODEL_H