X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fhighlightsettingspage.h;h=5e6d26f275c16ff691c6c2c6cce156f867070143;hp=423e1b4a9285483001d430d7fac4db1dab3cb87f;hb=a65f42197839da536975b3e2858eedcef420035f;hpb=695758015a80eb8c158a9ac4c0f1c0b547e70df3 diff --git a/src/qtui/settingspages/highlightsettingspage.h b/src/qtui/settingspages/highlightsettingspage.h index 423e1b4a..5e6d26f2 100644 --- a/src/qtui/settingspages/highlightsettingspage.h +++ b/src/qtui/settingspages/highlightsettingspage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -48,6 +48,11 @@ private slots: 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 };