rename translation files to <2 letter ISO code>.po
[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   virtual inline bool needsCoreConnection() const { return true; }
79   void editIgnoreRule(const QString &ignoreRule);
80
81 public slots:
82   void save();
83   void load();
84   void defaults();
85   void newIgnoreRule(QString rule = QString());
86
87 private slots:
88   void enableDialog(bool);
89   void deleteSelectedIgnoreRule();
90   void editSelectedIgnoreRule();
91   void selectionChanged(const QItemSelection &selection, const QItemSelection &);
92
93 private:
94   IgnoreListDelegate *_delegate;
95   Ui::IgnoreListSettingsPage ui;
96   IgnoreListModel _ignoreListModel;
97 };
98
99
100 #endif //IGNORELISTSETTINGSPAGE_H