00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef EASYSOK_CHANGE_USER_DIALOG_INC_GUARD_H
00022 #define EASYSOK_CHANGE_USER_DIALOG_INC_GUARD_H
00023
00024
00025 #include <kdialogbase.h>
00026
00027
00028 class KLineEdit;
00029 class KRestrictedLine;
00030
00031
00032
00033
00041 class ChangeUserDialog : public KDialogBase
00042 {
00043 Q_OBJECT
00044
00045 public:
00046
00054 ChangeUserDialog(QWidget * parent = 0, char const * name = 0);
00055
00056
00057 protected:
00058
00063 virtual void slotOk();
00064
00065
00066 private:
00067
00072 KLineEdit * m_server;
00073
00074
00079 KLineEdit * m_proxy;
00080
00081
00086 KRestrictedLine * m_proxy_port;
00087
00088
00093 KRestrictedLine * m_nickname;
00094
00095
00100 KLineEdit * m_name;
00101
00102
00107 KLineEdit * m_email;
00108
00109
00114 KLineEdit * m_passwd1;
00115
00116
00121 KLineEdit * m_passwd2;
00122
00123
00128 KLineEdit * m_old_passwd;
00129 };
00130
00131
00132 #endif