-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrixcontainer.go
74 lines (51 loc) · 1.65 KB
/
matrixcontainer.go
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package wajaf
type MatrixContainer struct {
NodeDef
}
func NewMatrixContainer(id string) *MatrixContainer {
c := &MatrixContainer{
NodeDef: NewNode("container", "matrixContainer"),
}
c.SetID(id)
c.RegisterKnownAttributes([]string{"display", "style", "classname", "classnamezone", "left", "width", "right", "top", "height", "bottom", "haslistener",
"columns", "mode", "classnamezone", "preidbutton", "defaultwidth", "defaultheight"})
c.RegisterKnownChildren([]string{"zone", "template", "dataset", "event", "help"})
return c
}
func (c *MatrixContainer) NewZone(ztype string, id string) NodeDef {
z := NewMatrixZone(ztype, id)
c.AddChild(z)
return z
}
type MatrixZone NodeDef
func NewMatrixZone(ztype string, id string) MatrixZone {
z := NewNode("zone", ztype)
z.SetID(id)
z.RegisterKnownAttributes([]string{"style", "classname", "application", "params"})
z.RegisterKnownChildren([]string{"container", "element", "event", "help"})
return z
}
func (c *MatrixContainer) NewTemplate(ttype string, name string) NodeDef {
z := NewMatrixTemplate(ttype, name)
c.AddChild(z)
return z
}
type MatrixTemplate NodeDef
func NewMatrixTemplate(ttype string, name string) MatrixTemplate {
t := NewNode("template", ttype)
t.RegisterKnownAttributes([]string{"name"})
t.RegisterKnownChildren([]string{"container", "element"})
t.SetAttribute("name", name)
return t
}
func (c *MatrixContainer) NewDataset(dtype string, data string) NodeDef {
z := NewMatrixDataset(dtype, data)
c.AddChild(z)
return z
}
type MatrixDataset NodeDef
func NewMatrixDataset(dtype string, data string) MatrixDataset {
d := NewNode("dataset", dtype)
d.SetData(data)
return d
}