blob: afda3aee4ec9648086998a1c36ba4a83fde946af (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#ifndef _TOX_OPTIONS_H_
#define _TOX_OPTIONS_H_
class CToxOptionsMain : public CToxDlgBase
{
private:
typedef CToxDlgBase CSuper;
CCtrlEdit m_toxAddress;
CCtrlButton m_toxAddressCopy;
CCtrlButton m_profileCreate;
CCtrlButton m_profileImport;
CCtrlButton m_profileExport;
CCtrlEdit m_nickname;
CCtrlEdit m_password;
CCtrlEdit m_group;
CCtrlCheck m_enableUdp;
CCtrlCheck m_enableIPv6;
protected:
void OnInitDialog();
void ToxAddressCopy_OnClick(CCtrlButton*);
void ProfileCreate_OnClick(CCtrlButton*);
void ProfileImport_OnClick(CCtrlButton*);
void ProfileExport_OnClick(CCtrlButton*);
void OnApply();
public:
CToxOptionsMain(CToxProto *proto, int idDialog, HWND hwndParent = NULL);
static CDlgBase *CreateAccountManagerPage(void *param, HWND owner)
{
CToxOptionsMain *page = new CToxOptionsMain((CToxProto*)param, IDD_ACCOUNT_MANAGER, owner);
page->Show();
return page;
}
};
/////////////////////////////////////////////////////////////////////////////////
class CToxNodeEditor : public CDlgBase
{
private:
typedef CDlgBase CSuper;
int m_iItem;
CCtrlListView *m_list;
CCtrlEdit m_ipv4;
CCtrlEdit m_ipv6;
CCtrlEdit m_port;
CCtrlEdit m_pkey;
CCtrlButton m_ok;
protected:
void OnInitDialog();
void OnOk(CCtrlBase*);
void OnClose();
public:
CToxNodeEditor(int iItem, CCtrlListView *m_list);
};
/****************************************/
class CCtrlNodeList : public CCtrlListView
{
private:
typedef CCtrlListView CSuper;
protected:
BOOL OnNotify(int idCtrl, NMHDR *pnmh);
public:
CCtrlNodeList(CDlgBase* dlg, int ctrlId);
CCallback<TEventInfo> OnClick;
};
/****************************************/
class CToxOptionsNodeList : public CToxDlgBase
{
private:
typedef CToxDlgBase CSuper;
CCtrlNodeList m_nodes;
CCtrlButton m_addNode;
public:
CToxOptionsNodeList(CToxProto *proto);
protected:
void OnInitDialog();
void OnApply();
void OnAddNode(CCtrlBase*);
void OnNodeListDoubleClick(CCtrlBase*);
void OnNodeListClick(CCtrlListView::TEventInfo *evt);
void OnNodeListKeyDown(CCtrlListView::TEventInfo *evt);
};
#endif //_TOX_OPTIONS_H_
|