-
Notifications
You must be signed in to change notification settings - Fork 0
/
SettingsHotkeysDlg.cpp
446 lines (372 loc) · 11.9 KB
/
SettingsHotkeysDlg.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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
// SettingsHotkeysDlg.cpp : Implementation of CSettingsHotkeysDlg
#include "stdafx.h"
#include "SettingsHotkeysDlg.h"
#include "utils.h"
#include "Settings.h"
#include "res1.h"
extern CSettings _Settings;
// CSettingsHotkeysDlg
CSettingsHotkeysDlg::CSettingsHotkeysDlg(): m_count(0),
m_initHkGroups(_Settings.m_hotkey_groups),
m_selGr(0),
m_selHk(0)
{
for(unsigned int i = 0; i < _Settings.m_hotkey_groups.size(); ++i)
{
CString groupname = _Settings.m_hotkey_groups[i].m_reg_name;
for(unsigned int j = 0; j < _Settings.m_hotkey_groups[i].m_hotkeys.size(); ++j)
{
CString fullname = groupname + L"\\" + _Settings.m_hotkey_groups[i].m_hotkeys[j].m_reg_name;
// added by SeNS: do not show empty hotkeys
// if (!_Settings.m_hotkey_groups[i].m_hotkeys[j].m_name.IsEmpty())
m_mapHotkeys.Add(fullname, &_Settings.m_hotkey_groups[i].m_hotkeys[j]);
}
}
::LoadString(_Module.GetResourceInstance(), IDS_HOTKEY_WRONG, m_wrongHkMsg.GetBufferSetLength(MAX_LOAD_STRING + 1),
MAX_LOAD_STRING + 1);
m_wrongHkMsg.ReleaseBuffer();
}
CSettingsHotkeysDlg::~CSettingsHotkeysDlg()
{
}
LRESULT CSettingsHotkeysDlg::OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
CAxDialogImpl<CSettingsHotkeysDlg>::OnInitDialog(uMsg, wParam, lParam, bHandled);
m_hkGroups = GetDlgItem(IDC_LIST_HOTKEYS_GROUPS);
for(unsigned int i = 0; i < _Settings.m_hotkey_groups.size(); ++i)
m_hkGroups.AddString(_Settings.m_hotkey_groups[i].m_name);
m_hkGroups.SetCurSel(m_selGr);
m_hotkeys = GetDlgItem(IDC_LIST_HOTKEYS);
for(unsigned int i = 0; i < _Settings.m_hotkey_groups[m_selGr].m_hotkeys.size(); ++i)
{
// changed by SeNS: do not show empty hotkeys
// if (!_Settings.m_hotkey_groups[m_selGr].m_hotkeys[i].m_name.IsEmpty())
m_hotkeys.AddString(_Settings.m_hotkey_groups[m_selGr].m_hotkeys[i].m_name);
}
m_hotkeys.SetCurSel(m_selHk);
m_editHotkey.SubclassWindow(GetDlgItem(IDC_EDIT_HOTKEY));
ClearAndSet();
return 0;
}
int CSettingsHotkeysDlg::GetTextLen(CString text)
{
CDC DC = m_hotkeys.GetDC();
CSize size;
DC.GetTextExtent(text, (int)_tcslen(text.GetBuffer()), &size);
size.cx += 3;
ReleaseDC(DC);
return size.cx;
}
LRESULT CSettingsHotkeysDlg::OnGroupsSelChange(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
m_selGr = m_hkGroups.GetCurSel();
m_hotkeys.ResetContent();
int maxExt = 0;
for(unsigned int i = 0; i < _Settings.m_hotkey_groups[m_selGr].m_hotkeys.size(); ++i)
{
int iExt = GetTextLen(_Settings.m_hotkey_groups[m_selGr].m_hotkeys[i].m_name);
if(iExt > maxExt)
{
m_hotkeys.SetHorizontalExtent(iExt);
maxExt = iExt;
}
else m_hotkeys.SetHorizontalExtent(maxExt);
// changed by SeNS: do not show empty hotkeys
// if (!_Settings.m_hotkey_groups[m_selGr].m_hotkeys[i].m_name.IsEmpty())
m_hotkeys.AddString(_Settings.m_hotkey_groups[m_selGr].m_hotkeys[i].m_name);
}
m_hotkeys.SetCurSel(0);
m_selHk = m_hotkeys.GetCurSel();
ClearAndSet();
return 0;
}
LRESULT CSettingsHotkeysDlg::OnHotkeysSelChange(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
m_selHk = m_hotkeys.GetCurSel();
ClearAndSet();
return 0;
}
hkIndex CSettingsHotkeysDlg::GetCollIndex(ACCEL newAccel)
{
hkIndex index = {-1, -1};
if(newAccel.key == NULL)
goto ret;
for(unsigned int i = 0; i < _Settings.m_hotkey_groups.size(); ++i)
{
for(unsigned int j = 0; j < _Settings.m_hotkey_groups[i].m_hotkeys.size(); ++j)
{
if(_Settings.m_hotkey_groups[i].m_hotkeys[j].m_accel.fVirt == newAccel.fVirt
&& _Settings.m_hotkey_groups[i].m_hotkeys[j].m_accel.key == newAccel.key
&& (i != m_selGr || j != m_selHk))
{
index.group = i;
index.hotkey = j;
goto ret;
}
}
}
ret:
return index;
}
bool CSettingsHotkeysDlg::TestAndSet()
{
bool collisions = false;
for(int i = 0; i< m_mapHotkeys.GetSize(); ++i)
{
CHotkey* hotkey = m_mapHotkeys.GetValueAt(i);
if(hotkey->m_accel.fVirt == m_accel.fVirt && hotkey->m_accel.key == m_accel.key)
{
hotkey->m_accel.fVirt = NULL;
hotkey->m_accel.key = NULL;
collisions = true;
}
}
_Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_accel = m_accel;
return collisions;
}
LRESULT CSettingsHotkeysDlg::OnBnClickedButtonDefault(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
hkIndex index = GetCollIndex(_Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_def_accel);
if(index.group != -1 && index.hotkey != -1)
{
wchar_t collDefMsg[MAX_LOAD_STRING + 1];
::LoadString(_Module.GetResourceInstance(),
IDS_HOTKEY_DEFAULT_COLLISION,
collDefMsg,
MAX_LOAD_STRING + 1);
CString collCmdName;
collCmdName += _Settings.m_hotkey_groups[index.group].m_name;
collCmdName += L'\\';
collCmdName += _Settings.m_hotkey_groups[index.group].m_hotkeys[index.hotkey].m_name;
CString collDefCmdMsg;
collDefCmdMsg.Format(collDefMsg, collCmdName);
wchar_t errCaption[MAX_LOAD_STRING + 1];
::LoadString(_Module.GetResourceInstance(),
IDS_ERRMSGBOX_CAPTION,
errCaption,
MAX_LOAD_STRING + 1);
if(MessageBox(collDefCmdMsg, errCaption, MB_YESNO | MB_ICONEXCLAMATION) == IDYES)
{
m_accel = _Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_def_accel;
TestAndSet();
ClearAndSet();
}
}
else
{
m_accel = _Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_def_accel;
TestAndSet();
ClearAndSet();
}
return 0;
}
LRESULT CSettingsHotkeysDlg::OnBnClickedButtonHotkeyDelete(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
::ZeroMemory(&_Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_accel, sizeof(ACCEL));
ClearAndSet();
return 0;
}
LRESULT CSettingsHotkeysDlg::OnClickedOK(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
for(unsigned int i = 0; i < _Settings.m_hotkey_groups.size(); ++i)
{
for(unsigned int j = 0; j < _Settings.m_hotkey_groups.at(i).m_hotkeys.size(); ++j)
{
ACCEL accel = _Settings.m_hotkey_groups[i].m_hotkeys[j].m_accel;
ACCEL init_accel = m_initHkGroups[i].m_hotkeys[j].m_accel;
if(accel.fVirt != init_accel.fVirt || accel.key != init_accel.key || accel.cmd != init_accel.cmd)
{
_Settings.SetNeedRestart();
break;
}
}
}
EndDialog(wID);
return 0;
}
LRESULT CSettingsHotkeysDlg::OnClickedCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
_Settings.m_hotkey_groups = m_initHkGroups;
EndDialog(wID);
return 0;
}
LRESULT CSettingsHotkeysDlg::OnEditSetFocus(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
m_editHotkey.SetWindowText(NULL);
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_COLLISION), NULL);
m_accel.cmd = _Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_accel.cmd;
return 0;
}
bool CSettingsHotkeysDlg::Test()
{
hkIndex index = GetCollIndex(m_accel);
wchar_t collMsg[MAX_LOAD_STRING +1];
if(index.group != -1 && index.hotkey != -1)
{
CString collCmdName;
collCmdName += _Settings.m_hotkey_groups[index.group].m_name;
collCmdName += L'\\';
collCmdName += _Settings.m_hotkey_groups[index.group].m_hotkeys[index.hotkey].m_name;
::LoadString(_Module.GetResourceInstance(),
IDS_HOTKEY_ASSIGN_COLLISION,
collMsg,
MAX_LOAD_STRING + 1);
CString collCmdMsg;
collCmdMsg.Format(collMsg, collCmdName);
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_COLLISION), collCmdMsg);
return true;
}
else
{
::LoadString(_Module.GetResourceInstance(),
IDS_HOTKEY_ASSIGN_NO_COLLISION,
collMsg,
MAX_LOAD_STRING + 1);
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_COLLISION), collMsg);
return false;
}
}
LRESULT CSettingsHotkeysDlg::OnKeyPressed(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
CString wndText;
m_editHotkey.GetWindowText(wndText);
switch(m_count)
{
case 0:
{
m_editHotkey.SetWindowText(NULL);
ZeroMemory(&m_accel, sizeof(ACCEL));
m_accel.fVirt = FVIRTKEY;
m_accel.cmd = _Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_accel.cmd;
if(wParam == VK_CONTROL || wParam == U::StringToKeycode(L"Alt") || wParam == VK_SHIFT)
{
wndText = U::KeycodeToString(wParam);
m_editHotkey.SetWindowText(wndText);
m_accel.fVirt |= U::VKToFVirt(wParam);
m_count++;
}
else if (wParam >= VK_F1 && wParam <= VK_F12)
{
wndText += U::KeycodeToString(wParam);
m_editHotkey.SetWindowText(wndText);
m_accel.key = wParam;
m_count = 0;
Test();
::EnableWindow(GetDlgItem(IDC_BUTTON_HOTKEY_ASSIGN), TRUE);
}
else
{
m_editHotkey.SetWindowText(m_wrongHkMsg);
m_count = 0;
::EnableWindow(GetDlgItem(IDC_BUTTON_HOTKEY_ASSIGN), FALSE);
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_COLLISION), NULL);
}
break;
}
case 1:
{
if(wParam == VK_CONTROL || wParam == U::StringToKeycode(L"Alt") || wParam == VK_SHIFT)
{
wndText += L" + ";
wndText += U::KeycodeToString(wParam);
m_editHotkey.SetWindowText(wndText);
m_accel.fVirt |= U::VKToFVirt(wParam);
m_count++;
}
else if(U::KeycodeToString(wParam) != L"")
{
/* if(m_accel.fVirt & FSHIFT)
{
m_editHotkey.SetWindowText(m_wrongHkMsg);
m_count = 0;
::EnableWindow(GetDlgItem(IDC_BUTTON_HOTKEY_ASSIGN), FALSE);
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_COLLISION), NULL);
}
else */
{
wndText += L" + ";
wndText += U::KeycodeToString(wParam);
m_editHotkey.SetWindowText(wndText);
m_accel.key = wParam;
m_count = 0;
Test();
::EnableWindow(GetDlgItem(IDC_BUTTON_HOTKEY_ASSIGN), TRUE);
}
}
break;
}
case 2:
{
if(wParam == VK_CONTROL || wParam == U::StringToKeycode(L"Alt") || wParam == VK_SHIFT)
{
wndText += L" + ";
wndText += U::KeycodeToString(wParam);
m_editHotkey.SetWindowText(wndText);
m_accel.fVirt |= U::VKToFVirt(wParam);
m_count++;
}
else if(U::KeycodeToString(wParam) != L"")
{
wndText += L" + ";
wndText += U::KeycodeToString(wParam);
m_editHotkey.SetWindowText(wndText);
m_accel.key = wParam;
m_count = 0;
Test();
::EnableWindow(GetDlgItem(IDC_BUTTON_HOTKEY_ASSIGN), TRUE);
}
break;
}
case 3:
{
if(U::KeycodeToString(wParam) != L""
&& wParam != VK_CONTROL
&& wParam != U::StringToKeycode(L"Alt")
&& wParam != VK_SHIFT)
{
wndText += L" + ";
wndText += U::KeycodeToString(wParam);
m_editHotkey.SetWindowText(wndText);
m_accel.key = wParam;
m_count = 0;
Test();
::EnableWindow(GetDlgItem(IDC_BUTTON_HOTKEY_ASSIGN), TRUE);
}
else
{
m_editHotkey.SetWindowText(m_wrongHkMsg);
m_count = 0;
::EnableWindow(GetDlgItem(IDC_BUTTON_HOTKEY_ASSIGN), FALSE);
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_COLLISION), NULL);
}
break;
}
}
return 0;
}
LRESULT CSettingsHotkeysDlg::OnKeyReleased(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
if(m_accel.key == NULL)
{
ClearAndSet();
}
return 0;
}
LRESULT CSettingsHotkeysDlg::OnBnClickedButtonHotkeyAssign(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
TestAndSet();
ClearAndSet();
return 0;
}
void CSettingsHotkeysDlg::ClearAndSet()
{
m_count = 0;
ZeroMemory(&m_accel, sizeof(ACCEL));
::EnableWindow(GetDlgItem(IDC_BUTTON_HOTKEY_ASSIGN), FALSE);
m_editHotkey.SetWindowText(U::AccelToString(_Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_accel));
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_COLLISION), NULL);
if(_Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_desc != L"")
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_DESCRIPTION), _Settings.m_hotkey_groups[m_selGr].m_hotkeys[m_selHk].m_desc);
else
::SetWindowText(GetDlgItem(IDC_EDIT_HOTKEY_DESCRIPTION), NULL);
}