X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fhighlightsettingspage.h;h=57c0123b1ca2602b97b0d048f7d1946e205b931b;hb=8d736eb601e79e8fe1a866eb67e626b33f651d7a;hp=423e1b4a9285483001d430d7fac4db1dab3cb87f;hpb=b65b9f7615165e8700a44d59b7275a55558dd45b;p=quassel.git diff --git a/src/qtui/settingspages/highlightsettingspage.h b/src/qtui/settingspages/highlightsettingspage.h index 423e1b4a..57c0123b 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-2018 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 };