-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
XG_MarkingDialog.hpp
349 lines (318 loc) · 11.1 KB
/
XG_MarkingDialog.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
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
#pragma once
#include "XG_Window.hpp"
#define MARKED_INTERVAL (3 * 1000)
// [二重マス単語の候補と配置]ダイアログ。
class XG_MarkingDialog : public XG_Dialog
{
public:
BOOL m_bUpdating = FALSE;
BOOL m_bInitted = FALSE;
XG_MarkingDialog() noexcept
{
}
BOOL RefreshCandidates(HWND hwnd)
{
// 二重マス単語の候補を取得する。
XgGetMarkedCandidates();
// リストのクリアする。
m_bUpdating = TRUE;
::SendDlgItemMessageW(hwnd, lst1, LB_RESETCONTENT, 0, 0);
m_bUpdating = FALSE;
// リストに候補を追加する。
for (auto& item : xg_vMarkedCands) {
::SendDlgItemMessageW(hwnd, lst1, LB_ADDSTRING, 0, (LPARAM)item.c_str());
}
// 現在の候補を選択する。
INT iItem = ::SendDlgItemMessageW(hwnd, lst1, LB_FINDSTRINGEXACT, -1, (LPARAM)xg_strMarked.c_str());
if (iItem != LB_ERR) {
m_bUpdating = TRUE;
::SendDlgItemMessageW(hwnd, lst1, LB_SETCURSEL, iItem, 0);
m_bUpdating = FALSE;
}
// すでに解があるかどうかによって切り替え。
const XG_Board *xw = (xg_bSolved ? &xg_solution : &xg_xword);
XgGetMarkWord(xw, xg_strMarked);
// テキストを設定する。
m_bUpdating = TRUE;
::SetDlgItemTextW(hwnd, edt1, xg_strMarked.c_str());
m_bUpdating = FALSE;
return TRUE;
}
BOOL OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam)
{
// ダイアログを中央へ移動する。
XgCenterDialog(hwnd);
// 移動。
if (xg_nMarkingX != CW_USEDEFAULT || xg_nMarkingY != CW_USEDEFAULT) {
RECT rc;
GetWindowRect(hwnd, &rc);
MoveWindow(hwnd, xg_nMarkingX, xg_nMarkingY, rc.right - rc.left, rc.bottom - rc.top, TRUE);
SendMessageW(hwnd, DM_REPOSITION, 0, 0);
}
// 候補を初期化する。
RefreshCandidates(hwnd);
// 初期化終わり。
m_bInitted = TRUE;
return TRUE;
}
// テキストの取得。
XGStringW GetText(HWND hwnd, BOOL bEdit, BOOL bNormalize = TRUE)
{
WCHAR szText[256];
szText[0] = 0;
if (bEdit) {
::GetDlgItemTextW(hwnd, edt1, szText, _countof(szText));
} else {
const auto i = GetCurSel(hwnd);
if (i != LB_ERR)
::SendDlgItemMessageW(hwnd, lst1, LB_GETTEXT, i, reinterpret_cast<LPARAM>(szText));
}
XGStringW str = szText;
if (bNormalize) {
xg_str_trim(str);
str = XgNormalizeString(str);
}
return str;
}
// テキストの設定。
BOOL SetText(HWND hwnd, const XGStringW& str, BOOL bFromEdit)
{
if (!bFromEdit) {
m_bUpdating = TRUE;
int iStart, iEnd;
::SendDlgItemMessageW(hwnd, edt1, EM_GETSEL, reinterpret_cast<WPARAM>(&iStart), reinterpret_cast<LPARAM>(&iEnd));
::SetDlgItemTextW(hwnd, edt1, str.c_str());
::SendDlgItemMessageW(hwnd, edt1, EM_SETSEL, iStart, iEnd);
m_bUpdating = FALSE;
}
BOOL bDone = FALSE;
auto marked = xg_strMarked;
auto mu1 = std::make_shared<XG_UndoData_MarksUpdated>();
auto mu2 = std::make_shared<XG_UndoData_MarksUpdated>();
mu1->Get();
WCHAR chNotFound = 0;
{
bDone = XgSetMarkedWord(str, &chNotFound);
}
mu2->Get();
if (bDone) {
if (xg_strMarked != marked) {
// 元に戻す情報を設定する。
xg_ubUndoBuffer.Commit(UC_MARKS_UPDATED, mu1, mu2);
}
::SetDlgItemTextW(hwnd, stc1, XgLoadStringDx1(IDS_MARKINGEMPTY));
} else {
if (str.size() && chNotFound != 0) {
WCHAR szText[256];
StringCchPrintfW(szText, _countof(szText),
XgLoadStringDx1(IDS_MARKINGTYPE), chNotFound);
::SetDlgItemTextW(hwnd, stc1, szText);
}
else
{
::SetDlgItemTextW(hwnd, stc1, XgLoadStringDx1(IDS_MARKINGEMPTY));
}
}
if (bFromEdit) {
const int i = static_cast<int>(::SendDlgItemMessageW(hwnd, lst1, LB_FINDSTRINGEXACT, -1, reinterpret_cast<LPARAM>(str.c_str())));
m_bUpdating = TRUE;
if (i != LB_ERR) {
::SendDlgItemMessageW(hwnd, lst1, LB_SETCURSEL, i, 0);
} else {
::SendDlgItemMessageW(hwnd, lst1, LB_SETCURSEL, -1, 0);
}
m_bUpdating = FALSE;
}
return bDone;
}
VOID OnLst1(HWND hwnd)
{
const auto i = GetCurSel(hwnd);
if (i == LB_ERR)
return;
// テキストを取得する。
auto str = GetText(hwnd, FALSE);
SetText(hwnd, str, FALSE);
::KillTimer(hwnd, 999);
::SetTimer(hwnd, 999, MARKED_INTERVAL, nullptr);
}
VOID OnEdt1(HWND hwnd)
{
// テキストを取得する。
auto str = GetText(hwnd, TRUE);
SetText(hwnd, str, TRUE);
::KillTimer(hwnd, 999);
::SetTimer(hwnd, 999, MARKED_INTERVAL, nullptr);
}
int GetCurSel(HWND hwnd) noexcept
{
return static_cast<int>(::SendDlgItemMessageW(hwnd, lst1, LB_GETCURSEL, 0, 0));
}
void OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify)
{
switch (id)
{
case IDOK:
case IDCANCEL:
// ダイアログを閉じる。
::DestroyWindow(hwnd);
break;
case edt1:
if (codeNotify == EN_CHANGE) {
if (!m_bUpdating)
OnEdt1(hwnd);
}
break;
case lst1:
if (codeNotify == LBN_SELCHANGE) {
if (!m_bUpdating)
OnLst1(hwnd);
}
break;
case psh1:
if (xg_vMarkedCands.size()) {
auto mu1 = std::make_shared<XG_UndoData_MarksUpdated>();
auto mu2 = std::make_shared<XG_UndoData_MarksUpdated>();
mu1->Get();
{
// 前の候補。
const int iItem = GetCurSel(hwnd);
if (iItem == LB_ERR) {
xg_iMarkedCand = static_cast<int>(xg_vMarkedCands.size()) - 1;
} else {
xg_iMarkedCand = iItem - 1;
if (xg_iMarkedCand < 0)
xg_iMarkedCand = static_cast<int>(xg_vMarkedCands.size()) - 1;
}
auto str = xg_vMarkedCands[xg_iMarkedCand];
XgSetMarkedWord(str);
XgMarkUpdate();
// テキストの更新。
SetDlgItemTextW(hwnd, edt1, str.c_str());
}
mu2->Get();
// 元に戻す情報を設定する。
xg_ubUndoBuffer.Commit(UC_MARKS_UPDATED, mu1, mu2);
}
break;
case psh2:
if (xg_vMarkedCands.size())
{
auto mu1 = std::make_shared<XG_UndoData_MarksUpdated>();
auto mu2 = std::make_shared<XG_UndoData_MarksUpdated>();
mu1->Get();
{
// 次の候補。
const auto iItem = GetCurSel(hwnd);
if (iItem == LB_ERR) {
xg_iMarkedCand = 0;
} else {
xg_iMarkedCand = (iItem + 1) % xg_vMarkedCands.size();
}
auto str = xg_vMarkedCands[xg_iMarkedCand];
XgSetMarkedWord(str);
XgMarkUpdate();
// テキストの更新。
SetDlgItemTextW(hwnd, edt1, str.c_str());
}
mu2->Get();
// 元に戻す情報を設定する。
xg_ubUndoBuffer.Commit(UC_MARKS_UPDATED, mu1, mu2);
}
break;
case psh3:
{
auto mu1 = std::make_shared<XG_UndoData_MarksUpdated>();
auto mu2 = std::make_shared<XG_UndoData_MarksUpdated>();
mu1->Get();
{
// 別の配置。
XgSetMarkedWord(xg_strMarked);
XgMarkUpdate();
}
mu2->Get();
// 元に戻す情報を設定する。
xg_ubUndoBuffer.Commit(UC_MARKS_UPDATED, mu1, mu2);
}
break;
case psh5:
{
auto mu1 = std::make_shared<XG_UndoData_MarksUpdated>();
auto mu2 = std::make_shared<XG_UndoData_MarksUpdated>();
mu1->Get();
{
// クリア。
xg_vMarks.clear();
xg_iMarkedCand = -1;
XgMarkUpdate();
// テキストの更新。
SetDlgItemTextW(hwnd, edt1, L"");
}
mu2->Get();
// 元に戻す情報を設定する。
xg_ubUndoBuffer.Commit(UC_MARKS_UPDATED, mu1, mu2);
}
break;
default:
break;
}
// 盤面を更新する。
XgUpdateImage(xg_hMainWnd);
}
void OnMove(HWND hwnd, int x, int y) noexcept
{
if (m_bInitted) {
RECT rc;
::GetWindowRect(hwnd, &rc);
xg_nMarkingX = rc.left;
xg_nMarkingY = rc.top;
}
}
void OnTimer(HWND hwnd, UINT id)
{
if (id != 999)
return;
::KillTimer(hwnd, 999);
auto str1 = GetText(hwnd, TRUE, FALSE);
auto str2 = GetText(hwnd, TRUE, TRUE);
if (str1 != str2)
{
m_bUpdating = TRUE;
int iStart, iEnd;
::SendDlgItemMessageW(hwnd, edt1, EM_GETSEL, reinterpret_cast<WPARAM>(&iStart), reinterpret_cast<LPARAM>(&iEnd));
::SetDlgItemTextW(hwnd, edt1, str2.c_str());
::SendDlgItemMessageW(hwnd, edt1, EM_SETSEL, iStart, iEnd);
m_bUpdating = FALSE;
}
}
void OnDestroy(HWND hwnd) noexcept
{
::KillTimer(hwnd, 999);
m_hWnd = nullptr;
m_bInitted = FALSE;
}
INT_PTR CALLBACK
DialogProcDx(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) override
{
switch (uMsg)
{
HANDLE_MSG(hwnd, WM_INITDIALOG, OnInitDialog);
HANDLE_MSG(hwnd, WM_COMMAND, OnCommand);
HANDLE_MSG(hwnd, WM_MOVE, OnMove);
HANDLE_MSG(hwnd, WM_TIMER, OnTimer);
HANDLE_MSG(hwnd, WM_DESTROY, OnDestroy);
default:
break;
}
return 0;
}
BOOL CreateDialogDx(HWND hwnd)
{
if (XG_Dialog::CreateDialogDx(hwnd, IDD_MARKING)) {
::ShowWindow(*this, SW_SHOWNORMAL);
::UpdateWindow(*this);
return TRUE;
}
return FALSE;
}
};