Initial Channel specific highlights feature implementation
[quassel.git] / src / qtui / settingspages / highlightsettingspage.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 Highlight Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
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 Highlight Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU Highlight 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 _HIGHLIGHTSETTINGSPAGE_H_
22 #define _HIGHLIGHTSETTINGSPAGE_H_
23
24 #include <QVariantList>
25 #include <QTableWidgetItem>
26
27 #include "settingspage.h"
28 #include "ui_highlightsettingspage.h"
29
30 class HighlightSettingsPage : public SettingsPage {
31   Q_OBJECT
32
33   public:
34     HighlightSettingsPage(QWidget *parent = 0);
35
36     bool hasDefaults() const;
37
38   public slots:
39     void save();
40     void load();
41     void defaults();
42
43   private slots:
44     void widgetHasChanged();
45     void addNewRow(QString name = tr("highlight rule"), bool regex = false, bool cs = true, bool enable = true, QString chanName = "");
46     void removeSelectedRows();
47     void selectRow(QTableWidgetItem *item);
48     void tableChanged(QTableWidgetItem *item);
49
50   private:
51     Ui::HighlightSettingsPage ui;
52     QVariantList  highlightList;
53     // QVariant -> QHash<QString, QVariant>:
54     //    regex:  bool
55     //    name:   QString
56     //    enable: bool
57     enum column {
58       NameColumn = 0,
59       RegExColumn = 1,
60       CsColumn = 2,
61       EnableColumn = 3,
62       ChanColumn = 4,
63       ColumnCount = 5
64     };
65
66     void emptyTable();
67
68     bool testHasChanged();
69 };
70
71 #endif