1
0
mirror of https://github.com/mum4k/termdash.git synced 2025-04-28 13:48:51 +08:00
termdash/keyboard/keyboard.go

86 lines
1.7 KiB
Go
Raw Normal View History

2018-03-27 19:01:35 +01:00
// Package keyboard defines well known keyboard keys and shortcuts.
package keyboard
// 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()
func (b Key) String() string {
2018-03-27 19:01:35 +01:00
if n, ok := buttonNames[b]; ok {
return n
} else if b >= 0 {
return string(b)
2018-03-27 19:01:35 +01:00
}
return "KeyUnknown"
2018-03-27 19:01:35 +01: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
}
// Printable characters, but worth having constants for them.
2018-03-27 19:01:35 +01:00
const (
KeySpace = ' '
2018-03-27 19:01:35 +01:00
)
// Negative values for non-printable characters.
2018-03-27 19:01:35 +01:00
const (
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
)