forked from z1dev/zkanji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dialogwindow.cpp
286 lines (230 loc) · 6.91 KB
/
dialogwindow.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
/*
** Copyright 2007-2013, 2017-2018 Sólyom Zoltán
** This file is part of zkanji, a free software released under the terms of the
** GNU General Public License version 3. See the file LICENSE for details.
**/
#include <QPushButton>
#include <QtEvents>
#include <QDesktopWidget>
#include <QApplication>
#include <QWindow>
#include "dialogwindow.h"
#include <popupdict.h>
#include <popupkanjisearch.h>
#ifdef Q_OS_LINUX
#include "stayontop_x11.h"
#endif
#ifndef NDEBUG
#ifndef _DEBUG
#define NDEBUG
#define NDEBUG_ADDED_SEPARATELY
#endif
#endif
#include <cassert>
#ifdef NDEBUG_ADDED_SEPARATELY
#undef NDEBUG_ADDED_SEPARATELY
#undef NDEBUG
#endif
//-------------------------------------------------------------
DialogWindow::DialogWindow(QWidget *parent, bool resizing) : base(parent, parent != nullptr ? Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint | (resizing ? Qt::WindowMinMaxButtonsHint : Qt::MSWindowsFixedSizeDialogHint) | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint |
(!parent->windowFlags().testFlag(Qt::WindowStaysOnTopHint) ? (Qt::WindowType)0 : Qt::WindowStaysOnTopHint)
: resizing ? Qt::WindowFlags() : (Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint | Qt::MSWindowsFixedSizeDialogHint)), loop(nullptr), res(ModalResult::Cancel)
{
setAttribute(Qt::WA_QuitOnClose, false);
setWindowModality(Qt::NonModal);
}
DialogWindow::~DialogWindow()
{
// If this fails it's programmer error. Must call base::closeEvent to stop the loop.
assert(!loop || !loop->isRunning());
//{
// loop->quit();
// emit finished(res);
//}
}
ModalResult DialogWindow::showModal()
{
setWindowModality(Qt::ApplicationModal);
ModalResult r = ModalResult::Cancel;
connect(this, &DialogWindow::finished, [&r](ModalResult res) { r = res; });
show();
return r;
}
void DialogWindow::show()
{
base::show();
if (windowModality() == Qt::NonModal || loop != nullptr)
return;
loop = new QEventLoop(this);
loop->exec();
}
void DialogWindow::modalClose(ModalResult result)
{
if (!loop || !loop->isRunning())
{
res = result;
close();
return;
}
res = result;
close();
}
ModalResult DialogWindow::modalResult() const
{
return res;
}
void DialogWindow::closeOk()
{
modalClose(ModalResult::Ok);
}
void DialogWindow::closeCancel()
{
modalClose(ModalResult::Cancel);
}
void DialogWindow::closeYes()
{
modalClose(ModalResult::Yes);
}
void DialogWindow::closeNo()
{
modalClose(ModalResult::No);
}
void DialogWindow::closeIgnore()
{
modalClose(ModalResult::Ignore);
}
void DialogWindow::closeAbort()
{
modalClose(ModalResult::Abort);
}
void DialogWindow::closeSave()
{
modalClose(ModalResult::Save);
}
void DialogWindow::closeResume()
{
modalClose(ModalResult::Resume);
}
void DialogWindow::closeSuspend()
{
modalClose(ModalResult::Suspend);
}
void DialogWindow::closeStart()
{
modalClose(ModalResult::Start);
}
void DialogWindow::closeStop()
{
modalClose(ModalResult::Stop);
}
void DialogWindow::closeError()
{
modalClose(ModalResult::Error);
}
bool DialogWindow::event(QEvent *e)
{
#ifdef Q_OS_LINUX
if (e->type() == QEvent::WinIdChange)
{
bool r = base::event(e);
if (windowFlags().testFlag(Qt::WindowStaysOnTopHint))
x11_window_set_on_top(this, true);
return r;
}
#endif
return base::event(e);
}
void DialogWindow::closeEvent(QCloseEvent *e)
{
if (!e->isAccepted())
{
res = ModalResult::Cancel;
return;
}
base::closeEvent(e);
if (loop && loop->isRunning())
{
loop->quit();
emit finished(res);
}
}
void DialogWindow::keyPressEvent(QKeyEvent *e)
{
/* Some parts are taken directly from QDialog::keyPressEvent() */
#ifdef Q_OS_MAC
if (e->modifiers() == Qt::ControlModifier && e->key() == Qt::Key_Period)
{
close();
return;
}
#endif
if (!e->modifiers() || (e->modifiers() & Qt::KeypadModifier && (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return)))
{
switch (e->key())
{
case Qt::Key_Enter:
case Qt::Key_Return: {
// If a button is focused, it'll be clicked. If no button is focused, the first
// button with the Default property set to true is clicked. If no such button is
// found, the key press is ignored.
QList<QPushButton*> list = findChildren<QPushButton*>();
QPushButton *b = nullptr;
for (QPushButton *btn : list)
{
if (btn->window() != this || !btn->isVisibleTo(this))
continue;
if (btn->hasFocus())
{
b = btn;
break;
}
if (b == nullptr && btn->isDefault())
b = btn;
}
if (b != nullptr)
b->click();
break;
}
case Qt::Key_Escape:
close();
break;
}
}
base::keyPressEvent(e);
}
void DialogWindow::showEvent(QShowEvent *e)
{
if (!e->spontaneous() && !testAttribute(Qt::WA_Moved))
{
Qt::WindowStates state = windowState();
QWidget *w = parentWidget() == nullptr ? nullptr : parentWidget()->window();
// Position the window
// Part of Qt still in development. Uncomment when QPA becomes available (if ever.)
//if (const QPlatformTheme *theme = QGuiApplicationPrivate::platformTheme())
// if (theme->themeHint(QPlatformTheme::WindowAutoPlacement).toBool())
// return;
// Center window above the parent or if the parent is the locked popup dictionary or
// popup kanji search, center of screen.
int screen = w != nullptr ? qApp->desktop()->screenNumber(w) : qApp->desktop()->isVirtualDesktop() ? qApp->desktop()->screenNumber(QCursor::pos()) : qApp->desktop()->screenNumber(this);
QRect scr = qApp->desktop()->availableGeometry(screen);
QPoint mid;
if (w != nullptr && w != PopupDictionary::getInstance() && w != PopupKanjiSearch::getInstance())
mid = w->frameGeometry().center();
else
mid = scr.center();
if (w != nullptr)
screen = qApp->desktop()->screenNumber(w);
if (QWindow *h = windowHandle())
h->setScreen(QGuiApplication::screens().at(screen));
QRect fg = frameGeometry();
move(
std::max(scr.left(), std::min(mid.x() - fg.width() / 2, scr.left() + scr.width() - fg.width())),
std::max(scr.top(), std::min(mid.y() - fg.height() / 2, scr.top() + scr.height() - fg.height()))
);
// End window positioning.
setAttribute(Qt::WA_Moved, false);
if (state != windowState())
setWindowState(state);
}
}
//-------------------------------------------------------------