Redesign the core highlight settings page
[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     explicit CoreHighlightSettingsPage(QWidget *parent = nullptr);
38
39     bool hasDefaults() const override;
40
41 public slots:
42     void save() override;
43     void load() override;
44     void defaults() override;
45     void revert();
46     void clientConnected();
47
48 private slots:
49     void widgetHasChanged();
50     void addNewHighlightRow(bool enable = true, const QString &name = tr("highlight rule"), bool regex = false,
51                             bool cs = false, const QString &sender = "", const QString &chanName = "",
52                             bool self = false);
53     void addNewIgnoredRow(bool enable = true, const QString &name = tr("highlight rule"), bool regex = false,
54                           bool cs = false, const QString &sender = "", const QString &chanName = "", bool self = false);
55     void removeSelectedHighlightRows();
56     void removeSelectedIgnoredRows();
57     void selectHighlightRow(QTableWidgetItem *item);
58     void selectIgnoredRow(QTableWidgetItem *item);
59     void highlightTableChanged(QTableWidgetItem *item);
60     void ignoredTableChanged(QTableWidgetItem *item);
61
62 private:
63     Ui::CoreHighlightSettingsPage ui;
64     HighlightRuleManager::HighlightRuleList highlightList;
65     HighlightRuleManager::HighlightRuleList ignoredList;
66     enum column {
67         EnableColumn = 0,
68         NameColumn = 1,
69         RegExColumn = 2,
70         CsColumn = 3,
71         SenderColumn = 4,
72         ChanColumn = 5,
73         ColumnCount = 6
74     };
75
76     void emptyHighlightTable();
77     void emptyIgnoredTable();
78
79     void setupRuleTable(QTableWidget *highlightTable) const;
80
81     bool _initialized;
82 };
83
84
85 #endif