Implement UI for core-side highlights
[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(QString name = tr("highlight rule"), bool regex = false, bool cs = false, bool enable = true, QString chanName = "", bool self = false);
51     void removeSelectedRows();
52     void selectRow(QTableWidgetItem *item);
53     void tableChanged(QTableWidgetItem *item);
54
55 private:
56     Ui::CoreHighlightSettingsPage ui;
57     HighlightRuleManager::HighlightRuleList highlightList;
58     enum column {
59         NameColumn = 0,
60         RegExColumn = 1,
61         CsColumn = 2,
62         EnableColumn = 3,
63         ChanColumn = 4,
64         ColumnCount = 5
65     };
66
67     void emptyTable();
68
69     bool _initialized;
70 };
71
72
73 #endif