blob: 4aedae071fb3afe537b3e02fef46586442deed39 (
plain)
| 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
 | #ifndef _TOX_PROFILE_H_
#define _TOX_PROFILE_H_
/* ENTER PASSWORD */
class CToxEnterPasswordDlg : public CToxDlgBase
{
private:
	CCtrlEdit m_password;
	CCtrlButton m_ok;
protected:
	void OnInitDialog();
	void Password_OnChange(CCtrlBase*);
	void OnOk(CCtrlButton*);
public:
	CToxEnterPasswordDlg(CToxProto *proto);
};
/* CREATE PASSWORD */
class CToxCreatePasswordDlg : public CToxDlgBase
{
private:
	CCtrlEdit m_newPassword;
	CCtrlEdit m_confirmPassword;
	CCtrlBase m_passwordValidation;
	CCtrlButton m_ok;
protected:
	void OnInitDialog();
	void Password_OnChange(CCtrlBase*);
	void OnOk(CCtrlButton*);
public:
	CToxCreatePasswordDlg(CToxProto *proto);
};
/* CHANGE PASSWORD */
class CToxChangePasswordDlg : public CToxDlgBase
{
private:
	CCtrlEdit m_oldPassword;
	CCtrlEdit m_newPassword;
	CCtrlEdit m_confirmPassword;
	CCtrlBase m_passwordValidation;
	
	CCtrlButton m_ok;
protected:
	void OnInitDialog();
	void Password_OnChange(CCtrlBase*);
	void OnOk(CCtrlButton*);
public:
	CToxChangePasswordDlg(CToxProto *proto);
};
#endif //_TOX_PROFILE_H_
 |