-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
XG_SeqPatGenDialog.hpp
195 lines (182 loc) · 6.96 KB
/
XG_SeqPatGenDialog.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
#pragma once
#include "XG_Window.hpp"
// 保存先のパスのリスト。
extern std::deque<XGStringW> xg_dirs_save_to;
// 生成する数。
extern INT xg_nNumberToGenerate;
// 保存先。
extern WCHAR xg_szDir[MAX_PATH];
// 保存先指定。
INT CALLBACK XgBrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM /*lParam*/, LPARAM /*lpData*/) noexcept;
// [黒マスパターンの連続作成]ダイアログ。
class XG_SeqPatGenDialog : public XG_Dialog
{
public:
XG_SeqPatGenDialog() noexcept
{
}
BOOL OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam)
{
// ダイアログを中央へ移動する。
XgCenterDialog(hwnd);
// ドラッグ&ドロップを有効にする。
DragAcceptFiles(hwnd, TRUE);
// 現在の状態で好ましいと思われる単語の最大長を取得する。
const auto n3 = XgGetPreferredMaxLength();
::SetDlgItemInt(hwnd, edt3, n3, FALSE);
// 保存先を設定する。
COMBOBOXEXITEMW item;
WCHAR szFile[MAX_PATH];
for (const auto& dir : xg_dirs_save_to) {
item.mask = CBEIF_TEXT;
item.iItem = -1;
StringCchCopy(szFile, _countof(szFile), dir.data());
item.pszText = szFile;
item.cchTextMax = -1;
::SendDlgItemMessageW(hwnd, cmb2, CBEM_INSERTITEMW, 0,
reinterpret_cast<LPARAM>(&item));
}
// コンボボックスの最初の項目を選択する。
::SendDlgItemMessageW(hwnd, cmb2, CB_SETCURSEL, 0, 0);
// 生成する数を設定する。
::SetDlgItemInt(hwnd, edt4, xg_nNumberToGenerate, FALSE);
// IMEをOFFにする。
{
HWND hwndCtrl = ::GetDlgItem(hwnd, edt3);
::ImmAssociateContext(hwndCtrl, nullptr);
hwndCtrl = ::GetDlgItem(hwnd, edt4);
::ImmAssociateContext(hwndCtrl, nullptr);
}
SendDlgItemMessageW(hwnd, scr3, UDM_SETRANGE, 0, MAKELPARAM(XG_MAX_WORD_LEN, XG_MIN_WORD_LEN));
SendDlgItemMessageW(hwnd, scr4, UDM_SETRANGE, 0, MAKELPARAM(100, 1));
return TRUE;
}
void OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify)
{
int n3;
WCHAR szFile[MAX_PATH];
switch (id)
{
case IDOK:
n3 = static_cast<int>(::GetDlgItemInt(hwnd, edt3, nullptr, FALSE));
if (n3 < XG_MIN_WORD_LEN || n3 > XG_MAX_WORD_LEN) {
::SendDlgItemMessageW(hwnd, edt3, EM_SETSEL, 0, -1);
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_ENTERINT), nullptr, MB_ICONERROR);
::SetFocus(::GetDlgItem(hwnd, edt3));
return;
}
xg_nMaxWordLen = n3;
// 保存先のパス名を取得する。
::GetDlgItemTextW(hwnd, cmb2, szFile, _countof(szFile));
{
const auto attrs = ::GetFileAttributesW(szFile);
if (attrs == 0xFFFFFFFF || !(attrs & FILE_ATTRIBUTE_DIRECTORY)) {
// パスがなければ作成する。
if (!XgMakePathW(szFile)) {
// 作成に失敗。
::SendDlgItemMessageW(hwnd, cmb2, CB_SETEDITSEL, 0, -1);
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_STORAGEINVALID), nullptr, MB_ICONERROR);
::SetFocus(::GetDlgItem(hwnd, cmb2));
return;
}
}
}
// 保存先をセットする。
{
XGStringW strDir = szFile;
xg_str_trim(strDir);
{
auto end = xg_dirs_save_to.end();
for (auto it = xg_dirs_save_to.begin(); it != end; it++) {
if (_wcsicmp((*it).data(), strDir.data()) == 0) {
xg_dirs_save_to.erase(it);
break;
}
}
xg_dirs_save_to.emplace_front(strDir);
}
}
// 問題の数を取得する。
{
// 無制限ではない。
BOOL bTranslated;
xg_nNumberToGenerate = ::GetDlgItemInt(hwnd, edt4, &bTranslated, FALSE);
if (!bTranslated || xg_nNumberToGenerate == 0) {
::SendDlgItemMessageW(hwnd, edt4, EM_SETSEL, 0, -1);
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_ENTERPOSITIVE), nullptr, MB_ICONERROR);
::SetFocus(::GetDlgItem(hwnd, edt4));
return;
}
}
// 初期化する。
{
xg_bSolved = false;
xg_bCheckingAnswer = false;
xg_bShowAnswer = false;
xg_xword.clear();
xg_vVertInfo.clear();
xg_vHorzInfo.clear();
xg_vMarks.clear();
xg_vMarkedCands.clear();
}
// ダイアログを閉じる。
::EndDialog(hwnd, IDOK);
break;
case IDCANCEL:
// ダイアログを閉じる。
::EndDialog(hwnd, IDCANCEL);
break;
case psh2:
// ユーザーに保存先の場所を問い合わせる。
{
BROWSEINFOW bi;
ZeroMemory(&bi, sizeof(bi));
bi.hwndOwner = hwnd;
bi.lpszTitle = XgLoadStringDx1(IDS_CROSSSTORAGE);
bi.ulFlags = BIF_RETURNONLYFSDIRS;
bi.lpfn = XgBrowseCallbackProc;
::GetDlgItemTextW(hwnd, cmb2, xg_szDir, _countof(xg_szDir));
{
LPITEMIDLIST pidl = ::SHBrowseForFolderW(&bi);
if (pidl) {
// パスをコンボボックスに設定。
::SHGetPathFromIDListW(pidl, szFile);
::SetDlgItemTextW(hwnd, cmb2, szFile);
::CoTaskMemFree(pidl);
}
}
}
break;
default:
break;
}
}
// 何かがドロップされた。
void OnDropFiles(HWND hwnd, HDROP hdrop) noexcept
{
WCHAR szDir[MAX_PATH];
DragQueryFile(hdrop, 0, szDir, _countof(szDir));
if (PathIsDirectoryW(szDir)) // フォルダだった。
{
::SetDlgItemTextW(hwnd, cmb2, szDir);
}
DragFinish(hdrop);
}
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_DROPFILES, OnDropFiles);
default:
break;
}
return 0;
}
INT_PTR DoModal(HWND hwnd)
{
return DialogBoxDx(hwnd, IDD_SEQPATGEN);
}
};