-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsDialog.hpp
68 lines (54 loc) · 1.68 KB
/
SettingsDialog.hpp
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
///////////////////////////////////////
// MyDialog.h
#ifndef MYDIALOG_H
#define MYDIALOG_H
// Declaration of the CButtonDialog class
class CButtonDialog : public CDialog
{
public:
CButtonDialog(UINT resID);
~CButtonDialog();
virtual INT_PTR DialogProc(UINT msg, WPARAM wparam, LPARAM lparam);
virtual BOOL OnCommand(WPARAM wparam, LPARAM lparam);
virtual INT_PTR OnCtlColorDlg(UINT msg, WPARAM wparam, LPARAM lparam);
virtual INT_PTR OnCtlColorStatic(UINT msg, WPARAM wparam, LPARAM lparam);
virtual void OnOK() {} // suppress closing dialog with the enter key
virtual void OnCancel() {} // suppress closing dialog with the esc key
BOOL OnButton();
BOOL OnCheck1();
BOOL OnCheck2();
BOOL OnCheck3();
BOOL OnRangeOfRadioIDs(UINT firstID, UINT lastID, UINT clickedID);
private:
CBrush m_brush;
};
class CComboBoxDialog : public CDialog
{
public:
CComboBoxDialog (UINT resID);
~CComboBoxDialog();
virtual INT_PTR DialogProc(UINT msg, WPARAM wparam, LPARAM lparam);
virtual BOOL OnInitDialog();
protected:
virtual void OnOK() {} // supress closing dialog with the enter key
virtual void OnCancel() {} // supress closing dialog with the esc key
private:
CBrush m_brush;
};
// Declaration of the CMyDialog class
class CSettingsDialog : public CDialog
{
public:
CSettingsDialog(UINT resID);
virtual ~CSettingsDialog();
protected:
virtual void OnDestroy();
virtual BOOL OnInitDialog();
virtual INT_PTR DialogProc(UINT msg, WPARAM wparam, LPARAM lparam);
virtual void OnOK();
private:
CTab m_tab;
CButtonDialog* m_pButtonDlg;
CComboBoxDialog* m_pComboDlg;
};
#endif //MYDIALOG_H