X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fcoreaccountsettingspage.h;h=2413f45b2e241cd340a44287ca16cd6d0f7179d2;hb=b40672ab5c48b577b31371c159e60d330fdd7ce5;hp=e582f480cca96b9d83e1c73f750691a0c16940c2;hpb=0a43227b8cd44625f4881cc1545d42c8c8a4876c;p=quassel.git diff --git a/src/qtui/settingspages/coreaccountsettingspage.h b/src/qtui/settingspages/coreaccountsettingspage.h index e582f480..2413f45b 100644 --- a/src/qtui/settingspages/coreaccountsettingspage.h +++ b/src/qtui/settingspages/coreaccountsettingspage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 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 * @@ -21,6 +21,7 @@ #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 }; };