-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.cpp
357 lines (300 loc) · 14.6 KB
/
config.cpp
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#include "kbSizer.h"
#include <windowsx.h>
#include <shlwapi.h>
#include "res.h"
HWND edit_subclass_numonly(HWND hwnd, bool canNegative);
void RefreshList(HWND hwndList, SettingItem *pList) {
TCHAR buf[128];
ListBox_ResetContent(hwndList);
for(int i = 0; i< 9; i++) {
if(pList[i].rect.left == NO_MOVE_MARK && pList[i].rect.right == -1) {
wnsprintf(buf, 128, TEXT("[%d]"), i+1);
} else if(pList[i].rect.left == NO_MOVE_MARK) {
wnsprintf(buf, 128, TEXT("[%d] %s. No Move. Resize to %dx%d"), i+1, pList[i].name, pList[i].rect.right, pList[i].rect.bottom);
} else if(pList[i].rect.right == -1) {
wnsprintf(buf, 128, TEXT("[%d] %s. Move to (%d,%d). No Resize."), i+1, pList[i].name, pList[i].rect.left, pList[i].rect.top);
} else {
wnsprintf(buf, 128, TEXT("[%d] %s. Move to (%d,%d). Resize to %dx%d"), i+1, pList[i].name, pList[i].rect.left, pList[i].rect.top, pList[i].rect.right, pList[i].rect.bottom);
}
int nlist = ListBox_GetCount(hwndList);
ListBox_InsertString(hwndList, nlist, buf);
}
}
void Configuration::ShowHelp(HWND hDlg) {
ShellExecute(hDlg,TEXT("open"), m_pRes->LoadString(IDS_HELPLINK, NULL),TEXT(""),TEXT(""), SW_SHOW );
}
HWND Configuration::m_hwndConfig;
Application* Configuration::m_pApp;
LangRes* Configuration::m_pRes;
SettingItem Configuration::m_configlist[9];
BOOL CALLBACK Configuration::EnumLangsFunc( HMODULE /*hModule*/, LPCTSTR /*lpszType*/, LPCTSTR /*lpszName*/, WORD wIDLanguage, LONG_PTR lParam) {
HWND hwndLangs = reinterpret_cast<HWND>(lParam);
int idx = ComboBox_AddString(hwndLangs, m_pRes->LoadString(wIDLanguage, 0, NULL));
ComboBox_SetItemData(hwndLangs, idx, wIDLanguage);
int currLangid = m_pRes->GetCurrentLangId();
if(wIDLanguage == currLangid) {
ComboBox_SetCurSel(hwndLangs, idx);
}
return TRUE;
}
INT_PTR CALLBACK Configuration::MainConfigDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) {
switch (message) {
case WM_INITDIALOG:
m_hwndConfig = hDlg;
m_pRes->EnumLanguages(EnumLangsFunc, reinterpret_cast<LONG_PTR>(GetDlgItem(hDlg, IDC_LANGUAGES)));
return TRUE;
case WM_COMMAND:
switch(LOWORD(wParam)) {
case IDC_LANGUAGES:
if(HIWORD(wParam) == LBN_SELCHANGE) {
SendMessage(GetParent(hDlg), PSM_CHANGED, reinterpret_cast<WPARAM>(hDlg), 0);
}
return TRUE;
}
break;
case WM_NOTIFY:
switch (reinterpret_cast<NMHDR *>(lParam)->code) {
case PSN_APPLY: {
HWND hwndLangs = GetDlgItem(hDlg, IDC_LANGUAGES);
int curr = ComboBox_GetCurSel(hwndLangs);
WORD langid = static_cast<WORD>(ComboBox_GetItemData(hwndLangs, curr));
m_pApp->SaveLangSetting(langid);
return TRUE;
}
case PSN_HELP:
ShowHelp(hDlg);
return TRUE;
}
break;
}
return FALSE;
}
void SelectMoveRadio(HWND hDlg, BOOL bMove) {
if(bMove) {
Button_SetCheck(GetDlgItem(hDlg, IDC_MOVEPOS), TRUE);
Edit_Enable(GetDlgItem(hDlg, IDC_POS_X), TRUE);
Edit_Enable(GetDlgItem(hDlg, IDC_POS_Y), TRUE);
} else {
Button_SetCheck(GetDlgItem(hDlg, IDC_MOVEPOS), FALSE);
Edit_Enable(GetDlgItem(hDlg, IDC_POS_X), FALSE);
Edit_SetText(GetDlgItem(hDlg, IDC_POS_X), TEXT(""));
Edit_Enable(GetDlgItem(hDlg, IDC_POS_Y), FALSE);
Edit_SetText(GetDlgItem(hDlg, IDC_POS_Y), TEXT(""));
}
}
void SelectResizeRadio(HWND hDlg, BOOL bMove) {
if(bMove) {
Button_SetCheck(GetDlgItem(hDlg, IDC_RESIZE), TRUE);
Edit_Enable(GetDlgItem(hDlg, IDC_POS_WIDTH), TRUE);
Edit_Enable(GetDlgItem(hDlg, IDC_POS_HEIGHT), TRUE);
} else {
Button_SetCheck(GetDlgItem(hDlg, IDC_RESIZE), FALSE);
Edit_Enable(GetDlgItem(hDlg, IDC_POS_WIDTH), FALSE);
Edit_SetText(GetDlgItem(hDlg, IDC_POS_WIDTH), TEXT(""));
Edit_Enable(GetDlgItem(hDlg, IDC_POS_HEIGHT), FALSE);
Edit_SetText(GetDlgItem(hDlg, IDC_POS_HEIGHT), TEXT(""));
}
}
INT_PTR CALLBACK EditPresetConfigDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) {
static SettingItem *pSetItem;
switch (message) {
case WM_INITDIALOG:
pSetItem = reinterpret_cast<SettingItem *>(lParam);
edit_subclass_numonly(GetDlgItem(hDlg, IDC_POS_X), true);
edit_subclass_numonly(GetDlgItem(hDlg, IDC_POS_Y), true);
edit_subclass_numonly(GetDlgItem(hDlg, IDC_POS_WIDTH), false);
edit_subclass_numonly(GetDlgItem(hDlg, IDC_POS_HEIGHT), false);
if(pSetItem->rect.left != NO_MOVE_MARK || pSetItem->rect.right != -1) {
Edit_SetText(GetDlgItem(hDlg, IDC_SETTING_NAME), pSetItem->name);
} else {
Edit_SetText(GetDlgItem(hDlg, IDC_SETTING_NAME), TEXT(""));
}
if(pSetItem->rect.left == NO_MOVE_MARK) {
SelectMoveRadio(hDlg, FALSE);
} else {
SelectMoveRadio(hDlg, TRUE);
TCHAR buf[128] = {0};
wnsprintf(buf, 128, TEXT("%d"), pSetItem->rect.left);
Edit_SetText(GetDlgItem(hDlg, IDC_POS_X), buf);
wnsprintf(buf, 128, TEXT("%d"), pSetItem->rect.top);
Edit_SetText(GetDlgItem(hDlg, IDC_POS_Y), buf);
}
if(pSetItem->rect.right == -1) {
SelectResizeRadio(hDlg, FALSE);
} else {
SelectResizeRadio(hDlg, TRUE);
TCHAR buf[128] = {0};
wnsprintf(buf, 128, TEXT("%d"), pSetItem->rect.right);
Edit_SetText(GetDlgItem(hDlg, IDC_POS_WIDTH), buf);
wnsprintf(buf, 128, TEXT("%d"), pSetItem->rect.bottom);
Edit_SetText(GetDlgItem(hDlg, IDC_POS_HEIGHT), buf);
}
return TRUE;
case WM_COMMAND:
switch(LOWORD(wParam)) {
case IDC_MOVEPOS:
SelectMoveRadio(hDlg, Button_GetCheck(GetDlgItem(hDlg, IDC_MOVEPOS)));
return TRUE;
case IDC_RESIZE:
SelectResizeRadio(hDlg, Button_GetCheck(GetDlgItem(hDlg, IDC_RESIZE)));
return TRUE;
case IDC_DELFROMLIST:
EndDialog(hDlg, LOWORD(wParam));
return TRUE;
case IDOK: {
bool setting_ok = true;
if( Button_GetCheck(GetDlgItem(hDlg, IDC_MOVEPOS))) {
TCHAR buf[128];
Edit_GetText(GetDlgItem(hDlg, IDC_POS_X), buf, 128);
pSetItem->rect.left = StrToInt(buf);
Edit_GetText(GetDlgItem(hDlg, IDC_POS_Y), buf, 128);
pSetItem->rect.top = StrToInt(buf);
} else {
pSetItem->rect.left = pSetItem->rect.top = NO_MOVE_MARK;
}
if( Button_GetCheck(GetDlgItem(hDlg, IDC_RESIZE))) {
TCHAR buf[128];
Edit_GetText(GetDlgItem(hDlg, IDC_POS_WIDTH), buf, 128);
pSetItem->rect.right = StrToInt(buf);
Edit_GetText(GetDlgItem(hDlg, IDC_POS_HEIGHT), buf, 128);
pSetItem->rect.bottom = StrToInt(buf);
if(pSetItem->rect.right < 0 || pSetItem->rect.bottom < 0) {
setting_ok = false; // TODO setting error
}
} else {
pSetItem->rect.right = pSetItem->rect.bottom = -1;
}
if(pSetItem->rect.left == NO_MOVE_MARK && pSetItem->rect.right == -1) {
setting_ok = false;
}
Edit_GetText(GetDlgItem(hDlg, IDC_SETTING_NAME), pSetItem->name, sizeof(pSetItem->name));
EndDialog(hDlg, LOWORD(wParam));
return TRUE;
}
case IDCANCEL:
EndDialog(hDlg, LOWORD(wParam));
return TRUE;
}
break;
}
return FALSE;
}
INT_PTR CALLBACK Configuration::PresetConfigDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) {
switch (message) {
case WM_INITDIALOG: {
HWND hwndlist = GetDlgItem(hDlg, IDC_SIZELIST);
RefreshList(hwndlist, m_configlist);
ListBox_SetCurSel(hwndlist, 0);
SendMessage(hDlg, WM_COMMAND, MAKEWPARAM(IDC_SIZELIST, LBN_SELCHANGE), (LPARAM)hDlg);
return TRUE;
}
case WM_COMMAND:
switch(LOWORD(wParam)) {
case IDC_SIZELIST:
switch(HIWORD(wParam)) {
case LBN_DBLCLK: {
HWND hwndlist = GetDlgItem(hDlg, IDC_SIZELIST);
int cursel = ListBox_GetCurSel(hwndlist);
SettingItem si = m_configlist[cursel];
TemplateRes templ = m_pRes->LoadTemplateRes(RT_DIALOG, IDD_PRESET_CONFIG);
int id = DialogBoxIndirectParam(m_pRes->GetModule(), templ, GetParent(hDlg), EditPresetConfigDlgProc, reinterpret_cast<LPARAM>(&si));
if(id == IDOK) {
m_configlist[cursel] = si;
RefreshList(hwndlist, m_configlist);
ListBox_SetCurSel(hwndlist, cursel);
SendMessage(hDlg, WM_COMMAND, MAKEWPARAM(IDC_SIZELIST, LBN_SELCHANGE), reinterpret_cast<LPARAM>(hDlg));
SendMessage(GetParent(hDlg), PSM_CHANGED, reinterpret_cast<WPARAM>(hDlg), 0);
} else if( id == IDC_DELFROMLIST) {
memset(m_configlist[cursel].name, 0, sizeof(m_configlist[cursel].name));
m_configlist[cursel].rect.left = NO_MOVE_MARK;
m_configlist[cursel].rect.top = NO_MOVE_MARK;
m_configlist[cursel].rect.right = -1;
m_configlist[cursel].rect.bottom = -1;
RefreshList(hwndlist, m_configlist);
ListBox_SetCurSel(hwndlist, cursel);
SendMessage(hDlg, WM_COMMAND, MAKEWPARAM(IDC_SIZELIST, LBN_SELCHANGE), reinterpret_cast<LPARAM>(hDlg));
SendMessage(GetParent(hDlg), PSM_CHANGED, reinterpret_cast<WPARAM>(hDlg), 0);
}
return TRUE;
}
}
break;
case IDC_MOVEUP: {
HWND hwndlist = GetDlgItem(hDlg, IDC_SIZELIST);
int cursel = ListBox_GetCurSel(hwndlist);
if(cursel != LB_ERR && cursel > 0) {
SettingItem tt = m_configlist[cursel-1];
m_configlist[cursel-1] = m_configlist[cursel];
m_configlist[cursel] = tt;
RefreshList(hwndlist, m_configlist);
ListBox_SetCurSel(hwndlist, cursel-1);
SendMessage(GetParent(hDlg), PSM_CHANGED, reinterpret_cast<WPARAM>(hDlg), 0);
}
return (INT_PTR)TRUE;
}
case IDC_MOVEDOWN: {
HWND hwndlist = GetDlgItem(hDlg, IDC_SIZELIST);
int cursel = ListBox_GetCurSel(hwndlist);
if(cursel != LB_ERR && cursel < ListBox_GetCount(hwndlist)-1) {
SettingItem tt = m_configlist[cursel+1];
m_configlist[cursel+1] = m_configlist[cursel];
m_configlist[cursel] = tt;
RefreshList(hwndlist, m_configlist);
ListBox_SetCurSel(hwndlist, cursel+1);
SendMessage(GetParent(hDlg), PSM_CHANGED, reinterpret_cast<WPARAM>(hDlg), 0);
}
return (INT_PTR)TRUE;
}
}
break;
case WM_NOTIFY:
switch (reinterpret_cast<NMHDR *>(lParam)->code) {
case PSN_APPLY:
m_pApp->SavePresetSetting(m_configlist);
return TRUE;
}
break;
}
return FALSE;
}
BOOL Configuration::ShowDialog(Application *pApp, LangRes* pRes, SettingItem* configlist) {
if(m_hwndConfig != NULL) {
BringWindowToTop(GetParent(m_hwndConfig));
return TRUE;
}
m_hwndConfig = NULL;
m_pApp = pApp;
m_pRes = pRes;
memcpy(m_configlist, configlist, sizeof(m_configlist));
TemplateRes dlgres[2] = {
pRes->LoadTemplateRes(RT_DIALOG, IDD_MAIN),
pRes->LoadTemplateRes(RT_DIALOG, IDD_CONFIG),
};
TCHAR configtitle[2][128] = {0};
StrCpy( configtitle[0], pRes->LoadString(IDS_CONFIG_TITLE_MAIN, NULL));
StrCpy( configtitle[1], pRes->LoadString(IDS_CONFIG_TITLE_PRESET, NULL));
PROPSHEETPAGE psp[2] = {0};
psp[0].dwSize = sizeof (PROPSHEETPAGE);
psp[0].dwFlags = PSP_USETITLE|PSP_DLGINDIRECT|PSP_HASHELP;
psp[0].hInstance = pRes->GetModule();
psp[0].pResource = dlgres[0];
psp[0].pfnDlgProc = MainConfigDlgProc;
psp[0].pszTitle = configtitle[0];
psp[1].dwSize = sizeof (PROPSHEETPAGE);
psp[1].dwFlags = PSP_USETITLE|PSP_DLGINDIRECT|PSP_HASHELP;
psp[1].hInstance = pRes->GetModule();
psp[1].pResource = dlgres[1];
psp[1].pfnDlgProc = PresetConfigDlgProc;
psp[1].pszTitle = configtitle[1];
PROPSHEETHEADER psh = {0};
psh.dwSize = sizeof (PROPSHEETHEADER);
psh.dwFlags = PSH_PROPSHEETPAGE|PSH_HASHELP|PSH_USEPAGELANG;
psh.hwndParent = NULL;
psh.hInstance = pRes->GetModule();
psh.pszCaption = pRes->LoadString(IDS_CONFIG_TITLE, NULL);
psh.nPages = sizeof (psp) / sizeof (PROPSHEETPAGE);
psh.ppsp = (LPCPROPSHEETPAGE) &psp;
PropertySheet (&psh);
m_hwndConfig = NULL;
return TRUE;
}