2018-03-27 19:01:35 +01:00
|
|
|
// Package keyboard defines well known keyboard keys and shortcuts.
|
|
|
|
package keyboard
|
|
|
|
|
2018-04-05 05:02:43 +02:00
|
|
|
// Key represents a single button on the keyboard.
|
|
|
|
// Printable characters are set to their ASCII/Unicode rune value.
|
|
|
|
// Non-printable (control) characters are equal to one of the constants defined
|
|
|
|
// below.
|
|
|
|
type Key rune
|
2018-03-27 19:01:35 +01:00
|
|
|
|
|
|
|
// String implements fmt.Stringer()
|
2018-04-05 05:02:43 +02:00
|
|
|
func (b Key) String() string {
|
2018-03-27 19:01:35 +01:00
|
|
|
if n, ok := buttonNames[b]; ok {
|
|
|
|
return n
|
2018-04-05 05:02:43 +02:00
|
|
|
} else if b >= 0 {
|
|
|
|
return string(b)
|
2018-03-27 19:01:35 +01:00
|
|
|
}
|
2018-04-05 05:02:43 +02:00
|
|
|
return "KeyUnknown"
|
2018-03-27 19:01:35 +01:00
|
|
|
}
|
|
|
|
|
2018-04-05 05:02:43 +02:00
|
|
|
// buttonNames maps Key values to human readable names.
|
|
|
|
var buttonNames = map[Key]string{
|
|
|
|
KeyF1: "KeyF1",
|
|
|
|
KeyF2: "KeyF2",
|
|
|
|
KeyF3: "KeyF3",
|
|
|
|
KeyF4: "KeyF4",
|
|
|
|
KeyF5: "KeyF5",
|
|
|
|
KeyF6: "KeyF6",
|
|
|
|
KeyF7: "KeyF7",
|
|
|
|
KeyF8: "KeyF8",
|
|
|
|
KeyF9: "KeyF9",
|
|
|
|
KeyF10: "KeyF10",
|
|
|
|
KeyF11: "KeyF11",
|
|
|
|
KeyF12: "KeyF12",
|
|
|
|
KeyInsert: "KeyInsert",
|
|
|
|
KeyDelete: "KeyDelete",
|
|
|
|
KeyHome: "KeyHome",
|
|
|
|
KeyEnd: "KeyEnd",
|
|
|
|
KeyPgUp: "KeyPgUp",
|
|
|
|
KeyPgDn: "KeyPgDn",
|
|
|
|
KeyArrowUp: "KeyArrowUp",
|
|
|
|
KeyArrowDown: "KeyArrowDown",
|
|
|
|
KeyArrowLeft: "KeyArrowLeft",
|
|
|
|
KeyArrowRight: "KeyArrowRight",
|
|
|
|
KeyBackspace: "KeyBackspace",
|
|
|
|
KeyTab: "KeyTab",
|
|
|
|
KeyEnter: "KeyEnter",
|
|
|
|
KeyEsc: "KeyEsc",
|
|
|
|
KeyCtrl: "KeyCtrl",
|
2018-03-27 19:01:35 +01:00
|
|
|
}
|
|
|
|
|
2018-04-05 05:02:43 +02:00
|
|
|
// Printable characters, but worth having constants for them.
|
2018-03-27 19:01:35 +01:00
|
|
|
const (
|
2018-04-05 05:02:43 +02:00
|
|
|
KeySpace = ' '
|
2018-03-27 19:01:35 +01:00
|
|
|
)
|
|
|
|
|
2018-04-05 05:02:43 +02:00
|
|
|
// Negative values for non-printable characters.
|
2018-03-27 19:01:35 +01:00
|
|
|
const (
|
2018-04-05 05:02:43 +02:00
|
|
|
KeyF1 Key = -(iota + 1)
|
|
|
|
KeyF2
|
|
|
|
KeyF3
|
|
|
|
KeyF4
|
|
|
|
KeyF5
|
|
|
|
KeyF6
|
|
|
|
KeyF7
|
|
|
|
KeyF8
|
|
|
|
KeyF9
|
|
|
|
KeyF10
|
|
|
|
KeyF11
|
|
|
|
KeyF12
|
|
|
|
KeyInsert
|
|
|
|
KeyDelete
|
|
|
|
KeyHome
|
|
|
|
KeyEnd
|
|
|
|
KeyPgUp
|
|
|
|
KeyPgDn
|
|
|
|
KeyArrowUp
|
|
|
|
KeyArrowDown
|
|
|
|
KeyArrowLeft
|
|
|
|
KeyArrowRight
|
|
|
|
KeyBackspace
|
|
|
|
KeyTab
|
|
|
|
KeyEnter
|
|
|
|
KeyEsc
|
|
|
|
KeyCtrl
|
2018-03-27 19:01:35 +01:00
|
|
|
)
|