-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
XG_ThemeDialog.hpp
528 lines (468 loc) · 17 KB
/
XG_ThemeDialog.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
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
#pragma once
#include "XG_Window.hpp"
// タグ群の最大長。
#define XG_MAX_TAGSLEN 256
// 「テーマ」ダイアログ。
class XG_ThemeDialog : public XG_Dialog
{
public:
inline static BOOL xg_bUpdatingPreset = FALSE;
XG_ThemeDialog() noexcept
{
}
// タグリストボックスを初期化。
void XgInitTagListView(HWND hwndLV)
{
constexpr auto exstyle = LVS_EX_FULLROWSELECT | LVS_EX_INFOTIP | LVS_EX_LABELTIP | LVS_EX_GRIDLINES;
ListView_SetExtendedListViewStyleEx(hwndLV, exstyle, exstyle);
LV_COLUMN column = { LVCF_TEXT | LVCF_WIDTH | LVCF_SUBITEM | LVCF_FMT };
column.pszText = XgLoadStringDx1(IDS_TAGS);
column.fmt = LVCFMT_LEFT;
column.cx = 90;
column.iSubItem = 0;
ListView_InsertColumn(hwndLV, 0, &column);
column.pszText = XgLoadStringDx1(IDS_TAGCOUNT);
column.fmt = LVCFMT_RIGHT;
column.cx = 84;
column.iSubItem = 1;
ListView_InsertColumn(hwndLV, 1, &column);
}
// 「テーマ」ダイアログの初期化。
BOOL OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam)
{
// ダイアログを中央寄せする。
XgCenterDialog(hwnd);
// 長さを制限する。
SendDlgItemMessageW(hwnd, cmb1, CB_LIMITTEXT, XG_MAX_TAGSLEN - 1, 0);
// リストビューを初期化。
HWND hLst1 = GetDlgItem(hwnd, lst1);
HWND hLst2 = GetDlgItem(hwnd, lst2);
HWND hLst3 = GetDlgItem(hwnd, lst3);
XgInitTagListView(hLst1);
XgInitTagListView(hLst2);
XgInitTagListView(hLst3);
// ヒストグラムを取得。
std::vector<std::pair<size_t, XGStringW> > histgram;
for (auto& pair : xg_tag_histgram) {
histgram.emplace_back(std::make_pair(pair.second, pair.first));
}
// 出現回数の逆順でソート。
std::sort(histgram.begin(), histgram.end(),
[](const std::pair<size_t, XGStringW>& a, const std::pair<size_t, XGStringW>& b) {
return a.first > b.first;
}
);
// リストビューを逆順のヒストグラムで埋める。
int iItem = 0;
LV_ITEM item = { LVIF_TEXT };
WCHAR szText[64];
for (auto& pair : histgram) {
StringCchCopyW(szText, _countof(szText), pair.second.c_str());
item.iItem = iItem;
item.pszText = szText;
item.iSubItem = 0;
ListView_InsertItem(hLst1, &item);
StringCchCopyW(szText, _countof(szText), to_XGStringW(pair.first).c_str());
item.iItem = iItem;
item.pszText = szText;
item.iSubItem = 1;
ListView_SetItem(hLst1, &item);
++iItem;
}
// コンボボックスにテキストを設定する。
SetDlgItemTextW(hwnd, cmb1, xg_strTheme.c_str());
// プリセットを設定する。
SetPreset(hwnd, xg_strTheme.c_str());
// 最初の項目を選択。
item.mask = LVIF_STATE;
item.iItem = 0;
item.iSubItem = 0;
item.state = item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
ListView_SetItem(hLst1, &item);
// THEME.txt ファイルを読み込む。
WCHAR szPath[MAX_PATH];
HWND hCmb1 = GetDlgItem(hwnd, cmb1);
if (XgFindLocalFile(szPath, _countof(szPath), L"THEME.txt")) {
if (FILE *fp = _wfopen(szPath, L"rb")) {
char buf[256];
while (fgets(buf, _countof(buf), fp)) {
XGStringW str = XgUtf8ToUnicode(buf);
xg_str_trim(str);
if (str.empty())
continue;
if (str[0] == 0xFEFF || str[0] == L';')
continue;
ComboBox_AddString(hCmb1, str.c_str());
}
fclose(fp);
}
}
// コンボボックスの横幅。
SendMessageW(hCmb1, CB_SETHORIZONTALEXTENT, 1000, 0);
return TRUE;
}
// リストビューにタグ項目を追加する。
void AddTag(HWND hwnd, BOOL bPriority)
{
// 選択中のテキストを取得する。
HWND hLst1 = GetDlgItem(hwnd, lst1);
int iItem = ListView_GetNextItem(hLst1, -1, LVNI_ALL | LVNI_SELECTED);
if (iItem < 0)
return; // 選択なし。
WCHAR szText1[64], szText2[64];
ListView_GetItemText(hLst1, iItem, 0, szText1, _countof(szText1));
ListView_GetItemText(hLst1, iItem, 1, szText2, _countof(szText2));
LV_FINDINFO find = { LVFI_STRING, szText1 };
if (bPriority) {
HWND hLst2 = GetDlgItem(hwnd, lst2);
iItem = ListView_FindItem(hLst2, -1, &find);
if (iItem >= 0)
return; // すでにあった。
// タグ項目を追加。
int cItems = ListView_GetItemCount(hLst2);
LV_ITEM item = { LVIF_TEXT };
item.iItem = cItems;
item.iSubItem = 0;
item.pszText = szText1;
iItem = ListView_InsertItem(hLst2, &item);
item.iItem = iItem;
item.iSubItem = 1;
item.pszText = szText2;
ListView_SetItem(hLst2, &item);
// カウンターを更新。
size_t count = 0;
cItems = ListView_GetItemCount(hLst2);
for (iItem = 0; iItem < cItems; ++iItem) {
ListView_GetItemText(hLst2, iItem, 1, szText2, _countof(szText2));
count += _wtoi(szText2);
}
SetDlgItemInt(hwnd, stc1, static_cast<int>(count), FALSE);
} else {
HWND hLst3 = GetDlgItem(hwnd, lst3);
iItem = ListView_FindItem(hLst3, -1, &find);
if (iItem >= 0)
return; // すでにあった。
// タグ項目を追加。
int cItems = ListView_GetItemCount(hLst3);
LV_ITEM item = { LVIF_TEXT };
item.iItem = cItems;
item.iSubItem = 0;
item.pszText = szText1;
iItem = ListView_InsertItem(hLst3, &item);
item.iItem = iItem;
item.iSubItem = 1;
item.pszText = szText2;
ListView_SetItem(hLst3, &item);
// カウンターを更新。
size_t count = 0;
cItems = ListView_GetItemCount(hLst3);
for (iItem = 0; iItem < cItems; ++iItem) {
ListView_GetItemText(hLst3, iItem, 1, szText2, _countof(szText2));
count += _wtoi(szText2);
}
SetDlgItemInt(hwnd, stc2, static_cast<int>(count), FALSE);
}
// プリセットを更新。
UpdatePreset(hwnd);
}
// リストビューからタグ項目を削除する。
void RemoveTag(HWND hwnd, BOOL bPriority)
{
WCHAR szText[64];
if (bPriority) {
HWND hLst2 = GetDlgItem(hwnd, lst2);
int iItem = ListView_GetNextItem(hLst2, -1, LVNI_ALL | LVNI_SELECTED);
ListView_DeleteItem(hLst2, iItem);
// カウンターを更新。
const int cItems = ListView_GetItemCount(hLst2);
size_t count = 0;
for (iItem = 0; iItem < cItems; ++iItem) {
ListView_GetItemText(hLst2, iItem, 1, szText, _countof(szText));
count += _wtoi(szText);
}
SetDlgItemInt(hwnd, stc1, static_cast<int>(count), FALSE);
} else {
HWND hLst3 = GetDlgItem(hwnd, lst3);
int iItem = ListView_GetNextItem(hLst3, -1, LVNI_ALL | LVNI_SELECTED);
ListView_DeleteItem(hLst3, iItem);
// カウンターを更新。
const int cItems = ListView_GetItemCount(hLst3);
size_t count = 0;
for (iItem = 0; iItem < cItems; ++iItem) {
ListView_GetItemText(hLst3, iItem, 1, szText, _countof(szText));
count += _wtoi(szText);
}
SetDlgItemInt(hwnd, stc2, static_cast<int>(count), FALSE);
}
// プリセットを更新。
UpdatePreset(hwnd);
}
// 「テーマ」ダイアログで「OK」ボタンが押された。
BOOL OnOK(HWND hwnd)
{
HWND hLst2 = GetDlgItem(hwnd, lst2);
HWND hLst3 = GetDlgItem(hwnd, lst3);
xg_priority_tags.clear();
xg_forbidden_tags.clear();
XGStringW strTheme;
WCHAR szText[XG_MAX_TAGSLEN];
int cItems;
cItems = ListView_GetItemCount(hLst2);
for (int iItem = 0; iItem < cItems; ++iItem) {
ListView_GetItemText(hLst2, iItem, 0, szText, _countof(szText));
xg_priority_tags.emplace(szText);
if (strTheme.size())
strTheme += L',';
strTheme += L'+';
strTheme += szText;
}
cItems = ListView_GetItemCount(hLst3);
for (int iItem = 0; iItem < cItems; ++iItem) {
ListView_GetItemText(hLst3, iItem, 0, szText, _countof(szText));
xg_forbidden_tags.emplace(szText);
if (strTheme.size())
strTheme += L',';
strTheme += L'-';
strTheme += szText;
}
XgSetThemeString(strTheme);
return TRUE;
}
// タグの検索。
void OnEdt1(HWND hwnd) noexcept
{
WCHAR szText[64];
GetDlgItemTextW(hwnd, edt1, szText, _countof(szText));
HWND hLst1 = GetDlgItem(hwnd, lst1);
int iItem;
const int nCount = ListView_GetItemCount(hLst1);
WCHAR szItem[XG_MAX_TAGSLEN];
for (iItem = 0; iItem < nCount; ++iItem) {
ListView_GetItemText(hLst1, iItem, 0, szItem, _countof(szItem));
if (StrStr(szItem, szText)) {
constexpr auto state = LVIS_FOCUSED | LVIS_SELECTED;
ListView_SetItemState(hLst1, iItem, state, state);
ListView_EnsureVisible(hLst1, iItem, FALSE);
break;
}
}
}
// 「テーマ」ダイアログのコマンド処理。
void OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify)
{
switch (id)
{
case IDOK:
if (OnOK(hwnd)) {
EndDialog(hwnd, IDOK);
}
break;
case IDCANCEL:
EndDialog(hwnd, id);
break;
case psh1: // →
AddTag(hwnd, TRUE);
break;
case psh2: // ←
RemoveTag(hwnd, TRUE);
break;
case psh3: // →
AddTag(hwnd, FALSE);
break;
case psh4: // ←
RemoveTag(hwnd, FALSE);
break;
case psh5: // リセット
XgSetThemeString(xg_strDefaultTheme);
EndDialog(hwnd, IDOK);
break;
case edt1:
if (codeNotify == EN_CHANGE) {
OnEdt1(hwnd);
}
break;
case cmb1:
if (!xg_bUpdatingPreset) {
if (codeNotify == CBN_EDITCHANGE) {
SetPreset(hwnd);
}
if (codeNotify == CBN_SELCHANGE) {
::PostMessageW(hwnd, WM_COMMAND, IDYES, 0);
}
}
break;
case IDYES:
SetPreset(hwnd);
break;
default:
break;
}
}
// リストビューの選択状態をはっきりさせる。
LRESULT OnCustomDraw(HWND hwnd, LPNMLVCUSTOMDRAW pCustomDraw) noexcept
{
UINT uState;
HWND hwndLV = pCustomDraw->nmcd.hdr.hwndFrom;
switch (pCustomDraw->nmcd.dwDrawStage) {
case CDDS_PREPAINT:
return CDRF_NOTIFYITEMDRAW;
case CDDS_ITEMPREPAINT:
uState = ListView_GetItemState(hwndLV, pCustomDraw->nmcd.dwItemSpec, LVIS_SELECTED);
if (uState & LVIS_SELECTED) {
pCustomDraw->clrText = GetSysColor(COLOR_HIGHLIGHTTEXT);
pCustomDraw->clrTextBk = GetSysColor(COLOR_HIGHLIGHT);
return CDRF_NEWFONT;
}
break;
default:
break;
}
return CDRF_DODEFAULT;
}
LRESULT OnNotify(HWND hwnd, int idFrom, LPNMHDR pnmhdr)
{
if (pnmhdr->code == NM_CUSTOMDRAW) {
const auto ret = OnCustomDraw(hwnd, reinterpret_cast<LPNMLVCUSTOMDRAW>(pnmhdr));
return SetDlgMsgResult(hwnd, NM_CUSTOMDRAW, ret);
}
switch (idFrom) {
case lst1:
if (pnmhdr->code == NM_DBLCLK) {
AddTag(hwnd, TRUE);
}
break;
case lst2:
if (pnmhdr->code == NM_DBLCLK) {
RemoveTag(hwnd, TRUE);
} else if (pnmhdr->code == LVN_KEYDOWN) {
LV_KEYDOWN *pKeyDown = reinterpret_cast<LV_KEYDOWN *>(pnmhdr);
if (pKeyDown->wVKey == VK_DELETE)
RemoveTag(hwnd, TRUE);
}
break;
case lst3:
if (pnmhdr->code == NM_DBLCLK) {
RemoveTag(hwnd, FALSE);
} else if (pnmhdr->code == LVN_KEYDOWN) {
LV_KEYDOWN *pKeyDown = reinterpret_cast<LV_KEYDOWN *>(pnmhdr);
if (pKeyDown->wVKey == VK_DELETE)
RemoveTag(hwnd, FALSE);
}
break;
default:
break;
}
return 0;
}
// 「テーマ」ダイアログプロシージャ。
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_NOTIFY, OnNotify);
default:
break;
}
return 0;
}
void SetPreset(HWND hwnd, LPCWSTR pszText)
{
HWND hLst2 = GetDlgItem(hwnd, lst2);
HWND hLst3 = GetDlgItem(hwnd, lst3);
ListView_DeleteAllItems(hLst2);
ListView_DeleteAllItems(hLst3);
std::vector<XGStringW> strs;
LPCWSTR pch = wcschr(pszText, L':');
if (pch)
++pch;
else
pch = pszText;
XGStringW strText = pch;
xg_str_trim(strText);
xg_str_replace_all(strText, L" ", L"");
mstr_split(strs, strText, L",");
WCHAR szText[64];
for (auto& str : strs) {
if (str.empty())
continue;
bool minus = false;
if (str[0] == L'-') {
minus = true;
str = str.substr(1);
}
if (str[0] == L'+') {
str = str.substr(1);
}
LV_ITEM item = { LVIF_TEXT };
const int iItem = ListView_GetItemCount(minus ? hLst3 : hLst2);
StringCchCopyW(szText, _countof(szText), str.c_str());
item.iItem = iItem;
item.pszText = szText;
item.iSubItem = 0;
ListView_InsertItem((minus ? hLst3 : hLst2), &item);
const int count = static_cast<int>(xg_tag_histgram[str]);
StringCchPrintfW(szText, _countof(szText), L"%d", count);
item.iItem = iItem;
item.pszText = szText;
item.iSubItem = 1;
ListView_SetItem((minus ? hLst3 : hLst2), &item);
}
// 最初の項目を選択する。
LV_ITEM item;
item.mask = LVIF_STATE;
item.iItem = 0;
item.iSubItem = 0;
item.state = item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
ListView_SetItem(hLst2, &item);
item.mask = LVIF_STATE;
item.iItem = 0;
item.iSubItem = 0;
item.state = item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
ListView_SetItem(hLst3, &item);
}
void SetPreset(HWND hwnd)
{
WCHAR szText[XG_MAX_TAGSLEN];
HWND hCmb1 = GetDlgItem(hwnd, cmb1);
ComboBox_RealGetText(hCmb1, szText, _countof(szText));
SetPreset(hwnd, szText);
}
void UpdatePreset(HWND hwnd)
{
HWND hLst2 = GetDlgItem(hwnd, lst2);
HWND hLst3 = GetDlgItem(hwnd, lst3);
XGStringW str;
WCHAR szText[64];
const int nCount2 = ListView_GetItemCount(hLst2);
const int nCount3 = ListView_GetItemCount(hLst3);
for (int i = 0; i < nCount2; ++i) {
if (str.size()) {
str += L",";
}
ListView_GetItemText(hLst2, i, 0, szText, _countof(szText));
str += L"+";
str += szText;
}
for (int i = 0; i < nCount3; ++i) {
if (str.size()) {
str += L",";
}
ListView_GetItemText(hLst3, i, 0, szText, _countof(szText));
str += L"-";
str += szText;
}
// 長さ制限。
if (str.size() > XG_MAX_TAGSLEN - 1)
str.resize(XG_MAX_TAGSLEN - 1);
xg_bUpdatingPreset = TRUE;
SetDlgItemTextW(hwnd, cmb1, str.c_str());
xg_bUpdatingPreset = FALSE;
}
INT_PTR DoModal(HWND hwnd)
{
return DialogBoxDx(hwnd, IDD_THEME);
}
};