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