ref: e83fc0ac32af17baeae1a29e23de8c0decea7154
dir: /element/element.go/
package element import ( "9fans.net/go/draw/memdraw" "image" "xui/events" "xui/layout" "xui/space" ) type Interface interface { Event(events.Interface) Render() *memdraw.Image Focus() // Layout hints about how to arrange this element Layout() layout.Interface // Coordinates relative to parent element unless layout expects different coordinate system // // Other possible coordinates: // - global (relative to window) // - global scroll (relative to scrolled window) // - inline (relative to neighbour) // - parent (relative to (scrolled) parent element) Geom() (r image.Rectangle, margin space.Sp) }