forked from Aquietorange/GoMiniblink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwkeCursorType.go
More file actions
50 lines (48 loc) · 1.2 KB
/
wkeCursorType.go
File metadata and controls
50 lines (48 loc) · 1.2 KB
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
package GoMiniblink
type wkeCursorType int
const (
wkeCursorType_Pointer wkeCursorType = iota
wkeCursorType_Cross
wkeCursorType_Hand
wkeCursorType_IBeam
wkeCursorType_Wait
wkeCursorType_Help
wkeCursorType_EastResize
wkeCursorType_NorthResize
wkeCursorType_NorthEastResize
wkeCursorType_NorthWestResize
wkeCursorType_SouthResize
wkeCursorType_SouthEastResize
wkeCursorType_SouthWestResize
wkeCursorType_WestResize
wkeCursorType_NorthSouthResize
wkeCursorType_EastWestResize
wkeCursorType_NorthEastSouthWestResize
wkeCursorType_NorthWestSouthEastResize
wkeCursorType_ColumnResize
wkeCursorType_RowResize
wkeCursorType_MiddlePanning
wkeCursorType_EastPanning
wkeCursorType_NorthPanning
wkeCursorType_NorthEastPanning
wkeCursorType_NorthWestPanning
wkeCursorType_SouthPanning
wkeCursorType_SouthEastPanning
wkeCursorType_SouthWestPanning
wkeCursorType_WestPanning
wkeCursorType_Move
wkeCursorType_VerticalText
wkeCursorType_Cell
wkeCursorType_ContextMenu
wkeCursorType_Alias
wkeCursorType_Progress
wkeCursorType_NoDrop
wkeCursorType_Copy
wkeCursorType_None
wkeCursorType_NotAllowed
wkeCursorType_ZoomIn
wkeCursorType_ZoomOut
wkeCursorType_Grab
wkeCursorType_Grabbing
wkeCursorType_Custom
)