Build with Qt 4.4 again
[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(int row, const IgnoreListManager::IgnoreListItem &item, QWidget *parent = 0);
54   inline IgnoreListManager::IgnoreListItem ignoreListItem() { return _ignoreListItem; }
55
56 private slots:
57   void widgetHasChanged();
58   void aboutToAccept() { _ignoreListItem = _clonedIgnoreListItem; }
59 private:
60   int _selectedRow;
61   IgnoreListManager::IgnoreListItem _ignoreListItem;
62   IgnoreListManager::IgnoreListItem _clonedIgnoreListItem;
63   bool _hasChanged;
64   Ui::IgnoreListEditDlg ui;
65   QButtonGroup _typeButtonGroup;
66   QButtonGroup _strictnessButtonGroup;
67   QButtonGroup _scopeButtonGroup;
68 };
69
70 class IgnoreListSettingsPage : public SettingsPage {
71   Q_OBJECT
72
73 public:
74   IgnoreListSettingsPage(QWidget *parent = 0);
75   ~IgnoreListSettingsPage();
76   virtual inline bool hasDefaults() const { return true; }
77
78 public slots:
79   void save();
80   void load();
81   void defaults();
82
83 private slots:
84   void enableDialog(bool);
85   void deleteSelectedIgnoreRule();
86   void editSelectedIgnoreRule();
87   void newIgnoreRule();
88   void selectionChanged(const QItemSelection &selection, const QItemSelection &);
89
90 private:
91   IgnoreListDelegate *_delegate;
92   Ui::IgnoreListSettingsPage ui;
93   IgnoreListModel _ignoreListModel;
94 };
95
96
97 #endif //IGNORELISTSETTINGSPAGE_H