summaryrefslogtreecommitdiff
path: root/box.go
blob: b137754db6031b3d30d673ad5f07752d1b990bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package gui

import (
	"go.wit.com/gui/toolkit"
)

func (parent *Node) NewBox(name string, b bool) *Node {
	newNode := parent.newNode(name, toolkit.Box)
	newNode.B = b

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