mirror of
https://github.com/Hopiu/micro.git
synced 2026-05-25 22:53:43 +00:00
13 lines
243 B
Go
13 lines
243 B
Go
|
|
package action
|
||
|
|
|
||
|
|
type KeyAction func(Pane) bool
|
||
|
|
type MouseAction func(Pane, *MouseEvent) bool
|
||
|
|
type KeyAnyAction func(Pane, keys []KeyEvent)
|
||
|
|
|
||
|
|
type KeyTreeNode struct {
|
||
|
|
children map[Event]KeyTreeNode
|
||
|
|
|
||
|
|
// action KeyAction
|
||
|
|
// any KeyAnyAction
|
||
|
|
}
|