722bf00a7319780633445224932bb479fccb72cd
[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 #pragma once
22
23 #include <QVariantList>
24 #include <QTableWidgetItem>
25
26 #include "highlightrulemanager.h"
27 #include "settingspage.h"
28
29 #include "ui_corehighlightsettingspage.h"
30
31 class CoreHighlightSettingsPage : public SettingsPage
32 {
33     Q_OBJECT
34
35 public:
36     explicit CoreHighlightSettingsPage(QWidget *parent = nullptr);
37
38     bool hasDefaults() const override;
39
40 public slots:
41     void save() override;
42     void load() override;
43     void defaults() override;
44     void revert();
45     void clientConnected();
46
47 private slots:
48     void widgetHasChanged();
49     void addNewHighlightRow(bool enable = true, const QString &name = tr("highlight rule"), bool regex = false,
50                             bool cs = false, const QString &sender = "", const QString &chanName = "",
51                             bool self = false);
52     void addNewIgnoredRow(bool enable = true, const QString &name = tr("highlight rule"), bool regex = false,
53                           bool cs = false, const QString &sender = "", const QString &chanName = "", bool self = false);
54     void removeSelectedHighlightRows();
55     void removeSelectedIgnoredRows();
56     void selectHighlightRow(QTableWidgetItem *item);
57     void selectIgnoredRow(QTableWidgetItem *item);
58     void highlightTableChanged(QTableWidgetItem *item);
59     void ignoredTableChanged(QTableWidgetItem *item);
60
61 private:
62     Ui::CoreHighlightSettingsPage ui;
63
64     HighlightRuleManager::HighlightRuleList highlightList;
65     HighlightRuleManager::HighlightRuleList ignoredList;
66
67     enum column {
68         EnableColumn = 0,
69         NameColumn = 1,
70         RegExColumn = 2,
71         CsColumn = 3,
72         SenderColumn = 4,
73         ChanColumn = 5,
74         ColumnCount = 6
75     };
76
77     void emptyHighlightTable();
78     void emptyIgnoredTable();
79
80     void setupRuleTable(QTableWidget *highlightTable) const;
81
82     bool _initialized;
83 };