summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 00:12:59 -0600
committerJeff Carr <[email protected]>2024-01-18 00:12:59 -0600
commit0674bd89b798f7512462402817c496e8a80ac3d4 (patch)
tree2d520204b18c5cb09481b461642cb183db8bf74a
parenta0baba0821441d9cf38f0b33fe12fb96925c6236 (diff)
move everything into seperate repos
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--andlabs/Makefile13
-rw-r--r--andlabs/action.go310
-rw-r--r--andlabs/add.go72
-rw-r--r--andlabs/addText.go44
-rw-r--r--andlabs/box.go65
-rw-r--r--andlabs/button.go30
-rw-r--r--andlabs/checkbox.go30
-rw-r--r--andlabs/combobox.go79
-rw-r--r--andlabs/common.go61
-rw-r--r--andlabs/debug.go121
-rw-r--r--andlabs/delete.go54
-rw-r--r--andlabs/demo.go94
-rw-r--r--andlabs/dropdown.go106
-rw-r--r--andlabs/go.mod11
-rw-r--r--andlabs/go.sum12
-rw-r--r--andlabs/grid.go29
-rw-r--r--andlabs/group.go24
-rw-r--r--andlabs/icon.go27
-rw-r--r--andlabs/image.go49
-rw-r--r--andlabs/label.go21
-rw-r--r--andlabs/log.go34
-rw-r--r--andlabs/main.go70
-rw-r--r--andlabs/place.go112
-rw-r--r--andlabs/setText.go76
-rw-r--r--andlabs/slider.go31
-rw-r--r--andlabs/spinner.go27
-rw-r--r--andlabs/structs.go64
-rw-r--r--andlabs/tab.go117
-rw-r--r--andlabs/textbox.go37
-rw-r--r--andlabs/tree.go31
-rw-r--r--andlabs/updateui.go97
-rw-r--r--andlabs/widget.go18
-rw-r--r--andlabs/window.go51
-rw-r--r--gocui/Makefile26
-rw-r--r--gocui/add.go80
-rw-r--r--gocui/args.go32
-rw-r--r--gocui/checkbox.go33
-rw-r--r--gocui/click.go357
-rw-r--r--gocui/color.go120
-rw-r--r--gocui/common.go218
-rw-r--r--gocui/debug.go74
-rw-r--r--gocui/fakefile.go58
-rw-r--r--gocui/go.mod21
-rw-r--r--gocui/go.sum30
-rwxr-xr-xgocui/gocuibin3803590 -> 0 bytes
-rw-r--r--gocui/gocui.go102
-rw-r--r--gocui/help.go71
-rw-r--r--gocui/keybindings.go165
-rw-r--r--gocui/main.go104
-rw-r--r--gocui/mouse.go151
-rw-r--r--gocui/place.go188
-rw-r--r--gocui/plugin.go117
-rw-r--r--gocui/showStdout.go98
-rw-r--r--gocui/structs.go229
-rw-r--r--gocui/tab.go111
-rw-r--r--gocui/view.go233
-rw-r--r--gocui/widget.go139
-rw-r--r--nocui/Makefile16
-rw-r--r--nocui/README.md5
-rw-r--r--nocui/action.go89
-rw-r--r--nocui/args.go30
-rw-r--r--nocui/event.go51
-rw-r--r--nocui/go.mod3
-rw-r--r--nocui/main.go24
-rw-r--r--nocui/stdin.go74
-rw-r--r--nocui/structs.go22
-rw-r--r--nocui/tree.go24
67 files changed, 0 insertions, 5112 deletions
diff --git a/andlabs/Makefile b/andlabs/Makefile
deleted file mode 100644
index 331617a..0000000
--- a/andlabs/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-all: plugin
-
-plugin:
- GO111MODULE="off" go build -v -x -buildmode=plugin -o ../andlabs.so
-
-goget:
- GO111MODULE="off" go get -v -t -u
-
-redomod:
- rm -f go.*
- GO111MODULE= go mod init
- GO111MODULE= go mod tidy
-
diff --git a/andlabs/action.go b/andlabs/action.go
deleted file mode 100644
index c089078..0000000
--- a/andlabs/action.go
+++ /dev/null
@@ -1,310 +0,0 @@
-package main
-
-import (
- "errors"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
- "go.wit.com/toolkits/tree"
-)
-
-// this will check to make sure that the node
-// is valid for making a New TK andlabs widget
-// Basically, it makes sure there is a parent ID
-// and that there already a widget created
-func notNew(n *tree.Node) bool {
- if n == nil {
- log.Warn("ready() n = nil")
- return true
- }
- if n.TK != nil {
- log.Warn("ready() n.TK = nil", n.WidgetId, n.GetProgName())
- return true
- }
- if n.Parent == nil {
- log.Warn("ready() n.Parent = nil", n.WidgetId, n.GetProgName())
- return true
- }
- if n.Parent.TK == nil {
- log.Warn("ready() n.Parent.TK = nil", n.WidgetId, n.GetProgName())
- log.Warn("ready() n.Parent.TK = nil", n.Parent.WidgetId, n.Parent.GetProgName())
- return true
- }
- // this means you can add a new widgets
- return false
-}
-
-func ready(n *tree.Node) bool {
- if n == nil {
- log.Warn("ready() n = nil")
- return false
- }
- if n.TK == nil {
- log.Warn("ready() n.TK = nil", n.WidgetId, n.GetProgName())
- return false
- }
- if n.Parent == nil {
- log.Warn("ready() n.Parent = nil", n.WidgetId, n.GetProgName())
- return false
- }
- if n.Parent.TK == nil {
- log.Warn("ready() n.Parent.TK = nil", n.WidgetId, n.GetProgName())
- log.Warn("ready() n.Parent.TK = nil", n.Parent.WidgetId, n.Parent.GetProgName())
- return false
- }
- return true
-}
-func (n *node) ready() bool {
- if n == nil {
- return false
- }
- if n.tk == nil {
- return false
- }
- return true
-}
-
-func show(n *tree.Node, b bool) {
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
- // tk = getTK(n)
-
- if tk == nil {
- return
- }
- if tk.uiControl == nil {
- return
- }
- if b {
- tk.uiControl.Show()
- } else {
- tk.uiControl.Hide()
- }
-}
-
-func enable(n *tree.Node, b bool) {
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
- if n == nil {
- panic("WHAT? enable was passed nil. How does this even happen?")
- }
- if tk == nil {
- return
- }
- if tk.uiControl == nil {
- return
- }
- if b {
- tk.uiControl.Enable()
- } else {
- tk.uiControl.Disable()
- }
-}
-
-func (n *node) pad(b bool) {
- log.Warn("pad() on WidgetId =", n.WidgetId)
-
- t := n.tk
- if t == nil {
- log.Log(ERROR, "pad() toolkit struct == nil. for", n.WidgetId)
- return
- }
-
- switch n.WidgetType {
- case widget.Window:
- t.uiWindow.SetMargined(b)
- t.uiWindow.SetBorderless(b)
- case widget.Tab:
- tabSetMargined(t.uiTab, b)
- case widget.Group:
- t.uiGroup.SetMargined(b)
- case widget.Grid:
- t.uiGrid.SetPadded(b)
- case widget.Box:
- t.uiBox.SetPadded(b)
- default:
- log.Log(ERROR, "TODO: implement pad() for", n.WidgetType, n.progname)
- }
-}
-
-func (n *node) move(newParent *node) {
- p := n.parent
-
- switch p.WidgetType {
- case widget.Group:
- case widget.Tab:
- // tabSetMargined(tParent.uiTab, true)
- case widget.Window:
- // t.uiWindow.SetBorderless(false)
- case widget.Grid:
- // t.uiGrid.SetPadded(true)
- case widget.Box:
- log.Log(INFO, "TODO: move() where =", p.ParentId)
- log.Log(INFO, "TODO: move() for widget =", n.WidgetId)
-
- stretchy = true
- if p.tk.uiBox != nil {
- p.tk.uiBox.Append(n.tk.uiControl, stretchy)
- }
- default:
- log.Log(ERROR, "TODO: need to implement move() for type =", n.WidgetType)
- log.Log(ERROR, "TODO: need to implement move() for where =", p.ParentId)
- log.Log(ERROR, "TODO: need to implement move() for widget =", n.WidgetId)
- }
-}
-
-func (n *node) Delete() {
- p := n.parent
- log.Log(NOW, "uiDelete()", n.WidgetId, "to", p.WidgetId)
-
- if n.WidgetType == widget.Window {
- log.Warn("DESTROY uiWindow here")
- log.Warn("NEED TO REMOVE n from parent.Children")
- n.tk.uiWindow.Destroy()
- n.tk.uiWindow = nil
- for i, child := range p.children {
- log.Warn("parent has child:", i, child.WidgetId, child.progname)
- if n == child {
- log.Warn("Found child ==", i, child.WidgetId, child.progname)
- log.Warn("Found n ==", i, n.WidgetId, n.progname)
- p.children = append(p.children[:i], p.children[i+1:]...)
- }
- // t.uiWindow.SetBorderless(false)
- }
- for i, child := range p.children {
- log.Warn("parent now has child:", i, child.WidgetId, child.progname)
- }
- return
- }
-
- switch p.WidgetType {
- case widget.Group:
- // tParent.uiGroup.SetMargined(true)
- case widget.Tab:
- // tabSetMargined(tParent.uiTab, true)
- case widget.Window:
- case widget.Grid:
- // t.uiGrid.SetPadded(true)
- case widget.Box:
- log.Log(NOW, "tWidget.boxC =", p.progname)
- log.Log(NOW, "is there a tParent parent? =", p.parent)
- if p.tk.boxC < 1 {
- log.Log(NOW, "Can not delete from Box. already empty. tWidget.boxC =", p.tk.boxC)
- return
- }
- p.tk.uiBox.Delete(0)
- p.tk.boxC -= 1
-
- // this didn't work:
- // tWidget.uiControl.Disable()
- // sleep(.8)
- // tParent.uiBox.Append(tWidget.uiControl, stretchy)
- default:
- log.Log(ERROR, "TODO: need to implement uiDelete() for widget =", n.WidgetId, n.WidgetType)
- log.Log(ERROR, "TODO: need to implement uiDelete() for parent =", p.WidgetId, p.WidgetType)
- }
-}
-
-func rawAction(a *widget.Action) {
- log.Log(INFO, "rawAction() START a.ActionType =", a.ActionType, "a.Value", a.Value)
-
- if a.ActionType == widget.ToolkitInit {
- Init()
- return
- }
- switch a.WidgetType {
- case widget.Root:
- me.treeRoot = me.myTree.AddNode(a)
- log.Log(INFO, "doAction() found treeRoot")
- return
- }
-
- log.Warn("andlabs rawAction() START a.WidgetId =", a.WidgetId, "a.ParentId =", a.ParentId, a.ActionType)
- switch a.WidgetType {
- case widget.Flag:
- log.Log(ERROR, "rawAction() RE-IMPLEMENT LOG FLAGS")
- return
- }
-
- if me.treeRoot == nil {
- panic("me.treeRoot == nil")
- }
-
- n := me.treeRoot.FindWidgetId(a.WidgetId)
-
- if a.ActionType == widget.Add {
- me.treeRoot.ListWidgets()
- // ui.QueueMain(func() {
- add(a)
- // })
- // TODO: remove this artificial delay
- // sleep(.001)
- return
- }
-
- if a.ActionType == widget.Dump {
- log.Log(NOW, "rawAction() Dump =", a.ActionType, a.WidgetType, n.State.ProgName)
- // me.rootNode.listChildren(true)
- return
- }
-
- if n == nil {
- log.Error(errors.New("andlabs rawAction() ERROR findWidgetId found nil"), a.ActionType, a.WidgetType)
- log.Log(NOW, "rawAction() ERROR findWidgetId found nil for id =", a.WidgetId)
- log.Log(NOW, "rawAction() ERROR findWidgetId found nil", a.ActionType, a.WidgetType)
- log.Log(NOW, "rawAction() ERROR findWidgetId found nil for id =", a.WidgetId)
- me.treeRoot.ListWidgets()
- return
- panic("findWidgetId found nil for id = " + string(a.WidgetId))
- }
-
- switch a.ActionType {
- case widget.Show:
- show(n, true)
- // n.show(true)
- case widget.Hide:
- show(n, false)
- //n.show(false)
- case widget.Enable:
- enable(n, true)
- // n.enable(true)
- case widget.Disable:
- log.Warn("andlabs got disable for", n.WidgetId, n.State.ProgName)
- enable(n, false)
- // n.enable(false)
- case widget.Get:
- // n.setText(a)
- setText(n, a)
- case widget.GetText:
- switch a.WidgetType {
- case widget.Textbox:
- a.Value = n.State.Value
- }
- case widget.Set:
- setText(n, a)
- // n.setText(a)
- case widget.SetText:
- setText(n, a)
- // n.setText(a)
- case widget.AddText:
- addText(n, a)
- // n.addText(a)
- /*
- case widget.Margin:
- n.pad(true)
- case widget.Unmargin:
- n.pad(false)
- case widget.Pad:
- n.pad(true)
- case widget.Unpad:
- n.pad(false)
- case widget.Delete:
- n.Delete()
- case widget.Move:
- log.Log(NOW, "rawAction() attempt to move() =", a.ActionType, a.WidgetType)
- */
- default:
- log.Log(ERROR, "rawAction() Unknown =", a.ActionType, a.WidgetType)
- }
- log.Log(INFO, "rawAction() END =", a.ActionType, a.WidgetType)
-}
diff --git a/andlabs/add.go b/andlabs/add.go
deleted file mode 100644
index c948b88..0000000
--- a/andlabs/add.go
+++ /dev/null
@@ -1,72 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-func add(a *widget.Action) {
- log.Warn("andlabs add()", a.WidgetId, a.State.ProgName)
- if a.WidgetType == widget.Root {
- if me.treeRoot == nil {
- me.treeRoot = me.myTree.AddNode(a)
- }
- return
- }
- // n := addNode(a)
- n := me.myTree.AddNode(a)
-
- p := n.Parent
- switch n.WidgetType {
- case widget.Window:
- log.Warn("SPEEDY Add window", n.WidgetId, n.GetProgName())
- newWindow(p, n)
- return
- case widget.Group:
- log.Warn("SPEEDY Add Group", n.WidgetId, n.GetProgName())
- newGroup(p, n)
- return
- case widget.Grid:
- newGrid(n)
- return
- case widget.Box:
- newBox(n)
- return
- /*
- case widget.Tab:
- newTab(n)
- return
- */
- case widget.Label:
- newLabel(p, n)
- return
- case widget.Button:
- newButton(p, n)
- return
- case widget.Checkbox:
- newCheckbox(p, n)
- return
- case widget.Spinner:
- newSpinner(p, n)
- return
- case widget.Slider:
- newSlider(p, n)
- return
- case widget.Dropdown:
- newDropdown(p, n)
- return
- case widget.Combobox:
- newCombobox(p, n)
- return
- case widget.Textbox:
- newTextbox(p, n)
- return
- /*
- case widget.Image:
- newImage(p, n)
- return
- */
- default:
- log.Log(ERROR, "add() error TODO: ", n.WidgetType, n.State.ProgName)
- }
-}
diff --git a/andlabs/addText.go b/andlabs/addText.go
deleted file mode 100644
index e5c1483..0000000
--- a/andlabs/addText.go
+++ /dev/null
@@ -1,44 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/log"
- "go.wit.com/toolkits/tree"
-)
-
-func compareStrings(n *tree.Node, ss []string) {
-}
-
-// func (n *node) addText(a *widget.Action) {
-func addText(n *tree.Node, a *widget.Action) {
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
- log.Warn("andlabs addText() START with a.Value =", a.Value)
- if tk == nil {
- log.Log(ERROR, "addText error. tk == nil", n.State.ProgName, n.WidgetId)
- return
- }
- log.Warn("andlabs addText() Attempt on", n.WidgetType, "with", a.Value)
-
- switch n.WidgetType {
- case widget.Dropdown:
- for i, s := range a.State.Strings {
- log.Warn("andlabs a.State.Strings =", i, s)
- _, ok := n.Strings[s]
- // If the key exists
- if ok {
- log.Warn("andlabs a.State.Strings is here", i, s)
- } else {
- log.Warn("andlabs is not here", i, s)
- addDropdownName(n, s)
- // TODO: make numbers
- n.Strings[s] = 21
- }
- }
- case widget.Combobox:
- addComboboxName(n, widget.GetString(a.Value))
- default:
- log.Log(ERROR, "plugin Send() Don't know how to addText on", n.WidgetType, "yet", a.ActionType)
- }
- log.Log(CHANGE, "addText() END with a.Value =", a.Value)
-}
diff --git a/andlabs/box.go b/andlabs/box.go
deleted file mode 100644
index f2277f4..0000000
--- a/andlabs/box.go
+++ /dev/null
@@ -1,65 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-// make new Box here
-func newBox(n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
- var box *ui.Box
-
- if n.State.Direction == widget.Horizontal {
- box = ui.NewHorizontalBox()
- } else {
- box = ui.NewVerticalBox()
- }
- box.SetPadded(true)
-
- newt.uiBox = box
- newt.uiControl = box
- newt.boxC = 0
- n.TK = newt
- place(n.Parent, n)
-}
-
-/*
- rawBox -- hack to arbitrarily add a box in andlabs to work
- around the problem that a "group" can not have one entry in it
- TODO: fix this so that a box is "added on demand" that is,
- if "go.wit.com/gui/gui" sends you a 2nd thing to add to a group,
- automatically add a box then. The problem with this, is the macos, windows and linux gtk
- will panic on a move when an chind object is disasociated from the group
- I haven't had time to try to debug this, so, instead, it's just probably better to always
- add a box here. There doesn't seem to be any real issue with forcing a box to be inserted
- into the toolkits that is "outside" the binary tree of widgets. This only means, that on
- a destroy of the tree, this box must be checked
-
- even that is a probably not senario however since clicking on the close box in the toolkit
- has the operating system destroy everything in the window. it may or may not be possible
- to control that behavior. at this time, it's "undetermined" and the best course of action
- is to detect the window is destroyed and then remove all the toolkit information
- from all the nodes in the binary tree
-
- TODO: handle user killing/closing a window using the OS
-*/
-// func (n *node) rawBox() *ui.Box {
-func rawBox(n *tree.Node) *ui.Box {
- var box *ui.Box
-
- if n.State.Direction == widget.Horizontal {
- box = ui.NewHorizontalBox()
- } else {
- box = ui.NewVerticalBox()
- }
- box.SetPadded(true)
-
- return box
-}
diff --git a/andlabs/button.go b/andlabs/button.go
deleted file mode 100644
index 20a6541..0000000
--- a/andlabs/button.go
+++ /dev/null
@@ -1,30 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-// func (p *node) newButton(n *node) {
-func newButton(p *tree.Node, n *tree.Node) {
- if notNew(n) {
- return
- }
- var ptk *guiWidget
- ptk = p.TK.(*guiWidget)
- newt := new(guiWidget)
-
- b := ui.NewButton(n.GetLabel())
- newt.uiButton = b
- newt.uiControl = b
- newt.parent = ptk
-
- b.OnClicked(func(*ui.Button) {
- me.myTree.DoUserEvent(n)
- })
-
- n.TK = newt
- place(p, n)
-}
diff --git a/andlabs/checkbox.go b/andlabs/checkbox.go
deleted file mode 100644
index 221edb4..0000000
--- a/andlabs/checkbox.go
+++ /dev/null
@@ -1,30 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-func newCheckbox(p *tree.Node, n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
-
- newt.uiCheckbox = ui.NewCheckbox(n.GetLabel())
- newt.uiControl = newt.uiCheckbox
-
- newt.uiCheckbox.OnToggled(func(spin *ui.Checkbox) {
- n.SetValue(newt.checked())
- me.myTree.DoUserEvent(n)
- })
-
- n.TK = newt
- place(p, n)
-}
-
-func (t *guiWidget) checked() bool {
- return t.uiCheckbox.Checked()
-}
diff --git a/andlabs/combobox.go b/andlabs/combobox.go
deleted file mode 100644
index a2cf4c9..0000000
--- a/andlabs/combobox.go
+++ /dev/null
@@ -1,79 +0,0 @@
-package main
-
-import (
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-
- "go.wit.com/log"
- "go.wit.com/toolkits/tree"
-)
-
-func newCombobox(p, n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
-
- cb := ui.NewEditableCombobox()
- newt.uiEditableCombobox = cb
- newt.uiControl = cb
-
- // initialize the index
- newt.c = 0
- newt.val = make(map[int]string)
-
- cb.OnChanged(func(spin *ui.EditableCombobox) {
- n.SetValue(spin.Text())
- log.Warn("combobox changed =" + spin.Text() + ".")
- me.myTree.DoUserEvent(n)
- })
-
- n.TK = newt
- place(p, n)
-
- log.Warn("add combobox entries on create:", n.State.Strings)
- log.Warn("add combobox entries on create:", n.State.Strings)
- log.Warn("add combobox entries on create:", n.State.Strings)
- // add the initial combobox entries
- for i, s := range n.State.Strings {
- log.Warn("add combobox entries on create", n.GetProgName(), i, s)
- addComboboxName(n, s)
- }
- cur := n.String()
- log.Warn("add combobox: TODO: set default value on create", n.GetProgName(), cur)
- setComboboxName(n, cur)
-}
-
-func addComboboxName(n *tree.Node, s string) {
- if !ready(n) {
- return
- }
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
- log.Log(INFO, "addComboboxName()", n.WidgetId, "add:", s)
-
- tk.uiEditableCombobox.Append(s)
- if tk.val == nil {
- log.Log(INFO, "make map didn't work")
- return
- }
- tk.val[tk.c] = s
-
- // If this is the first menu added, set the dropdown to it
- if tk.c == 0 {
- log.Log(INFO, "THIS IS THE FIRST combobox", s)
- tk.uiEditableCombobox.SetText(s)
- }
- tk.c = tk.c + 1
-}
-
-func setComboboxName(n *tree.Node, s string) bool {
- if !ready(n) {
- return false
- }
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
- log.Log(INFO, "SetComboboxName()", n.WidgetId, ",", s)
- tk.uiEditableCombobox.SetText(s)
- return false
-}
diff --git a/andlabs/common.go b/andlabs/common.go
deleted file mode 100644
index ea981a9..0000000
--- a/andlabs/common.go
+++ /dev/null
@@ -1,61 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
-)
-
-type node struct {
- parent *node
- children []*node
-
- WidgetId int // widget ID
- WidgetType widget.WidgetType
- ParentId int // parent ID
-
- state widget.State
-
- // a reference name for programming and debuggign. Must be unique
- progname string
-
- // the text used for button labesl, window titles, checkbox names, etc
- label string
-
- // horizontal means layout widgets like books on a bookshelf
- // vertical means layout widgets like books in a stack
- // direction widget.Orientation
- direction widget.Orientation
-
- // This is how the values are passed back and forth
- // values from things like checkboxes & dropdown's
- value any
-
- strings []string
-
- // This is used for things like a slider(0,100)
- X int
- Y int
-
- // This is for the grid size & widget position
- W int
- H int
- AtW int
- AtH int
-
- vals []string // dropdown menu items
-
- // horizontal bool `default:false`
-
- hasTabs bool // does the window have tabs?
- currentTab bool // the visible tab
-
- // the internal plugin toolkit structure
- // in the gtk plugin, it has gtk things like margin & border settings
- // in the text console one, it has text console things like colors for menus & buttons
- tk *guiWidget
-}
-
-/*
-func (n *node) doUserEvent() {
- log.Log(ERROR, "doUserEvent() ERROR")
-}
-*/
diff --git a/andlabs/debug.go b/andlabs/debug.go
deleted file mode 100644
index f974783..0000000
--- a/andlabs/debug.go
+++ /dev/null
@@ -1,121 +0,0 @@
-package main
-
-import (
- "go.wit.com/log"
- // "go.wit.com/gui/widget"
-)
-
-var defaultBehavior bool = true
-
-var bookshelf bool // do you want things arranged in the box like a bookshelf or a stack?
-var canvas bool // if set to true, the windows are a raw canvas
-var menubar bool // for windows
-var stretchy bool // expand things like buttons to the maximum size
-var padded bool // add space between things like buttons
-var margin bool // add space around the frames of windows
-
-var debugToolkit bool = false
-var debugChange bool = false
-var debugPlugin bool = false
-var debugAction bool = false
-var debugFlags bool = false
-var debugGrid bool = false
-var debugNow bool = true
-var debugError bool = true
-
-// This is important. This sets the defaults for the gui. Without this, there isn't correct padding, etc
-func setDefaultBehavior(s bool) {
- defaultBehavior = s
- if defaultBehavior {
- log.Log(NOW, "Setting this toolkit to use the default behavior.")
- log.Log(NOW, "This is the 'guessing' part as defined by the wit/gui 'Principles'. Refer to the docs.")
- stretchy = false
- padded = true
- menubar = true
- margin = true
- canvas = false
- bookshelf = true // 99% of the time, things make a vertical stack of objects
- } else {
- log.Log(NOW, "This toolkit is set to ignore the default behavior.")
- }
-}
-
-func (t *guiWidget) Dump(b bool) {
- if !b {
- return
- }
- log.Log(NOW, "Name = ", t.Width, t.Height)
- if t.uiBox != nil {
- log.Log(NOW, "uiBox =", t.uiBox)
- }
- if t.uiButton != nil {
- log.Log(NOW, "uiButton =", t.uiButton)
- }
- if t.uiCombobox != nil {
- log.Log(NOW, "uiCombobox =", t.uiCombobox)
- }
- if t.uiWindow != nil {
- log.Log(NOW, "uiWindow =", t.uiWindow)
- }
- if t.uiTab != nil {
- log.Log(NOW, "uiTab =", t.uiTab)
- }
- if t.uiGroup != nil {
- log.Log(NOW, "uiGroup =", t.uiGroup)
- }
- if t.uiEntry != nil {
- log.Log(NOW, "uiEntry =", t.uiEntry)
- }
- if t.uiMultilineEntry != nil {
- log.Log(NOW, "uiMultilineEntry =", t.uiMultilineEntry)
- }
- if t.uiSlider != nil {
- log.Log(NOW, "uiSlider =", t.uiSlider)
- }
- if t.uiCheckbox != nil {
- log.Log(NOW, "uiCheckbox =", t.uiCheckbox)
- }
-}
-
-/*
-func GetDebugToolkit () bool {
- return debugToolkit
-}
-*/
-
-func (n *node) dumpWidget(b bool) {
- var info, d string
-
- if n == nil {
- log.Log(ERROR, "dumpWidget() node == nil")
- return
- }
- info = n.WidgetType.String()
-
- d = string(n.WidgetId) + " " + info + " " + n.progname
-
- var tabs string
- for i := 0; i < listChildrenDepth; i++ {
- tabs = tabs + defaultPadding
- }
- log.Log(NOW, tabs+d)
-}
-
-var defaultPadding string = " "
-var listChildrenDepth int = 0
-
-func (n *node) listChildren(dump bool) {
- if n == nil {
- return
- }
-
- n.dumpWidget(dump)
- if len(n.children) == 0 {
- return
- }
- for _, child := range n.children {
- listChildrenDepth += 1
- child.listChildren(dump)
- listChildrenDepth -= 1
- }
-}
diff --git a/andlabs/delete.go b/andlabs/delete.go
deleted file mode 100644
index 7d29bf2..0000000
--- a/andlabs/delete.go
+++ /dev/null
@@ -1,54 +0,0 @@
-package main
-
-// if you include more than just this import
-// then your plugin might be doing something un-ideal (just a guess from 2023/02/27)
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-// delete the child widget from the parent
-// p = parent, c = child
-func (n *node) destroy() {
- pId := n.parent.WidgetId
- cId := n.WidgetId
- log.Log(NOW, "delete()", pId, cId)
-
- pt := n.parent.tk
- ct := n.tk
- if ct == nil {
- log.Log(NOW, "delete FAILED (ct = mapToolkit[c] == nil) for c", pId, cId)
- // this pukes out a whole universe of shit
- // listMap()
- return
- }
-
- switch n.WidgetType {
- case widget.Button:
- log.Log(NOW, "Should delete Button here:", n.progname)
- log.Log(NOW, "Parent:")
- pt.Dump(true)
- log.Log(NOW, "Child:")
- ct.Dump(true)
- if pt.uiBox == nil {
- log.Log(NOW, "Don't know how to destroy this")
- } else {
- log.Log(NOW, "Fuck it, destroy the whole box", n.parent.progname)
- // pt.uiBox.Destroy() // You have a bug: You cannot destroy a uiControl while it still has a parent.
- pt.uiBox.SetPadded(false)
- pt.uiBox.Delete(4)
- ct.uiButton.Disable()
- // ct.uiButton.Hide()
- ct.uiButton.Destroy()
- }
-
- case widget.Window:
- log.Log(NOW, "Should delete Window here:", n.progname)
- default:
- log.Log(NOW, "Fuckit, let's destroy a button")
- if ct.uiButton != nil {
- pt.uiBox.Delete(4)
- ct.uiButton.Destroy()
- }
- }
-}
diff --git a/andlabs/demo.go b/andlabs/demo.go
deleted file mode 100644
index 1b94056..0000000
--- a/andlabs/demo.go
+++ /dev/null
@@ -1,94 +0,0 @@
-package main
-
-import (
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-
- "go.wit.com/log"
-)
-
-/*
- This is a code example taken directly from the toolkit andlabs/ui
-
- This code is here to double check that the toolkit itself still works
- the same way. This is intended as a sanity check.
-*/
-
-func BlankWindow(w *ui.Window) *ui.Box {
- hbox := ui.NewHorizontalBox()
- hbox.SetPadded(true)
- w.SetChild(hbox)
- return hbox
-}
-
-func (t *guiWidget) DemoNumbersPage() {
- var w *ui.Window
-
- log.Log(NOW, "Starting wit/gui toolkit andlabs/ui DemoNumbersPage()")
-
- w = t.uiWindow
- t.uiBox = makeNumbersPage()
- t.uiBox.SetPadded(true)
- w.SetChild(t.uiBox)
- w.SetTitle("Internal demo of andlabs/ui toolkit")
-}
-
-func makeNumbersPage() *ui.Box {
- hbox := ui.NewHorizontalBox()
- hbox.SetPadded(true)
-
- group := ui.NewGroup("Numbers")
- group.SetMargined(true)
- hbox.Append(group, true)
-
- vbox := ui.NewVerticalBox()
- vbox.SetPadded(true)
- group.SetChild(vbox)
-
- spinbox := ui.NewSpinbox(0, 100)
- slider := ui.NewSlider(0, 100)
- pbar := ui.NewProgressBar()
- spinbox.OnChanged(func(*ui.Spinbox) {
- slider.SetValue(spinbox.Value())
- pbar.SetValue(spinbox.Value())
- })
- slider.OnChanged(func(*ui.Slider) {
- spinbox.SetValue(slider.Value())
- pbar.SetValue(slider.Value())
- })
- vbox.Append(spinbox, false)
- vbox.Append(slider, false)
- vbox.Append(pbar, false)
-
- ip := ui.NewProgressBar()
- ip.SetValue(-1)
- vbox.Append(ip, false)
-
- group = ui.NewGroup("Lists")
- group.SetMargined(true)
- hbox.Append(group, true)
-
- vbox = ui.NewVerticalBox()
- vbox.SetPadded(true)
- group.SetChild(vbox)
-
- cbox := ui.NewCombobox()
- cbox.Append("Combobox Item 1")
- cbox.Append("Combobox Item 2")
- cbox.Append("Combobox Item 3")
- vbox.Append(cbox, false)
-
- ecbox := ui.NewEditableCombobox()
- ecbox.Append("Editable Item 1")
- ecbox.Append("Editable Item 2")
- ecbox.Append("Editable Item 3")
- vbox.Append(ecbox, false)
-
- rb := ui.NewRadioButtons()
- rb.Append("Radio Button 1")
- rb.Append("Radio Button 2")
- rb.Append("Radio Button 3")
- vbox.Append(rb, false)
-
- return hbox
-}
diff --git a/andlabs/dropdown.go b/andlabs/dropdown.go
deleted file mode 100644
index cda0026..0000000
--- a/andlabs/dropdown.go
+++ /dev/null
@@ -1,106 +0,0 @@
-package main
-
-import (
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-
- "go.wit.com/log"
- "go.wit.com/toolkits/tree"
-)
-
-func newDropdown(p, n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
- log.Log(INFO, "gui.Toolbox.newDropdown() START", n.GetProgName())
-
- cb := ui.NewCombobox()
- newt.uiCombobox = cb
- newt.uiControl = cb
-
- // initialize the index
- newt.c = 0
- newt.val = make(map[int]string)
-
- cb.OnSelected(func(spin *ui.Combobox) {
- i := spin.Selected()
- if newt.val == nil {
- log.Log(ERROR, "make map didn't work")
- n.SetValue("map did not work. ui.Combobox error")
- } else {
- n.SetValue(newt.val[i])
- }
- me.myTree.DoUserEvent(n)
- })
-
- n.TK = newt
- place(p, n)
-
- log.Warn("add dropdown entries on create:", n.State.Strings)
- log.Warn("add dropdown entries on create:", n.State.Strings)
- log.Warn("add dropdown entries on create:", n.State.Strings)
- if n.State.Strings == nil {
- return
- }
- // add the initial dropdown entries
- for i, s := range n.State.Strings {
- log.Warn("add dropdown: add entries on create", n.GetProgName(), i, s)
- addDropdownName(n, s)
- }
- cur := n.String()
- log.Warn("add dropdown: set default value on create", n.GetProgName(), cur)
- setDropdownName(n, cur)
-}
-
-func setDropdownInt(n *tree.Node, i int) {
- if !ready(n) {
- return
- }
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
- tk.uiCombobox.SetSelected(i)
-}
-
-func addDropdownName(n *tree.Node, s string) {
- if !ready(n) {
- return
- }
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
- log.Log(INFO, "addDropdownName()", n.WidgetId, "add:", s)
-
- tk.uiCombobox.Append(s)
- if tk.val == nil {
- log.Log(INFO, "make map didn't work")
- return
- }
- tk.val[tk.c] = s
-
- // If this is the first menu added, set the dropdown to it
- if tk.c == 0 {
- log.Log(INFO, "THIS IS THE FIRST Dropdown", s)
- tk.uiCombobox.SetSelected(0)
- }
- tk.c = tk.c + 1
-}
-
-func setDropdownName(n *tree.Node, s string) bool {
- if !ready(n) {
- return false
- }
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
- log.Log(INFO, "SetDropdownName()", n.WidgetId, ",", s)
-
- for i, tmp := range tk.val {
- if s == tmp {
- n.SetValue(s)
- setDropdownInt(n, i)
- log.Warn("SetDropdownInt() worked", tmp, i)
- return true
- }
- }
- log.Warn("SetDropdownName() failed", s)
- return false
-}
diff --git a/andlabs/go.mod b/andlabs/go.mod
deleted file mode 100644
index 66ac7bb..0000000
--- a/andlabs/go.mod
+++ /dev/null
@@ -1,11 +0,0 @@
-module go.wit.com/gui/toolkits/andlabs
-
-go 1.21.4
-
-require (
- go.wit.com/dev/andlabs/ui v0.0.1
- go.wit.com/gui/widget v1.1.3
- go.wit.com/log v0.5.4
-)
-
-require go.wit.com/dev/davecgh/spew v1.1.4 // indirect
diff --git a/andlabs/go.sum b/andlabs/go.sum
deleted file mode 100644
index 0a953ac..0000000
--- a/andlabs/go.sum
+++ /dev/null
@@ -1,12 +0,0 @@
-go.wit.com/dev/andlabs/ui v0.0.1 h1:SowOybLBu/qUOqp905EZikz5/iPa3GpmnCAPzNOYajM=
-go.wit.com/dev/andlabs/ui v0.0.1/go.mod h1:mlKEEe05ZJURzjh1LtjzdGMHVbJm9a7BUaVpA9cHxsM=
-go.wit.com/dev/davecgh/spew v1.1.3 h1:hqnB5qsPgC2cLZaJXqQJspQ5n/Ugry9kyL3tLk0hVzQ=
-go.wit.com/dev/davecgh/spew v1.1.3/go.mod h1:sihvWmnQ/09FWplnEmozt90CCVqBtGuPXM811tgfhFA=
-go.wit.com/dev/davecgh/spew v1.1.4 h1:C9hj/rjlUpdK+E6aroyLjCbS5MFcyNUOuP1ICLWdNek=
-go.wit.com/dev/davecgh/spew v1.1.4/go.mod h1:sihvWmnQ/09FWplnEmozt90CCVqBtGuPXM811tgfhFA=
-go.wit.com/gui/widget v1.1.3 h1:GvLzGSOF9tfmoh6HNbFdN+NSlBo2qeS/Ba2TnQQ1A1U=
-go.wit.com/gui/widget v1.1.3/go.mod h1:A6/FaiFQtAHTjgo7c4FrokXe6bXX1Cowo35b2Lgi31E=
-go.wit.com/log v0.5.3 h1:/zHkniOPusPEuX1R401rMny9uwSO/nSU/QOMx6qoEnE=
-go.wit.com/log v0.5.3/go.mod h1:LzIzVxc2xJQxWQBtV9VbV605P4TOxmYDCl+BZF38yGE=
-go.wit.com/log v0.5.4 h1:vijLRPTUgChb8J5tx/7Uma/lGTUxeSXosFbheAmL914=
-go.wit.com/log v0.5.4/go.mod h1:BaJBfHFqcJSJLXGQ9RHi3XVhPgsStxSMZRlaRxW4kAo=
diff --git a/andlabs/grid.go b/andlabs/grid.go
deleted file mode 100644
index 603854c..0000000
--- a/andlabs/grid.go
+++ /dev/null
@@ -1,29 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-// Grid numbering by (X,Y)
-// -----------------------------
-// -- (1,1) -- (2,1) -- (3,1) --
-// -- (1,2) -- (2,1) -- (3,1) --
-// -----------------------------
-func newGrid(n *tree.Node) {
- if notNew(n) {
- return
- }
- var newt *guiWidget
- newt = new(guiWidget)
-
- c := ui.NewGrid()
- newt.uiGrid = c
- newt.uiControl = c
- c.SetPadded(true)
-
- n.TK = newt
- place(n.Parent, n)
-}
diff --git a/andlabs/group.go b/andlabs/group.go
deleted file mode 100644
index 0c2274a..0000000
--- a/andlabs/group.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package main
-
-import (
- // "go.wit.com/gui/widget"
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-func newGroup(p, n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
-
- g := ui.NewGroup(n.GetLabel())
- g.SetMargined(true)
- newt.uiGroup = g
- newt.uiControl = g
-
- n.TK = newt
- place(p, n)
-}
diff --git a/andlabs/icon.go b/andlabs/icon.go
deleted file mode 100644
index f56d1db..0000000
--- a/andlabs/icon.go
+++ /dev/null
@@ -1,27 +0,0 @@
-package main
-
-var rawImage = []byte{
- 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
- 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
- 0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff, 0x61, 0x00, 0x00, 0x00,
- 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00,
- 0x00, 0xca, 0x49, 0x44, 0x41, 0x54, 0x38, 0x11, 0xa5, 0x93, 0xb1, 0x0d,
- 0xc2, 0x40, 0x0c, 0x45, 0x1d, 0xc4, 0x14, 0x0c, 0x12, 0x41, 0x0f, 0x62,
- 0x12, 0x46, 0x80, 0x8a, 0x2e, 0x15, 0x30, 0x02, 0x93, 0x20, 0x68, 0x11,
- 0x51, 0x06, 0x61, 0x0d, 0x88, 0x2d, 0x7f, 0xdb, 0x07, 0x87, 0x08, 0xdc,
- 0x49, 0x91, 0x7d, 0xf6, 0xf7, 0xf3, 0x4f, 0xa4, 0x54, 0xbb, 0xeb, 0xf6,
- 0x41, 0x05, 0x67, 0xcc, 0xb3, 0x9b, 0xfa, 0xf6, 0x17, 0x62, 0xdf, 0xcd,
- 0x48, 0x00, 0x32, 0xbd, 0xa8, 0x1d, 0x72, 0xee, 0x3c, 0x47, 0x16, 0xfb,
- 0x5c, 0x53, 0x8d, 0x03, 0x30, 0x14, 0x84, 0xf7, 0xd5, 0x89, 0x26, 0xc7,
- 0x25, 0x10, 0x36, 0xe4, 0x05, 0xa2, 0x51, 0xbc, 0xc4, 0x1c, 0xc3, 0x1c,
- 0xed, 0x30, 0x1c, 0x8f, 0x16, 0x3f, 0x02, 0x78, 0x33, 0x20, 0x06, 0x60,
- 0x97, 0x70, 0xaa, 0x45, 0x7f, 0x85, 0x60, 0x5d, 0xb6, 0xf4, 0xc2, 0xc4,
- 0x3e, 0x0f, 0x44, 0xcd, 0x1b, 0x20, 0x90, 0x0f, 0xed, 0x85, 0xa8, 0x55,
- 0x05, 0x42, 0x43, 0xb4, 0x9e, 0xce, 0x71, 0xb3, 0xe8, 0x0e, 0xb4, 0xc4,
- 0xc3, 0x39, 0x21, 0xb7, 0x73, 0xbd, 0xe4, 0x1b, 0xe4, 0x04, 0xb6, 0xaa,
- 0x4f, 0x18, 0x2c, 0xee, 0x42, 0x31, 0x01, 0x84, 0xfa, 0xe0, 0xd4, 0x00,
- 0xdf, 0xb6, 0x83, 0xf8, 0xea, 0xc2, 0x00, 0x10, 0xfc, 0x1a, 0x05, 0x30,
- 0x74, 0x3b, 0xe0, 0xd1, 0x45, 0xb1, 0x83, 0xaa, 0xf4, 0x77, 0x7e, 0x02,
- 0x87, 0x1f, 0x42, 0x7f, 0x9e, 0x2b, 0xe8, 0xdf, 0x00, 0x00, 0x00, 0x00,
- 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
-}
diff --git a/andlabs/image.go b/andlabs/image.go
deleted file mode 100644
index 752ae99..0000000
--- a/andlabs/image.go
+++ /dev/null
@@ -1,49 +0,0 @@
-package main
-
-import (
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-// make new Image using andlabs/ui
-func (p *node) newImage(n *node) {
- newt := new(guiWidget)
- var img *ui.Image
-
- img = ui.NewImage(16, 16)
-
- newt.uiImage = img
- // newt.uiControl = img
-
- n.tk = newt
- // p.place(n)
-}
-
-/*
- if (a.Name == "image") {
- log(true, "NewTextbox() trying to add a new image")
- i := ui.NewImage(16, 16)
- img, _, err := image.Decode(bytes.NewReader(rawImage))
- if err != nil {
- panic(err)
- }
- nr, ok := img.(*image.RGBA)
- if !ok {
- i2 := image.NewRGBA(img.Bounds())
- draw.Draw(i2, i2.Bounds(), img, img.Bounds().Min, draw.Src)
- nr = i2
- }
- i.Append(nr)
- t.uiBox.Append(i, true)
-
- var img *ui.Image
- var icon []byte
- var imgA image.Image
-
- icon, _ = res.ReadFile("resources/ping6.working.png")
- // imgA, _, err := image.Decode(bytes.NewReader(b))
- imgA, _, _ = image.Decode(icon)
- img.Append(imgA)
- img.Append(icon)
- }
-*/
diff --git a/andlabs/label.go b/andlabs/label.go
deleted file mode 100644
index bbde03d..0000000
--- a/andlabs/label.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-func newLabel(p, n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
- c := ui.NewLabel(n.GetLabel())
- newt.uiLabel = c
- newt.uiControl = c
-
- n.TK = newt
- place(p, n)
-}
diff --git a/andlabs/log.go b/andlabs/log.go
deleted file mode 100644
index e7f4163..0000000
--- a/andlabs/log.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package main
-
-/*
- this enables command line options from other packages like 'gui' and 'log'
-*/
-
-import (
- log "go.wit.com/log"
-)
-
-var NOW *log.LogFlag
-var INFO *log.LogFlag
-
-var SPEW *log.LogFlag
-var WARN *log.LogFlag
-
-var ERROR *log.LogFlag
-var CHANGE *log.LogFlag
-var TOOLKIT *log.LogFlag
-
-func init() {
- full := "toolkit/nocui"
- short := "nocui"
-
- NOW = log.NewFlag("NOW", true, full, short, "temp debugging stuff")
- INFO = log.NewFlag("INFO", false, full, short, "normal debugging stuff")
-
- WARN = log.NewFlag("WARN", true, full, short, "bad things")
- SPEW = log.NewFlag("SPEW", false, full, short, "spew stuff")
-
- ERROR = log.NewFlag("ERROR", false, full, short, "toolkit errors")
- CHANGE = log.NewFlag("ERROR", false, full, short, "show when the user does things")
- TOOLKIT = log.NewFlag("ERROR", false, full, short, "andlabs specific stuff")
-}
diff --git a/andlabs/main.go b/andlabs/main.go
deleted file mode 100644
index c543f6e..0000000
--- a/andlabs/main.go
+++ /dev/null
@@ -1,70 +0,0 @@
-package main
-
-import (
- "runtime/debug"
- "sync"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- // the _ means we only need this for the init()
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-var uiMainUndef bool = true
-var uiMain sync.Once
-var muAction sync.Mutex
-
-func queueMain(currentA widget.Action) {
- defer func() {
- if r := recover(); r != nil {
- log.Warn("YAHOOOO Recovered in queueMain() application:", r)
- log.Println("Recovered from panic:", r)
- log.Println("Stack trace:")
- debug.PrintStack()
- me.myTree.DoToolkitPanic()
- }
- }()
- ui.QueueMain(func() {
- rawAction(&currentA)
- })
-}
-
-func guiMain() {
- defer func() {
- if r := recover(); r != nil {
- log.Warn("YAHOOOO Recovered in guiMain application:", r)
- log.Println("Recovered from panic:", r)
- log.Println("Stack trace:")
- debug.PrintStack()
- me.myTree.DoToolkitPanic()
- }
- }()
- ui.Main(func() {
- demoUI()
- })
-}
-
-func Init() {
- log.Warn("Init() TODO: move init() to here")
-}
-
-// This is important. This sets the defaults for the gui. Without this, there isn't correct padding, etc
-func init() {
- log.Log(INFO, "Init() START")
- log.Log(INFO, "Init()")
- // Can you pass values to a plugin init() ? Otherwise, there is no way to safely print
- // log.Log(INFO, "init() Setting defaultBehavior = true")
- setDefaultBehavior(true)
-
- me.myTree = tree.New()
- me.myTree.PluginName = "andlabs"
- me.myTree.ActionFromChannel = queueMain
-
- // TODO: this is messed up. run ui.Main() from the first add? Initialize it with an empty thing first?
- // fake out the OS toolkit by making a fake window. This is probably needed for macos & windows
- // actually, this probably breaks the macos build
- go guiMain()
-}
diff --git a/andlabs/place.go b/andlabs/place.go
deleted file mode 100644
index 9ca11c6..0000000
--- a/andlabs/place.go
+++ /dev/null
@@ -1,112 +0,0 @@
-package main
-
-import (
- // "os"
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-
- "go.wit.com/toolkits/tree"
-)
-
-// This routine is very specific to this toolkit
-// It's annoying and has to be copied to each widget when there are changes
-// it could be 'simplfied' maybe or made to be more generic, but this is as far as I've gotten
-// it's probably not worth working much more on this toolkit, the andlabs/ui has been great and got me here!
-// but it's time to write direct GTK, QT, macos and windows toolkit plugins
-// -- jcarr 2023/03/09
-
-// Grid numbering examples by (X,Y)
-// ---------
-// -- (1) --
-// -- (2) --
-// ---------
-//
-// -----------------------------
-// -- (1,1) -- (1,2) -- (1,3) --
-// -- (2,1) -- (2,2) -- (2,3) --
-// -----------------------------
-
-// internally for andlabs/ui
-// (x&y flipped and start at zero)
-// -----------------------------
-// -- (0,0) -- (1,0) -- (1,0) --
-// -- (0,1) -- (1,1) -- (1,1) --
-// -----------------------------
-
-func place(p *tree.Node, n *tree.Node) bool {
- log.Warn("SPEEDY newplace() 1 START", n.WidgetId, n.GetProgName(), n.GetLabel(), n.String())
- log.Warn("SPEEDY newplace() n.State.Strings =", n.State.Strings)
- log.Log(INFO, "place() 1 START", n.WidgetType, n.GetProgName(), n.GetLabel())
- if !ready(n) {
- log.Warn("place() 1 START not ready()")
- return false
- }
- log.Log(INFO, "place() 1 START ready()")
- var tk, ptk *guiWidget
- tk = n.TK.(*guiWidget)
- ptk = p.TK.(*guiWidget)
- log.Warn("SPEEDY newplace() 2 START", n.WidgetId, n.GetProgName(), n.GetLabel())
-
- if ptk == nil {
- log.Log(ERROR, "ptk == nil", p.GetProgName(), p.ParentId, p.WidgetType, ptk)
- log.Log(ERROR, "n = ", n.GetProgName(), n.ParentId, n.WidgetType, tk)
- log.Warn("SPEEDY ptk == nil", n.WidgetId, n.GetProgName())
- log.Sleep(1)
- panic("ptk == nil")
- }
-
- log.Log(INFO, "place() switch", p.WidgetType)
- log.Warn("SPEEDY newplace() before switch", n.WidgetId, n.GetProgName())
- switch p.WidgetType {
- case widget.Grid:
- tk.gridX = n.State.GridOffset.X - 1
- tk.gridY = n.State.GridOffset.Y - 1
- log.Warn("place() on Grid at gridX,gridY", tk.gridX, tk.gridY)
- ptk.uiGrid.Append(tk.uiControl,
- tk.gridX, tk.gridY, 1, 1,
- false, ui.AlignFill, false, ui.AlignFill)
- return true
- case widget.Group:
- if ptk.uiBox == nil {
- log.Log(WARN, "place() andlabs hack group to use add a box", n.GetProgName(), n.WidgetType)
- ptk.uiBox = rawBox(n)
- ptk.uiGroup.SetChild(ptk.uiBox)
- }
- ptk.uiBox.Append(tk.uiControl, stretchy)
- return true
- case widget.Tab:
- if ptk.uiTab == nil {
- log.Log(ERROR, "ptk.uiTab == nil for n.WidgetId =", n.WidgetId, "ptk =", ptk)
- panic("ptk.uiTab == nil")
- }
- if tk.uiControl == nil {
- log.Log(ERROR, "tk.uiControl == nil for n.WidgetId =", n.WidgetId, "tk =", tk)
- panic("tk.uiControl == nil")
- }
- log.Log(ERROR, "CHECK LOGIC ON THIS. APPENDING directly into a window without a tab")
- // log.Log(ERROR, "THIS SHOULD NEVER HAPPEN ??????? trying to place() node=", n.WidgetId, n.GetProgName(), n.Text, n.WidgetType)
- // log.Log(ERROR, "THIS SHOULD NEVER HAPPEN ??????? trying to place() on parent=", p.WidgetId, p.GetProgName(), p.Text, p.WidgetType)
- // panic("tk.uiControl == nil")
- ptk.uiTab.Append(widget.GetString(n.State.Value), tk.uiControl)
- ptk.boxC += 1
- return true
- case widget.Box:
- log.Warn("SPEEDY Add Something to Box", n.WidgetId, n.GetProgName())
- log.Log(INFO, "place() uiBox =", ptk.uiBox)
- log.Log(INFO, "place() uiControl =", tk.uiControl)
- ptk.uiBox.Append(tk.uiControl, stretchy)
- ptk.boxC += 1
- return true
- case widget.Window:
- log.Warn("SPEEDY Add Something to Window", n.WidgetId, n.GetProgName())
- ptk.uiWindow.SetChild(tk.uiControl)
- return true
- default:
- log.Log(ERROR, "place() how? Parent =", p.WidgetId, p.WidgetType)
- }
- log.Warn("SPEEDY newplace() return", n.WidgetId, n.GetProgName())
- return false
-}
diff --git a/andlabs/setText.go b/andlabs/setText.go
deleted file mode 100644
index 2e4b97b..0000000
--- a/andlabs/setText.go
+++ /dev/null
@@ -1,76 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/log"
- "go.wit.com/toolkits/tree"
-)
-
-// func (n *node) setText(a *widget.Action) {
-func setText(n *tree.Node, a *widget.Action) {
- name := widget.GetString(a.Value)
- var tk *guiWidget
- tk = n.TK.(*guiWidget)
-
- log.Log(CHANGE, "setText() START with text =", name)
- if tk == nil {
- log.Log(ERROR, "setText error. tk == nil", n.GetProgName(), n.WidgetId)
- return
- }
- log.Log(CHANGE, "setText() Attempt on", n.WidgetType, "with", name)
-
- switch n.WidgetType {
- case widget.Window:
- log.Warn("setText() Attempt to set the title to", name)
- tk.uiWindow.SetTitle(name)
- case widget.Tab:
- case widget.Group:
- tk.uiGroup.SetTitle(name)
- case widget.Checkbox:
- tk.uiCheckbox.SetText(name)
- case widget.Textbox:
- if tk.uiEntry != nil {
- tk.uiEntry.SetText(name)
- }
- if tk.uiMultilineEntry != nil {
- tk.uiMultilineEntry.SetText(name)
- }
- case widget.Label:
- tk.uiLabel.SetText(name)
- case widget.Button:
- tk.uiButton.SetText(name)
- case widget.Slider:
- log.Log(ERROR, "setText() on slider unknown", a.ActionType, "on checkbox", n.GetProgName())
- case widget.Spinner:
- log.Log(ERROR, "setText() on spinner unknown", a.ActionType, "on checkbox", n.GetProgName())
- case widget.Dropdown:
- var orig int
- var i int = -1
- var s string
- orig = tk.uiCombobox.Selected()
- log.Log(CHANGE, "try to set the Dropdown to", name, "from", orig)
- // try to find the string
- for i, s = range tk.val {
- log.Log(CHANGE, "i, s", i, s)
- if name == s {
- tk.uiCombobox.SetSelected(i)
- log.Log(CHANGE, "setText() Dropdown worked.", name)
- return
- }
- }
- log.Log(ERROR, "setText() Dropdown did not find:", name)
- // if i == -1, then there are not any things in the menu to select
- if i == -1 {
- return
- }
- // if the string was never set, then set the dropdown to the last thing added to the menu
- if orig == -1 {
- tk.uiCombobox.SetSelected(i)
- }
- case widget.Combobox:
- tk.uiEditableCombobox.SetText(name)
- default:
- log.Log(ERROR, "plugin Send() Don't know how to setText on", n.WidgetType, "yet", a.ActionType)
- }
- log.Log(CHANGE, "setText() END with name =")
-}
diff --git a/andlabs/slider.go b/andlabs/slider.go
deleted file mode 100644
index ec82afe..0000000
--- a/andlabs/slider.go
+++ /dev/null
@@ -1,31 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-func newSlider(p, n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
-
- var x, y int
- x = n.State.Range.Low
- y = n.State.Range.High
-
- s := ui.NewSlider(x, y)
- newt.uiSlider = s
- newt.uiControl = s
-
- s.OnChanged(func(spin *ui.Slider) {
- n.SetValue(newt.uiSlider.Value())
- me.myTree.DoUserEvent(n)
- })
-
- n.TK = newt
- place(p, n)
-}
diff --git a/andlabs/spinner.go b/andlabs/spinner.go
deleted file mode 100644
index a029edf..0000000
--- a/andlabs/spinner.go
+++ /dev/null
@@ -1,27 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-func newSpinner(p, n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
-
- s := ui.NewSpinbox(n.State.Range.Low, n.State.Range.High)
- newt.uiSpinbox = s
- newt.uiControl = s
-
- s.OnChanged(func(s *ui.Spinbox) {
- n.SetValue(newt.uiSpinbox.Value())
- me.myTree.DoUserEvent(n)
- })
-
- n.TK = newt
- place(p, n)
-}
diff --git a/andlabs/structs.go b/andlabs/structs.go
deleted file mode 100644
index 4e1c056..0000000
--- a/andlabs/structs.go
+++ /dev/null
@@ -1,64 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-// var andlabs map[int]*andlabsT
-// var callback func(int) bool
-// var callback chan toolkit.Action
-
-// It's probably a terrible idea to call this 'me'
-var me config
-
-type config struct {
- rootNode *tree.Node // the base of the binary tree. it should have id == 0
- treeRoot *tree.Node // the base of the binary tree. it should have id == 0
- myTree *tree.TreeInfo
-}
-
-// stores the raw toolkit internals
-type guiWidget struct {
- Width int
- Height int
-
- // tw *toolkit.Widget
- parent *guiWidget
- children []*guiWidget
-
- // used to track if a tab has a child widget yet
- child bool
-
- uiControl ui.Control
-
- uiBox *ui.Box
- uiButton *ui.Button
- uiCombobox *ui.Combobox
- uiCheckbox *ui.Checkbox
- uiEntry *ui.Entry
- uiGroup *ui.Group
- uiLabel *ui.Label
- uiSlider *ui.Slider
- uiSpinbox *ui.Spinbox
- uiTab *ui.Tab
- uiWindow *ui.Window
- uiMultilineEntry *ui.MultilineEntry
- uiEditableCombobox *ui.EditableCombobox
- uiImage *ui.Image
-
- uiGrid *ui.Grid
- gridX int
- gridY int
-
- // used as a counter to work around limitations of widgets like combobox
- // this is probably fucked up and in many ways wrong because of unsafe goroutine threading
- // but it's working for now due to the need for need for a correct interaction layer betten toolkits
- c int
- val map[int]string
-
- // andlabs/ui only accesses widget id numbers
- boxC int // how many things on in a box or how many tabs
-}
diff --git a/andlabs/tab.go b/andlabs/tab.go
deleted file mode 100644
index 2307e6b..0000000
--- a/andlabs/tab.go
+++ /dev/null
@@ -1,117 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-/*
-This adds a tab
-
-andlabs/ui is goofy in the sense that you have to determine
-if the ui.Window already has a tab in it. If it does, then
-you need to add this tab and not run SetChild() on the window
-or instead it replaces the existing tab with the new one
-
-I work around this by always sending a Toolkit that is a tab
-once there is one. If you send a Window here, it will replace
-any existing tabs rather than adding a new one
-*/
-func (p *node) newTab(n *node) {
- var newt *guiWidget
-
- if p == nil {
- log.Log(ERROR, "newTab() p == nil. how the fuck does this happen?", n.WidgetId, n.ParentId)
- }
- if p.WidgetType != widget.Window {
- log.Log(ERROR, "newTab() uiWindow == nil. I can't add a toolbar without window", n.WidgetId, n.ParentId)
- return
- }
- t := p.tk
-
- log.Log(TOOLKIT, "newTab() START", n.WidgetId, n.ParentId)
-
- if t.uiTab == nil {
- // this means you have to make a new tab
- log.Log(TOOLKIT, "newTab() GOOD. This should be the first tab:", n.WidgetId, n.ParentId)
- newt = rawTab(t.uiWindow, widget.GetString(n.value))
- t.uiTab = newt.uiTab
- } else {
- // this means you have to append a tab
- log.Log(TOOLKIT, "newTab() GOOD. This should be an additional tab:", n.WidgetId, n.ParentId)
- if n.WidgetType == widget.Tab {
- // andlabs doesn't have multiple tab widgets so make a fake one?
- // this makes a guiWidget internal structure with the parent values
- newt = new(guiWidget)
- newt.uiWindow = t.uiWindow
- newt.uiTab = t.uiTab
- } else {
- newt = t.appendTab(widget.GetString(n.value))
- }
- }
-
- n.tk = newt
-}
-
-// This sets _all_ the tabs to Margin = true
-//
-// TODO: do proper tab tracking (will be complicated). low priority
-func tabSetMargined(tab *ui.Tab, b bool) {
- c := tab.NumPages()
- for i := 0; i < c; i++ {
- log.Log(TOOLKIT, "SetMargined", i, b)
- tab.SetMargined(i, b)
- }
-}
-
-func rawTab(w *ui.Window, name string) *guiWidget {
- var newt guiWidget
- log.Log(TOOLKIT, "rawTab() START", name)
-
- if w == nil {
- log.Log(ERROR, "UiWindow == nil. I can't add a tab without a window")
- log.Log(ERROR, "UiWindow == nil. I can't add a tab without a window")
- log.Log(ERROR, "UiWindow == nil. I can't add a tab without a window")
- // sleep(1)
- return nil
- }
-
- tab := ui.NewTab()
- w.SetChild(tab)
- newt.uiTab = tab
- newt.uiControl = tab
- log.Log(TOOLKIT, "rawTab() END", name)
- return &newt
-}
-
-func (t *guiWidget) appendTab(name string) *guiWidget {
- var newT guiWidget
- log.Log(TOOLKIT, "appendTab() ADD", name)
-
- if t.uiTab == nil {
- log.Log(TOOLKIT, "UiWindow == nil. I can't add a widget without a place to put it")
- panic("should never have happened. wit/gui/toolkit has ui.Tab == nil")
- }
- log.Log(TOOLKIT, "appendTab() START name =", name)
-
- var hbox *ui.Box
- if defaultBehavior {
- hbox = ui.NewHorizontalBox()
- } else {
- if bookshelf {
- hbox = ui.NewHorizontalBox()
- } else {
- hbox = ui.NewVerticalBox()
- }
- }
- hbox.SetPadded(padded)
- t.uiTab.Append(name, hbox)
-
- newT.uiWindow = t.uiWindow
- newT.uiTab = t.uiTab
- newT.uiBox = hbox
- return &newT
-}
diff --git a/andlabs/textbox.go b/andlabs/textbox.go
deleted file mode 100644
index 1e90dd3..0000000
--- a/andlabs/textbox.go
+++ /dev/null
@@ -1,37 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-)
-
-func newTextbox(p, n *tree.Node) {
- if notNew(n) {
- return
- }
- newt := new(guiWidget)
-
- if n.State.Range.Low == 1 {
- e := ui.NewEntry()
- newt.uiEntry = e
- newt.uiControl = e
-
- e.OnChanged(func(spin *ui.Entry) {
- n.SetValue(spin.Text())
- me.myTree.DoUserEvent(n)
- })
- } else {
- e := ui.NewNonWrappingMultilineEntry()
- newt.uiMultilineEntry = e
- newt.uiControl = e
-
- e.OnChanged(func(spin *ui.MultilineEntry) {
- n.SetValue(spin.Text())
- me.myTree.DoUserEvent(n)
- })
- }
- n.TK = newt
- place(p, n)
-}
diff --git a/andlabs/tree.go b/andlabs/tree.go
deleted file mode 100644
index b39857c..0000000
--- a/andlabs/tree.go
+++ /dev/null
@@ -1,31 +0,0 @@
-package main
-
-/*
- This code should be common to all gui plugins
-
- There are some helper functions that are probably going to be
- the same everywhere. Mostly due to handling the binary tree structure
- and the channel communication
-
- For now, it's just a symlink to the 'master' version in
- ./toolkit/nocui/common.go
-*/
-
-import (
- "go.wit.com/lib/widget"
-)
-
-// Other goroutines must use this to access the GUI
-//
-// You can not acess / process the GUI thread directly from
-// other goroutines. This is due to the nature of how
-// Linux, MacOS and Windows work (they all work differently. suprise. surprise.)
-//
-// this sets the channel to send user events back from the plugin
-func Callback(guiCallback chan widget.Action) {
- me.myTree.Callback(guiCallback)
-}
-
-func PluginChannel() chan widget.Action {
- return me.myTree.PluginChannel()
-}
diff --git a/andlabs/updateui.go b/andlabs/updateui.go
deleted file mode 100644
index 8c94163..0000000
--- a/andlabs/updateui.go
+++ /dev/null
@@ -1,97 +0,0 @@
-package main
-
-import (
- "go.wit.com/dev/andlabs/ui"
-)
-
-// Example showing how to update the UI using the QueueMain function
-// especially if the update is coming from another goroutine
-//
-// see QueueMain in 'main.go' for detailed description
-
-var count int
-
-func demoUI() {
- mainWindow := ui.NewWindow("libui Updating UI", 640, 480, true)
- mainWindow.OnClosing(func(*ui.Window) bool {
- ui.Quit()
- return true
- })
- ui.OnShouldQuit(func() bool {
- mainWindow.Destroy()
- return true
- })
-
- vbContainer := ui.NewVerticalBox()
- vbContainer.SetPadded(true)
-
- inputGroup := ui.NewGroup("Input")
- inputGroup.SetMargined(true)
-
- vbInput := ui.NewVerticalBox()
- vbInput.SetPadded(true)
-
- inputForm := ui.NewForm()
- inputForm.SetPadded(true)
-
- message := ui.NewEntry()
- message.SetText("Hello World")
- inputForm.Append("What message do you want to show?", message, false)
-
- showMessageButton := ui.NewButton("Show message")
- clearMessageButton := ui.NewButton("Clear message")
-
- vbInput.Append(inputForm, false)
- vbInput.Append(showMessageButton, false)
- vbInput.Append(clearMessageButton, false)
-
- inputGroup.SetChild(vbInput)
-
- messageGroup := ui.NewGroup("Message")
- messageGroup.SetMargined(true)
-
- vbMessage := ui.NewVerticalBox()
- vbMessage.SetPadded(true)
-
- messageLabel := ui.NewLabel("")
-
- vbMessage.Append(messageLabel, false)
-
- messageGroup.SetChild(vbMessage)
-
- countGroup := ui.NewGroup("Counter")
- countGroup.SetMargined(true)
-
- vbCounter := ui.NewVerticalBox()
- vbCounter.SetPadded(true)
-
- countLabel := ui.NewLabel("blah")
-
- vbCounter.Append(countLabel, false)
- countGroup.SetChild(vbCounter)
-
- vbContainer.Append(inputGroup, false)
- vbContainer.Append(messageGroup, false)
- vbContainer.Append(countGroup, false)
-
- mainWindow.SetChild(vbContainer)
-
- showMessageButton.OnClicked(func(*ui.Button) {
- // Update the UI directly as it is called from the main thread
- messageLabel.SetText(message.Text())
- })
-
- clearMessageButton.OnClicked(func(*ui.Button) {
- // Update the UI directly as it is called from the main thread
- messageLabel.SetText("")
- })
-
- // this is messed up.
- // mainWindow.Show()
-}
-
-/*
-func main() {
- ui.Main(setupUI)
-}
-*/
diff --git a/andlabs/widget.go b/andlabs/widget.go
deleted file mode 100644
index 6600fa6..0000000
--- a/andlabs/widget.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/toolkits/tree"
-)
-
-func initWidget(n *tree.Node) *guiWidget {
- var w *guiWidget
- w = new(guiWidget)
-
- if n.WidgetType == widget.Root {
- n.WidgetId = 0
- me.treeRoot = n
- return w
- }
- return w
-}
diff --git a/andlabs/window.go b/andlabs/window.go
deleted file mode 100644
index 734654e..0000000
--- a/andlabs/window.go
+++ /dev/null
@@ -1,51 +0,0 @@
-package main
-
-import (
- "go.wit.com/dev/andlabs/ui"
- _ "go.wit.com/dev/andlabs/ui/winmanifest"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
- "go.wit.com/toolkits/tree"
-)
-
-func (t *guiWidget) MessageWindow(msg1 string, msg2 string) {
- ui.MsgBox(t.uiWindow, msg1, msg2)
-}
-
-func (t *guiWidget) ErrorWindow(msg1 string, msg2 string) {
- ui.MsgBoxError(t.uiWindow, msg1, msg2)
-}
-
-func newWindow(p, n *tree.Node) {
- var newt *guiWidget
- newt = new(guiWidget)
-
- // menubar bool is if the OS defined border on the window should be used
- win := ui.NewWindow(n.GetProgName(), 640, 480, menubar)
- win.SetBorderless(canvas)
- win.SetMargined(margin)
- win.OnClosing(func(*ui.Window) bool {
- // show(n, false)
- me.myTree.DoWindowCloseEvent(n)
- return false
- })
- newt.uiWindow = win
- newt.uiControl = win
-
- n.TK = newt
- place(p, n)
- win.Show()
- return
-}
-
-func (n *node) SetWindowTitle(title string) {
- log.Log(CHANGE, "toolkit NewWindow", widget.GetString(n.value), "title", title)
- win := n.tk.uiWindow
- if win == nil {
- log.Log(ERROR, "Error: no window", n.WidgetId)
- } else {
- win.SetTitle(title)
- log.Log(CHANGE, "Setting the window title", title)
- }
-}
diff --git a/gocui/Makefile b/gocui/Makefile
deleted file mode 100644
index fffcfa7..0000000
--- a/gocui/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-all: plugin
- ldd ../gocui.so
-
-plugin:
- GO111MODULE=off go build -v -buildmode=plugin -o ../gocui.so
-
-goget:
- go get -v -t -u
-
-objdump:
- objdump -t ../gocui.so |less
-
-log:
- reset
- tail -f /tmp/witgui.* /tmp/guilogfile
-
-cleanbuild:
- go build -v -x -buildmode=plugin -o ../nocui.so
-
-check-git-clean:
- @git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)
-
-redomod:
- rm -f go.*
- GO111MODULE= go mod init
- GO111MODULE= go mod tidy
diff --git a/gocui/add.go b/gocui/add.go
deleted file mode 100644
index 151d4d2..0000000
--- a/gocui/add.go
+++ /dev/null
@@ -1,80 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
- log "go.wit.com/log"
-)
-
-var fakeStartWidth int = me.FakeW
-var fakeStartHeight int = me.TabH + me.FramePadH
-
-// setup fake labels for non-visible things off screen
-func (n *node) setFake() {
- w := n.tk
- w.isFake = true
-
- n.gocuiSetWH(fakeStartWidth, fakeStartHeight)
-
- fakeStartHeight += w.gocuiSize.Height()
- // TODO: use the actual max hight of the terminal window
- if fakeStartHeight > 24 {
- fakeStartHeight = me.TabH
- fakeStartWidth += me.FakeW
- }
- if true {
- n.showView()
- }
-}
-
-// set the widget start width & height
-func (n *node) addWidget() {
- nw := n.tk
- log.Log(INFO, "setStartWH() w.id =", n.WidgetId, "n.name", n.progname)
- switch n.WidgetType {
- case widget.Root:
- log.Log(INFO, "setStartWH() rootNode w.id =", n.WidgetId, "w.name", n.progname)
- nw.color = &colorRoot
- n.setFake()
- return
- case widget.Flag:
- nw.color = &colorFlag
- n.setFake()
- return
- case widget.Window:
- nw.frame = false
- nw.color = &colorWindow
- // redoWindows(0,0)
- return
- case widget.Tab:
- nw.color = &colorTab
- // redoWindows(0,0)
- return
- case widget.Button:
- nw.color = &colorButton
- case widget.Box:
- nw.color = &colorBox
- nw.isFake = true
- n.setFake()
- return
- case widget.Grid:
- nw.color = &colorGrid
- nw.isFake = true
- n.setFake()
- return
- case widget.Group:
- nw.color = &colorGroup
- nw.frame = false
- return
- case widget.Label:
- nw.color = &colorLabel
- nw.frame = false
- return
- default:
- /*
- if n.IsCurrent() {
- n.updateCurrent()
- }
- */
- }
- n.showWidgetPlacement(true, "addWidget()")
-}
diff --git a/gocui/args.go b/gocui/args.go
deleted file mode 100644
index eca1db9..0000000
--- a/gocui/args.go
+++ /dev/null
@@ -1,32 +0,0 @@
-package main
-
-/*
- this enables command line options from other packages like 'gui' and 'log'
-*/
-
-import (
- "go.wit.com/log"
-)
-
-var outputS []string
-
-var NOW *log.LogFlag
-var INFO *log.LogFlag
-
-var SPEW *log.LogFlag
-var WARN *log.LogFlag
-
-var ERROR *log.LogFlag
-
-func init() {
- full := "toolkit/nocui"
- short := "nocui"
-
- NOW = log.NewFlag("NOW", true, full, short, "temp debugging stuff")
- INFO = log.NewFlag("INFO", false, full, short, "normal debugging stuff")
-
- WARN = log.NewFlag("WARN", true, full, short, "bad things")
- SPEW = log.NewFlag("SPEW", false, full, short, "spew stuff")
-
- ERROR = log.NewFlag("ERROR", false, full, short, "toolkit errors")
-}
diff --git a/gocui/checkbox.go b/gocui/checkbox.go
deleted file mode 100644
index 76b4377..0000000
--- a/gocui/checkbox.go
+++ /dev/null
@@ -1,33 +0,0 @@
-package main
-
-import (
- // "github.com/awesome-gocui/gocui"
- "go.wit.com/lib/widget"
-)
-
-func (n *node) setCheckbox(b any) {
- w := n.tk
- if n.WidgetType != widget.Checkbox {
- return
- }
- if widget.GetBool(b) {
- n.value = b
- n.tk.label = "X " + n.label
- } else {
- n.value = b
- n.tk.label = " " + n.label
- }
- t := len(n.tk.label) + 1
- w.gocuiSize.w1 = w.gocuiSize.w0 + t
-
- // w.realWidth = w.gocuiSize.Width() + me.PadW
- // w.realHeight = w.gocuiSize.Height() + me.PadH
-
- // if w.frame {
- // w.realWidth += me.FramePadW
- // w.realHeight += me.FramePadH
- // }
-
- n.deleteView()
- n.showView()
-}
diff --git a/gocui/click.go b/gocui/click.go
deleted file mode 100644
index 6d8b20a..0000000
--- a/gocui/click.go
+++ /dev/null
@@ -1,357 +0,0 @@
-package main
-
-import (
- "fmt"
- "github.com/awesome-gocui/gocui"
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-// set isCurrent = false everywhere
-func unsetCurrent(n *node) {
- w := n.tk
- w.isCurrent = false
-
- if n.WidgetType == widget.Tab {
- // n.tk.color = &colorTab
- // n.setColor()
- }
-
- for _, child := range n.children {
- unsetCurrent(child)
- }
-}
-
-// when adding a new widget, this will update the display
-// of the current widgets if that widget is supposed
-// to be in current display
-func (n *node) updateCurrent() {
- log.Log(NOW, "updateCurrent()", n.progname)
- if n.WidgetType == widget.Tab {
- if n.IsCurrent() {
- // n.tk.color = &colorActiveT
- n.setColor(&colorActiveT)
- n.hideView()
- n.showView()
- setCurrentTab(n)
- } else {
- // n.tk.color = &colorTab
- // n.setColor()
- }
- return
- }
- if n.WidgetType == widget.Window {
- if n.IsCurrent() {
- // setCurrentWindow(n)
- }
- return
- }
- if n.WidgetType == widget.Root {
- return
- }
- n.parent.updateCurrent()
-}
-
-// shows the widgets in a window
-func setCurrentWindow(n *node) {
- if n.IsCurrent() {
- return
- }
- w := n.tk
- if n.WidgetType != widget.Window {
- return
- }
- unsetCurrent(me.rootNode)
-
- if n.hasTabs {
- // set isCurrent = true on the first tab
- for _, child := range n.children {
- child.tk.isCurrent = true
- break
- }
- } else {
- w.isCurrent = true
- }
-}
-
-// shows the widgets in a tab
-func setCurrentTab(n *node) {
- w := n.tk
- if n.WidgetType != widget.Tab {
- return
- }
- unsetCurrent(me.rootNode)
- w.isCurrent = true
- p := n.parent.tk
- p.isCurrent = true
- log.Log(NOW, "setCurrent()", n.progname)
-}
-
-func (n *node) doWidgetClick() {
- switch n.WidgetType {
- case widget.Root:
- // THIS IS THE BEGINING OF THE LAYOUT
- log.Log(NOW, "doWidgetClick()", n.progname)
- redoWindows(0, 0)
- case widget.Flag:
- log.Log(NOW, "doWidgetClick() FLAG widget name =", n.progname)
- log.Log(NOW, "doWidgetClick() if this is the dropdown menu, handle it here?")
- case widget.Window:
- if me.currentWindow == n {
- return
- }
- if me.currentWindow != nil {
- unsetCurrent(me.currentWindow)
- me.currentWindow.setColor(&colorWindow)
- me.currentWindow.hideWidgets()
- }
- n.hideWidgets()
- me.currentWindow = n
- // setCurrentWindow(n) // probably delete this
- n.setColor(&colorActiveW)
- n.redoTabs(me.TabW, me.TabH)
- for _, child := range n.children {
- if child.currentTab == true {
- log.Log(NOW, "FOUND CURRENT TAB", child.progname)
- setCurrentTab(child)
- child.placeWidgets(me.RawW, me.RawH)
- child.showWidgets()
- return
- }
- }
- /* FIXME: redo this
- if ! n.hasTabs {
- }
- */
- case widget.Tab:
- if n.IsCurrent() {
- return // do nothing if you reclick on the already selected tab
- }
- // find the window and disable the active tab
- p := n.parent
- if p != nil {
- p.hideWidgets()
- p.redoTabs(me.TabW, me.TabH)
- unsetCurrent(p)
- for _, child := range p.children {
- if child.WidgetType == widget.Tab {
- child.setColor(&colorTab)
- n.currentTab = false
- }
- }
- }
- n.currentTab = true
- n.setColor(&colorActiveT)
- setCurrentTab(n)
- n.placeWidgets(me.RawW, me.RawH)
- n.showWidgets()
- case widget.Group:
- // n.placeWidgets(p.tk.startH, newH)
- n.toggleTree()
- case widget.Checkbox:
- if widget.GetBool(n.value) {
- n.setCheckbox(false)
- } else {
- n.setCheckbox(true)
- }
- n.doUserEvent()
- case widget.Grid:
- newR := n.realGocuiSize()
-
- // w,h := n.logicalSize()
- // w := newR.w1 - newR.w0
- // h := newR.h1 - newR.h0
-
- n.placeGrid(newR.w0, newR.h0)
- n.showWidgets()
- case widget.Box:
- // w.showWidgetPlacement(logNow, "drawTree()")
- if n.direction == widget.Horizontal {
- log.Log(NOW, "BOX IS HORIZONTAL", n.progname)
- } else {
- log.Log(NOW, "BOX IS VERTICAL", n.progname)
- }
- // n.placeWidgets()
- n.toggleTree()
- case widget.Button:
- n.doUserEvent()
- case widget.Dropdown:
- log.Log(NOW, "do the dropdown here")
- if me.ddview == nil {
- me.ddview = addDropdown()
- tk := me.ddview.tk
- tk.gocuiSize.w0 = 20
- tk.gocuiSize.w1 = 40
- tk.gocuiSize.h0 = 10
- tk.gocuiSize.h1 = 25
- tk.v, _ = me.baseGui.SetView("ddview",
- tk.gocuiSize.w0,
- tk.gocuiSize.h0,
- tk.gocuiSize.w1,
- tk.gocuiSize.h1, 0)
- if tk.v == nil {
- return
- }
- tk.v.Wrap = true
- tk.v.Frame = true
- tk.v.Clear()
- fmt.Fprint(tk.v, "example.com\nwit.com")
- me.ddview.SetVisible(true)
- return
- }
- log.Log(NOW, "doWidgetClick() visible =", me.ddview.Visible())
- if me.ddview.Visible() {
- me.ddview.SetVisible(false)
- me.baseGui.DeleteView("ddview")
- me.ddview.tk.v = nil
- } else {
- var dnsList string
- for i, s := range n.vals {
- log.Log(NOW, "AddText()", n.progname, i, s)
- dnsList += s + "\n"
- }
- me.ddNode = n
- log.Log(NOW, "new dns list should be set to:", dnsList)
- me.ddview.label = dnsList
- me.ddview.SetText(dnsList)
- me.ddview.SetVisible(true)
- }
- for i, s := range n.vals {
- log.Log(NOW, "AddText()", n.progname, i, s)
- }
- default:
- }
-}
-
-var toggle bool = true
-
-func (n *node) toggleTree() {
- if toggle {
- n.drawTree(toggle)
- toggle = false
- } else {
- n.hideWidgets()
- toggle = true
- }
-}
-
-// display the widgets in the binary tree
-func (n *node) drawTree(draw bool) {
- w := n.tk
- if w == nil {
- return
- }
- n.showWidgetPlacement(true, "drawTree()")
- if draw {
- // w.textResize()
- n.showView()
- } else {
- n.deleteView()
- }
-
- for _, child := range n.children {
- child.drawTree(draw)
- }
-}
-
-func click(g *gocui.Gui, v *gocui.View) error {
- // var l string
- // var err error
-
- log.Log(INFO, "click() START", v.Name())
- // n := me.rootNode.findWidgetName(v.Name())
- n := findUnderMouse()
- if n != nil {
- log.Log(NOW, "click() Found widget =", n.WidgetId, n.progname, ",", n.label)
- if n.progname == "DropBox" {
- log.Log(NOW, "click() this is the dropdown menu. set a flag here what did I click? where is the mouse?")
- log.Log(NOW, "click() set a global dropdown clicked flag=true here")
- me.ddClicked = true
- }
- n.doWidgetClick()
- } else {
- log.Log(NOW, "click() could not find node name =", v.Name())
- }
-
- if _, err := g.SetCurrentView(v.Name()); err != nil {
- log.Log(NOW, "click() END err =", err)
- return err
- }
-
- log.Log(NOW, "click() END")
- return nil
-}
-
-func findUnderMouse() *node {
- var found *node
- var widgets []*node
- var f func(n *node)
- w, h := me.baseGui.MousePosition()
-
- // find buttons that are below where the mouse button click
- f = func(n *node) {
- widget := n.tk
- // ignore widgets that are not visible
- if n.Visible() {
- if (widget.gocuiSize.w0 <= w) && (w <= widget.gocuiSize.w1) &&
- (widget.gocuiSize.h0 <= h) && (h <= widget.gocuiSize.h1) {
- widgets = append(widgets, n)
- found = n
- }
- }
- if n == me.ddview {
- log.Log(NOW, "findUnderMouse() found ddview")
- if n.Visible() {
- log.Log(NOW, "findUnderMouse() and ddview is visable. hide it here. TODO: find highlighted row")
- found = n
- // find the actual value here and set the dropdown widget
- me.baseGui.DeleteView("ddview")
- } else {
- log.Log(NOW, "findUnderMouse() I was lying, actually it's not found")
- }
- }
-
- for _, child := range n.children {
- f(child)
- }
- }
- f(me.rootNode)
- // widgets has everything that matches
- // TODO: pop up menu with a list of them
- for _, n := range widgets {
- //log(logNow, "ctrlDown() FOUND widget", widget.id, widget.name)
- n.showWidgetPlacement(true, "findUnderMouse() FOUND")
- }
- return found
-}
-
-// find the widget under the mouse click
-func ctrlDown(g *gocui.Gui, v *gocui.View) error {
- var found *node
- // var widgets []*node
- // var f func (n *node)
- found = findUnderMouse()
- if me.ctrlDown == nil {
- setupCtrlDownWidget()
- me.ctrlDown.label = found.progname
- me.ctrlDown.tk.cuiName = "ctrlDown"
- // me.ctrlDown.parent = me.rootNode
- }
- cd := me.ctrlDown.tk
- if found == nil {
- found = me.rootNode
- }
- me.ctrlDown.label = found.progname
- newR := found.realGocuiSize()
- cd.gocuiSize.w0 = newR.w0
- cd.gocuiSize.h0 = newR.h0
- cd.gocuiSize.w1 = newR.w1
- cd.gocuiSize.h1 = newR.h1
- if me.ctrlDown.Visible() {
- me.ctrlDown.hideView()
- } else {
- me.ctrlDown.showView()
- }
- me.ctrlDown.showWidgetPlacement(true, "ctrlDown:")
- return nil
-}
diff --git a/gocui/color.go b/gocui/color.go
deleted file mode 100644
index 45600c3..0000000
--- a/gocui/color.go
+++ /dev/null
@@ -1,120 +0,0 @@
-package main
-
-import (
- "github.com/awesome-gocui/gocui"
- "math/rand"
-
- "go.wit.com/log"
-)
-
-//w.v.SelBgColor = gocui.ColorCyan
-//color.go: w.v.SelFgColor = gocui.ColorBlack
-//color.go: w.v.BgColor = gocui.ColorGreen
-
-type colorT struct {
- frame gocui.Attribute
- fg gocui.Attribute
- bg gocui.Attribute
- selFg gocui.Attribute
- selBg gocui.Attribute
- name string
-}
-
-var none gocui.Attribute = gocui.AttrNone
-var lightPurple gocui.Attribute = gocui.GetColor("#DDDDDD") // light purple
-var darkPurple gocui.Attribute = gocui.GetColor("#FFAA55") // Dark Purple
-var heavyPurple gocui.Attribute = gocui.GetColor("#88AA55") // heavy purple
-var powdererBlue gocui.Attribute = gocui.GetColor("#B0E0E6") // w3c 'powerder blue'
-var superLightGrey gocui.Attribute = gocui.GetColor("#55AAFF") // super light grey
-
-// Standard defined colors from gocui:
-// ColorBlack ColorRed ColorGreen ColorYellow ColorBlue ColorMagenta ColorCyan ColorWhite
-
-// v.BgColor = gocui.GetColor("#111111") // crazy red
-// v.BgColor = gocui.GetColor("#FF9911") // heavy red
-// v.SelBgColor = gocui.GetColor("#FFEE11") // blood red
-
-// v.BgColor = gocui.GetColor("#55AAFF") // super light grey
-// v.BgColor = gocui.GetColor("#FFC0CB") // 'w3c pink' yellow
-
-// Normal Text On mouseover
-//
-// Widget Frame Text background Text background
-var colorWindow colorT = colorT{none, gocui.ColorBlue, none, none, powdererBlue, "normal window"}
-var colorActiveW colorT = colorT{none, none, powdererBlue, none, powdererBlue, "active window"}
-
-var colorTab colorT = colorT{gocui.ColorBlue, gocui.ColorBlue, none, none, powdererBlue, "normal tab"}
-var colorActiveT colorT = colorT{gocui.ColorBlue, none, powdererBlue, none, powdererBlue, "active tab"}
-
-var colorButton colorT = colorT{gocui.ColorGreen, none, gocui.ColorWhite, gocui.ColorGreen, gocui.ColorBlack, "normal button"}
-var colorLabel colorT = colorT{none, none, superLightGrey, none, superLightGrey, "normal label"}
-var colorGroup colorT = colorT{none, none, superLightGrey, none, superLightGrey, "normal group"}
-
-// widget debugging colors. these widgets aren't displayed unless you are debugging
-var colorRoot colorT = colorT{gocui.ColorRed, none, powdererBlue, none, gocui.ColorBlue, "debug root"}
-var colorFlag colorT = colorT{gocui.ColorRed, none, powdererBlue, none, gocui.ColorGreen, "debug flag"}
-var colorBox colorT = colorT{gocui.ColorRed, none, lightPurple, none, gocui.ColorCyan, "debug box"}
-var colorGrid colorT = colorT{gocui.ColorRed, none, lightPurple, none, gocui.ColorRed, "debug grid"}
-var colorNone colorT = colorT{none, none, none, none, none, "debug none"}
-
-// actually sets the colors for the gocui element
-// the user will see the colors change when this runs
-// TODO: add black/white only flag for ttyS0
-// TODO: or fix kvm/qemu serial console & SIGWINCH.
-// TODO: and minicom and uboot and 5 million other things.
-// TODO: maybe enough of us could actually do that if we made it a goal.
-// TODO: start with riscv boards and fix it universally there
-// TODO: so just a small little 'todo' item here
-func (n *node) setColor(newColor *colorT) {
- tk := n.tk
- if tk.color == newColor {
- // nothing to do since the colors have nto changed
- return
- }
- tk.color = newColor
- if tk.v == nil {
- return
- }
- if tk.color == nil {
- log.Log(NOW, "Set the node to color = nil")
- tk.color = &colorNone
- }
- log.Log(NOW, "Set the node to color =", tk.color.name)
- n.recreateView()
-}
-
-func (n *node) setDefaultWidgetColor() {
- n.showView()
-}
-
-func (n *node) setDefaultHighlight() {
- w := n.tk
- if w.v == nil {
- log.Log(ERROR, "SetColor() failed on view == nil")
- return
- }
- w.v.SelBgColor = gocui.ColorGreen
- w.v.SelFgColor = gocui.ColorBlack
-}
-
-func randColor() gocui.Attribute {
- colors := []string{"Green", "#FFAA55", "Yellow", "Blue", "Red", "Black", "White"}
- i := rand.Intn(len(colors))
- log.Log(NOW, "randColor() i =", i)
- return gocui.GetColor(colors[i])
-}
-
-func (n *node) redoColor(draw bool) {
- w := n.tk
- if w == nil {
- return
- }
-
- log.Sleep(.05)
- n.setDefaultHighlight()
- n.setDefaultWidgetColor()
-
- for _, child := range n.children {
- child.redoColor(draw)
- }
-}
diff --git a/gocui/common.go b/gocui/common.go
deleted file mode 100644
index 267277f..0000000
--- a/gocui/common.go
+++ /dev/null
@@ -1,218 +0,0 @@
-package main
-
-/*
- These code should be common to all gui plugins
-
- There are some helper functions that are probably going to be
- the same everywhere. Mostly due to handling the binary tree structure
- and the channel communication
-
- For now, it's just a symlink to the 'master' version in
- ./toolkit/nocui/common.go
-*/
-
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-// this is the channel we send user events like
-// mouse clicks or keyboard events back to the program
-var callback chan widget.Action
-
-// this is the channel we get requests to make widgets
-var pluginChan chan widget.Action
-
-type node struct {
- parent *node
- children []*node
-
- WidgetId int // widget ID
- WidgetType widget.WidgetType
- ParentId int // parent ID
-
- state widget.State
-
- // a reference name for programming and debuggign. Must be unique
- progname string
-
- // the text used for button labesl, window titles, checkbox names, etc
- label string
-
- // horizontal means layout widgets like books on a bookshelf
- // vertical means layout widgets like books in a stack
- // direction widget.Orientation
- direction widget.Orientation
-
- // This is how the values are passed back and forth
- // values from things like checkboxes & dropdown's
- value any
-
- strings []string
-
- // This is used for things like a slider(0,100)
- X int
- Y int
-
- // This is for the grid size & widget position
- W int
- H int
- AtW int
- AtH int
-
- vals []string // dropdown menu items
-
- // horizontal bool `default:false`
-
- hasTabs bool // does the window have tabs?
- currentTab bool // the visible tab
-
- // the internal plugin toolkit structure
- // in the gtk plugin, it has gtk things like margin & border settings
- // in the text console one, it has text console things like colors for menus & buttons
- tk *guiWidget
-}
-
-// searches the binary tree for a WidgetId
-func (n *node) findWidgetId(id int) *node {
- if n == nil {
- return nil
- }
-
- if n.WidgetId == id {
- return n
- }
-
- for _, child := range n.children {
- newN := child.findWidgetId(id)
- if newN != nil {
- return newN
- }
- }
- return nil
-}
-
-func (n *node) doUserEvent() {
- if callback == nil {
- log.Log(ERROR, "doUserEvent() callback == nil", n.WidgetId)
- return
- }
- var a widget.Action
- a.WidgetId = n.WidgetId
- a.Value = n.value
- a.ActionType = widget.User
- log.Log(INFO, "doUserEvent() START: send a user event to the callback channel")
- callback <- a
- log.Log(INFO, "doUserEvent() END: sent a user event to the callback channel")
- return
-}
-
-// Other goroutines must use this to access the GUI
-//
-// You can not acess / process the GUI thread directly from
-// other goroutines. This is due to the nature of how
-// Linux, MacOS and Windows work (they all work differently. suprise. surprise.)
-//
-// this sets the channel to send user events back from the plugin
-func Callback(guiCallback chan widget.Action) {
- callback = guiCallback
-}
-
-func PluginChannel() chan widget.Action {
- return pluginChan
-}
-
-/*
-func convertString(val any) string {
- switch v := val.(type) {
- case bool:
- n.B = val.(bool)
- case string:
- n.label = val.(string)
- n.S = val.(string)
- case int:
- n.I = val.(int)
- default:
- log.Error(errors.New("Set() unknown type"), "v =", v)
- }
-}
-*/
-
-/*
-// this is in common.go, do not move it
-func getString(A any) string {
- if A == nil {
- log.Warn("getString() got nil")
- return ""
- }
- var k reflect.Kind
- k = reflect.TypeOf(A).Kind()
-
- switch k {
- case reflect.Int:
- var i int
- i = A.(int)
- return string(i)
- case reflect.String:
- return A.(string)
- case reflect.Bool:
- if A.(bool) == true {
- return "true"
- } else {
- return "false"
- }
- default:
- log.Warn("getString uknown kind", k, "value =", A)
- return ""
- }
- return ""
-}
-*/
-
-// this is in common.go, do not move it
-func addNode(a *widget.Action) *node {
- n := new(node)
- n.WidgetType = a.WidgetType
- n.WidgetId = a.WidgetId
- n.ParentId = a.ParentId
-
- n.state = a.State
-
- // copy the data from the action message
- n.progname = a.ProgName
- n.value = a.Value
- n.direction = a.Direction
- n.strings = a.Strings
-
- // TODO: these need to be rethought
- n.X = a.X
- n.Y = a.Y
- n.W = a.W
- n.H = a.H
- n.AtW = a.AtW
- n.AtH = a.AtH
-
- // store the internal toolkit information
- n.tk = initWidget(n)
- // n.tk = new(guiWidget)
-
- if a.WidgetType == widget.Root {
- log.Log(INFO, "addNode() Root")
- return n
- }
-
- if me.rootNode.findWidgetId(a.WidgetId) != nil {
- log.Log(ERROR, "addNode() WidgetId already exists", a.WidgetId)
- return me.rootNode.findWidgetId(a.WidgetId)
- }
-
- // add this new widget on the binary tree
- n.parent = me.rootNode.findWidgetId(a.ParentId)
- if n.parent != nil {
- n.parent.children = append(n.parent.children, n)
- //w := n.tk
- //w.parent = n.parent.tk
- //w.parent.children = append(w.parent.children, w)
- }
- return n
-}
diff --git a/gocui/debug.go b/gocui/debug.go
deleted file mode 100644
index ee58727..0000000
--- a/gocui/debug.go
+++ /dev/null
@@ -1,74 +0,0 @@
-package main
-
-import (
- "fmt"
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-func (n *node) dumpTree(draw bool) {
- w := n.tk
- if w == nil {
- return
- }
- n.showWidgetPlacement(true, "dumpTree()")
-
- for _, child := range n.children {
- child.dumpTree(draw)
- }
-}
-
-func (n *node) showWidgetPlacement(b bool, s string) {
- if n == nil {
- log.Log(ERROR, "WTF w == nil")
- return
- }
- w := n.tk
-
- var s1 string
- var pId int
- if n.parent == nil {
- log.Log(INFO, "showWidgetPlacement() parent == nil", n.WidgetId, w.cuiName)
- pId = 0
- } else {
- pId = n.parent.WidgetId
- }
- s1 = fmt.Sprintf("(wId,pId)=(%2d,%2d) ", n.WidgetId, pId)
- if n.Visible() {
- s1 += fmt.Sprintf("gocui=(%2d,%2d)(%2d,%2d,%2d,%2d)",
- w.gocuiSize.Width(), w.gocuiSize.Height(),
- w.gocuiSize.w0, w.gocuiSize.h0, w.gocuiSize.w1, w.gocuiSize.h1)
- } else {
- s1 += fmt.Sprintf(" ")
- }
- if n.parent != nil {
- if n.parent.WidgetType == widget.Grid {
- s1 += fmt.Sprintf("At(%2d,%2d) ", n.AtW, n.AtH)
- }
- }
- tmp := "." + n.progname + "."
- log.Log(INFO, s1, s, n.WidgetType, ",", tmp) // , "text=", w.text)
-}
-
-func (n *node) dumpWidget(pad string) {
- log.Log(NOW, "node:", pad, n.WidgetId, "At(", n.AtW, n.AtH, ") ,", n.WidgetType, ", n.progname =", n.progname, ", n.label =", n.label)
-}
-
-func (n *node) listWidgets() {
- if n == nil {
- return
- }
-
- var pad string
- for i := 0; i < me.depth; i++ {
- pad = pad + " "
- }
- n.dumpWidget(pad)
-
- for _, child := range n.children {
- me.depth += 1
- child.listWidgets()
- me.depth -= 1
- }
- return
-}
diff --git a/gocui/fakefile.go b/gocui/fakefile.go
deleted file mode 100644
index 47ef529..0000000
--- a/gocui/fakefile.go
+++ /dev/null
@@ -1,58 +0,0 @@
-package main
-
-import (
- "bytes"
- "errors"
- "io"
-)
-
-type FakeFile struct {
- reader *bytes.Reader
- buffer *bytes.Buffer
- offset int64
-}
-
-func (f *FakeFile) Read(p []byte) (n int, err error) {
- n, err = f.reader.ReadAt(p, f.offset)
- f.offset += int64(n)
- return n, err
-}
-
-func (f *FakeFile) Write(p []byte) (n int, err error) {
- n, err = f.buffer.Write(p)
- f.offset += int64(n)
- f.reader.Reset(f.buffer.Bytes())
- return n, err
-}
-
-func (f *FakeFile) Seek(offset int64, whence int) (int64, error) {
- newOffset := f.offset
-
- switch whence {
- case io.SeekStart:
- newOffset = offset
- case io.SeekCurrent:
- newOffset += offset
- case io.SeekEnd:
- newOffset = int64(f.buffer.Len()) + offset
- default:
- return 0, errors.New("Seek: whence not at start,current or end")
- }
- // never can get here right?
-
- if newOffset < 0 {
- return 0, errors.New("Seek: offset < 0")
- }
-
- f.offset = newOffset
- return f.offset, nil
-}
-
-func NewFakeFile() *FakeFile {
- buf := &bytes.Buffer{}
- return &FakeFile{
- reader: bytes.NewReader(buf.Bytes()),
- buffer: buf,
- offset: 0,
- }
-}
diff --git a/gocui/go.mod b/gocui/go.mod
deleted file mode 100644
index db7d13f..0000000
--- a/gocui/go.mod
+++ /dev/null
@@ -1,21 +0,0 @@
-module go.wit.com/gui/toolkits/gocui
-
-go 1.21.4
-
-require (
- github.com/awesome-gocui/gocui v1.1.0
- go.wit.com/gui/widget v1.1.3
- go.wit.com/log v0.5.4
-)
-
-require (
- github.com/gdamore/encoding v1.0.0 // indirect
- github.com/gdamore/tcell/v2 v2.4.0 // indirect
- github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
- github.com/mattn/go-runewidth v0.0.10 // indirect
- github.com/rivo/uniseg v0.1.0 // indirect
- go.wit.com/dev/davecgh/spew v1.1.4 // indirect
- golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 // indirect
- golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect
- golang.org/x/text v0.3.3 // indirect
-)
diff --git a/gocui/go.sum b/gocui/go.sum
deleted file mode 100644
index e0bce49..0000000
--- a/gocui/go.sum
+++ /dev/null
@@ -1,30 +0,0 @@
-github.com/awesome-gocui/gocui v1.1.0 h1:db2j7yFEoHZjpQFeE2xqiatS8bm1lO3THeLwE6MzOII=
-github.com/awesome-gocui/gocui v1.1.0/go.mod h1:M2BXkrp7PR97CKnPRT7Rk0+rtswChPtksw/vRAESGpg=
-github.com/gdamore/encoding v1.0.0 h1:+7OoQ1Bc6eTm5niUzBa0Ctsh6JbMW6Ra+YNuAtDBdko=
-github.com/gdamore/encoding v1.0.0/go.mod h1:alR0ol34c49FCSBLjhosxzcPHQbf2trDkoo5dl+VrEg=
-github.com/gdamore/tcell/v2 v2.4.0 h1:W6dxJEmaxYvhICFoTY3WrLLEXsQ11SaFnKGVEXW57KM=
-github.com/gdamore/tcell/v2 v2.4.0/go.mod h1:cTTuF84Dlj/RqmaCIV5p4w8uG1zWdk0SF6oBpwHp4fU=
-github.com/lucasb-eyer/go-colorful v1.0.3 h1:QIbQXiugsb+q10B+MI+7DI1oQLdmnep86tWFlaaUAac=
-github.com/lucasb-eyer/go-colorful v1.0.3/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
-github.com/mattn/go-runewidth v0.0.10 h1:CoZ3S2P7pvtP45xOtBw+/mDL2z0RKI576gSkzRRpdGg=
-github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
-github.com/rivo/uniseg v0.1.0 h1:+2KBaVoUmb9XzDsrx/Ct0W/EYOSFf/nWTauy++DprtY=
-github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
-go.wit.com/dev/davecgh/spew v1.1.3 h1:hqnB5qsPgC2cLZaJXqQJspQ5n/Ugry9kyL3tLk0hVzQ=
-go.wit.com/dev/davecgh/spew v1.1.3/go.mod h1:sihvWmnQ/09FWplnEmozt90CCVqBtGuPXM811tgfhFA=
-go.wit.com/dev/davecgh/spew v1.1.4 h1:C9hj/rjlUpdK+E6aroyLjCbS5MFcyNUOuP1ICLWdNek=
-go.wit.com/dev/davecgh/spew v1.1.4/go.mod h1:sihvWmnQ/09FWplnEmozt90CCVqBtGuPXM811tgfhFA=
-go.wit.com/gui/widget v1.1.3 h1:GvLzGSOF9tfmoh6HNbFdN+NSlBo2qeS/Ba2TnQQ1A1U=
-go.wit.com/gui/widget v1.1.3/go.mod h1:A6/FaiFQtAHTjgo7c4FrokXe6bXX1Cowo35b2Lgi31E=
-go.wit.com/log v0.5.3 h1:/zHkniOPusPEuX1R401rMny9uwSO/nSU/QOMx6qoEnE=
-go.wit.com/log v0.5.3/go.mod h1:LzIzVxc2xJQxWQBtV9VbV605P4TOxmYDCl+BZF38yGE=
-go.wit.com/log v0.5.4 h1:vijLRPTUgChb8J5tx/7Uma/lGTUxeSXosFbheAmL914=
-go.wit.com/log v0.5.4/go.mod h1:BaJBfHFqcJSJLXGQ9RHi3XVhPgsStxSMZRlaRxW4kAo=
-golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw=
-golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf h1:MZ2shdL+ZM/XzY3ZGOnh4Nlpnxz5GSOhOmtHo3iPU6M=
-golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
-golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
-golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=
-golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
diff --git a/gocui/gocui b/gocui/gocui
deleted file mode 100755
index 4130e7a..0000000
--- a/gocui/gocui
+++ /dev/null
Binary files differ
diff --git a/gocui/gocui.go b/gocui/gocui.go
deleted file mode 100644
index 6d924f8..0000000
--- a/gocui/gocui.go
+++ /dev/null
@@ -1,102 +0,0 @@
-// Copyright 2014 The gocui Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
- "errors"
- "github.com/awesome-gocui/gocui"
-
- "go.wit.com/log"
-)
-
-// This initializes the gocui package
-// it runs SetManagerFunc which passes every input
-// event (keyboard, mouse, etc) to the function "gocuiEvent()"
-func gocuiMain() {
- g, err := gocui.NewGui(gocui.OutputNormal, true)
- if err != nil {
- panic(err)
- }
- defer g.Close()
-
- me.baseGui = g
-
- g.Cursor = true
- g.Mouse = true
-
- // this sets the function that is run on every event. For example:
- // When you click the mouse, move the mouse, or press a key on the keyboard
- // This is equivalent to xev or similar to cat /dev/input on linux
- g.SetManagerFunc(gocuiEvent)
-
- if err := defaultKeybindings(g); err != nil {
- panic(err)
- }
-
- if err := g.MainLoop(); err != nil && !errors.Is(err, gocui.ErrQuit) {
- panic(err)
- }
-}
-
-// Thanks to the gocui developers -- your package kicks ass
-// This function is called on every event. It is a callback function from the gocui package
-// which has an excellent implementation. While gocui handles things like text highlighting
-// and the layout of the text areas -- also things like handling SIGWINCH and lots of really
-// complicated console handling, it sends events here in a clean way.
-// This is equivalent to the linux command xev (apt install x11-utils)
-func gocuiEvent(g *gocui.Gui) error {
- maxX, maxY := g.Size()
- mx, my := g.MousePosition()
- log.Log(NOW, "handleEvent() START", maxX, maxY, mx, my, msgMouseDown)
- if _, err := g.View("msg"); msgMouseDown && err == nil {
- moveMsg(g)
- }
- if widgetView, _ := g.View("msg"); widgetView == nil {
- log.Log(NOW, "handleEvent() create output widget now", maxX, maxY, mx, my)
- makeOutputWidget(g, "this is a create before a mouse click")
- if me.logStdout != nil {
- // setOutput(me.logStdout)
- }
- } else {
- log.Log(INFO, "output widget already exists", maxX, maxY, mx, my)
- }
- mouseMove(g)
- log.Log(INFO, "handleEvent() END ", maxX, maxY, mx, my, msgMouseDown)
- return nil
-}
-
-func dragOutputWindow() {
-}
-
-// turns off the frame on the global window
-func setFrame(b bool) {
- // TODO: figure out what this might be useful for
- // what is this do? I made it just 2 lines for now. Is this useful for something?
- v := SetView("global", 5, 10, 5, 10, 0) // x0, x1, y1, y2, overlap
- if v == nil {
- log.Log(ERROR, "setFrame() global failed")
- }
- v.Frame = b
-}
-
-func quit(g *gocui.Gui, v *gocui.View) error {
- return gocui.ErrQuit
-}
-
-func SetView(name string, x0, y0, x1, y1 int, overlaps byte) *gocui.View {
- if me.baseGui == nil {
- log.Log(ERROR, "SetView() ERROR: me.baseGui == nil")
- return nil
- }
-
- v, err := me.baseGui.SetView(name, x0, y0, x1, y1, overlaps)
- if err != nil {
- if !errors.Is(err, gocui.ErrUnknownView) {
- log.Log(ERROR, "SetView() global failed on name =", name)
- }
- return nil
- }
- return v
-}
diff --git a/gocui/help.go b/gocui/help.go
deleted file mode 100644
index 832b397..0000000
--- a/gocui/help.go
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2014 The gocui Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
- "errors"
- "fmt"
- "strings"
-
- "github.com/awesome-gocui/gocui"
-)
-
-var helpText []string = []string{"KEYBINDINGS",
- "",
- "?: toggle help",
- "d: toggle debugging",
- "r: redraw widgets",
- "s/h: show/hide all widgets",
- "L: list all widgets",
- "M: list all widgets positions",
- "q: quit()",
- "p: panic()",
- "o: show Stdout",
- "l: log to /tmp/witgui.log",
- "Ctrl-D: Toggle Debugging",
- "Ctrl-V: Toggle Verbose Debugging",
- "Ctrl-C: Exit",
- "",
-}
-
-func hidehelplayout() {
- me.baseGui.DeleteView("help")
- // n.deleteView()
- // child.hideFake()
-}
-
-func helplayout() error {
- g := me.baseGui
- var err error
- maxX, _ := g.Size()
-
- var newW int = 8
- for _, s := range helpText {
- if newW < len(s) {
- newW = len(s)
- }
- }
-
- help, err := g.SetView("help", maxX-(newW+me.FramePadW), 0, maxX-1, len(helpText)+me.FramePadH, 0)
- if err != nil {
- if !errors.Is(err, gocui.ErrUnknownView) {
- return err
- }
- help.SelBgColor = gocui.ColorGreen
- help.SelFgColor = gocui.ColorBlack
- // fmt.Fprintln(help, "Enter: Click Button")
- // fmt.Fprintln(help, "Tab/Space: Switch Buttons")
- // fmt.Fprintln(help, "Backspace: Delete Button")
- // fmt.Fprintln(help, "Arrow keys: Move Button")
-
- fmt.Fprintln(help, strings.Join(helpText, "\n"))
-
- if _, err := g.SetCurrentView("help"); err != nil {
- return err
- }
- }
- me.helpLabel = help
- return nil
-}
diff --git a/gocui/keybindings.go b/gocui/keybindings.go
deleted file mode 100644
index 79666fa..0000000
--- a/gocui/keybindings.go
+++ /dev/null
@@ -1,165 +0,0 @@
-// Copyright 2014 The gocui Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
- "github.com/awesome-gocui/gocui"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-func defaultKeybindings(g *gocui.Gui) error {
- if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
- return err
- }
- for _, n := range []string{"but1", "but2", "help", "but3"} {
- if err := g.SetKeybinding(n, gocui.MouseLeft, gocui.ModNone, showMsg); err != nil {
- return err
- }
- }
- if err := g.SetKeybinding("", gocui.MouseRelease, gocui.ModNone, mouseUp); err != nil {
- return err
- }
- // mouseDown() runs whenever you click on an unknown view (?)
- if err := g.SetKeybinding("", gocui.MouseLeft, gocui.ModNone, mouseDown); err != nil {
- return err
- }
- if err := g.SetKeybinding("", gocui.MouseLeft, gocui.ModMouseCtrl, ctrlDown); err != nil {
- return err
- }
- // if err := g.SetKeybinding(w.v.Name(), gocui.MouseLeft, gocui.ModNone, click); err != nil {
- // return err
- // }
- /*
- if err := g.SetKeybinding("", gocui.MouseLeft, gocui.ModNone, globalDown); err != nil {
- return err
- }
- */
- if err := g.SetKeybinding("msg", gocui.MouseLeft, gocui.ModNone, msgDown); err != nil {
- return err
- }
- addDebugKeys(g)
- return nil
-}
-
-func addDebugKeys(g *gocui.Gui) {
- // show debugging buttons
- g.SetKeybinding("", 'd', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- fakeStartWidth = me.FakeW
- fakeStartHeight = me.TabH + me.FramePadH
- if showDebug {
- me.rootNode.showFake()
- showDebug = false
- } else {
- me.rootNode.hideFake()
- showDebug = true
- }
- return nil
- })
-
- // display the help menu
- g.SetKeybinding("", '?', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- if showHelp {
- helplayout()
- showHelp = false
- } else {
- me.baseGui.DeleteView("help")
- showHelp = true
- }
- return nil
- })
-
- // redraw all the widgets
- g.SetKeybinding("", 'r', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- if redoWidgets {
- redoWindows(0, 0)
- redoWidgets = false
- } else {
- me.rootNode.hideWidgets()
- redoWidgets = true
- }
- return nil
- })
-
- // hide all widgets
- g.SetKeybinding("", 'h', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- me.rootNode.hideWidgets()
- return nil
- })
-
- // show all widgets
- g.SetKeybinding("", 's', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- me.rootNode.showWidgets()
- return nil
- })
-
- // list all widgets
- g.SetKeybinding("", 'L', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- me.rootNode.listWidgets()
- return nil
- })
-
- // list all widgets with positions
- g.SetKeybinding("", 'M', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- me.rootNode.dumpTree(true)
- return nil
- })
-
- // log to output window
- g.SetKeybinding("", 'o', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- log.Log(ERROR, "TODO: re-implement this")
- if me.logStdout.Visible() {
- me.logStdout.SetVisible(false)
- // setOutput(os.Stdout)
- } else {
- me.logStdout.SetVisible(true)
- // setOutput(me.logStdout.tk)
- }
- return nil
- })
-
- // exit
- g.SetKeybinding("", 'q', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- standardExit()
- return nil
- })
- g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- standardExit()
- return nil
- })
- g.SetKeybinding("", gocui.KeyCtrlD, gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- if showDebug {
- var a widget.Action
- a.Value = true
- a.ActionType = widget.EnableDebug
- callback <- a
- }
- return nil
- })
- g.SetKeybinding("", gocui.KeyCtrlV, gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- return nil
- })
-
- // panic
- g.SetKeybinding("", 'p', gocui.ModNone,
- func(g *gocui.Gui, v *gocui.View) error {
- standardExit()
- panic("forced panic in gocui")
- return nil
- })
-}
diff --git a/gocui/main.go b/gocui/main.go
deleted file mode 100644
index 37eed29..0000000
--- a/gocui/main.go
+++ /dev/null
@@ -1,104 +0,0 @@
-// Copyright 2014 The gocui Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
- "os"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-// sets defaults and establishes communication
-// to this toolkit from the wit/gui golang package
-func init() {
- log.Log(INFO, "Init() of awesome-gocui")
-
- // init the config struct default values
- Set(&me, "default")
-
- pluginChan = make(chan widget.Action)
-
- log.Log(NOW, "Init() start pluginChan")
- go catchActionChannel()
- log.Sleep(.1) // probably not needed, but in here for now under development
- go main()
- log.Sleep(.1) // probably not needed, but in here for now under development
-}
-
-/*
-recieves requests from the program to do things like:
-* add new widgets
-* change the text of a label
-* etc..
-*/
-func catchActionChannel() {
- log.Log(INFO, "catchActionChannel() START")
- for {
- log.Log(INFO, "catchActionChannel() infinite for() loop restarted select on channel")
- select {
- case a := <-pluginChan:
- if me.baseGui == nil {
- // something went wrong initializing the gocui
- log.Log(ERROR, "ERROR: console did not initialize")
- continue
- }
- log.Log(INFO, "catchActionChannel()", a.WidgetId, a.ActionType, a.WidgetType, a.ProgName)
- action(&a)
- }
- }
-}
-
-func Exit() {
- // TODO: what should actually happen here?
- log.Log(NOW, "Exit() here. doing standardExit()")
- standardExit()
-}
-
-func standardExit() {
- log.Log(NOW, "standardExit() doing baseGui.Close()")
- me.baseGui.Close()
- log.Log(NOW, "standardExit() doing outf.Close()")
- outf.Close()
- // log(true, "standardExit() setOutput(os.Stdout)")
- // setOutput(os.Stdout)
- log.Log(NOW, "standardExit() send back Quit()")
- go sendBackQuit() // don't stall here in case the
- // induces a delay in case the callback channel is broken
- log.Sleep(1)
- log.Log(NOW, "standardExit() exit()")
- os.Exit(0)
-}
-func sendBackQuit() {
- // send 'Quit' back to the program (?)
- var a widget.Action
- a.ActionType = widget.UserQuit
- callback <- a
-}
-
-var outf *os.File
-
-func main() {
- var err error
- log.Log(INFO, "main() start Init()")
-
- outf, err = os.OpenFile("/tmp/witgui.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
- if err != nil {
- log.Error(err, "error opening file: %v")
- os.Exit(0)
- }
- os.Stdout = outf
- defer outf.Close()
-
- // setOutput(outf)
- // log("This is a test log entry")
-
- ferr, _ := os.OpenFile("/tmp/witgui.err", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0664)
- os.Stderr = ferr
- gocuiMain()
-
- log.Log(NOW, "MouseMain() closed")
- standardExit()
-}
diff --git a/gocui/mouse.go b/gocui/mouse.go
deleted file mode 100644
index 02efc0d..0000000
--- a/gocui/mouse.go
+++ /dev/null
@@ -1,151 +0,0 @@
-// Copyright 2014 The gocui Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
- "errors"
- "fmt"
- "github.com/awesome-gocui/gocui"
-
- "go.wit.com/log"
-)
-
-// this function uses the mouse position to highlight & unhighlight things
-// this is run every time the user moves the mouse over the terminal window
-func mouseMove(g *gocui.Gui) {
- mx, my := g.MousePosition()
- for _, view := range g.Views() {
- view.Highlight = false
- }
- if v, err := g.ViewByPosition(mx, my); err == nil {
- v.Highlight = true
- }
-}
-
-func msgDown(g *gocui.Gui, v *gocui.View) error {
- initialMouseX, initialMouseY = g.MousePosition()
- log.Log(NOW, "msgDown() X,Y", initialMouseX, initialMouseY)
- if vx, vy, _, _, err := g.ViewPosition("msg"); err == nil {
- xOffset = initialMouseX - vx
- yOffset = initialMouseY - vy
- msgMouseDown = true
- }
- return nil
-}
-
-func hideDDview() error {
- w, h := me.baseGui.MousePosition()
- log.Log(NOW, "hide dropdown menu() view msgMouseDown (w,h) =", w, h)
- if me.ddview == nil {
- return gocui.ErrUnknownView
- }
- if me.ddview.tk.v == nil {
- return gocui.ErrUnknownView
- }
- me.ddview.SetVisible(false)
- return nil
-}
-
-func showDDview() error {
- w, h := me.baseGui.MousePosition()
- log.Log(NOW, "show dropdown menu() view msgMouseDown (w,h) =", w, h)
- if me.ddview == nil {
- return gocui.ErrUnknownView
- }
- if me.ddview.tk.v == nil {
- return gocui.ErrUnknownView
- }
- me.ddview.SetVisible(true)
- return nil
-}
-
-func mouseUp(g *gocui.Gui, v *gocui.View) error {
- w, h := g.MousePosition()
- log.Log(NOW, "mouseUp() view msgMouseDown (check here for dropdown menu click) (w,h) =", w, h)
- if me.ddClicked {
- me.ddClicked = false
- log.Log(NOW, "mouseUp() ddview is the thing that was clicked", w, h)
- log.Log(NOW, "mouseUp() find out what the string is here", w, h, me.ddview.tk.gocuiSize.h1)
-
- var newZone string = ""
- if me.ddNode != nil {
- value := h - me.ddview.tk.gocuiSize.h0 - 1
- log.Log(NOW, "mouseUp() me.ddview.tk.gocuiSize.h1 =", me.ddview.tk.gocuiSize.h1)
- log.Log(NOW, "mouseUp() me.ddNode.vals =", me.ddNode.vals)
- valsLen := len(me.ddNode.vals)
- log.Log(NOW, "mouseUp() value =", value, "valsLen =", valsLen)
- log.Log(NOW, "mouseUp() me.ddNode.vals =", me.ddNode.vals)
- if (value >= 0) && (value < valsLen) {
- newZone = me.ddNode.vals[value]
- log.Log(NOW, "mouseUp() value =", value, "newZone =", newZone)
- }
- }
- hideDDview()
- if newZone != "" {
- if me.ddNode != nil {
- me.ddNode.SetText(newZone)
- me.ddNode.value = newZone
- me.ddNode.doUserEvent()
- }
- }
- return nil
- }
- /*
- // if there is a drop down view active, treat it like a dialog box and close it
- if (hideDDview() == nil) {
- return nil
- }
- */
- if msgMouseDown {
- msgMouseDown = false
- if movingMsg {
- movingMsg = false
- return nil
- } else {
- g.DeleteView("msg")
- }
- } else if globalMouseDown {
- globalMouseDown = false
- g.DeleteView("globalDown")
- }
- return nil
-}
-
-func mouseDown(g *gocui.Gui, v *gocui.View) error {
- mx, my := g.MousePosition()
- if vx0, vy0, vx1, vy1, err := g.ViewPosition("msg"); err == nil {
- if mx >= vx0 && mx <= vx1 && my >= vy0 && my <= vy1 {
- return msgDown(g, v)
- }
- }
- globalMouseDown = true
- maxX, _ := g.Size()
- test := findUnderMouse()
- msg := fmt.Sprintf("Mouse really down at: %d,%d", mx, my) + "foobar"
- if test == me.ddview {
- if me.ddview.Visible() {
- log.Log(NOW, "hide DDview() Mouse really down at:", mx, my)
- hideDDview()
- } else {
- log.Log(NOW, "show DDview() Mouse really down at:", mx, my)
- showDDview()
- }
- return nil
- }
- x := mx - len(msg)/2
- if x < 0 {
- x = 0
- } else if x+len(msg)+1 > maxX-1 {
- x = maxX - 1 - len(msg) - 1
- }
- log.Log(NOW, "mouseDown() about to write out message to 'globalDown' view. msg =", msg)
- if v, err := g.SetView("globalDown", x, my-1, x+len(msg)+1, my+1, 0); err != nil {
- if !errors.Is(err, gocui.ErrUnknownView) {
- return err
- }
- v.WriteString(msg)
- }
- return nil
-}
diff --git a/gocui/place.go b/gocui/place.go
deleted file mode 100644
index 4bdcd42..0000000
--- a/gocui/place.go
+++ /dev/null
@@ -1,188 +0,0 @@
-package main
-
-import (
- "strings"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-func (n *node) placeBox(startW int, startH int) {
- if n.WidgetType != widget.Box {
- return
- }
- n.showWidgetPlacement(true, "boxS()")
-
- newW := startW
- newH := startH
- for _, child := range n.children {
- child.placeWidgets(newW, newH)
- // n.showWidgetPlacement(logNow, "boxS()")
- newR := child.realGocuiSize()
- w := newR.w1 - newR.w0
- h := newR.h1 - newR.h0
- if n.direction == widget.Horizontal {
- log.Log(NOW, "BOX IS HORIZONTAL", n.progname, "newWH()", newW, newH, "child()", w, h, child.progname)
- // expand based on the child width
- newW += w
- } else {
- log.Log(NOW, "BOX IS VERTICAL ", n.progname, "newWH()", newW, newH, "child()", w, h, child.progname)
- // expand based on the child height
- newH += h
- }
- }
-
- // just compute this every time?
- // newR := n.realGocuiSize()
-
- n.showWidgetPlacement(true, "boxE()")
-}
-
-func (n *node) placeWidgets(startW int, startH int) {
- if n == nil {
- return
- }
- if me.rootNode == nil {
- return
- }
-
- switch n.WidgetType {
- case widget.Window:
- for _, child := range n.children {
- child.placeWidgets(me.RawW, me.RawH)
- return
- }
- case widget.Tab:
- for _, child := range n.children {
- child.placeWidgets(me.RawW, me.RawH)
- return
- }
- case widget.Grid:
- n.placeGrid(startW, startH)
- case widget.Box:
- n.placeBox(startW, startH)
- case widget.Group:
- // move the group to the parent's next location
- n.gocuiSetWH(startW, startH)
- n.showWidgetPlacement(true, "group()")
-
- newW := startW + me.GroupPadW
- newH := startH + 3 // normal hight of the group label
- // now move all the children aka: run place() on them
- for _, child := range n.children {
- child.placeWidgets(newW, newH)
- newR := child.realGocuiSize()
- // w := newR.w1 - newR.w0
- h := newR.h1 - newR.h0
-
- // increment straight down
- newH += h
- }
- default:
- n.gocuiSetWH(startW, startH)
- // n.moveTo(startW, startH)
- }
-}
-
-func (n *node) placeGrid(startW int, startH int) {
- w := n.tk
- n.showWidgetPlacement(true, "grid0:")
- if n.WidgetType != widget.Grid {
- return
- }
-
- // first compute the max sizes of the rows and columns
- for _, child := range n.children {
- newR := child.realGocuiSize()
- childW := newR.w1 - newR.w0
- childH := newR.h1 - newR.h0
-
- // set the child's realWidth, and grid offset
- if w.widths[child.AtW] < childW {
- w.widths[child.AtW] = childW
- }
- if w.heights[child.AtH] < childH {
- w.heights[child.AtH] = childH
- }
- // child.showWidgetPlacement(logInfo, "grid: ")
- log.Log(INFO, "placeGrid:", child.progname, "child()", childW, childH, "At()", child.AtW, child.AtH)
- }
-
- // find the width and height offset of the grid for AtW,AtH
- for _, child := range n.children {
- child.showWidgetPlacement(true, "grid1:")
-
- var totalW, totalH int
- for i, w := range w.widths {
- if i < child.AtW {
- totalW += w
- }
- }
- for i, h := range w.heights {
- if i < child.AtH {
- totalH += h
- }
- }
-
- // the new corner to move the child to
- newW := startW + totalW
- newH := startH + totalH
-
- log.Log(INFO, "placeGrid:", child.progname, "new()", newW, newH, "At()", child.AtW, child.AtH)
- child.placeWidgets(newW, newH)
- child.showWidgetPlacement(true, "grid2:")
- }
- n.showWidgetPlacement(true, "grid3:")
-}
-
-// computes the real, actual size of all the gocli objects in a widget
-func (n *node) realGocuiSize() *rectType {
- var f func(n *node, r *rectType)
- newR := new(rectType)
- // initialize the values to opposite
- newR.w0 = 80
- newR.h0 = 24
- if me.baseGui != nil {
- maxW, maxH := me.baseGui.Size()
- newR.w0 = maxW
- newR.h0 = maxH
- }
- newR.w1 = 0
- newR.h1 = 0
-
- // expand the rectangle to the biggest thing displayed
- f = func(n *node, r *rectType) {
- newR := n.tk.gocuiSize
- if !n.tk.isFake {
- if r.w0 > newR.w0 {
- r.w0 = newR.w0
- }
- if r.h0 > newR.h0 {
- r.h0 = newR.h0
- }
- if r.w1 < newR.w1 {
- r.w1 = newR.w1
- }
- if r.h1 < newR.h1 {
- r.h1 = newR.h1
- }
- }
- for _, child := range n.children {
- f(child, r)
- }
- }
- f(n, newR)
- return newR
-}
-
-func (n *node) textSize() (int, int) {
- var width, height int
-
- for _, s := range strings.Split(widget.GetString(n.value), "\n") {
- if width < len(s) {
- width = len(s)
- }
- height += 1
- }
- return width, height
-}
diff --git a/gocui/plugin.go b/gocui/plugin.go
deleted file mode 100644
index c0a925f..0000000
--- a/gocui/plugin.go
+++ /dev/null
@@ -1,117 +0,0 @@
-package main
-
-import (
- // if you include more than just this import
- // then your plugin might be doing something un-ideal (just a guess from 2023/02/27)
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-func action(a *widget.Action) {
- log.Log(INFO, "action() START", a.WidgetId, a.ActionType, a.WidgetType, a.ProgName)
- n := me.rootNode.findWidgetId(a.WidgetId)
- var w *guiWidget
- if n != nil {
- w = n.tk
- }
- switch a.ActionType {
- case widget.Add:
- if w == nil {
- n := addNode(a)
- // w = n.tk
- n.addWidget()
- } else {
- // this is done to protect the plugin being 'refreshed' with the
- // widget binary tree. TODO: find a way to keep them in sync
- log.Log(ERROR, "action() Add ignored for already defined widget",
- a.WidgetId, a.ActionType, a.WidgetType, a.ProgName)
- }
- case widget.Show:
- if widget.GetBool(a.Value) {
- n.showView()
- } else {
- n.hideWidgets()
- }
- case widget.Set:
- if a.WidgetType == widget.Flag {
- log.Log(NOW, "TODO: set flag here", a.ActionType, a.WidgetType, a.ProgName)
- log.Log(NOW, "TODO: n.WidgetType =", n.WidgetType, "n.progname =", a.ProgName)
- } else {
- if a.Value == nil {
- log.Log(ERROR, "TODO: Set here. a == nil id =", a.WidgetId, "type =", a.WidgetType, "Name =", a.ProgName)
- log.Log(ERROR, "TODO: Set here. id =", a.WidgetId, "n.progname =", n.progname)
- } else {
- n.Set(a.Value)
- }
- }
- case widget.SetText:
- n.SetText(widget.GetString(a.Value))
- case widget.AddText:
- n.AddText(widget.GetString(a.Value))
- case widget.Move:
- log.Log(NOW, "attempt to move() =", a.ActionType, a.WidgetType, a.ProgName)
- case widget.ToolkitClose:
- log.Log(NOW, "attempting to close the plugin and release stdout and stderr")
- standardExit()
- case widget.Enable:
- if n.Visible() {
- // widget was already shown
- } else {
- log.Log(INFO, "Setting Visable to true", a.ProgName)
- n.SetVisible(true)
- }
- case widget.Disable:
- if n.Visible() {
- log.Log(INFO, "Setting Visable to false", a.ProgName)
- n.SetVisible(false)
- } else {
- // widget was already hidden
- }
- default:
- log.Log(ERROR, "action() ActionType =", a.ActionType, "WidgetType =", a.WidgetType, "Name =", a.ProgName)
- }
- log.Log(INFO, "action() END")
-}
-
-func (n *node) AddText(text string) {
- if n == nil {
- log.Log(NOW, "widget is nil")
- return
- }
- n.vals = append(n.vals, text)
- for i, s := range n.vals {
- log.Log(NOW, "AddText()", n.progname, i, s)
- }
- n.SetText(text)
-}
-
-func (n *node) SetText(text string) {
- var changed bool = false
- if n == nil {
- log.Log(NOW, "widget is nil")
- return
- }
- if widget.GetString(n.value) != text {
- n.value = text
- changed = true
- }
- if !changed {
- return
- }
-
- if n.Visible() {
- n.textResize()
- n.deleteView()
- n.showView()
- }
-}
-
-func (n *node) Set(val any) {
- // w := n.tk
- log.Log(INFO, "Set() value =", val)
-
- n.value = val
- if n.WidgetType != widget.Checkbox {
- n.setCheckbox(val)
- }
-}
diff --git a/gocui/showStdout.go b/gocui/showStdout.go
deleted file mode 100644
index c628f4a..0000000
--- a/gocui/showStdout.go
+++ /dev/null
@@ -1,98 +0,0 @@
-package main
-
-import (
- "errors"
- "fmt"
-
- "github.com/awesome-gocui/gocui"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-var outputW int = 180
-var outputH int = 24
-
-func moveMsg(g *gocui.Gui) {
- mx, my := g.MousePosition()
- if !movingMsg && (mx != initialMouseX || my != initialMouseY) {
- movingMsg = true
- }
- g.SetView("msg", mx-xOffset, my-yOffset, mx-xOffset+outputW, my-yOffset+outputH+me.FramePadH, 0)
- g.SetViewOnBottom("msg")
-}
-
-func showMsg(g *gocui.Gui, v *gocui.View) error {
- var l string
- var err error
-
- log.Log(NOW, "showMsg() v.name =", v.Name())
- if _, err := g.SetCurrentView(v.Name()); err != nil {
- return err
- }
-
- _, cy := v.Cursor()
- if l, err = v.Line(cy); err != nil {
- l = ""
- }
-
- makeOutputWidget(g, l)
- return nil
-}
-
-func makeOutputWidget(g *gocui.Gui, stringFromMouseClick string) *gocui.View {
- maxX, maxY := g.Size()
-
- if me.rootNode == nil {
- // keep skipping this until the binary tree is initialized
- return nil
- }
-
- if me.logStdout == nil {
- a := new(widget.Action)
- a.ProgName = "stdout"
- a.WidgetType = widget.Stdout
- a.WidgetId = -3
- a.ParentId = 0
- n := addNode(a)
- me.logStdout = n
- me.logStdout.tk.gocuiSize.w0 = maxX - 32
- me.logStdout.tk.gocuiSize.h0 = maxY / 2
- me.logStdout.tk.gocuiSize.w1 = me.logStdout.tk.gocuiSize.w0 + outputW
- me.logStdout.tk.gocuiSize.h1 = me.logStdout.tk.gocuiSize.h0 + outputH
- }
- v, err := g.View("msg")
- if v == nil {
- log.Log(NOW, "makeoutputwindow() this is supposed to happen. v == nil", err)
- } else {
- log.Log(NOW, "makeoutputwindow() msg != nil. WTF now? err =", err)
- }
-
- // help, err := g.SetView("help", maxX-32, 0, maxX-1, 13, 0)
- // v, err = g.SetView("msg", 3, 3, 30, 30, 0)
-
- v, err = g.SetView("msg", maxX-32, maxY/2, maxX/2+outputW, maxY/2+outputH, 0)
- if errors.Is(err, gocui.ErrUnknownView) {
- log.Log(NOW, "makeoutputwindow() this is supposed to happen?", err)
- }
-
- if err != nil {
- log.Log(NOW, "makeoutputwindow() create output window failed", err)
- return nil
- }
-
- if v == nil {
- log.Log(NOW, "makeoutputwindow() msg == nil. WTF now? err =", err)
- return nil
- } else {
- me.logStdout.tk.v = v
- }
-
- v.Clear()
- v.SelBgColor = gocui.ColorCyan
- v.SelFgColor = gocui.ColorBlack
- fmt.Fprintln(v, "figure out how to capture STDOUT to here\n"+stringFromMouseClick)
- g.SetViewOnBottom("msg")
- // g.SetViewOnBottom(v.Name())
- return v
-}
diff --git a/gocui/structs.go b/gocui/structs.go
deleted file mode 100644
index e899f78..0000000
--- a/gocui/structs.go
+++ /dev/null
@@ -1,229 +0,0 @@
-// LICENSE: same as the go language itself
-// Copyright 2023 WIT.COM
-
-// all structures and variables are local (aka lowercase)
-// since the plugin should be isolated to access only
-// by functions() to insure everything here is run
-// inside a dedicated goroutine
-
-package main
-
-import (
- "fmt"
- "github.com/awesome-gocui/gocui"
- "reflect"
- "strconv"
- "strings"
- "sync"
-
- "go.wit.com/log"
-)
-
-// It's probably a terrible idea to call this 'me'
-var me config
-
-var showDebug bool = true
-var showHelp bool = true
-var redoWidgets bool = true
-
-// This is the window that is currently active
-var currentWindow *node
-
-type config struct {
- baseGui *gocui.Gui // the main gocui handle
- rootNode *node // the base of the binary tree. it should have id == 0
-
- ctrlDown *node // shown if you click the mouse when the ctrl key is pressed
- currentWindow *node // this is the current tab or window to show
- logStdout *node // where to show STDOUT
- helpLabel *gocui.View
- ddview *node // the gocui view to select dropdrown lists
- ddClicked bool // the dropdown menu view was clicked
- ddNode *node // the dropdown menu is for this widget
-
- /*
- // this is the channel we send user events like
- // mouse clicks or keyboard events back to the program
- callback chan toolkit.Action
-
- // this is the channel we get requests to make widgets
- pluginChan chan toolkit.Action
- */
-
- // When the widget has a frame, like a button, it adds 2 lines runes on each side
- // so you need 3 char spacing in each direction to not have them overlap
- // the amount of padding when there is a frame
- FramePadW int `default:"1" dense:"0"`
- FramePadH int `default:"1" dense:"0"`
-
- PadW int `default:"1" dense:"0"`
- PadH int `default:"1" dense:"0"`
-
- // how far down to start Window or Tab headings
- WindowW int `default:"8" dense:"0"`
- WindowH int `default:"-1"`
- TabW int `default:"5" dense:"0"`
- TabH int `default:"1" dense:"0"`
-
- // additional amount of space to put between window & tab widgets
- WindowPadW int `default:"8" dense:"0"`
- TabPadW int `default:"4" dense:"0"`
-
- // additional amount of space to indent on a group
- GroupPadW int `default:"6" dense:"2"`
-
- // the raw beginning of each window (or tab)
- RawW int `default:"1"`
- RawH int `default:"5"`
-
- // offset for the hidden widgets
- FakeW int `default:"20"`
-
- padded bool // add space between things like buttons
- bookshelf bool // do you want things arranged in the box like a bookshelf or a stack?
- canvas bool // if set to true, the windows are a raw canvas
- menubar bool // for windows
- stretchy bool // expand things like buttons to the maximum size
- margin bool // add space around the frames of windows
-
- // writeMutex protects locks the write process
- writeMutex sync.Mutex
-
- // used for listWidgets() debugging
- depth int
-}
-
-// deprecate these
-var (
- initialMouseX, initialMouseY, xOffset, yOffset int
- globalMouseDown, msgMouseDown, movingMsg bool
-)
-
-// this is the gocui way
-// corner starts at in the upper left corner
-type rectType struct {
- w0, h0, w1, h1 int // left top right bottom
-}
-
-func (r *rectType) Width() int {
- return r.w1 - r.w0
-}
-
-func (r *rectType) Height() int {
- return r.h1 - r.h0
-}
-
-type guiWidget struct {
- // the gocui package variables
- v *gocui.View // this is nil if the widget is not displayed
- cuiName string // what gocui uses to reference the widget
-
- // the actual text to display in the console
- label string
-
- // the logical size of the widget
- // For example, 40x12 would be the center of a normal terminal
- // size rectType
-
- // the actual gocui display view of this widget
- // sometimes this isn't visible like with a Box or Grid
- gocuiSize rectType
-
- isCurrent bool // is this the currently displayed Window or Tab?
- isFake bool // widget types like 'box' are 'false'
-
- // used to track the size of grids
- widths map[int]int // how tall each row in the grid is
- heights map[int]int // how wide each column in the grid is
-
- tainted bool
- frame bool
-
- // for a window, this is currently selected tab
- selectedTab *node
-
- // what color to use
- color *colorT
-}
-
-// from the gocui devs:
-// Write appends a byte slice into the view's internal buffer. Because
-// View implements the io.Writer interface, it can be passed as parameter
-// of functions like fmt.Fprintf, fmt.Fprintln, io.Copy, etc. Clear must
-// be called to clear the view's buffer.
-
-func (w *guiWidget) Write(p []byte) (n int, err error) {
- w.tainted = true
- me.writeMutex.Lock()
- defer me.writeMutex.Unlock()
- if me.logStdout.tk.v == nil {
- // optionally write the output to /tmp
- s := fmt.Sprint(string(p))
- s = strings.TrimSuffix(s, "\n")
- fmt.Fprintln(outf, s)
- v, _ := me.baseGui.View("msg")
- if v != nil {
- // fmt.Fprintln(outf, "found msg")
- me.logStdout.tk.v = v
- }
- } else {
- // display the output in the gocui window
- me.logStdout.tk.v.Clear()
-
- s := fmt.Sprint(string(p))
- s = strings.TrimSuffix(s, "\n")
- tmp := strings.Split(s, "\n")
- outputS = append(outputS, tmp...)
- if len(outputS) > outputH {
- l := len(outputS) - outputH
- outputS = outputS[l:]
- }
- fmt.Fprintln(me.logStdout.tk.v, strings.Join(outputS, "\n"))
- }
-
- return len(p), nil
-}
-
-func Set(ptr interface{}, tag string) error {
- if reflect.TypeOf(ptr).Kind() != reflect.Ptr {
- log.Log(ERROR, "Set() Not a pointer", ptr, "with tag =", tag)
- return fmt.Errorf("Not a pointer")
- }
-
- v := reflect.ValueOf(ptr).Elem()
- t := v.Type()
-
- for i := 0; i < t.NumField(); i++ {
- defaultVal := t.Field(i).Tag.Get(tag)
- name := t.Field(i).Name
- // log("Set() try name =", name, "defaultVal =", defaultVal)
- setField(v.Field(i), defaultVal, name)
- }
- return nil
-}
-
-func setField(field reflect.Value, defaultVal string, name string) error {
-
- if !field.CanSet() {
- // log("setField() Can't set value", field, defaultVal)
- return fmt.Errorf("Can't set value\n")
- } else {
- log.Log(NOW, "setField() Can set value", name, defaultVal)
- }
-
- switch field.Kind() {
- case reflect.Int:
- val, _ := strconv.Atoi(defaultVal)
- field.Set(reflect.ValueOf(int(val)).Convert(field.Type()))
- case reflect.String:
- field.Set(reflect.ValueOf(defaultVal).Convert(field.Type()))
- case reflect.Bool:
- if defaultVal == "true" {
- field.Set(reflect.ValueOf(true))
- } else {
- field.Set(reflect.ValueOf(false))
- }
- }
-
- return nil
-}
diff --git a/gocui/tab.go b/gocui/tab.go
deleted file mode 100644
index f0fc563..0000000
--- a/gocui/tab.go
+++ /dev/null
@@ -1,111 +0,0 @@
-package main
-
-// implements widgets 'Window' and 'Tab'
-
-import (
- "strings"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-func (w *guiWidget) Width() int {
- if w.frame {
- return w.gocuiSize.w1 - w.gocuiSize.w0
- }
- return w.gocuiSize.w1 - w.gocuiSize.w0 - 1
-}
-
-func (w *guiWidget) Height() int {
- if w.frame {
- return w.gocuiSize.h1 - w.gocuiSize.h0
- }
- return w.gocuiSize.h1 - w.gocuiSize.h0 - 1
-}
-
-func (n *node) gocuiSetWH(sizeW, sizeH int) {
- w := len(widget.GetString(n.value))
- lines := strings.Split(widget.GetString(n.value), "\n")
- h := len(lines)
-
- tk := n.tk
- if tk.isFake {
- tk.gocuiSize.w0 = sizeW
- tk.gocuiSize.h0 = sizeH
- tk.gocuiSize.w1 = tk.gocuiSize.w0 + w + me.FramePadW
- tk.gocuiSize.h1 = tk.gocuiSize.h0 + h + me.FramePadH
- return
- }
-
- if tk.frame {
- tk.gocuiSize.w0 = sizeW
- tk.gocuiSize.h0 = sizeH
- tk.gocuiSize.w1 = tk.gocuiSize.w0 + w + me.FramePadW
- tk.gocuiSize.h1 = tk.gocuiSize.h0 + h + me.FramePadH
- } else {
- tk.gocuiSize.w0 = sizeW - 1
- tk.gocuiSize.h0 = sizeH - 1
- tk.gocuiSize.w1 = tk.gocuiSize.w0 + w + 1
- tk.gocuiSize.h1 = tk.gocuiSize.h0 + h + 1
- }
-}
-
-func redoWindows(nextW int, nextH int) {
- for _, n := range me.rootNode.children {
- if n.WidgetType != widget.Window {
- continue
- }
- w := n.tk
- var tabs bool
- for _, child := range n.children {
- if child.WidgetType == widget.Tab {
- tabs = true
- }
- }
- if tabs {
- // window is tabs. Don't show it as a standard button
- w.frame = false
- n.hasTabs = true
- } else {
- w.frame = false
- n.hasTabs = false
- }
-
- n.gocuiSetWH(nextW, nextH)
- n.deleteView()
- n.showView()
-
- sizeW := w.Width() + me.WindowPadW
- sizeH := w.Height()
- nextW += sizeW
- log.Log(NOW, "redoWindows() start nextW,H =", nextW, nextH, "gocuiSize.W,H =", sizeW, sizeH, n.progname)
-
- if n.hasTabs {
- n.redoTabs(me.TabW, me.TabH)
- }
- }
-}
-
-func (p *node) redoTabs(nextW int, nextH int) {
- for _, n := range p.children {
- if n.WidgetType != widget.Tab {
- continue
- }
- w := n.tk
- w.frame = true
-
- n.gocuiSetWH(nextW, nextH)
- n.deleteView()
- // setCurrentTab(n)
- // if (len(w.cuiName) < 4) {
- // w.cuiName = "abcd"
- // }
-
- n.showView()
-
- sizeW := w.Width() + me.TabPadW
- sizeH := w.Height()
- log.Log(NOW, "redoTabs() start nextW,H =", nextW, nextH, "gocuiSize.W,H =", sizeW, sizeH, n.progname)
- nextW += sizeW
- }
-}
diff --git a/gocui/view.go b/gocui/view.go
deleted file mode 100644
index b2bc81b..0000000
--- a/gocui/view.go
+++ /dev/null
@@ -1,233 +0,0 @@
-package main
-
-import (
- "bufio"
- "errors"
- "fmt"
- "strings"
-
- "github.com/awesome-gocui/gocui"
-
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-func splitLines(s string) []string {
- var lines []string
- sc := bufio.NewScanner(strings.NewReader(s))
- for sc.Scan() {
- lines = append(lines, sc.Text())
- }
- return lines
-}
-
-func (n *node) textResize() bool {
- w := n.tk
- var width, height int = 0, 0
- var changed bool = false
-
- for i, s := range splitLines(n.tk.label) {
- log.Log(INFO, "textResize() len =", len(s), i, s)
- if width < len(s) {
- width = len(s)
- }
- height += 1
- }
- if w.gocuiSize.w1 != w.gocuiSize.w0+width+me.FramePadW {
- w.gocuiSize.w1 = w.gocuiSize.w0 + width + me.FramePadW
- changed = true
- }
- if w.gocuiSize.h1 != w.gocuiSize.h0+height+me.FramePadH {
- w.gocuiSize.h1 = w.gocuiSize.h0 + height + me.FramePadH
- changed = true
- }
- if changed {
- n.showWidgetPlacement(true, "textResize() changed")
- }
- return changed
-}
-
-func (n *node) hideView() {
- n.SetVisible(false)
-}
-
-// display's the text of the widget in gocui
-// will create a new gocui view if there isn't one or if it has been moved
-func (n *node) showView() {
- var err error
- w := n.tk
-
- if w.cuiName == "" {
- log.Log(ERROR, "showView() w.cuiName was not set for widget", w)
- w.cuiName = string(n.WidgetId)
- }
-
- // if the gocui element doesn't exist, create it
- if w.v == nil {
- n.recreateView()
- }
- x0, y0, x1, y1, err := me.baseGui.ViewPosition(w.cuiName)
- log.Log(INFO, "showView() w.v already defined for widget", n.progname, err)
-
- // n.smartGocuiSize()
- changed := n.textResize()
-
- if changed {
- log.Log(NOW, "showView() textResize() changed. Should recreateView here wId =", w.cuiName)
- } else {
- log.Log(NOW, "showView() Clear() and Fprint() here wId =", w.cuiName)
- w.v.Clear()
- fmt.Fprint(w.v, n.tk.label)
- n.SetVisible(false)
- n.SetVisible(true)
- return
- }
-
- // if the gocui element has changed where it is supposed to be on the screen
- // recreate it
- if x0 != w.gocuiSize.w0 {
- n.recreateView()
- return
- }
- if y0 != w.gocuiSize.h0 {
- log.Log(ERROR, "showView() start hight mismatch id=", w.cuiName, "gocui h vs computed h =", w.gocuiSize.h0, y0)
- n.recreateView()
- return
- }
- if x1 != w.gocuiSize.w1 {
- log.Log(ERROR, "showView() too wide", w.cuiName, "w,w", w.gocuiSize.w1, x1)
- n.recreateView()
- return
- }
- if y1 != w.gocuiSize.h1 {
- log.Log(ERROR, "showView() too high", w.cuiName, "h,h", w.gocuiSize.h1, y1)
- n.recreateView()
- return
- }
-
- n.SetVisible(true)
-}
-
-// create or recreate the gocui widget visible
-// deletes the old view if it exists and recreates it
-func (n *node) recreateView() {
- var err error
- w := n.tk
- log.Log(ERROR, "recreateView() START", n.WidgetType, n.progname)
- if me.baseGui == nil {
- log.Log(ERROR, "recreateView() ERROR: me.baseGui == nil", w)
- return
- }
-
- // this deletes the button from gocui
- me.baseGui.DeleteView(w.cuiName)
- w.v = nil
-
- if n.progname == "CLOUDFLARE_EMAIL" {
- n.showWidgetPlacement(true, "n.progname="+n.progname+" n.tk.label="+n.tk.label+" "+w.cuiName)
- n.dumpWidget("jwc")
- n.textResize()
- n.showWidgetPlacement(true, "n.progname="+n.progname+" n.tk.label="+n.tk.label+" "+w.cuiName)
- }
-
- a := w.gocuiSize.w0
- b := w.gocuiSize.h0
- c := w.gocuiSize.w1
- d := w.gocuiSize.h1
-
- w.v, err = me.baseGui.SetView(w.cuiName, a, b, c, d, 0)
- if err == nil {
- n.showWidgetPlacement(true, "recreateView()")
- log.Log(ERROR, "recreateView() internal plugin error err = nil")
- return
- }
- if !errors.Is(err, gocui.ErrUnknownView) {
- n.showWidgetPlacement(true, "recreateView()")
- log.Log(ERROR, "recreateView() internal plugin error error.IS()", err)
- return
- }
-
- // this sets up the keybinding for the name of the window
- // does this really need to be done? I think we probably already
- // know everything about where all the widgets are so we could bypass
- // the gocui package and just handle all the mouse events internally here (?)
- // for now, the w.v.Name is a string "1", "2", "3", etc from the widgetId
-
- // set the binding for this gocui view now that it has been created
- // gocui handles overlaps of views so it will run on the view that is clicked on
- me.baseGui.SetKeybinding(w.v.Name(), gocui.MouseLeft, gocui.ModNone, click)
-
- // this actually sends the text to display to gocui
- w.v.Wrap = true
- w.v.Frame = w.frame
- w.v.Clear()
- fmt.Fprint(w.v, n.tk.label)
- // n.showWidgetPlacement(true, "n.progname=" + n.progname + " n.tk.label=" + n.tk.label + " " + w.cuiName)
- // n.dumpWidget("jwc 2")
-
- // if you don't do this here, it will be black & white only
- if w.color != nil {
- w.v.FrameColor = w.color.frame
- w.v.FgColor = w.color.fg
- w.v.BgColor = w.color.bg
- w.v.SelFgColor = w.color.selFg
- w.v.SelBgColor = w.color.selBg
- }
- if n.progname == "CLOUDFLARE_EMAIL" {
- n.showWidgetPlacement(true, "n.progname="+n.progname+" n.tk.label="+n.tk.label+" "+w.cuiName)
- n.dumpTree(true)
- }
- log.Log(ERROR, "recreateView() END")
-}
-
-func (n *node) hideWidgets() {
- w := n.tk
- w.isCurrent = false
- switch n.WidgetType {
- case widget.Root:
- case widget.Flag:
- case widget.Window:
- case widget.Box:
- case widget.Grid:
- default:
- n.hideView()
- }
- for _, child := range n.children {
- child.hideWidgets()
- }
-}
-
-func (n *node) hideFake() {
- w := n.tk
- if w.isFake {
- n.hideView()
- }
- for _, child := range n.children {
- child.hideFake()
- }
-}
-
-func (n *node) showFake() {
- w := n.tk
- if w.isFake {
- n.setFake()
- n.showWidgetPlacement(true, "showFake:")
- n.showView()
- }
- for _, child := range n.children {
- child.showFake()
- }
-}
-
-func (n *node) showWidgets() {
- w := n.tk
- if w.isFake {
- // don't display by default
- } else {
- n.showWidgetPlacement(true, "current:")
- n.showView()
- }
- for _, child := range n.children {
- child.showWidgets()
- }
-}
diff --git a/gocui/widget.go b/gocui/widget.go
deleted file mode 100644
index ff8df1b..0000000
--- a/gocui/widget.go
+++ /dev/null
@@ -1,139 +0,0 @@
-package main
-
-import (
- "go.wit.com/lib/widget"
- "go.wit.com/log"
-)
-
-func initWidget(n *node) *guiWidget {
- var w *guiWidget
- w = new(guiWidget)
- // Set(w, "default")
-
- w.frame = true
-
- // set the name used by gocui to the id
- w.cuiName = string(n.WidgetId)
-
- if n.WidgetType == widget.Root {
- log.Log(INFO, "setupWidget() FOUND ROOT w.id =", n.WidgetId)
- n.WidgetId = 0
- me.rootNode = n
- return w
- }
-
- if n.WidgetType == widget.Grid {
- w.widths = make(map[int]int) // how tall each row in the grid is
- w.heights = make(map[int]int) // how wide each column in the grid is
- }
-
- return w
-}
-
-func setupCtrlDownWidget() {
- a := new(widget.Action)
- a.ProgName = "ctrlDown"
- a.WidgetType = widget.Dialog
- a.WidgetId = -1
- a.ParentId = 0
- n := addNode(a)
-
- me.ctrlDown = n
-}
-
-func (n *node) deleteView() {
- w := n.tk
- if w.v != nil {
- w.v.Visible = false
- return
- }
- // make sure the view isn't really there
- me.baseGui.DeleteView(w.cuiName)
- w.v = nil
-}
-
-// searches the binary tree for a WidgetId
-func (n *node) findWidgetName(name string) *node {
- if n == nil {
- return nil
- }
-
- if n.tk.cuiName == name {
- return n
- }
-
- for _, child := range n.children {
- newN := child.findWidgetName(name)
- if newN != nil {
- return newN
- }
- }
- return nil
-}
-
-func (n *node) IsCurrent() bool {
- w := n.tk
- if n.WidgetType == widget.Tab {
- return w.isCurrent
- }
- if n.WidgetType == widget.Window {
- return w.isCurrent
- }
- if n.WidgetType == widget.Root {
- return false
- }
- return n.parent.IsCurrent()
-}
-
-func (n *node) Visible() bool {
- if n == nil {
- return false
- }
- if n.tk == nil {
- return false
- }
- if n.tk.v == nil {
- return false
- }
- return n.tk.v.Visible
-}
-
-func (n *node) SetVisible(b bool) {
- if n == nil {
- return
- }
- if n.tk == nil {
- return
- }
- if n.tk.v == nil {
- return
- }
- n.tk.v.Visible = b
-}
-
-func addDropdown() *node {
- n := new(node)
- n.WidgetType = widget.Flag
- n.WidgetId = -2
- n.ParentId = 0
-
- // copy the data from the action message
- n.progname = "DropBox"
- n.tk.label = "DropBox text"
-
- // store the internal toolkit information
- n.tk = new(guiWidget)
- n.tk.frame = true
-
- // set the name used by gocui to the id
- n.tk.cuiName = "-1 dropbox"
-
- n.tk.color = &colorFlag
-
- // add this new widget on the binary tree
- n.parent = me.rootNode
- if n.parent != nil {
- n.parent.children = append(n.parent.children, n)
- }
- return n
-}
diff --git a/nocui/Makefile b/nocui/Makefile
deleted file mode 100644
index 15c7487..0000000
--- a/nocui/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-all: plugin
- ldd ../nocui.so
-
-plugin:
- GO111MODULE="off" go build -v -x -buildmode=plugin -o ../nocui.so
-
-cleanbuild:
- go build -v -x -buildmode=plugin -o ../nocui.so
-
-check-git-clean:
- @git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)
-
-redomod:
- rm -f go.*
- GO111MODULE= go mod init
- GO111MODULE= go mod tidy
diff --git a/nocui/README.md b/nocui/README.md
deleted file mode 100644
index 018b9ce..0000000
--- a/nocui/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# nogui
-
-Package gui implements a abstraction layer for Go visual elements.
-
-This is a sample plugin. It's a skeleton intended to be used when making a new toolkit plugin.
diff --git a/nocui/action.go b/nocui/action.go
deleted file mode 100644
index ea1a6fa..0000000
--- a/nocui/action.go
+++ /dev/null
@@ -1,89 +0,0 @@
-package main
-
-/*
- a simple function to handle widget actions
-
- You can tie this into your toolkit here.
-*/
-
-import (
- "go.wit.com/log"
- "go.wit.com/lib/widget"
- // "go.wit.com/gui/toolkits/tree"
-)
-
-func doAction(a widget.Action) {
- log.Log(INFO, "doAction() START a.ActionType =", a.ActionType)
- log.Log(INFO, "doAction() START a.ProgName =", a.ProgName)
-
- if (a.ActionType == widget.ToolkitInit) {
- return
- }
-
- log.Log(INFO, "doAction() START a.WidgetId =", a.WidgetId, "a.ParentId =", a.ParentId)
- switch a.WidgetType {
- case widget.Root:
- me.treeRoot = me.myTree.AddNode(&a)
- log.Log(INFO, "doAction() found treeRoot")
- return
- }
-
- switch a.ActionType {
- case widget.Add:
- me.myTree.AddNode(&a)
- return
- }
-
- n := me.treeRoot.FindWidgetId(a.WidgetId)
- if n == nil {
- log.Warn("FindId() n == nil", a.WidgetId, a.ActionType)
- log.Warn("FindId() n == nil", a.WidgetId, a.ActionType)
- log.Warn("FindId() n == nil", a.WidgetId, a.ActionType)
- log.Warn("Aaaaa!, return")
- return
- }
-
- switch a.ActionType {
- case widget.Show:
- n.State.Visable = true
- case widget.Hide:
- n.State.Visable = false
- case widget.Enable:
- n.State.Visable = true
- case widget.Disable:
- n.State.Visable = false
- case widget.Get:
- log.Warn("value =", n.State.Value)
- case widget.GetText:
- log.Warn("value =", n.String())
- case widget.Set:
- n.State.Value = a.State.Value
- case widget.SetText:
- log.Warn("GOT TO SetText()", a.WidgetId)
- log.Warn("GOT TO SetText()", a.WidgetId)
- log.Warn("GOT TO SetText()", a.WidgetId)
- log.Warn("GOT TO SetText()", a.WidgetId)
- if n == nil {
- log.Warn("HOT DIGGITY. n == nil")
- }
- n.State.Value = a.State.Value
- case widget.AddText:
- n.State.Strings = append(a.State.Strings, widget.GetString(a.State.Value))
- case widget.Margin:
- n.State.Pad = true
- case widget.Unmargin:
- n.State.Pad = false
- case widget.Pad:
- n.State.Pad = true
- case widget.Unpad:
- n.State.Pad = false
- case widget.Delete:
- log.Warn("doAction() TODO: Delete()")
- // n.Delete()
- case widget.Move:
- log.Warn("doAction() TODO: Move()")
- default:
- log.Log(ERROR, "doAction() Unknown =", a.ActionType, a.WidgetType)
- }
- log.Log(INFO, "doAction() END =", a.ActionType, a.WidgetType)
-}
diff --git a/nocui/args.go b/nocui/args.go
deleted file mode 100644
index 4b6b38e..0000000
--- a/nocui/args.go
+++ /dev/null
@@ -1,30 +0,0 @@
-package main
-
-/*
- this enables command line options from other packages like 'gui' and 'log'
-*/
-
-import (
- log "go.wit.com/log"
-)
-
-var NOW *log.LogFlag
-var INFO *log.LogFlag
-
-var SPEW *log.LogFlag
-var WARN *log.LogFlag
-
-var ERROR *log.LogFlag
-
-func init() {
- full := "toolkit/nocui"
- short := "nocui"
-
- NOW = log.NewFlag( "NOW", true, full, short, "temp debugging stuff")
- INFO = log.NewFlag("INFO", false, full, short, "normal debugging stuff")
-
- WARN = log.NewFlag("WARN", true, full, short, "bad things")
- SPEW = log.NewFlag("SPEW", false, full, short, "spew stuff")
-
- ERROR = log.NewFlag("ERROR", false, full, short, "toolkit errors")
-}
diff --git a/nocui/event.go b/nocui/event.go
deleted file mode 100644
index 9bbafdb..0000000
--- a/nocui/event.go
+++ /dev/null
@@ -1,51 +0,0 @@
-package main
-
-/*
-import (
- "go.wit.com/log"
- "go.wit.com/gui/widget"
- "go.wit.com/gui/toolkits/tree"
-)
-
-func doWidgetClick(n *tree.Node) {
- switch n.WidgetType {
- case widget.Root:
- // THIS IS THE BEGINING OF THE LAYOUT
- // rootNode.nextW = 0
- // rootNode.nextH = 0
- // rootNode.redoTabs(true)
- case widget.Flag:
- // me.rootNode.redoColor(true)
- // rootNode.dumpTree(true)
- case widget.Window:
- // setCurrentWindow(w)
- // n.doUserEvent()
- case widget.Tab:
- // setCurrentTab(w)
- case widget.Group:
- // n.placeWidgets()
- // n.toggleTree()
- case widget.Checkbox:
- if n.Bool() {
- // n.setCheckbox(false)
- } else {
- // n.setCheckbox(true)
- }
- // n.doUserEvent()
- case widget.Grid:
- // rootNode.hideWidgets()
- // n.placeGrid()
- // n.showWidgets()
- case widget.Box:
- // n.showWidgetPlacement(logNow, "drawTree()")
- if n.Bool() {
- log.Log(NOW, "BOX IS HORIZONTAL", n.GetProgName())
- } else {
- log.Log(NOW, "BOX IS VERTICAL", n.GetProgName())
- }
- case widget.Button:
- // n.doUserEvent()
- default:
- }
-}
-*/
diff --git a/nocui/go.mod b/nocui/go.mod
deleted file mode 100644
index e802e10..0000000
--- a/nocui/go.mod
+++ /dev/null
@@ -1,3 +0,0 @@
-module go.wit.com/gui/toolkits/nocui
-
-go 1.21.4
diff --git a/nocui/main.go b/nocui/main.go
deleted file mode 100644
index 4b2b53b..0000000
--- a/nocui/main.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package main
-
-/*
- This is reference code for toolkit developers
-
- The 'nocui' is a bare minimum toolkit. It's all you need
- to interact with the GUI
-*/
-
-import (
- "go.wit.com/log"
- "go.wit.com/toolkits/tree"
-)
-
-func init() {
- log.Log(INFO, "Init()")
-
- me.myTree = tree.New()
- me.myTree.PluginName = "nocui"
- me.myTree.ActionFromChannel = doAction
-
- go simpleStdin()
- log.Log(INFO, "Init() END")
-}
diff --git a/nocui/stdin.go b/nocui/stdin.go
deleted file mode 100644
index 9b9f794..0000000
--- a/nocui/stdin.go
+++ /dev/null
@@ -1,74 +0,0 @@
-package main
-
-import (
- "os"
- "fmt"
- "bufio"
- "runtime/debug"
- "strings"
- "strconv"
-
- "go.wit.com/log"
- "go.wit.com/lib/widget"
-)
-
-func simpleStdin() {
- defer func() {
- if r := recover(); r != nil {
- log.Warn("nocui YAHOOOO Recovered in simpleStdin()", r)
- log.Println("Recovered from panic:", r)
- log.Println("Stack trace:")
- debug.PrintStack()
- me.myTree.DoToolkitPanic()
- }
- }()
- scanner := bufio.NewScanner(os.Stdin)
- for scanner.Scan() {
- s := scanner.Text()
- s = strings.TrimSuffix(s, "\n")
- switch s {
- case "l":
- log.Log(NOW, "list widgets")
- me.treeRoot.ListWidgets()
- case "b":
- log.Log(NOW, "show buttons")
- me.treeRoot.ShowButtons()
- case "g":
- me.myTree.DoToolkitLoad("gocui")
- case "a":
- me.myTree.DoToolkitLoad("andlabs")
- case "d":
- me.myTree.DoEnableDebugger()
- case "":
- fmt.Println("")
- fmt.Println("Enter:")
- fmt.Println("'l': list all widgets")
- fmt.Println("'b': for buttons")
- fmt.Println("'g': load gocui plugin")
- fmt.Println("'a': load andlabs plugin")
- fmt.Println("'d': enable debugging")
- default:
- i, _ := strconv.Atoi(s)
- log.Log(NOW, "got input:", i)
- n := me.treeRoot.FindWidgetId(i)
- if (n != nil) {
- n.DumpWidget("found node")
- for i, s := range n.State.Strings {
- log.Warn("n.State.Strings =", i, s)
- }
- switch n.WidgetType {
- case widget.Root:
- log.Warn("this is the root widget")
- case widget.Dropdown:
- log.Warn("print out dropdown values here")
- case widget.Button:
- me.myTree.DoUserEvent(n)
- case widget.Checkbox:
- me.myTree.DoUserEvent(n)
- default:
- log.Warn("you haven't defined an event for", n.WidgetType)
- }
- }
- }
- }
-}
diff --git a/nocui/structs.go b/nocui/structs.go
deleted file mode 100644
index 8d01ef0..0000000
--- a/nocui/structs.go
+++ /dev/null
@@ -1,22 +0,0 @@
-package main
-
-import (
- "go.wit.com/toolkits/tree"
-)
-
-// stores the raw toolkit internals
-type guiWidget struct {
- Width int
- Height int
-
- c int
- val map[string]int
-}
-
-// It's probably a terrible idea to call this 'me'
-var me config
-
-type config struct {
- treeRoot *tree.Node // the base of the binary tree. it should have id == 0
- myTree *tree.TreeInfo
-}
diff --git a/nocui/tree.go b/nocui/tree.go
deleted file mode 100644
index 6ba353e..0000000
--- a/nocui/tree.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package main
-
-/*
- This is reference code for toolkit developers
-*/
-
-import (
- "go.wit.com/lib/widget"
-)
-
-// Other goroutines must use this to access the GUI
-//
-// You can not acess / process the GUI thread directly from
-// other goroutines. This is due to the nature of how
-// Linux, MacOS and Windows work (they all work differently. suprise. surprise.)
-//
-// this sets the channel to send user events back from the plugin
-func Callback(guiCallback chan widget.Action) {
- me.myTree.Callback(guiCallback)
-}
-
-func PluginChannel() chan widget.Action {
- return me.myTree.PluginChannel()
-}