2820850aca4b15e970d2ae6748047b030ef36c47
[quassel.git] / src / qtui / settingspages / corehighlightsettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #ifndef _COREHIGHLIGHTSETTINGSPAGE_H_
22 #define _COREHIGHLIGHTSETTINGSPAGE_H_
23
24 #include <QVariantList>
25 #include <QTableWidgetItem>
26 #include <highlightrulemanager.h>
27 #include <ui_corehighlightsettingspage.h>
28
29 #include "settingspage.h"
30 #include "ui_highlightsettingspage.h"
31
32 class CoreHighlightSettingsPage : public SettingsPage
33 {
34     Q_OBJECT
35
36 public:
37     CoreHighlightSettingsPage(QWidget *parent = 0);
38
39     bool hasDefaults() const;
40
41 public slots:
42     void save();
43     void load();
44     void defaults();
45     void revert();
46     void clientConnected();
47
48 private slots:
49     void widgetHasChanged();
50     void addNewRow(const QString &name = tr("highlight rule"), bool regex = false, bool cs = false, bool enable = true,
51                    bool inverse = false, const QString &sender = "", const QString &chanName = "", bool self = false);
52     void removeSelectedRows();
53     void selectRow(QTableWidgetItem *item);
54     void tableChanged(QTableWidgetItem *item);
55
56 private:
57     Ui::CoreHighlightSettingsPage ui;
58     HighlightRuleManager::HighlightRuleList highlightList;
59     enum column {
60         NameColumn = 0,
61         RegExColumn = 1,
62         CsColumn = 2,
63         EnableColumn = 3,
64         InverseColumn = 4,
65         SenderColumn = 5,
66         ChanColumn = 6,
67         ColumnCount = 7
68     };
69
70     void emptyTable();
71
72     bool _initialized;
73 };
74
75
76 #endif