X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fchatviewcolorsettingspage.h;fp=src%2Fqtui%2Fsettingspages%2Fchatviewcolorsettingspage.h;h=6f21f3caf66dcfdb726a95c9ff27b6cf9e0a8235;hp=0000000000000000000000000000000000000000;hb=4b3d1dfbdc5a541dbbdd6574e603f4351d8b3274;hpb=d2ac8f78a0e050d2efa397c434b249d6b3391576;ds=sidebyside diff --git a/src/qtui/settingspages/chatviewcolorsettingspage.h b/src/qtui/settingspages/chatviewcolorsettingspage.h new file mode 100644 index 00000000..6f21f3ca --- /dev/null +++ b/src/qtui/settingspages/chatviewcolorsettingspage.h @@ -0,0 +1,62 @@ +/*************************************************************************** + * Copyright (C) 2005-2016 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 General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (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 General Public License for more details. * + * * + * 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., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + +#pragma once + +#include "settingspage.h" +#include "ui_chatviewcolorsettingspage.h" + +class ColorButton; + +class ChatViewColorSettingsPage : public SettingsPage +{ + Q_OBJECT + +public: + /** + * Construct and initialize the ChatViewColorSettingsPage + * + * @param parent Parent QWidget object, such as the settings dialog + */ + explicit ChatViewColorSettingsPage(QWidget *parent = 0); + + /** + * Gets whether or not this settings page has defaults + * + * @return True if defaults available, otherwise false + */ + inline bool hasDefaults() const { return true; } + +public slots: + /** + * Save and apply current settings + */ + void save(); + +private: + Ui::ChatViewColorSettingsPage ui; /// Reference to the Qt settings page UI + + /** + * Gets the settings path for configuration values + * + * @return QString pointing to settings group and key for configuration values + */ + inline QString settingsKey() const { return QString("QtUi/ChatView/__default__"); } +};