summaryrefslogtreecommitdiff
path: root/label.go
blob: 24d1ad9017cfb0f400a72d88261eaaf07cad2a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package gui

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

func (parent *Node) NewLabel(text string) *Node {
	newNode := parent.newNode(text, widget.Label)
	newNode.value = text
	newNode.progname = text

	if ! newNode.hidden {
		a := newAction(newNode, widget.Add)
		sendAction(a)
	}
	return newNode
}