summaryrefslogtreecommitdiff
path: root/node.go
blob: 14a12272375a7f334829847fa0beee369244f804 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package gui

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

/*
	generic function to create a new node on the binary tree
*/
func (n *Node) newNode(title string, t toolkit.WidgetType) *Node {
	var newN *Node

	newN = addNode(title)
	newN.WidgetType = t

	if n.WidgetType == toolkit.Grid {
		n.gridIncrement()
	}
	newN.AtW = n.NextW
	newN.AtH = n.NextH

	n.children = append(n.children, newN)
	newN.parent = n
	return newN
}

/*
	raw create function for a new node struct
*/
func addNode(title string) *Node {
	n := new(Node)
	n.Name = title
	n.Text = title
	n.id = me.counter
	log.Log(NODE, "addNode = widget setid =", n.id)

	me.counter += 1
	return n
}

func (n *Node) Parent() *Node {
	return n.parent
}

func (n *Node) Delete(d *Node) {
	for i, child := range n.children {
		log.Log(NODE, "\t", i, child.id, child.Name)
		if (child.id == d.id) {
			log.Log(NODE, "\t\t Deleting this")
			n.children = append(n.children[:i], n.children[i+1:]...)
			return
		}
	}
	log.Warn("did not find node to delete", d.id, d.Name)
}