blob: d1b172a5b8f4b6e48971093805f790d27f7ae0cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package gui
import "strconv"
// import "fmt"
/*
generic function to create a new node on the binary tree
*/
func (n *Node) New(title string) *Node {
var newN *Node
newN = addNode(title, n.Width, n.Height)
n.Append(newN)
newN.parent = n
return newN
}
/*
raw create function for a new node struct
*/
func addNode(title string, w int, h int) *Node {
var n Node
n.Name = title
n.Width = w
n.Height = h
id := Config.prefix + strconv.Itoa(Config.counter)
Config.counter += 1
n.id = id
return &n
}
|