Terminal-based user interface toolkit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package cview |
|
|
|
// 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 |
|
}
|
|
|