From a0c2b1caf03d0ed8b89de8402fcc14b003969e2c Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 20 Jan 2019 15:06:44 -0500 Subject: Implement the Container interface in lib/ui/ --- lib/ui/interfaces.go | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'lib/ui/interfaces.go') diff --git a/lib/ui/interfaces.go b/lib/ui/interfaces.go index 320183f..c38fcff 100644 --- a/lib/ui/interfaces.go +++ b/lib/ui/interfaces.go @@ -31,12 +31,7 @@ type DrawableInteractive interface { // A drawable which contains other drawables type Container interface { Drawable - // A list of all drawables which are children of this one (do not recurse - // into your grandchildren). + // Return all of the drawables which are children of this one (do not + // recurse into your grandchildren). Children() []Drawable - // Return the "focused" child, or none of no preference. Does not actually - // have to be Interactive. If there is a preferred child, input events will - // be directed to it. If there's no preference, events will be delivered to - // all children. - InteractiveChild() Drawable } -- cgit v1.2.3