2018-04-15 06:06:57 +08:00
|
|
|
// Copyright 2018 Google Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2018-03-28 02:01:35 +08:00
|
|
|
// Package keyboard defines well known keyboard keys and shortcuts.
|
|
|
|
package keyboard
|
|
|
|
|
2018-04-05 11:02:43 +08: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-28 02:01:35 +08:00
|
|
|
|
|
|
|
// String implements fmt.Stringer()
|
2018-04-05 11:02:43 +08:00
|
|
|
func (b Key) String() string {
|
2018-03-28 02:01:35 +08:00
|
|
|
if n, ok := buttonNames[b]; ok {
|
|
|
|
return n
|
2018-04-05 11:02:43 +08:00
|
|
|
} else if b >= 0 {
|
|
|
|
return string(b)
|
2018-03-28 02:01:35 +08:00
|
|
|
}
|
2018-04-05 11:02:43 +08:00
|
|
|
return "KeyUnknown"
|
2018-03-28 02:01:35 +08:00
|
|
|
}
|
|
|
|
|
2018-04-05 11:02:43 +08: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",
|
2019-04-21 05:10:59 +08:00
|
|
|
KeyCtrlTilde: "KeyCtrlTilde",
|
|
|
|
KeyCtrlA: "KeyCtrlA",
|
|
|
|
KeyCtrlB: "KeyCtrlB",
|
|
|
|
KeyCtrlC: "KeyCtrlC",
|
|
|
|
KeyCtrlD: "KeyCtrlD",
|
|
|
|
KeyCtrlE: "KeyCtrlE",
|
|
|
|
KeyCtrlF: "KeyCtrlF",
|
|
|
|
KeyCtrlG: "KeyCtrlG",
|
2018-04-05 11:02:43 +08:00
|
|
|
KeyBackspace: "KeyBackspace",
|
|
|
|
KeyTab: "KeyTab",
|
2019-04-21 05:10:59 +08:00
|
|
|
KeyCtrlJ: "KeyCtrlJ",
|
|
|
|
KeyCtrlK: "KeyCtrlK",
|
|
|
|
KeyCtrlL: "KeyCtrlL",
|
2018-04-05 11:02:43 +08:00
|
|
|
KeyEnter: "KeyEnter",
|
2019-04-21 05:10:59 +08:00
|
|
|
KeyCtrlN: "KeyCtrlN",
|
|
|
|
KeyCtrlO: "KeyCtrlO",
|
|
|
|
KeyCtrlP: "KeyCtrlP",
|
|
|
|
KeyCtrlQ: "KeyCtrlQ",
|
|
|
|
KeyCtrlR: "KeyCtrlR",
|
|
|
|
KeyCtrlS: "KeyCtrlS",
|
|
|
|
KeyCtrlT: "KeyCtrlT",
|
|
|
|
KeyCtrlU: "KeyCtrlU",
|
|
|
|
KeyCtrlV: "KeyCtrlV",
|
|
|
|
KeyCtrlW: "KeyCtrlW",
|
|
|
|
KeyCtrlX: "KeyCtrlX",
|
|
|
|
KeyCtrlY: "KeyCtrlY",
|
|
|
|
KeyCtrlZ: "KeyCtrlZ",
|
2018-04-05 11:02:43 +08:00
|
|
|
KeyEsc: "KeyEsc",
|
2019-04-21 05:10:59 +08:00
|
|
|
KeyCtrl4: "KeyCtrl4",
|
|
|
|
KeyCtrl5: "KeyCtrl5",
|
|
|
|
KeyCtrl6: "KeyCtrl6",
|
|
|
|
KeyCtrl7: "KeyCtrl7",
|
|
|
|
KeySpace: "KeySpace",
|
|
|
|
KeyBackspace2: "KeyBackspace2",
|
2018-03-28 02:01:35 +08:00
|
|
|
}
|
|
|
|
|
2018-04-05 11:02:43 +08:00
|
|
|
// Printable characters, but worth having constants for them.
|
2018-03-28 02:01:35 +08:00
|
|
|
const (
|
2018-04-05 11:02:43 +08:00
|
|
|
KeySpace = ' '
|
2018-03-28 02:01:35 +08:00
|
|
|
)
|
|
|
|
|
2018-04-05 11:02:43 +08:00
|
|
|
// Negative values for non-printable characters.
|
2018-03-28 02:01:35 +08:00
|
|
|
const (
|
2018-04-05 11:02:43 +08: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
|
2019-04-21 05:10:59 +08:00
|
|
|
KeyCtrlTilde
|
|
|
|
KeyCtrlA
|
|
|
|
KeyCtrlB
|
|
|
|
KeyCtrlC
|
|
|
|
KeyCtrlD
|
|
|
|
KeyCtrlE
|
|
|
|
KeyCtrlF
|
|
|
|
KeyCtrlG
|
2018-04-05 11:02:43 +08:00
|
|
|
KeyBackspace
|
|
|
|
KeyTab
|
2019-04-21 05:10:59 +08:00
|
|
|
KeyCtrlJ
|
|
|
|
KeyCtrlK
|
|
|
|
KeyCtrlL
|
2018-04-05 11:02:43 +08:00
|
|
|
KeyEnter
|
2019-04-21 05:10:59 +08:00
|
|
|
KeyCtrlN
|
|
|
|
KeyCtrlO
|
|
|
|
KeyCtrlP
|
|
|
|
KeyCtrlQ
|
|
|
|
KeyCtrlR
|
|
|
|
KeyCtrlS
|
|
|
|
KeyCtrlT
|
|
|
|
KeyCtrlU
|
|
|
|
KeyCtrlV
|
|
|
|
KeyCtrlW
|
|
|
|
KeyCtrlX
|
|
|
|
KeyCtrlY
|
|
|
|
KeyCtrlZ
|
2018-04-05 11:02:43 +08:00
|
|
|
KeyEsc
|
2019-04-21 05:10:59 +08:00
|
|
|
KeyCtrl4
|
|
|
|
KeyCtrl5
|
|
|
|
KeyCtrl6
|
|
|
|
KeyCtrl7
|
|
|
|
KeyBackspace2
|
|
|
|
)
|
|
|
|
|
|
|
|
// Keys declared as duplicates by termbox.
|
|
|
|
const (
|
|
|
|
KeyCtrl2 Key = KeyCtrlTilde
|
|
|
|
KeyCtrlSpace Key = KeyCtrlTilde
|
|
|
|
KeyCtrlH Key = KeyBackspace
|
|
|
|
KeyCtrlI Key = KeyTab
|
|
|
|
KeyCtrlM Key = KeyEnter
|
|
|
|
KeyCtrlLsqBracket Key = KeyEsc
|
|
|
|
KeyCtrl3 Key = KeyEsc
|
|
|
|
KeyCtrlBackslash Key = KeyCtrl4
|
|
|
|
KeyCtrlRsqBracket Key = KeyCtrl5
|
|
|
|
KeyCtrlSlash Key = KeyCtrl7
|
|
|
|
KeyCtrlUnderscore Key = KeyCtrl7
|
|
|
|
KeyCtrl8 Key = KeyBackspace2
|
2018-03-28 02:01:35 +08:00
|
|
|
)
|