aboutsummaryrefslogtreecommitdiff
path: root/lib/ui/interactive.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-02-27 21:17:26 -0500
committerDrew DeVault <sir@cmpwn.com>2018-02-27 21:17:26 -0500
commitcab3771e17286788913255a6abe858b476166837 (patch)
tree85c626c779e380bb6a9d7ddd6cba69ef33cf919d /lib/ui/interactive.go
parenta073d7613fac7c79b7909d93a0dd7bfea05d5c9d (diff)
Pull main aerc UI into widget
Diffstat (limited to 'lib/ui/interactive.go')
-rw-r--r--lib/ui/interactive.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ui/interactive.go b/lib/ui/interactive.go
index 8bdf592..efab828 100644
--- a/lib/ui/interactive.go
+++ b/lib/ui/interactive.go
@@ -13,3 +13,8 @@ type Simulator interface {
// Queues up the given input events for simulation
Simulate(events []tb.Event)
}
+
+type DrawableInteractive interface {
+ Drawable
+ Interactive
+}