forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
system.cpp
361 lines (304 loc) · 8.56 KB
/
system.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
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
// Aseprite UI Library
// Copyright (C) 2001-2018 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 "ui/system.h"
#include "base/thread.h"
#include "gfx/point.h"
#include "she/display.h"
#include "she/surface.h"
#include "she/system.h"
#include "ui/clipboard_delegate.h"
#include "ui/cursor.h"
#include "ui/intern.h"
#include "ui/intern.h"
#include "ui/manager.h"
#include "ui/overlay.h"
#include "ui/overlay_manager.h"
#include "ui/scale.h"
#include "ui/theme.h"
#include "ui/widget.h"
namespace ui {
// This is used to check if calls to UI layer are made from the non-UI
// thread. (Which might be catastrofic.)
base::thread::native_handle_type main_gui_thread;
// Current mouse cursor type.
static CursorType mouse_cursor_type = kOutsideDisplay;
static const Cursor* mouse_cursor_custom = nullptr;
static const Cursor* mouse_cursor = nullptr;
static she::Display* mouse_display = nullptr;
static Overlay* mouse_cursor_overlay = nullptr;
static bool use_native_mouse_cursor = true;
static bool support_native_custom_cursor = false;
// Mouse information (button and position).
static volatile MouseButtons m_buttons;
static gfx::Point m_mouse_pos;
static int mouse_cursor_scale = 1;
static int mouse_scares = 0;
static void update_mouse_overlay(const Cursor* cursor)
{
mouse_cursor = cursor;
if (mouse_cursor && mouse_scares == 0) {
if (!mouse_cursor_overlay) {
mouse_cursor_overlay = new Overlay(
mouse_cursor->getSurface(),
get_mouse_position(),
Overlay::MouseZOrder);
OverlayManager::instance()->addOverlay(mouse_cursor_overlay);
}
else {
mouse_cursor_overlay->setSurface(mouse_cursor->getSurface());
update_cursor_overlay();
}
}
else if (mouse_cursor_overlay) {
OverlayManager::instance()->removeOverlay(mouse_cursor_overlay);
mouse_cursor_overlay->setSurface(NULL);
delete mouse_cursor_overlay;
mouse_cursor_overlay = NULL;
}
}
static bool update_custom_native_cursor(const Cursor* cursor)
{
bool result = false;
// Check if we can use a custom native mouse in this platform
if (!use_native_mouse_cursor &&
support_native_custom_cursor &&
mouse_display) {
if (cursor) {
result = mouse_display->setNativeMouseCursor(
// The surface is already scaled by guiscale()
cursor->getSurface(),
cursor->getFocus(),
// We scale the cursor by the she::Display scale
mouse_display->scale() * mouse_cursor_scale);
}
else if (mouse_cursor_type == kOutsideDisplay) {
result = mouse_display->setNativeMouseCursor(she::kArrowCursor);
}
else {
result = mouse_display->setNativeMouseCursor(she::kNoCursor);
}
}
return result;
}
static void update_mouse_cursor()
{
she::NativeCursor nativeCursor = she::kNoCursor;
const Cursor* cursor = nullptr;
if (use_native_mouse_cursor ||
mouse_cursor_type == kOutsideDisplay) {
switch (mouse_cursor_type) {
case ui::kOutsideDisplay:
nativeCursor = she::kArrowCursor;
break;
case ui::kNoCursor: break;
case ui::kArrowCursor:
case ui::kArrowPlusCursor:
nativeCursor = she::kArrowCursor;
break;
case ui::kCrosshairCursor:
nativeCursor = she::kCrosshairCursor;
break;
case ui::kForbiddenCursor:
nativeCursor = she::kForbiddenCursor;
break;
case ui::kHandCursor:
nativeCursor = she::kLinkCursor;
break;
case ui::kScrollCursor:
case ui::kMoveCursor:
nativeCursor = she::kMoveCursor;
break;
case ui::kSizeNSCursor: nativeCursor = she::kSizeNSCursor; break;
case ui::kSizeWECursor: nativeCursor = she::kSizeWECursor; break;
case ui::kSizeNCursor: nativeCursor = she::kSizeNCursor; break;
case ui::kSizeNECursor: nativeCursor = she::kSizeNECursor; break;
case ui::kSizeECursor: nativeCursor = she::kSizeECursor; break;
case ui::kSizeSECursor: nativeCursor = she::kSizeSECursor; break;
case ui::kSizeSCursor: nativeCursor = she::kSizeSCursor; break;
case ui::kSizeSWCursor: nativeCursor = she::kSizeSWCursor; break;
case ui::kSizeWCursor: nativeCursor = she::kSizeWCursor; break;
case ui::kSizeNWCursor: nativeCursor = she::kSizeNWCursor; break;
}
}
// Set native cursor
if (mouse_display) {
bool ok = mouse_display->setNativeMouseCursor(nativeCursor);
// It looks like the specific native cursor is not supported,
// so we can should use the internal overlay (even when we
// have use_native_mouse_cursor flag enabled).
if (!ok)
nativeCursor = she::kNoCursor;
}
// Use a custom cursor
if (nativeCursor == she::kNoCursor &&
mouse_cursor_type != ui::kOutsideDisplay) {
if (get_theme() && mouse_cursor_type != ui::kCustomCursor)
cursor = get_theme()->getStandardCursor(mouse_cursor_type);
else
cursor = mouse_cursor_custom;
}
// Try to use a custom native cursor if it's possible
if (!update_custom_native_cursor(cursor)) {
// Or an overlay as last resource
update_mouse_overlay(cursor);
}
}
static UISystem* g_instance = nullptr;
// static
UISystem* UISystem::instance()
{
return g_instance;
}
UISystem::UISystem()
: m_clipboardDelegate(nullptr)
{
ASSERT(!g_instance);
g_instance = this;
main_gui_thread = base::this_thread::native_handle();
mouse_cursor_type = kOutsideDisplay;
support_native_custom_cursor =
((she::instance() &&
(int(she::instance()->capabilities()) &
int(she::Capabilities::CustomNativeMouseCursor))) ?
true: false);
details::initWidgets();
}
UISystem::~UISystem()
{
OverlayManager::destroyInstance();
// finish theme
set_theme(nullptr, guiscale());
details::exitWidgets();
_internal_set_mouse_display(nullptr);
if (!update_custom_native_cursor(nullptr))
update_mouse_overlay(nullptr);
ASSERT(g_instance == this);
g_instance = nullptr;
}
void _internal_set_mouse_display(she::Display* display)
{
CursorType cursor = get_mouse_cursor();
set_mouse_cursor(kNoCursor);
mouse_display = display;
if (display)
set_mouse_cursor(cursor); // Restore mouse cursor
}
int display_w()
{
if (mouse_display)
return mouse_display->width() / mouse_display->scale();
else
return 1;
}
int display_h()
{
if (mouse_display)
return mouse_display->height() / mouse_display->scale();
else
return 1;
}
void set_clipboard_text(const std::string& text)
{
ASSERT(g_instance);
ClipboardDelegate* delegate = g_instance->clipboardDelegate();
if (delegate)
delegate->setClipboardText(text);
}
bool get_clipboard_text(std::string& text)
{
ASSERT(g_instance);
ClipboardDelegate* delegate = g_instance->clipboardDelegate();
if (delegate)
return delegate->getClipboardText(text);
else
return false;
}
void update_cursor_overlay()
{
if (mouse_cursor_overlay != NULL && mouse_scares == 0) {
gfx::Point newPos =
get_mouse_position() - mouse_cursor->getFocus();
if (newPos != mouse_cursor_overlay->position()) {
mouse_cursor_overlay->moveOverlay(newPos);
}
}
}
void set_use_native_cursors(bool state)
{
use_native_mouse_cursor = state;
update_mouse_cursor();
}
CursorType get_mouse_cursor()
{
return mouse_cursor_type;
}
void set_mouse_cursor(CursorType type, const Cursor* cursor)
{
if (mouse_cursor_type == type &&
mouse_cursor_custom == cursor)
return;
mouse_cursor_type = type;
mouse_cursor_custom = cursor;
update_mouse_cursor();
}
void set_mouse_cursor_scale(const int newScale)
{
mouse_cursor_scale = newScale;
update_mouse_cursor();
}
void hide_mouse_cursor()
{
ASSERT(mouse_scares >= 0);
mouse_scares++;
}
void show_mouse_cursor()
{
ASSERT(mouse_scares > 0);
mouse_scares--;
if (mouse_scares == 0)
update_mouse_cursor();
}
void _internal_no_mouse_position()
{
if (!update_custom_native_cursor(nullptr))
update_mouse_overlay(nullptr);
}
void _internal_set_mouse_position(const gfx::Point& newPos)
{
m_mouse_pos = newPos;
}
void _internal_set_mouse_buttons(MouseButtons buttons)
{
m_buttons = buttons;
}
MouseButtons _internal_get_mouse_buttons()
{
return m_buttons;
}
const gfx::Point& get_mouse_position()
{
return m_mouse_pos;
}
void set_mouse_position(const gfx::Point& newPos)
{
if (mouse_display)
mouse_display->setMousePosition(newPos);
_internal_set_mouse_position(newPos);
}
bool is_ui_thread()
{
return (main_gui_thread == base::this_thread::native_handle());
}
#ifdef _DEBUG
void assert_ui_thread()
{
ASSERT(is_ui_thread());
}
#endif
} // namespace ui