diff options
| author | Jeff Carr <[email protected]> | 2024-02-06 20:40:13 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-06 20:40:13 -0600 |
| commit | 2aed14a60cbb9208f8f9a507c83a3dd297a93640 (patch) | |
| tree | 85081da45e1914f84d1efadfdf94e9fbc8abaf94 /window.go | |
| parent | a7ad4af45c4adbb70da457e7e925c93ddac85251 (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.go | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |
