forked from andlabs/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzy_page2_test.go
187 lines (168 loc) · 4.38 KB
/
zy_page2_test.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// 12 december 2015
package ui
var page2group *Group
var (
movingLabel *Label
movingBoxes [2]*Box
movingCurrent int
)
func moveLabel(*Button) {
from := movingCurrent
to := 0
if from == 0 {
to = 1
}
movingBoxes[from].Delete(0)
movingBoxes[to].Append(movingLabel, false)
movingCurrent = to
}
var moveBack bool
const (
moveOutText = "Move Page 1 Out"
moveBackText = "Move Page 1 Back"
)
func movePage1(b *Button) {
if moveBack {
mainbox.Delete(1)
mainTab.InsertAt("Page 1", 0, page1)
b.SetText(moveOutText)
moveBack = false
return
}
mainTab.Delete(0)
mainbox.Append(page1, true)
b.SetText(moveBackText)
moveBack = true
}
func makePage2() *Box {
page2 := newVerticalBox()
group := newGroup("Moving Label")
page2group = group
page2.Append(group, false)
vbox := newVerticalBox()
group.SetChild(vbox)
hbox := newHorizontalBox()
button := NewButton("Move the Label!")
button.OnClicked(moveLabel)
hbox.Append(button, true)
hbox.Append(NewLabel(""), true)
vbox.Append(hbox, false)
hbox = newHorizontalBox()
movingBoxes[0] = newVerticalBox()
hbox.Append(movingBoxes[0], true)
movingBoxes[1] = newVerticalBox()
hbox.Append(movingBoxes[1], true)
vbox.Append(hbox, false)
movingCurrent = 0
movingLabel = NewLabel("This label moves!")
movingBoxes[movingCurrent].Append(movingLabel, false)
hbox = newHorizontalBox()
button = NewButton(moveOutText)
button.OnClicked(movePage1)
hbox.Append(button, false)
page2.Append(hbox, false)
moveBack = false
hbox = newHorizontalBox()
hbox.Append(NewLabel("Label Alignment Test"), false)
button = NewButton("Open Menued Window")
button.OnClicked(func(*Button) {
w := NewWindow("Another Window", 100, 100, true)
b := NewVerticalBox()
b.Append(NewEntry(), false)
b.Append(NewButton("Button"), false)
b.SetPadded(true)
w.SetChild(b)
w.SetMargined(true)
w.Show()
})
hbox.Append(button, false)
button = NewButton("Open Menuless Window")
button.OnClicked(func(*Button) {
w := NewWindow("Another Window", 100, 100, true)
//TODO w.SetChild(makePage6())
w.SetMargined(true)
w.Show()
})
hbox.Append(button, false)
button = NewButton("Disabled Menued")
button.OnClicked(func(*Button) {
w := NewWindow("Another Window", 100, 100, true)
w.Disable()
w.Show()
})
hbox.Append(button, false)
button = NewButton("Disabled Menuless")
button.OnClicked(func(*Button) {
w := NewWindow("Another Window", 100, 100, false)
w.Disable()
w.Show()
})
hbox.Append(button, false)
page2.Append(hbox, false)
nestedBox := newHorizontalBox()
innerhbox := newHorizontalBox()
innerhbox.Append(NewButton("These"), false)
button = NewButton("buttons")
button.Disable()
innerhbox.Append(button, false)
nestedBox.Append(innerhbox, false)
innerhbox = newHorizontalBox()
innerhbox.Append(NewButton("are"), false)
innerhbox2 := newHorizontalBox()
button = NewButton("in")
button.Disable()
innerhbox2.Append(button, false)
innerhbox.Append(innerhbox2, false)
nestedBox.Append(innerhbox, false)
innerhbox = newHorizontalBox()
innerhbox2 = newHorizontalBox()
innerhbox2.Append(NewButton("nested"), false)
innerhbox3 := newHorizontalBox()
button = NewButton("boxes")
button.Disable()
innerhbox3.Append(button, false)
innerhbox2.Append(innerhbox3, false)
innerhbox.Append(innerhbox2, false)
nestedBox.Append(innerhbox, false)
page2.Append(nestedBox, false)
hbox = newHorizontalBox()
button = NewButton("Enable Nested Box")
button.OnClicked(func(*Button) {
nestedBox.Enable()
})
hbox.Append(button, false)
button = NewButton("Disable Nested Box")
button.OnClicked(func(*Button) {
nestedBox.Disable()
})
hbox.Append(button, false)
page2.Append(hbox, false)
disabledTab := newTab()
disabledTab.Append("Disabled", NewButton("Button"));
disabledTab.Append("Tab", NewLabel("Label"));
disabledTab.Disable()
page2.Append(disabledTab, true)
entry := NewEntry()
readonly := NewEntry()
entry.OnChanged(func(*Entry) {
readonly.SetText(entry.Text())
})
readonly.SetText("If you can see this, uiEntryReadOnly() isn't working properly.")
readonly.SetReadOnly(true)
if readonly.ReadOnly() {
readonly.SetText("")
}
page2.Append(entry, false)
page2.Append(readonly, false)
hbox = newHorizontalBox()
button = NewButton("Show Button 2")
button2 := NewButton("Button 2")
button.OnClicked(func(*Button) {
button2.Show()
})
button2.Hide()
hbox.Append(button, true)
hbox.Append(button2, false)
page2.Append(hbox, false)
return page2
}