2019-05-24 13:32:47 -05:00
|
|
|
package gui
|
|
|
|
|
2021-10-06 13:23:00 -05:00
|
|
|
import (
|
2022-10-11 11:25:46 -05:00
|
|
|
"log"
|
2022-10-21 11:40:08 -05:00
|
|
|
"reflect"
|
2022-11-14 14:30:28 -06:00
|
|
|
"git.wit.org/wit/gui/toolkit"
|
2021-10-06 13:23:00 -05:00
|
|
|
)
|
2019-05-24 13:32:47 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
// All GUI Data Structures and functions that are external
|
2022-10-20 06:55:42 -05:00
|
|
|
// within the toolkit/ abstraction layer
|
|
|
|
//
|
|
|
|
// More than one Window is not supported in a cross platform
|
|
|
|
// sense & may never be. On many toolkits you have to have 'tabs'
|
|
|
|
// Native Windows and MacOS toolkits work with tabs
|
2019-05-24 13:32:47 -05:00
|
|
|
//
|
2022-10-20 06:55:42 -05:00
|
|
|
// If that is the case, this code should abstract the concept of
|
|
|
|
// windows and make everything 'tabs'
|
|
|
|
//
|
|
|
|
|
2021-10-06 13:23:00 -05:00
|
|
|
var Config GuiConfig
|
2019-06-02 17:49:52 -05:00
|
|
|
|
2022-11-06 12:59:24 -06:00
|
|
|
func GetDebug () bool {
|
2022-11-13 08:53:03 -06:00
|
|
|
return Config.Debug.Debug
|
2022-11-06 12:59:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func SetDebug (s bool) {
|
2022-11-13 08:53:03 -06:00
|
|
|
Config.Debug.Debug = s
|
2022-11-06 12:59:24 -06:00
|
|
|
// also set these
|
2022-11-13 08:53:03 -06:00
|
|
|
Config.Debug.Dump = s
|
|
|
|
Config.Debug.Node = s
|
2022-10-21 11:40:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func GetDebugToolkit () bool {
|
2022-11-13 08:53:03 -06:00
|
|
|
return Config.Debug.Toolkit
|
2022-10-21 11:40:08 -05:00
|
|
|
}
|
|
|
|
|
2022-11-06 12:59:24 -06:00
|
|
|
func SetDebugToolkit (s bool) {
|
2022-11-13 08:53:03 -06:00
|
|
|
Config.Debug.Toolkit = s
|
2022-11-06 12:59:24 -06:00
|
|
|
}
|
|
|
|
|
2022-10-21 11:40:08 -05:00
|
|
|
func ShowDebugValues() {
|
2022-11-13 08:53:03 -06:00
|
|
|
log.Println("\t wit/gui Debug =", Config.Debug.Debug)
|
|
|
|
log.Println("\t wit/gui DebugDump =", Config.Debug.Dump)
|
|
|
|
log.Println("\t wit/gui DebugNode =", Config.Debug.Node)
|
|
|
|
log.Println("\t wit/gui DebugTabs =", Config.Debug.Tabs)
|
|
|
|
log.Println("\t wit/gui DebugPlugin =", Config.Debug.Plugin)
|
|
|
|
log.Println("\t wit/gui DebugChange =", Config.Debug.Change)
|
|
|
|
log.Println("\t wit/gui DebugToolkit =", Config.Debug.Toolkit)
|
2022-10-21 11:40:08 -05:00
|
|
|
}
|
|
|
|
|
2022-11-06 19:57:20 -06:00
|
|
|
// This struct can be used with go-arg
|
2022-11-13 08:53:03 -06:00
|
|
|
type GuiDebug struct {
|
2022-11-05 10:19:04 -05:00
|
|
|
// These are global debugging settings
|
|
|
|
// TODO: move to a standard logging system
|
2022-11-13 08:53:03 -06:00
|
|
|
Debug bool
|
|
|
|
Dump bool
|
|
|
|
Node bool
|
|
|
|
Tabs bool
|
|
|
|
Plugin bool
|
|
|
|
Change bool `help:"debug mouse clicks and keyboard input"`
|
|
|
|
Toolkit bool `help:"debug toolkit"`
|
2022-11-05 10:19:04 -05:00
|
|
|
}
|
|
|
|
|
2019-06-02 17:49:52 -05:00
|
|
|
type GuiConfig struct {
|
2022-10-20 06:55:42 -05:00
|
|
|
// This is the master node. The Binary Tree starts here
|
|
|
|
master *Node
|
|
|
|
|
|
|
|
// These are shortcuts to pass default values to make a new window
|
2021-10-31 14:21:36 -05:00
|
|
|
Title string
|
2021-10-06 13:23:00 -05:00
|
|
|
Width int
|
|
|
|
Height int
|
2021-10-31 14:21:36 -05:00
|
|
|
Exit func(*Node)
|
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
Debug GuiDebug
|
2021-10-31 14:21:36 -05:00
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
// hacks
|
2021-10-31 14:21:36 -05:00
|
|
|
depth int
|
|
|
|
counter int // used to make unique ID's
|
|
|
|
prefix string
|
2019-06-02 17:49:52 -05:00
|
|
|
}
|
2019-05-24 13:32:47 -05:00
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
// The Node is simply the name and the size of whatever GUI element exists
|
|
|
|
type Node struct {
|
2022-11-06 12:59:24 -06:00
|
|
|
id int
|
2022-10-11 11:25:46 -05:00
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
// deprecate these and use toolkit.Widget
|
2022-10-20 06:55:42 -05:00
|
|
|
Name string
|
|
|
|
Width int
|
|
|
|
Height int
|
2022-10-11 11:25:46 -05:00
|
|
|
|
2022-11-14 14:30:28 -06:00
|
|
|
Widget toolkit.Widget
|
2022-11-13 08:53:03 -06:00
|
|
|
|
2022-11-06 12:59:24 -06:00
|
|
|
// this function is run when there are mouse or keyboard events
|
|
|
|
OnChanged func(*Node)
|
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
parent *Node
|
2022-11-06 12:59:24 -06:00
|
|
|
// TODO: make children a double linked list since some toolkits require order (?)
|
2022-10-20 06:55:42 -05:00
|
|
|
children []*Node
|
2022-10-11 11:25:46 -05:00
|
|
|
|
2022-10-21 11:40:08 -05:00
|
|
|
// things that may not really be needed (?)
|
|
|
|
custom func()
|
|
|
|
checked bool
|
|
|
|
text string
|
2022-10-11 11:25:46 -05:00
|
|
|
}
|
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
func (n *Node) Parent() *Node {
|
|
|
|
return n.parent
|
2022-10-11 11:25:46 -05:00
|
|
|
}
|
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
func (n *Node) Window() *Node {
|
|
|
|
return n.parent
|
2022-10-11 11:25:46 -05:00
|
|
|
}
|
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
func (n *Node) Dump() {
|
2022-11-13 08:53:03 -06:00
|
|
|
if ! Config.Debug.Dump {
|
2022-10-21 11:40:08 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
IndentPrintln("NODE DUMP START")
|
2022-10-20 06:55:42 -05:00
|
|
|
IndentPrintln("id = ", n.id)
|
|
|
|
IndentPrintln("Name = ", n.Name)
|
|
|
|
IndentPrintln("Width = ", n.Width)
|
|
|
|
IndentPrintln("Height = ", n.Height)
|
2022-10-11 11:25:46 -05:00
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
if (n.parent == nil) {
|
|
|
|
IndentPrintln("parent = nil")
|
|
|
|
} else {
|
2022-10-21 11:40:08 -05:00
|
|
|
IndentPrintln("parent.id =", n.parent.id)
|
2022-10-11 11:25:46 -05:00
|
|
|
}
|
2022-10-20 06:55:42 -05:00
|
|
|
if (n.children != nil) {
|
|
|
|
IndentPrintln("children = ", n.children)
|
2022-10-11 11:25:46 -05:00
|
|
|
}
|
2022-10-20 06:55:42 -05:00
|
|
|
if (n.custom != nil) {
|
|
|
|
IndentPrintln("custom = ", n.custom)
|
2022-10-11 11:25:46 -05:00
|
|
|
}
|
2022-10-21 11:40:08 -05:00
|
|
|
IndentPrintln("checked = ", n.checked)
|
2022-10-20 06:55:42 -05:00
|
|
|
if (n.OnChanged != nil) {
|
|
|
|
IndentPrintln("OnChanged = ", n.OnChanged)
|
2022-10-11 11:25:46 -05:00
|
|
|
}
|
2022-10-21 11:40:08 -05:00
|
|
|
IndentPrintln("text = ", reflect.ValueOf(n.text).Kind(), n.text)
|
|
|
|
IndentPrintln("NODE DUMP END")
|
2019-05-24 13:32:47 -05:00
|
|
|
}
|
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
func (n *Node) Append(child *Node) {
|
|
|
|
n.children = append(n.children, child)
|
2022-11-13 08:53:03 -06:00
|
|
|
if (Config.Debug.Debug) {
|
2022-10-20 06:55:42 -05:00
|
|
|
log.Println("child node:")
|
|
|
|
child.Dump()
|
|
|
|
log.Println("parent node:")
|
|
|
|
n.Dump()
|
|
|
|
}
|
|
|
|
// time.Sleep(3 * time.Second)
|
2019-05-30 11:58:05 -05:00
|
|
|
}
|
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
var listChildrenParent *Node
|
|
|
|
var listChildrenDepth int = 0
|
|
|
|
var defaultPadding = " "
|
2019-05-24 13:32:47 -05:00
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
func IndentPrintln(a ...interface{}) {
|
|
|
|
indentPrintln(listChildrenDepth, defaultPadding, a)
|
2019-05-24 13:32:47 -05:00
|
|
|
}
|
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
func indentPrintln(depth int, format string, a ...interface{}) {
|
|
|
|
var tabs string
|
|
|
|
for i := 0; i < depth; i++ {
|
|
|
|
tabs = tabs + format
|
|
|
|
}
|
2019-05-24 13:32:47 -05:00
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
// newFormat := tabs + strconv.Itoa(depth) + " " + format
|
|
|
|
newFormat := tabs + format
|
|
|
|
log.Println(newFormat, a)
|
2019-05-30 11:58:05 -05:00
|
|
|
}
|
2019-05-24 13:32:47 -05:00
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
func (n *Node) ListChildren(dump bool) {
|
|
|
|
indentPrintln(listChildrenDepth, defaultPadding, n.id, n.Width, n.Height, n.Name)
|
2019-05-24 13:32:47 -05:00
|
|
|
|
2022-10-20 06:55:42 -05:00
|
|
|
if (dump == true) {
|
|
|
|
n.Dump()
|
|
|
|
}
|
|
|
|
if len(n.children) == 0 {
|
|
|
|
if (n.parent == nil) {
|
|
|
|
} else {
|
2022-11-13 08:53:03 -06:00
|
|
|
if (Config.Debug.Node) {
|
2022-10-20 06:55:42 -05:00
|
|
|
log.Println("\t\t\tparent =",n.parent.id)
|
|
|
|
}
|
|
|
|
if (listChildrenParent != nil) {
|
2022-11-13 08:53:03 -06:00
|
|
|
if (Config.Debug.Node) {
|
2022-10-20 06:55:42 -05:00
|
|
|
log.Println("\t\t\tlistChildrenParent =",listChildrenParent.id)
|
|
|
|
}
|
|
|
|
if (listChildrenParent.id != n.parent.id) {
|
2022-11-14 14:30:28 -06:00
|
|
|
log.Fatalln("parent.child does not match child.parent")
|
2022-10-20 06:55:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-11-13 08:53:03 -06:00
|
|
|
if (Config.Debug.Node) {
|
2022-10-20 06:55:42 -05:00
|
|
|
log.Println("\t\t", n.id, "has no children")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, child := range n.children {
|
|
|
|
// log.Println("\t\t", child.id, child.Width, child.Height, child.Name)
|
|
|
|
if (child.parent != nil) {
|
2022-11-13 08:53:03 -06:00
|
|
|
if (Config.Debug.Node) {
|
2022-10-20 06:55:42 -05:00
|
|
|
log.Println("\t\t\tparent =",child.parent.id)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Println("\t\t\tno parent")
|
|
|
|
panic("no parent")
|
|
|
|
}
|
|
|
|
if (dump == true) {
|
|
|
|
child.Dump()
|
|
|
|
}
|
2022-11-13 08:53:03 -06:00
|
|
|
if (Config.Debug.Node) {
|
2022-10-20 06:55:42 -05:00
|
|
|
if (child.children == nil) {
|
|
|
|
log.Println("\t\t", child.id, "has no children")
|
|
|
|
} else {
|
|
|
|
log.Println("\t\t\tHas children:", child.children)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
listChildrenParent = n
|
|
|
|
listChildrenDepth += 1
|
|
|
|
child.ListChildren(dump)
|
|
|
|
listChildrenDepth -= 1
|
|
|
|
}
|
|
|
|
return
|
2019-05-24 13:32:47 -05:00
|
|
|
}
|