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

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

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

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