forked from HACKERALERT/imgui-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MouseCursorFlags.go
25 lines (24 loc) · 1019 Bytes
/
MouseCursorFlags.go
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
package imgui
// Enumeration for MouseCursor()
// User code may request binding to display given cursor by calling SetMouseCursor(), which is why we have some cursors that are marked unused here
const (
// MouseCursorNone no mouse cursor
MouseCursorNone = -1
// MouseCursorArrow standard arrow mouse cursor
MouseCursorArrow = 0
// MouseCursorTextInput when hovering over InputText, etc.
MouseCursorTextInput = 1
// MouseCursorResizeAll (Unused by imgui functions)
MouseCursorResizeAll = 2
// MouseCursorResizeNS when hovering over an horizontal border
MouseCursorResizeNS = 3
// MouseCursorResizeEW when hovering over a vertical border or a column
MouseCursorResizeEW = 4
// MouseCursorResizeNESW when hovering over the bottom-left corner of a window
MouseCursorResizeNESW = 5
// MouseCursorResizeNWSE when hovering over the bottom-right corner of a window
MouseCursorResizeNWSE = 6
// MouseCursorHand (Unused by imgui functions. Use for e.g. hyperlinks)
MouseCursorHand = 7
MouseCursorCount = 8
)