Read/Write settings from/to correct subcategory and cleanup
[quassel.git] / src / qtui / settingspages / highlightsettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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);
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       ColumnCount = 4
63     };
64
65     void emptyTable();
66
67     bool testHasChanged();
68 };
69
70 #endif