diff options
Diffstat (limited to 'tree/debug.go')
| -rw-r--r-- | tree/debug.go | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/tree/debug.go b/tree/debug.go deleted file mode 100644 index c79f35b..0000000 --- a/tree/debug.go +++ /dev/null @@ -1,44 +0,0 @@ -package tree - -import ( - "go.wit.com/log" - "go.wit.com/gui/widget" -) - -func (n *Node) ShowButtons() { - if n.WidgetType == widget.Button { - n.DumpWidget("Button:") - } - - for _, child := range n.children { - child.ShowButtons() - } -} - -func (n *Node) DumpWidget(pad string) { - log.Warn("node:", pad, n.WidgetId, ",", n.WidgetType, ",", n.GetProgName()) -} - -var depth int = 0 - -func (n *Node) ListWidgets() { - if (n == nil) { - log.Warn("ERRRORRRR: n == nil in ListWidgets()") - log.Warn("ERRRORRRR: n == nil in ListWidgets()") - log.Warn("ERRRORRRR: n == nil in ListWidgets()") - return - } - - var pad string - for i := 0; i < depth; i++ { - pad = pad + " " - } - n.DumpWidget(pad) - - for _, child := range n.children { - depth += 1 - child.ListWidgets() - depth -= 1 - } - return -} |
