forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
message_type.h
54 lines (44 loc) · 1.76 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
// Aseprite UI Library
// Copyright (C) 2001-2016 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
// User widgets.
kFirstRegisteredMessage,
kLastRegisteredMessage = 0x7fffffff
};
} // namespace ui
#endif // UI_MESSAGE_TYPE_H_INCLUDED