diff options
| author | Jeff Carr <[email protected]> | 2022-11-06 19:57:20 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2022-11-06 19:57:20 -0600 |
| commit | b410d0fd083ee89eed410cda2123a22cddcd3f44 (patch) | |
| tree | 3f1a637003629a3ec7d383b5db6beb0df9e5a97c /toolkit/andlabs/box.go | |
| parent | e55fb6675d692e3f44fa67b02b12661e476bd028 (diff) | |
Implement a early AddButton() via a golang pluginv0.4.5
pass a name to gocui.AddButton()
cleaner plugin usage
add the start to golang plugin
plugin stuff in a single file
added a button correctly
andlabs/ui added a button via plugin to gocli
hot diggity!
trying to invoke a gocli plugin function from the andlabs ui
load the plugin
hide more debugging output
turn off all output
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/andlabs/box.go')
| -rw-r--r-- | toolkit/andlabs/box.go | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/toolkit/andlabs/box.go b/toolkit/andlabs/box.go index 8347bab..29a8331 100644 --- a/toolkit/andlabs/box.go +++ b/toolkit/andlabs/box.go @@ -12,10 +12,14 @@ func (t *Toolkit) GetBox() *ui.Box { // create a new box func (t *Toolkit) NewBox() *Toolkit { - log.Println("gui.Toolbox.NewBox() START create default") + if (DebugToolkit) { + log.Println("gui.Toolbox.NewBox() START create default") + } t.Dump() if (t.uiGroup != nil) { - log.Println("\tgui.Toolbox.NewBox() is a Group") + if (DebugToolkit) { + log.Println("\tgui.Toolbox.NewBox() is a Group") + } var newTK Toolkit vbox := ui.NewVerticalBox() @@ -26,7 +30,9 @@ func (t *Toolkit) NewBox() *Toolkit { return &newTK } if (t.uiBox != nil) { - log.Println("\tgui.Toolbox.NewBox() is a Box") + if (DebugToolkit) { + log.Println("\tgui.Toolbox.NewBox() is a Box") + } var newTK Toolkit vbox := ui.NewVerticalBox() @@ -38,7 +44,9 @@ func (t *Toolkit) NewBox() *Toolkit { return &newTK } if (t.uiWindow != nil) { - log.Println("\tgui.Toolbox.NewBox() is a Window") + if (DebugToolkit) { + log.Println("\tgui.Toolbox.NewBox() is a Window") + } var newT Toolkit vbox := ui.NewVerticalBox() @@ -50,7 +58,9 @@ func (t *Toolkit) NewBox() *Toolkit { // panic("WTF") return &newT } - log.Println("\tgui.Toolbox.NewBox() FAILED. Couldn't figure out where to make a box") + if (DebugToolkit) { + log.Println("\tgui.Toolbox.NewBox() FAILED. Couldn't figure out where to make a box") + } t.Dump() return nil } |
