-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofileeditwindow.h
More file actions
48 lines (37 loc) · 797 Bytes
/
profileeditwindow.h
File metadata and controls
48 lines (37 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef _PROFILEEDITWINDOW_
#define _PROFILEEDITWINDOW_
#include "MANAGER\SourceManager.h"
#include "posturewindow.h"
#include "globalDefs.h"
#include <QtWidgets\qlineedit.h>
class ProfileEditWindow : public PostureWindow
{
Q_OBJECT
public:
ProfileEditWindow(QWidget*);
~ProfileEditWindow();
protected:
void BuildBottomRight();
private:
QLabel *m_qlTitle;
QLabel *m_qlName;
QLabel *m_qlPwd;
QLabel *m_qlPwdc;
QLabel *m_qlEmail;
QLabel *m_qlError;
QLineEdit *m_qleName;
QLineEdit *m_qlePwd;
QLineEdit *m_qlePwdc;
QLineEdit *m_qleEmail;
QPushButton *m_qpbSubmit;
QPushButton *m_qpbCancel;
void InitWidgets();
private slots:
void submit();
signals:
void cancel(const QString&);
void success(const QString&);
private slots:
void cancel();
};
#endif//_PROFILEEDITWINDOW_