mirror of
https://github.com/walles/moar.git
synced 2024-11-22 03:14:56 +03:00
57 lines
1.0 KiB
Go
57 lines
1.0 KiB
Go
package twin
|
|
|
|
type Event interface {
|
|
// This interface will be blank until further notice
|
|
}
|
|
|
|
type EventRune struct {
|
|
rune rune
|
|
}
|
|
|
|
type EventKeyCode struct {
|
|
keyCode KeyCode
|
|
}
|
|
|
|
type EventTerminalBackgroundDetected struct {
|
|
// Terminal background color
|
|
Color Color
|
|
}
|
|
|
|
type MouseButtonMask uint16
|
|
|
|
const (
|
|
MouseWheelUp MouseButtonMask = 1 << iota
|
|
MouseWheelDown
|
|
MouseWheelLeft
|
|
MouseWheelRight
|
|
)
|
|
|
|
type EventMouse struct {
|
|
buttons MouseButtonMask
|
|
}
|
|
|
|
// After you get this, query Screen.Size() to get the new size
|
|
type EventResize struct {
|
|
// This interface intentionally left blank
|
|
}
|
|
|
|
// If we're unable to continue showing the screen, we'll send this event and
|
|
// drop out.
|
|
//
|
|
// Ref: https://github.com/walles/moar/issues/126
|
|
type EventExit struct {
|
|
// This interface intentionally left blank
|
|
}
|
|
|
|
func (eventRune *EventRune) Rune() rune {
|
|
return eventRune.rune
|
|
}
|
|
|
|
func (eventKeyCode *EventKeyCode) KeyCode() KeyCode {
|
|
return eventKeyCode.keyCode
|
|
}
|
|
|
|
func (eventMouse *EventMouse) Buttons() MouseButtonMask {
|
|
return eventMouse.buttons
|
|
}
|