~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gui/registerdialog.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi, Andrei Karas, Patrick Matthäi
  • Date: 2013-05-27 09:14:03 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130527091403-4b1jceqok7g2v5on
Tags: 1.3.5.26-1
[ Andrei Karas ]
* Add new files to copyright file.
* Update homepage URL.

[ Patrick Matthäi ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 *
61
61
 * \ingroup Interface
62
62
 */
63
 
class RegisterDialog final : public Window, public gcn::ActionListener,
 
63
class RegisterDialog final : public Window,
 
64
                             public gcn::ActionListener,
64
65
                             public gcn::KeyListener
65
66
{
66
67
    public:
99
100
        bool canSubmit() const;
100
101
 
101
102
        LoginData *mLoginData;
102
 
 
103
103
        TextField *mUserField;
104
104
        TextField *mPasswordField;
105
105
        TextField *mConfirmField;
109
109
        RadioButton *mMaleButton;
110
110
        RadioButton *mFemaleButton;
111
111
        RadioButton *mOtherButton;
112
 
 
113
112
        WrongDataNoticeListener *mWrongDataNoticeListener;
114
113
};
115
114