gomuks/vendor/maunium.net/go/tview/focusable.go

9 lines
234 B
Go
Raw Normal View History

2018-04-22 20:25:06 +02:00
package tview
// Focusable provides a method which determines if a primitive has focus.
// Composed primitives may be focused based on the focused state of their
// contained primitives.
type Focusable interface {
HasFocus() bool
}