summaryrefslogtreecommitdiff
path: root/window.go
blob: 2e3187e15588d870d403cde1126977e0f4664874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package gui

import (
	"git.wit.org/wit/gui/toolkit"
)

// This routine creates a blank window with a Title and size (W x H)

func (parent *Node) NewWindow(title string) *Node {
	var newNode *Node

	// Windows are created off of the master node of the Binary Tree
	newNode = parent.newNode(title, toolkit.Window, StandardExit)

	log(logInfo, "NewWindow()", title)

	a := newAction(newNode, toolkit.Add)
	sendAction(a)
	return newNode
}