diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-03-07 22:56:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-03-09 00:29:40 +0300 |
commit | eacf63c7a4c660b38329325c3958bbc63d10ee5c (patch) | |
tree | a06eb415526220ce0911c686dd69e9adcf848dd3 /src/gui/logindialog.h | |
parent | b384454131c7bd50ba171b1fdbad64cfc83d1ffb (diff) | |
download | plus-eacf63c7a4c660b38329325c3958bbc63d10ee5c.tar.gz plus-eacf63c7a4c660b38329325c3958bbc63d10ee5c.tar.bz2 plus-eacf63c7a4c660b38329325c3958bbc63d10ee5c.tar.xz plus-eacf63c7a4c660b38329325c3958bbc63d10ee5c.zip |
Add support for many update hosts (evol server only).
Diffstat (limited to 'src/gui/logindialog.h')
-rw-r--r-- | src/gui/logindialog.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/logindialog.h b/src/gui/logindialog.h index 08799b1c2..53149fe0d 100644 --- a/src/gui/logindialog.h +++ b/src/gui/logindialog.h @@ -32,7 +32,9 @@ #include <string> #include <vector> +class DropDown; class LoginData; +class UpdateListModel; class UpdateTypeModel; /** @@ -78,12 +80,15 @@ class LoginDialog : public Window, public gcn::ActionListener, gcn::TextField *mPassField; gcn::CheckBox *mKeepCheck; gcn::Label *mUpdateTypeLabel; - gcn::DropDown *mUpdateTypeDropDown; + gcn::Label *mUpdateHostLabel; + DropDown *mUpdateTypeDropDown; gcn::Button *mServerButton; gcn::Button *mLoginButton; gcn::Button *mRegisterButton; gcn::CheckBox *mCustomUpdateHost; gcn::TextField *mUpdateHostText; + UpdateListModel *mUpdateListModel; + DropDown *mUpdateHostDropDown; LoginData *mLoginData; std::string *mUpdateHost; |