X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fhighlightsettingspage.h;h=57c0123b1ca2602b97b0d048f7d1946e205b931b;hb=8d736eb601e79e8fe1a866eb67e626b33f651d7a;hp=244eef77012eadd0e1ba1f7addafd43cc82012a4;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222;p=quassel.git diff --git a/src/qtui/settingspages/highlightsettingspage.h b/src/qtui/settingspages/highlightsettingspage.h index 244eef77..57c0123b 100644 --- a/src/qtui/settingspages/highlightsettingspage.h +++ b/src/qtui/settingspages/highlightsettingspage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 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 * @@ -43,11 +43,16 @@ public 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); + /** + * Event handler for Local Highlights Details button + */ + void on_localHighlightsDetails_clicked(); + private: Ui::HighlightSettingsPage ui; QVariantList highlightList; @@ -56,10 +61,10 @@ private: // name: QString // enable: bool enum column { - NameColumn = 0, - RegExColumn = 1, - CsColumn = 2, - EnableColumn = 3, + EnableColumn = 0, + NameColumn = 1, + RegExColumn = 2, + CsColumn = 3, ChanColumn = 4, ColumnCount = 5 };