2024-01-17 23:54:19 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"go.wit.com/log"
|
|
|
|
"go.wit.com/toolkits/tree"
|
2024-01-18 04:27:19 -06:00
|
|
|
"go.wit.com/widget"
|
2024-01-17 23:54:19 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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 {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "notNew() n = nil")
|
2024-01-17 23:54:19 -06:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
if n.TK != nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "notNew() n.TK = nil", n.WidgetId, n.GetProgName())
|
2024-01-17 23:54:19 -06:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
if n.Parent == nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "notNew() n.Parent = nil", n.WidgetId, n.GetProgName())
|
2024-01-17 23:54:19 -06:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
if n.Parent.TK == nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
if n.Parent.WidgetId == 0 {
|
|
|
|
// this is normal if the widget type is a window
|
|
|
|
if n.WidgetType == widget.Window {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Log(ERROR, "notNew() n.Parent.TK = nil", n.WidgetId, n.GetProgName())
|
|
|
|
log.Log(ERROR, "notNew() n.Parent.TK = nil", n.Parent.WidgetId, n.Parent.GetProgName())
|
2024-01-17 23:54:19 -06:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
// this means you can add a new widgets
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2024-01-19 12:18:11 -06:00
|
|
|
func tkbad(n *tree.Node) bool {
|
|
|
|
if n == nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "tkbad() n = nil")
|
2024-01-19 12:18:11 -06:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
if n.TK == nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "tkbad() n.TK = nil", n.WidgetId, n.GetProgName())
|
2024-01-19 12:18:11 -06:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// this makes sure widget and it's parent exists
|
2024-01-17 23:54:19 -06:00
|
|
|
func ready(n *tree.Node) bool {
|
|
|
|
if n == nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "ready() n = nil")
|
2024-01-17 23:54:19 -06:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if n.TK == nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "ready() n.TK = nil", n.WidgetId, n.GetProgName())
|
2024-01-17 23:54:19 -06:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if n.Parent == nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "ready() n.Parent = nil", n.WidgetId, n.GetProgName())
|
2024-01-17 23:54:19 -06:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if n.Parent.TK == nil {
|
2024-01-21 11:30:12 -06:00
|
|
|
if n.Parent.WidgetId == 0 {
|
|
|
|
// this is normal if the widget type is a window
|
|
|
|
if n.WidgetType == widget.Window {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Log(ERROR, "ready() n.Parent.TK = nil", n.WidgetId, n.GetProgName())
|
|
|
|
log.Log(ERROR, "ready() n.Parent.TK = nil", n.Parent.WidgetId, n.Parent.GetProgName())
|
2024-01-17 23:54:19 -06:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func show(n *tree.Node, b bool) {
|
2024-01-19 12:18:11 -06:00
|
|
|
if tkbad(n) {
|
|
|
|
return
|
|
|
|
}
|
2024-01-17 23:54:19 -06:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-19 02:52:57 -06:00
|
|
|
func pad(n *tree.Node, b bool) {
|
2024-01-19 12:18:11 -06:00
|
|
|
if tkbad(n) {
|
|
|
|
return
|
|
|
|
}
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ANDLABS, "pad() on WidgetId =", n.WidgetId)
|
2024-01-17 23:54:19 -06:00
|
|
|
|
2024-01-19 02:52:57 -06:00
|
|
|
t := n.TK.(*guiWidget)
|
2024-01-17 23:54:19 -06:00
|
|
|
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:
|
2024-01-19 02:52:57 -06:00
|
|
|
log.Log(ERROR, "TODO: implement pad() for", n.WidgetType, n.GetProgName())
|
2024-01-17 23:54:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-18 21:20:32 -06:00
|
|
|
func widgetDelete(n *tree.Node) {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ANDLABS, "widgetDelete()", n.WidgetId, n.WidgetType)
|
2024-01-18 21:20:32 -06:00
|
|
|
var tk *guiWidget
|
|
|
|
tk = n.TK.(*guiWidget)
|
2024-01-17 23:54:19 -06:00
|
|
|
|
|
|
|
if n.WidgetType == widget.Window {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ANDLABS, "DESTROY uiWindow here")
|
|
|
|
log.Log(ANDLABS, "DESTROY NEED TO REMOVE n from parent.Children")
|
2024-01-19 12:18:11 -06:00
|
|
|
if tk.uiWindow != nil {
|
|
|
|
tk.uiWindow.Destroy()
|
|
|
|
tk.uiWindow = nil
|
|
|
|
}
|
2024-01-18 21:20:32 -06:00
|
|
|
n.DeleteNode()
|
2024-01-21 11:30:12 -06:00
|
|
|
} else {
|
|
|
|
log.Log(ANDLABS, "DESTROY can't destroy TODO:", n.WidgetId, n.WidgetType)
|
2024-01-17 23:54:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-18 21:00:37 -06:00
|
|
|
func processAction(a *widget.Action) {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ANDLABS, "processAction() START a.ActionType =", a.ActionType, "a.Value", a.Value)
|
2024-01-17 23:54:19 -06:00
|
|
|
|
|
|
|
if a.ActionType == widget.ToolkitInit {
|
|
|
|
Init()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch a.WidgetType {
|
|
|
|
case widget.Root:
|
2024-01-18 21:20:32 -06:00
|
|
|
if me.treeRoot == nil {
|
|
|
|
log.Log(INFO, "processAction() found the treeRoot")
|
|
|
|
me.treeRoot = me.myTree.AddNode(a)
|
|
|
|
} else {
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ERROR, "processAction() Something terrible has happened")
|
|
|
|
log.Log(ERROR, "processAction() treeNode was sent an action", a.ActionType, a)
|
2024-01-18 21:20:32 -06:00
|
|
|
}
|
2024-01-17 23:54:19 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ANDLABS, "andlabs processAction() START a.WidgetId =", a.WidgetId, "a.ParentId =", a.ParentId, a.ActionType)
|
2024-01-17 23:54:19 -06:00
|
|
|
switch a.WidgetType {
|
|
|
|
case widget.Flag:
|
2024-01-18 21:00:37 -06:00
|
|
|
log.Log(ERROR, "processAction() RE-IMPLEMENT LOG FLAGS")
|
2024-01-17 23:54:19 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if me.treeRoot == nil {
|
|
|
|
panic("me.treeRoot == nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if a.ActionType == widget.Add {
|
2024-01-19 12:18:11 -06:00
|
|
|
n := add(a)
|
2024-01-26 11:22:03 -06:00
|
|
|
show(n, !a.State.Hidden)
|
2024-01-19 12:18:11 -06:00
|
|
|
// pad(n, n.State.Pad)
|
|
|
|
// expand(n, a.State.Expand)
|
2024-01-17 23:54:19 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-01-18 21:20:32 -06:00
|
|
|
n := me.treeRoot.FindWidgetId(a.WidgetId)
|
2024-01-17 23:54:19 -06:00
|
|
|
if n == nil {
|
2024-01-19 20:35:33 -06:00
|
|
|
if a.ActionType == widget.Delete {
|
|
|
|
// this is normal. the widget is aleady deleted
|
|
|
|
return
|
|
|
|
}
|
2024-01-21 11:30:12 -06:00
|
|
|
if a.WidgetType == widget.Window {
|
|
|
|
// this could happen maybe someday
|
|
|
|
log.Log(ANDLABS, "processAction() trying on nonexistant window", a.WidgetId, a.ActionType)
|
|
|
|
return
|
|
|
|
}
|
2024-01-18 21:00:37 -06:00
|
|
|
log.Error(errors.New("andlabs processAction() ERROR findWidgetId found nil"), a.ActionType, a.WidgetType)
|
2024-01-26 11:18:01 -06:00
|
|
|
log.Log(WARN, "processAction() ERROR findWidgetId found nil for id =", a.WidgetId)
|
|
|
|
log.Log(WARN, "processAction() ERROR findWidgetId found nil", a.ActionType, a.WidgetType)
|
|
|
|
log.Log(WARN, "processAction() ERROR findWidgetId found nil for id =", a.WidgetId)
|
|
|
|
if WARN.Bool() {
|
|
|
|
me.treeRoot.ListWidgets()
|
|
|
|
}
|
2024-01-17 23:54:19 -06:00
|
|
|
return
|
|
|
|
panic("findWidgetId found nil for id = " + string(a.WidgetId))
|
|
|
|
}
|
|
|
|
|
2024-01-18 21:20:32 -06:00
|
|
|
if a.ActionType == widget.Dump {
|
|
|
|
log.Log(NOW, "processAction() Dump =", a.ActionType, a.WidgetType, n.State.ProgName)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-01-17 23:54:19 -06:00
|
|
|
switch a.ActionType {
|
2024-01-18 21:20:32 -06:00
|
|
|
case widget.Delete:
|
|
|
|
widgetDelete(n)
|
2024-01-17 23:54:19 -06:00
|
|
|
case widget.Show:
|
|
|
|
show(n, true)
|
|
|
|
case widget.Hide:
|
|
|
|
show(n, false)
|
|
|
|
case widget.Enable:
|
|
|
|
enable(n, true)
|
|
|
|
case widget.Disable:
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ANDLABS, "andlabs got disable for", n.WidgetId, n.State.ProgName)
|
2024-01-17 23:54:19 -06:00
|
|
|
enable(n, false)
|
2024-01-19 12:18:11 -06:00
|
|
|
case widget.Checked:
|
|
|
|
setChecked(n, a.State.Checked)
|
2024-01-17 23:54:19 -06:00
|
|
|
case widget.Get:
|
|
|
|
setText(n, a)
|
|
|
|
case widget.GetText:
|
|
|
|
switch a.WidgetType {
|
|
|
|
case widget.Textbox:
|
|
|
|
a.Value = n.State.Value
|
|
|
|
}
|
|
|
|
case widget.Set:
|
|
|
|
setText(n, a)
|
|
|
|
case widget.SetText:
|
2024-01-21 11:30:12 -06:00
|
|
|
log.Log(ANDLABS, "andlabs SetText wid =", n.WidgetId, n.State.Value, a.State.Value)
|
2024-01-17 23:54:19 -06:00
|
|
|
setText(n, a)
|
|
|
|
case widget.AddText:
|
|
|
|
addText(n, a)
|
|
|
|
default:
|
2024-01-18 21:00:37 -06:00
|
|
|
log.Log(ERROR, "processAction() Unknown =", a.ActionType, a.WidgetType)
|
2024-01-17 23:54:19 -06:00
|
|
|
}
|
2024-01-18 21:00:37 -06:00
|
|
|
log.Log(INFO, "processAction() END =", a.ActionType, a.WidgetType)
|
2024-01-17 23:54:19 -06:00
|
|
|
}
|