-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathXG_GenDialog.hpp
165 lines (152 loc) · 6.41 KB
/
XG_GenDialog.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
#pragma once
#include "XG_Window.hpp"
// [問題の作成]ダイアログ。
class XG_GenDialog : public XG_Dialog
{
public:
XG_GenDialog() noexcept
{
}
BOOL OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam) noexcept
{
// ダイアログを中央へ移動する。
XgCenterDialog(hwnd);
// サイズの欄を設定する。
::SetDlgItemInt(hwnd, edt1, xg_nRows, FALSE);
::SetDlgItemInt(hwnd, edt2, xg_nCols, FALSE);
// 現在の状態で好ましいと思われる単語の最大長を取得する。
const int n3 = XgGetPreferredMaxLength();
::SetDlgItemInt(hwnd, edt3, n3, FALSE);
// 自動で再計算をするか?
if (xg_bAutoRetry)
::CheckDlgButton(hwnd, chx1, BST_CHECKED);
// スマート解決か?
if (xg_bSmartResolution)
::CheckDlgButton(hwnd, chx2, BST_CHECKED);
// 答えを表示するか?
if (xg_bShowAnswerOnGenerate)
::CheckDlgButton(hwnd, chx3, BST_CHECKED);
// 自動的にPAT.txtから選択するか?
if (xg_bChoosePAT)
::CheckDlgButton(hwnd, chx4, BST_CHECKED);
// IMEをOFFにする。
{
HWND hwndCtrl;
hwndCtrl = ::GetDlgItem(hwnd, edt1);
::ImmAssociateContext(hwndCtrl, nullptr);
hwndCtrl = ::GetDlgItem(hwnd, edt2);
::ImmAssociateContext(hwndCtrl, nullptr);
}
SendDlgItemMessageW(hwnd, scr1, UDM_SETRANGE, 0, MAKELPARAM(XG_MAX_SIZE, XG_MIN_SIZE));
SendDlgItemMessageW(hwnd, scr2, UDM_SETRANGE, 0, MAKELPARAM(XG_MAX_SIZE, XG_MIN_SIZE));
SendDlgItemMessageW(hwnd, scr3, UDM_SETRANGE, 0, MAKELPARAM(XG_MAX_WORD_LEN, XG_MIN_WORD_LEN));
if (::IsDlgButtonChecked(hwnd, chx2) == BST_CHECKED) {
EnableWindow(GetDlgItem(hwnd, stc1), TRUE);
EnableWindow(GetDlgItem(hwnd, edt3), TRUE);
EnableWindow(GetDlgItem(hwnd, scr3), TRUE);
} else {
EnableWindow(GetDlgItem(hwnd, stc1), FALSE);
EnableWindow(GetDlgItem(hwnd, edt3), FALSE);
EnableWindow(GetDlgItem(hwnd, scr3), FALSE);
}
return TRUE;
}
void OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify)
{
int n1, n2, n3;
switch (id)
{
case IDOK:
// サイズの欄をチェックする。
n1 = static_cast<int>(::GetDlgItemInt(hwnd, edt1, nullptr, FALSE));
if (n1 < XG_MIN_SIZE || n1 > XG_MAX_SIZE) {
::SendDlgItemMessageW(hwnd, edt1, EM_SETSEL, 0, -1);
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_ENTERINT), nullptr, MB_ICONERROR);
::SetFocus(::GetDlgItem(hwnd, edt1));
return;
}
n2 = static_cast<int>(::GetDlgItemInt(hwnd, edt2, nullptr, FALSE));
if (n2 < XG_MIN_SIZE || n2 > XG_MAX_SIZE) {
::SendDlgItemMessageW(hwnd, edt2, EM_SETSEL, 0, -1);
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_ENTERINT), nullptr, MB_ICONERROR);
::SetFocus(::GetDlgItem(hwnd, edt2));
return;
}
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;
// 自動で再計算をするか?
xg_bAutoRetry = (::IsDlgButtonChecked(hwnd, chx1) == BST_CHECKED);
// スマート解決か?
xg_bSmartResolution = (::IsDlgButtonChecked(hwnd, chx2) == BST_CHECKED);
// 答えを表示するか?
xg_bShowAnswerOnGenerate = (::IsDlgButtonChecked(hwnd, chx3) == BST_CHECKED);
// 自動的にPAT.txtから選択するか?
xg_bChoosePAT = (::IsDlgButtonChecked(hwnd, chx4) == BST_CHECKED);
// 初期化する。
{
xg_bSolved = false;
xg_bCheckingAnswer = false;
xg_bShowAnswer = false;
xg_xword.ResetAndSetSize(n1, n2);
xg_nRows = n1;
xg_nCols = n2;
xg_vVertInfo.clear();
xg_vHorzInfo.clear();
xg_vMarks.clear();
xg_vMarkedCands.clear();
// 偶数行数で黒マス線対称(タテ)の場合は連黒禁は不可。
if (!(xg_nRows & 1) && (xg_nRules & RULE_LINESYMMETRYV) && (xg_nRules & RULE_DONTDOUBLEBLACK)) {
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_EVENROWLINESYMV), nullptr, MB_ICONERROR);
break;
}
// 偶数列数で黒マス線対称(ヨコ)の場合は連黒禁は不可。
if (!(xg_nCols & 1) && (xg_nRules & RULE_LINESYMMETRYH) && (xg_nRules & RULE_DONTDOUBLEBLACK)) {
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_EVENCOLLINESYMH), nullptr, MB_ICONERROR);
break;
}
}
// ダイアログを閉じる。
::EndDialog(hwnd, IDOK);
break;
case IDCANCEL:
// ダイアログを閉じる。
::EndDialog(hwnd, IDCANCEL);
break;
case chx2:
if (::IsDlgButtonChecked(hwnd, chx2) == BST_CHECKED) {
EnableWindow(GetDlgItem(hwnd, stc1), TRUE);
EnableWindow(GetDlgItem(hwnd, edt3), TRUE);
EnableWindow(GetDlgItem(hwnd, scr3), TRUE);
} else {
EnableWindow(GetDlgItem(hwnd, stc1), FALSE);
EnableWindow(GetDlgItem(hwnd, edt3), FALSE);
EnableWindow(GetDlgItem(hwnd, scr3), FALSE);
}
break;
default:
break;
}
}
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);
default:
break;
}
return 0;
}
INT_PTR DoModal(HWND hwnd)
{
return DialogBoxDx(hwnd, IDD_CREATE);
}
};