Ignorelist settingspage
[quassel.git] / src / qtui / settingspages / ignorelistsettingspage.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 IGNORELISTSETTINGSPAGE_H
22 #define IGNORELISTSETTINGSPAGE_H
23
24 #include <QStyledItemDelegate>
25
26 #include "settingspage.h"
27 #include "ui_ignorelistsettingspage.h"
28 #include "ui_ignorelisteditdlg.h"
29 #include "ignorelistmodel.h"
30 #include "clientignorelistmanager.h"
31
32 class QEvent;
33 class QPainter;
34 class QAbstractItemModel;
35
36 // the delegate is used to draw the checkbox in column 0
37 class IgnoreListDelegate : public QStyledItemDelegate {
38   Q_OBJECT
39
40 public:
41   IgnoreListDelegate(QWidget *parent = 0) : QStyledItemDelegate(parent) {}
42   void paint(QPainter *painter, const QStyleOptionViewItem &option,
43              const QModelIndex &index) const;
44   bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option,
45                    const QModelIndex &index);
46 };
47
48 class IgnoreListEditDlg : public QDialog {
49   Q_OBJECT
50
51 public:
52   IgnoreListEditDlg(int row, const IgnoreListManager::IgnoreListItem &item, QWidget *parent = 0);
53   inline IgnoreListManager::IgnoreListItem ignoreListItem() { return _ignoreListItem; }
54
55 private slots:
56   void widgetHasChanged();
57   void aboutToAccept() { _ignoreListItem = _clonedIgnoreListItem; }
58 private:
59   int _selectedRow;
60   IgnoreListManager::IgnoreListItem _ignoreListItem;
61   IgnoreListManager::IgnoreListItem _clonedIgnoreListItem;
62   bool _hasChanged;
63   Ui::IgnoreListEditDlg ui;
64 };
65
66 class IgnoreListSettingsPage : public SettingsPage {
67   Q_OBJECT
68
69 public:
70   IgnoreListSettingsPage(QWidget *parent = 0);
71   ~IgnoreListSettingsPage();
72   virtual inline bool hasDefaults() const { return true; }
73
74 public slots:
75   void save();
76   void load();
77   void defaults();
78
79 private slots:
80   void enableDialog(bool);
81   void deleteSelectedIgnoreRule();
82   void editSelectedIgnoreRule();
83   void newIgnoreRule();
84   void selectionChanged(const QItemSelection &selection, const QItemSelection &);
85
86 private:
87   IgnoreListDelegate *_delegate;
88   Ui::IgnoreListSettingsPage ui;
89   IgnoreListModel _ignoreListModel;
90 };
91
92
93 #endif //IGNORELISTSETTINGSPAGE_H