X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fhighlightsettingspage.h;h=96af4eebbfd8cb9dafb5300c669e6a43d1b26909;hp=d4fd3d3af94d6057726969c501b68af1b957d6a1;hb=9188f1a4880dc7f4c26612a265c1d874f6df5a8c;hpb=d399105c3cacc85e30afc28e174efefd36332bc3 diff --git a/src/qtui/settingspages/highlightsettingspage.h b/src/qtui/settingspages/highlightsettingspage.h index d4fd3d3a..96af4eeb 100644 --- a/src/qtui/settingspages/highlightsettingspage.h +++ b/src/qtui/settingspages/highlightsettingspage.h @@ -1,66 +1,79 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Highlight Public License as published by * + * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Highlight Public License for more details. * + * GNU General Public License for more details. * * * - * You should have received a copy of the GNU Highlight Public License * + * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef _HIGHLIGHTSETTINGSPAGE_H_ #define _HIGHLIGHTSETTINGSPAGE_H_ -#include #include +#include #include "settingspage.h" + #include "ui_highlightsettingspage.h" -class HighlightSettingsPage : public SettingsPage { - Q_OBJECT +class HighlightSettingsPage : public SettingsPage +{ + Q_OBJECT - public: - HighlightSettingsPage(QWidget *parent = 0); +public: + HighlightSettingsPage(QWidget* parent = nullptr); - bool hasDefaults() const; + bool hasDefaults() const override; - public slots: - void save(); - void load(); - void defaults(); +public slots: + void save() override; + void load() override; + void defaults() override; - private slots: +private slots: void widgetHasChanged(); - void addNewRow(QString name = tr("highlight rule"), bool regex = false, bool cs = true, bool enable = true, QString chanName = "", bool self = false); + void addNewRow(QString name = tr("highlight rule"), + bool regex = false, + bool cs = false, + bool enable = true, + QString chanName = "", + bool self = false); void removeSelectedRows(); - void selectRow(QTableWidgetItem *item); - void tableChanged(QTableWidgetItem *item); + void selectRow(QTableWidgetItem* item); + void tableChanged(QTableWidgetItem* item); + + /** + * Event handler for Local Highlights Details button + */ + void on_localHighlightsDetails_clicked(); - private: +private: Ui::HighlightSettingsPage ui; - QVariantList highlightList; + QVariantList highlightList; // QVariant -> QHash: // regex: bool // name: QString // enable: bool - enum column { - NameColumn = 0, - RegExColumn = 1, - CsColumn = 2, - EnableColumn = 3, - ChanColumn = 4, - ColumnCount = 5 + enum column + { + EnableColumn = 0, + NameColumn = 1, + RegExColumn = 2, + CsColumn = 3, + ChanColumn = 4, + ColumnCount = 5 }; void emptyTable();