X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fcoreaccountsettingspage.h;h=2413f45b2e241cd340a44287ca16cd6d0f7179d2;hb=b40672ab5c48b577b31371c159e60d330fdd7ce5;hp=591ed0d6ac0eaa2c15f02dfc31f9e11ff2c090ba;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/qtui/settingspages/coreaccountsettingspage.h b/src/qtui/settingspages/coreaccountsettingspage.h index 591ed0d6..2413f45b 100644 --- a/src/qtui/settingspages/coreaccountsettingspage.h +++ b/src/qtui/settingspages/coreaccountsettingspage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 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 * @@ -15,12 +15,13 @@ * 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 COREACCOUNTSETTINGSPAGE_H_ #define COREACCOUNTSETTINGSPAGE_H_ +#include #include #include "settingspage.h" @@ -102,12 +103,14 @@ private slots: void on_hostName_textChanged(const QString &); void on_accountName_textChanged(const QString &); void on_user_textChanged(const QString &); + void on_radioButtonManualProxy_toggled(bool checked); void setWidgetStates(); private: Ui::CoreAccountEditDlg ui; CoreAccount _account; + enum ProxyType { NoProxy, SystemProxy, ManualProxy }; };