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
|
package gui
import (
"git.wit.org/wit/gui/toolkit"
)
// Grid numbering examples (H) or (W,H)
// ---------
// -- (1) --
// -- (2) --
// ---------
//
// -----------------------------
// -- (1,1) -- (2,1) -- (3,1) --
// -- (1,2) -- (2,2) -- (3,2) --
// -- (1,3) -- -- (3,3) --
// -----------------------------
func (n *Node) NewGrid(name string, w int, h int) *Node {
newNode := n.newNode(name, toolkit.Grid, func() {
log(debugChange, "click() NewGrid not defined =", name)
})
var a toolkit.Action
a.ActionType = toolkit.Add
a.Name = name
a.Text = name
a.X = w
a.Y = h
a.Width = w
a.Height = h
newNode.X = w
newNode.Y = h
newNode.NextX = 1
newNode.NextY = 1
newaction(&a, newNode, n)
return newNode
}
func (n *Node) NewBox(name string, b bool) *Node {
newNode := n.newNode(name, toolkit.Box, nil)
newNode.B = b
var a toolkit.Action
a.ActionType = toolkit.Add
a.Name = name
a.Text = name
a.B = b
newaction(&a, newNode, n)
return newNode
}
|