2
0
mirror of https://github.com/rivo/tview.git synced 2024-11-03 09:40:25 +00:00
tview/focusable.go

9 lines
234 B
Go

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
}