From 64fa922ec013079f8f0c90fc9e93c56db3611d30 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sun, 22 Apr 2018 21:25:06 +0300 Subject: Switch to dep --- vendor/maunium.net/go/tview/focusable.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vendor/maunium.net/go/tview/focusable.go (limited to 'vendor/maunium.net/go/tview/focusable.go') diff --git a/vendor/maunium.net/go/tview/focusable.go b/vendor/maunium.net/go/tview/focusable.go new file mode 100644 index 0000000..99fdaaf --- /dev/null +++ b/vendor/maunium.net/go/tview/focusable.go @@ -0,0 +1,8 @@ +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 +} -- cgit v1.2.3