-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomDialog.cpp
More file actions
127 lines (101 loc) · 2.49 KB
/
Copy pathCustomDialog.cpp
File metadata and controls
127 lines (101 loc) · 2.49 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// CustomDialog.cpp: implementation of the CustomDialog class.
//
//////////////////////////////////////////////////////////////////////
#include "CustomDialog.h"
//////////////////////////////////////////////////////////////////////
// Statics
//////////////////////////////////////////////////////////////////////
LRESULT CustomDialog::StaticProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
CustomDialog *pDlg = NULL;
if (uMsg == WM_INITDIALOG)
{
pDlg = reinterpret_cast <CustomDialog*> (lParam);
pDlg->hDlg = hDlg;
::SetWindowLong(pDlg->hDlg, GWL_USERDATA, reinterpret_cast <long> (pDlg));
}
else
{
pDlg = reinterpret_cast <CustomDialog*> (::GetWindowLong(hDlg, GWL_USERDATA));
}
if (pDlg != NULL)
pDlg->DlgProc(uMsg, wParam, lParam);
return FALSE;
}
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CustomDialog::CustomDialog()
{
this->hDlg = 0;
this->hParent = 0;
this->hInstance = 0;
this->dwResourceDlg = 0;
}
CustomDialog::~CustomDialog()
{
}
UINT CustomDialog::ShowModal(HINSTANCE hInst, HWND hParent)
{
this->hInstance = hInst;
this->hParent = hParent;
return ::DialogBoxParam(this->hInstance, MAKEINTRESOURCE(this->dwResourceDlg), this->hParent, (DLGPROC)CustomDialog::StaticProc, (LPARAM)this);
}
UINT CustomDialog::ShowModalless(HINSTANCE hInst, HWND hParent)
{
this->hInstance = hInst;
this->hParent = hParent;
this->hDlg = CreateDialogParam(this->hInstance, MAKEINTRESOURCE(this->dwResourceDlg), this->hParent, (DLGPROC)CustomDialog::StaticProc, (LPARAM)this);
::ShowWindow(this->hDlg, SW_SHOW);
if (hDlg != NULL)
return IDOK;
return IDCANCEL;
}
VOID CustomDialog::Resize(UINT x, UINT y, UINT width, UINT height)
{
::MoveWindow(this->hDlg, x, y, width, height, TRUE);
}
HWND CustomDialog::GetDlgItemHandle(DWORD dwDlgItem)
{
return ::GetDlgItem(this->hDlg, dwDlgItem);
}
VOID CustomDialog::DlgProc(UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg)
{
case WM_COMMAND:
{
switch (wParam)
{
case IDCANCEL:
{
EndDialog(this->hDlg, IDCANCEL);
break;
}
case IDOK:
{
EndDialog(this->hDlg, IDOK);
break;
}
}
break;
}
case WM_CLOSE:
{
EndDialog(this->hDlg, IDOK);
break;
}
}
}
UINT CustomDialog::Height()
{
RECT rc;
::GetWindowRect(this->hDlg, &rc);
return rc.bottom;
}
UINT CustomDialog::Width()
{
RECT rc;
::GetWindowRect(this->hDlg, &rc);
return rc.right;
}