diff options
| author | Jeff Carr <[email protected]> | 2023-03-23 12:35:12 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-03-23 12:35:12 -0500 |
| commit | d4787a1ebdd08359746516dbb72f1feaf95be5b6 (patch) | |
| tree | cb81756d61096ccf74af7c8cc9a15e4e00fe1da7 /toolkit/democui | |
| parent | 6a848bf40474365cc1c0b4da9e2f7e3e10b4d627 (diff) | |
Squashed commit of the following:v0.7.3
boxes now exist and are tracked in the binary tree
create for group and grid works
gocui plugin no longer works. TODO: fix in next release
converted everything from plugin to Action()
can remove send()
tab and window are now action()
flags moved to action()
ready for new release
pad() margion() border() all work
move worked!
go.wit.com attept 578th try
adds an early grid widget. won't work until chan
andlabs/ui grid (X,Y) works right
actually can put things in places in a grid
Queue() means shit doesn't look right on grids
lots of fucking around. why am I wasting time on image?
wow. the crazy doAppend() thing is gone
implement Action Show() and Hide()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/democui')
| -rw-r--r-- | toolkit/democui/debug.go | 1 | ||||
| -rw-r--r-- | toolkit/democui/plugin.go | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/toolkit/democui/debug.go b/toolkit/democui/debug.go index 817ee6e..d024925 100644 --- a/toolkit/democui/debug.go +++ b/toolkit/democui/debug.go @@ -89,7 +89,6 @@ func widgetDump(b bool, w *toolkit.Widget) { } log(b, "widget.Name =", w.Name) - log(b, "widget.Action =", w.Action) log(b, "widget.Type =", w.Type) log(b, "widget.Custom =", w.Custom) log(b, "widget.B =", w.B) diff --git a/toolkit/democui/plugin.go b/toolkit/democui/plugin.go index 0b26f8f..2c0d42e 100644 --- a/toolkit/democui/plugin.go +++ b/toolkit/democui/plugin.go @@ -44,7 +44,7 @@ func Send(p *toolkit.Widget, c *toolkit.Widget) { } else { log(debugPlugin, "Send() parent =", p.Name, ",", p.Type) } - log(debugPlugin, "Send() child =", c.Name, ",", c.Action, ",", c.Type) + log(debugPlugin, "Send() child =", c.Name, ",", c.Type) /* if (c.Action == "SetMargin") { @@ -81,6 +81,7 @@ func Send(p *toolkit.Widget, c *toolkit.Widget) { case toolkit.Grid: // doGrid(p, c) */ + /* case toolkit.Flag: // log(debugFlags, "plugin Send() flag parent =", p.Name, p.Type) // log(debugFlags, "plugin Send() flag child =", c.Name, c.Type) @@ -105,6 +106,7 @@ func Send(p *toolkit.Widget, c *toolkit.Widget) { default: log(debugError, "Can't set unknown flag", c.S) } + */ default: log(debugError, "plugin Send() unknown parent =", p.Name, p.Type) log(debugError, "plugin Send() unknown child =", c.Name, c.Type) |
