summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-06 20:40:13 -0600
committerJeff Carr <[email protected]>2024-02-06 20:40:13 -0600
commit2aed14a60cbb9208f8f9a507c83a3dd297a93640 (patch)
tree85081da45e1914f84d1efadfdf94e9fbc8abaf94 /window.go
parenta7ad4af45c4adbb70da457e7e925c93ddac85251 (diff)
allow Windows to be made directly off the binary tree
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'window.go')
-rw-r--r--window.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/window.go b/window.go
index c805e47..f8319b7 100644
--- a/window.go
+++ b/window.go
@@ -38,6 +38,15 @@ func (parent *Node) NewWindow(title string) *Node {
return newNode
}
+// This creates a window off the root of the binary tree
+func NewWindow(title string) *Node {
+ return me.rootNode.NewWindow(title)
+}
+
+func RawWindow(title string) *Node {
+ return me.rootNode.RawWindow(title)
+}
+
// allow window create without actually sending it to the toolkit
func (parent *Node) RawWindow(title string) *Node {
var newNode *Node