forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
message_type.h
60 lines (49 loc) · 2.03 KB
/
message_type.h
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
// Aseprite UI Library
// Copyright (C) 2019-2023 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_MESSAGE_TYPE_H_INCLUDED
#define UI_MESSAGE_TYPE_H_INCLUDED
#pragma once
namespace ui {
// Message types.
enum MessageType {
// General messages.
kOpenMessage, // Windows is open.
kCloseMessage, // Windows is closed.
kCloseDisplayMessage, // The user wants to close the entire application.
kResizeDisplayMessage,
kPaintMessage, // Widget needs be repainted.
kTimerMessage, // A timer timeout.
kDropFilesMessage, // Drop files in the manager.
kWinMoveMessage, // Window movement.
// Keyboard related messages.
kKeyDownMessage, // When a any key is pressed.
kKeyUpMessage, // When a any key is released.
kFocusEnterMessage, // Widget gets the focus.
kFocusLeaveMessage, // Widget losts the focus.
// Mouse related messages.
kMouseDownMessage, // User makes click inside a widget.
kMouseUpMessage, // User releases mouse button in a widget.
kDoubleClickMessage, // User makes double click in some widget.
kMouseEnterMessage, // A widget gets mouse pointer.
kMouseLeaveMessage, // A widget losts mouse pointer.
kMouseMoveMessage, // User moves the mouse on some widget.
kSetCursorMessage, // A widget needs to setup the mouse cursor.
kMouseWheelMessage, // User moves the wheel.
// Touch related messages.
kTouchMagnifyMessage,
// TODO Drag'n'drop messages...
// k...DndMessage
// Call a generic function when we are processing the queue of
// messages. Used to process an laf-os event in the same order
// they were received in some cases (e.g. mouse leave/enter).
kCallbackMessage,
// User widgets.
kFirstRegisteredMessage,
kLastRegisteredMessage = 0x7fffffff
};
} // namespace ui
#endif // UI_MESSAGE_TYPE_H_INCLUDED