tree/init.go

90 lines
2.0 KiB
Go
Raw Normal View History

package tree
import (
"errors"
"sync"
"go.wit.com/log"
"go.wit.com/widget"
)
var muAction sync.Mutex
func (me *TreeInfo) newAction(a widget.Action) {
n := me.treeRoot.FindWidgetId(a.WidgetId)
switch a.ActionType {
case widget.Add:
if n == nil {
n := me.AddNode(&a)
me.Add(n)
return
}
case widget.SetText:
switch n.WidgetType {
case widget.Dropdown:
me.SetText(n, widget.GetString(a.State.Value))
case widget.Combobox:
me.SetText(n, widget.GetString(a.State.Value))
case widget.Window:
me.SetTitle(n, a.State.Label)
default:
// buttons, checkboxes, groups, etc
me.SetLabel(n, a.State.Label)
}
case widget.AddText:
switch n.WidgetType {
case widget.Dropdown:
me.AddText(n, widget.GetString(a.State.Value))
case widget.Combobox:
me.AddText(n, widget.GetString(a.State.Value))
default:
log.Warn("AddText() not supported on widget", n.WidgetType, n.String())
}
default:
me.NodeAction(n, a.ActionType)
}
}
func (me *TreeInfo) catchActionChannel() {
defer func() {
if r := recover(); r != nil {
log.Warn(me.PluginName, "tree YAHOOOO Recovered in simpleStdin()", r)
me.SendToolkitPanic()
panic(-1)
}
}()
log.Log(TREE, "catchActionChannel() START")
for {
log.Log(TREE, "catchActionChannel() for loop")
select {
case a := <-me.pluginChan:
log.Verbose("catchActionChannel() on ", a.WidgetId, a.WidgetType, a.ProgName)
muAction.Lock()
if me.ActionFromChannel == nil {
log.Error(errors.New("toolkit ActionFromChannel == nil"), a.WidgetId, a.ActionType, a.WidgetType)
} else {
// send this to the toolkit
me.newAction(a)
me.ActionFromChannel(a)
}
muAction.Unlock()
}
}
}
func New() *TreeInfo {
me := new(TreeInfo)
me.pluginChan = make(chan widget.Action, 1)
/*
full := "go.wit.com/gui"
short := "gui"
TREE = log.NewFlag("TREE", true, full, short, "treeRoot info")
*/
log.Log(TREE, "Init() start channel reciever")
go me.catchActionChannel()
log.Log(TREE, "Init() END")
return me
}