forked from charmbracelet/bubbletea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmouse_deprecated.go
165 lines (150 loc) Β· 4.03 KB
/
mouse_deprecated.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
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
package tea
// MouseMsg contains information about a mouse event and are sent to a programs
// update function when mouse activity occurs. Note that the mouse must first
// be enabled in order for the mouse events to be received.
//
// TODO(v2): Add a MouseMsg interface that incorporates all the mouse message
// types.
//
// Deprecated: in favor of MouseClickMsg, MouseReleaseMsg, MouseWheelMsg, and
// MouseMotionMsg.
type MouseMsg struct {
X int
Y int
Shift bool
Alt bool
Ctrl bool
Action MouseAction
Button MouseButton
Type MouseEventType
}
// MouseEvent represents a mouse event.
//
// Deprecated: Use Mouse.
type MouseEvent = MouseMsg
// IsWheel returns true if the mouse event is a wheel event.
func (m MouseMsg) IsWheel() bool {
return m.Button == MouseButtonWheelUp || m.Button == MouseButtonWheelDown ||
m.Button == MouseButtonWheelLeft || m.Button == MouseButtonWheelRight
}
// String returns a string representation of a mouse event.
func (m MouseMsg) String() (s string) {
if m.Ctrl {
s += "ctrl+"
}
if m.Alt {
s += "alt+"
}
if m.Shift {
s += "shift+"
}
if m.Button == MouseButtonNone { //nolint:nestif
if m.Action == MouseActionMotion || m.Action == MouseActionRelease {
s += mouseMsgActions[m.Action]
} else {
s += "unknown"
}
} else if m.IsWheel() {
s += mouseMsgButtons[m.Button]
} else {
btn := mouseMsgButtons[m.Button]
if btn != "" {
s += btn
}
act := mouseMsgActions[m.Action]
if act != "" {
s += " " + act
}
}
return s
}
// MouseAction represents the action that occurred during a mouse event.
//
// Deprecated: Use MouseClickMsg, MouseReleaseMsg, MouseWheelMsg, and
// MouseMotionMsg.
type MouseAction int
// Mouse event actions.
//
// Deprecated in favor of MouseClickMsg, MouseReleaseMsg, MouseWheelMsg, and
// MouseMotionMsg.
const (
MouseActionPress MouseAction = iota
MouseActionRelease
MouseActionMotion
)
var mouseMsgActions = map[MouseAction]string{
MouseActionPress: "press",
MouseActionRelease: "release",
MouseActionMotion: "motion",
}
// Mouse event buttons
//
// This is based on X11 mouse button codes.
//
// 1 = left button
// 2 = middle button (pressing the scroll wheel)
// 3 = right button
// 4 = turn scroll wheel up
// 5 = turn scroll wheel down
// 6 = push scroll wheel left
// 7 = push scroll wheel right
// 8 = 4th button (aka browser backward button)
// 9 = 5th button (aka browser forward button)
// 10
// 11
//
// Other buttons are not supported.
//
// Deprecated: Use MouseNone, MouseLeft, etc.
const (
MouseButtonNone = MouseNone
MouseButtonLeft = MouseLeft
MouseButtonMiddle = MouseMiddle
MouseButtonRight = MouseRight
MouseButtonWheelUp = MouseWheelUp
MouseButtonWheelDown = MouseWheelDown
MouseButtonWheelLeft = MouseWheelLeft
MouseButtonWheelRight = MouseWheelRight
MouseButtonBackward = MouseBackward
MouseButtonForward = MouseForward
MouseButton10 = MouseExtra1
MouseButton11 = MouseExtra2
)
// Deprecated: Use mouseButtons.
var mouseMsgButtons = map[MouseButton]string{
MouseButtonNone: "none",
MouseButtonLeft: "left",
MouseButtonMiddle: "middle",
MouseButtonRight: "right",
MouseButtonWheelUp: "wheel up",
MouseButtonWheelDown: "wheel down",
MouseButtonWheelLeft: "wheel left",
MouseButtonWheelRight: "wheel right",
MouseButtonBackward: "backward",
MouseButtonForward: "forward",
MouseButton10: "button 10",
MouseButton11: "button 11",
}
// MouseEventType indicates the type of mouse event occurring.
//
// Deprecated: Use MouseButton.
type MouseEventType = MouseButton
// Mouse event types.
//
// Deprecated in favor of MouseReleaseMsg and MouseMotionMsg.
const (
MouseUnknown = MouseNone
MouseRelease MouseEventType = -iota // mouse button release (X10 only)
MouseMotion
)
// toMouseMsg converts a mouse event to a mouse message.
func toMouseMsg(m Mouse) MouseMsg {
return MouseMsg{
X: m.X,
Y: m.Y,
Shift: m.Mod.Contains(ModShift),
Alt: m.Mod.Contains(ModAlt),
Ctrl: m.Mod.Contains(ModCtrl),
Button: m.Button,
}
}