summaryrefslogtreecommitdiff
path: root/image.go
blob: 5d566ee03d4640f0a96745790a9ce443d6790664 (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) NewImage(name string) *Node {
	var newNode *Node
	newNode = parent.newNode(name, toolkit.Image)

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