2020-07-06 21:26:08 -04:00
|
|
|
package d2enum
|
2020-06-23 18:12:08 -04:00
|
|
|
|
2020-07-01 14:03:40 -04:00
|
|
|
// Key represents button on a traditional keyboard.
|
2020-06-23 18:12:08 -04:00
|
|
|
type Key int
|
|
|
|
|
2020-11-01 22:43:23 -05:00
|
|
|
// Input keys
|
2020-06-23 18:12:08 -04:00
|
|
|
const (
|
|
|
|
Key0 Key = iota
|
|
|
|
Key1
|
|
|
|
Key2
|
|
|
|
Key3
|
|
|
|
Key4
|
|
|
|
Key5
|
|
|
|
Key6
|
|
|
|
Key7
|
|
|
|
Key8
|
|
|
|
Key9
|
|
|
|
KeyA
|
|
|
|
KeyB
|
|
|
|
KeyC
|
|
|
|
KeyD
|
|
|
|
KeyE
|
|
|
|
KeyF
|
|
|
|
KeyG
|
|
|
|
KeyH
|
|
|
|
KeyI
|
|
|
|
KeyJ
|
|
|
|
KeyK
|
|
|
|
KeyL
|
|
|
|
KeyM
|
|
|
|
KeyN
|
|
|
|
KeyO
|
|
|
|
KeyP
|
|
|
|
KeyQ
|
|
|
|
KeyR
|
|
|
|
KeyS
|
|
|
|
KeyT
|
|
|
|
KeyU
|
|
|
|
KeyV
|
|
|
|
KeyW
|
|
|
|
KeyX
|
|
|
|
KeyY
|
|
|
|
KeyZ
|
|
|
|
KeyApostrophe
|
|
|
|
KeyBackslash
|
|
|
|
KeyBackspace
|
|
|
|
KeyCapsLock
|
|
|
|
KeyComma
|
|
|
|
KeyDelete
|
|
|
|
KeyDown
|
|
|
|
KeyEnd
|
|
|
|
KeyEnter
|
|
|
|
KeyEqual
|
|
|
|
KeyEscape
|
|
|
|
KeyF1
|
|
|
|
KeyF2
|
|
|
|
KeyF3
|
|
|
|
KeyF4
|
|
|
|
KeyF5
|
|
|
|
KeyF6
|
|
|
|
KeyF7
|
|
|
|
KeyF8
|
|
|
|
KeyF9
|
|
|
|
KeyF10
|
|
|
|
KeyF11
|
|
|
|
KeyF12
|
|
|
|
KeyGraveAccent
|
|
|
|
KeyHome
|
|
|
|
KeyInsert
|
|
|
|
KeyKP0
|
|
|
|
KeyKP1
|
|
|
|
KeyKP2
|
|
|
|
KeyKP3
|
|
|
|
KeyKP4
|
|
|
|
KeyKP5
|
|
|
|
KeyKP6
|
|
|
|
KeyKP7
|
|
|
|
KeyKP8
|
|
|
|
KeyKP9
|
|
|
|
KeyKPAdd
|
|
|
|
KeyKPDecimal
|
|
|
|
KeyKPDivide
|
|
|
|
KeyKPEnter
|
|
|
|
KeyKPEqual
|
|
|
|
KeyKPMultiply
|
|
|
|
KeyKPSubtract
|
|
|
|
KeyLeft
|
|
|
|
KeyLeftBracket
|
|
|
|
KeyMenu
|
|
|
|
KeyMinus
|
|
|
|
KeyNumLock
|
|
|
|
KeyPageDown
|
|
|
|
KeyPageUp
|
|
|
|
KeyPause
|
|
|
|
KeyPeriod
|
|
|
|
KeyPrintScreen
|
|
|
|
KeyRight
|
|
|
|
KeyRightBracket
|
|
|
|
KeyScrollLock
|
|
|
|
KeySemicolon
|
|
|
|
KeySlash
|
|
|
|
KeySpace
|
|
|
|
KeyTab
|
|
|
|
KeyUp
|
|
|
|
KeyAlt
|
|
|
|
KeyControl
|
|
|
|
KeyShift
|
2020-11-01 22:43:23 -05:00
|
|
|
KeyTilde
|
2020-11-13 15:03:30 -05:00
|
|
|
KeyMouse3
|
|
|
|
KeyMouse4
|
|
|
|
KeyMouse5
|
|
|
|
KeyMouseWheelUp
|
|
|
|
KeyMouseWheelDown
|
2020-06-23 18:12:08 -04:00
|
|
|
|
2020-07-03 15:09:16 -04:00
|
|
|
KeyMin = Key0
|
2020-11-13 15:03:30 -05:00
|
|
|
KeyMax = KeyMouseWheelDown
|
2020-06-23 18:12:08 -04:00
|
|
|
)
|
|
|
|
|
2020-07-01 14:03:40 -04:00
|
|
|
// KeyMod represents a "modified" key action. This could mean, for example, ctrl-S
|
2020-06-23 18:12:08 -04:00
|
|
|
type KeyMod int
|
|
|
|
|
|
|
|
const (
|
2020-07-01 14:03:40 -04:00
|
|
|
// KeyModAlt is the Alt key modifier
|
2020-06-23 18:12:08 -04:00
|
|
|
KeyModAlt KeyMod = 1 << iota
|
2020-07-01 14:03:40 -04:00
|
|
|
// KeyModControl is the Control key modifier
|
2020-06-23 18:12:08 -04:00
|
|
|
KeyModControl
|
2020-07-01 14:03:40 -04:00
|
|
|
// KeyModShift is the Shift key modifier
|
2020-06-23 18:12:08 -04:00
|
|
|
KeyModShift
|
|
|
|
)
|