summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index d64389a..5704dd4 100644
--- a/structs.go
+++ b/structs.go
@@ -8,8 +8,12 @@ import (
// stores the raw toolkit internals
type guiWidget struct {
- Width int
- Height int
+ parent *guiWidget
+ children []*guiWidget
+ node *tree.Node // the pointer back to the tree
+ cuiName string
+ Width int
+ Height int
c int
val map[string]int