forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup_window.cpp
267 lines (224 loc) · 6.82 KB
/
popup_window.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
// Aseprite UI Library
// Copyright (C) 2020-2021 Igara Studio S.A.
// Copyright (C) 2001-2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gfx/size.h"
#include "ui/graphics.h"
#include "ui/intern.h"
#include "ui/size_hint_event.h"
#include "ui/theme.h"
#include "ui/ui.h"
namespace ui {
using namespace gfx;
PopupWindow::PopupWindow(const std::string& text,
const ClickBehavior clickBehavior,
const EnterBehavior enterBehavior,
const bool withCloseButton)
: Window(text.empty() ? WithoutTitleBar: WithTitleBar, text)
, m_clickBehavior(clickBehavior)
, m_enterBehavior(enterBehavior)
{
setSizeable(false);
setMoveable(false);
setWantFocus(false);
setAlign(LEFT | TOP);
if (!withCloseButton) {
// Remove close button
for (auto child : children()) {
if (child->type() == kWindowCloseButtonWidget) {
delete child;
break;
}
}
}
initTheme();
}
PopupWindow::~PopupWindow()
{
stopFilteringMessages();
}
void PopupWindow::setHotRegion(const gfx::Region& screenRegion)
{
startFilteringMessages();
m_hotRegion = screenRegion;
}
void PopupWindow::setClickBehavior(ClickBehavior behavior)
{
m_clickBehavior = behavior;
}
void PopupWindow::setEnterBehavior(EnterBehavior behavior)
{
m_enterBehavior = behavior;
}
void PopupWindow::makeFloating()
{
stopFilteringMessages();
setMoveable(true);
m_fixed = false;
onMakeFloating();
}
void PopupWindow::makeFixed()
{
startFilteringMessages();
setMoveable(false);
m_fixed = true;
onMakeFixed();
}
bool PopupWindow::onProcessMessage(Message* msg)
{
switch (msg->type()) {
// There are cases where startFilteringMessages() is called when a
// kCloseMessage for this same PopupWindow is enqueued. Processing
// the kOpenMessage we ensure that the popup will be filtering
// messages if it's needed when it's visible (as kCloseMessage and
// kOpenMessage must be enqueued in the correct order).
case kOpenMessage:
if (!isMoveable())
startFilteringMessages();
break;
case kCloseMessage:
stopFilteringMessages();
break;
case kMouseLeaveMessage:
if (m_hotRegion.isEmpty() && m_fixed)
closeWindow(nullptr);
break;
case kKeyDownMessage:
if (m_filtering) {
KeyMessage* keymsg = static_cast<KeyMessage*>(msg);
KeyScancode scancode = keymsg->scancode();
if (scancode == kKeyEsc)
closeWindow(nullptr);
if (m_enterBehavior == EnterBehavior::CloseOnEnter &&
(scancode == kKeyEnter ||
scancode == kKeyEnterPad)) {
closeWindow(this);
return true;
}
// If the message came from a filter, we don't send it back to
// the default Window processing (which will send the message
// to the Manager). In this way, the focused children can
// process the kKeyDownMessage.
if (msg->fromFilter())
return false;
}
break;
case kMouseDownMessage:
if (m_filtering && msg->display()) {
auto mouseMsg = static_cast<const MouseMessage*>(msg);
gfx::Point screenPos = mouseMsg->screenPosition();
switch (m_clickBehavior) {
// If the user click outside the window, we have to close
// the tooltip window.
case ClickBehavior::CloseOnClickInOtherWindow: {
Widget* picked = pickFromScreenPos(screenPos);
if (!picked || picked->window() != this) {
closeWindow(nullptr);
}
break;
}
case ClickBehavior::CloseOnClickOutsideHotRegion: {
// Convert the mousePos from display() coordinates to screen
if (!m_hotRegion.contains(screenPos)) {
closeWindow(nullptr);
}
break;
}
}
}
break;
case kMouseMoveMessage:
if (m_fixed &&
!m_hotRegion.isEmpty() &&
manager()->getCapture() == nullptr &&
msg->display()) {
gfx::Point mousePos = static_cast<MouseMessage*>(msg)->position();
gfx::Point screenPos = msg->display()->nativeWindow()->pointToScreen(mousePos);
// If the mouse is outside the hot-region we have to close the
// window.
if (!m_hotRegion.contains(screenPos))
closeWindow(nullptr);
}
break;
}
return Window::onProcessMessage(msg);
}
void PopupWindow::onHitTest(HitTestEvent& ev)
{
Window::onHitTest(ev);
Widget* picked = manager()->pick(ev.point());
if (picked) {
WidgetType type = picked->type();
if (type == kWindowWidget && picked == this) {
if (isSizeable() && (ev.hit() == HitTestBorderNW ||
ev.hit() == HitTestBorderN ||
ev.hit() == HitTestBorderNE ||
ev.hit() == HitTestBorderE ||
ev.hit() == HitTestBorderSE ||
ev.hit() == HitTestBorderS ||
ev.hit() == HitTestBorderSW ||
ev.hit() == HitTestBorderW)) {
// Use the hit value from Window::onHitTest()
return;
}
else {
ev.setHit(isMoveable() ? HitTestCaption: HitTestClient);
}
}
else if (type == kBoxWidget ||
type == kLabelWidget ||
type == kLinkLabelWidget ||
type == kGridWidget ||
type == kSeparatorWidget) {
ev.setHit(isMoveable() ? HitTestCaption: HitTestClient);
}
}
}
void PopupWindow::startFilteringMessages()
{
if (!m_filtering) {
m_filtering = true;
Manager* manager = Manager::getDefault();
manager->addMessageFilter(kMouseMoveMessage, this);
manager->addMessageFilter(kMouseDownMessage, this);
manager->addMessageFilter(kKeyDownMessage, this);
}
}
void PopupWindow::stopFilteringMessages()
{
if (m_filtering) {
m_filtering = false;
Manager* manager = Manager::getDefault();
manager->removeMessageFilter(kMouseMoveMessage, this);
manager->removeMessageFilter(kMouseDownMessage, this);
manager->removeMessageFilter(kKeyDownMessage, this);
}
}
void PopupWindow::onMakeFloating()
{
// Do nothing
}
void PopupWindow::onMakeFixed()
{
// Do nothing
}
TransparentPopupWindow::TransparentPopupWindow(ClickBehavior clickBehavior)
: PopupWindow("", clickBehavior)
{
setTransparent(true);
initTheme();
}
void TransparentPopupWindow::onInitTheme(InitThemeEvent& ev)
{
PopupWindow::onInitTheme(ev);
// TODO fix this, if we use alpha=0 (gfx::ColorNone), we get
// "window_face" color as background the transparent popup window.
//setBgColor(gfx::ColorNone);
setBgColor(gfx::rgba(0, 0, 0, 1));
}
} // namespace ui