summaryrefslogtreecommitdiff
path: root/redo/zz_test.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-15 21:43:24 -0400
committerPietro Gagliardi <[email protected]>2014-08-15 21:43:24 -0400
commit318036d1552277439d0485277a0e81dcd2d4fcec (patch)
tree8443cc565d8b9a4da281ed9e9e23162d7edc33b6 /redo/zz_test.go
parent6b77304c8a85bb5bd0ff2c398f9f901a61eba458 (diff)
Added Group and implemented it on GTK+.
Diffstat (limited to 'redo/zz_test.go')
-rw-r--r--redo/zz_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/redo/zz_test.go b/redo/zz_test.go
index 85c0b4a..568f398 100644
--- a/redo/zz_test.go
+++ b/redo/zz_test.go
@@ -32,6 +32,7 @@ var ddata = []dtype{
type testwin struct {
t Tab
w Window
+ group Group
grid Grid
nt Tab
a Area
@@ -69,6 +70,8 @@ func (tw *testwin) make(done chan struct{}) {
done <- struct{}{}
return true
})
+ tw.group = NewGroup("Group", NewVerticalStack(NewCheckbox("Checkbox in Group")))
+ tw.t.Append("Group", tw.group)
tw.grid = NewGrid(3,
NewLabel("0,0"), NewTextField(), NewLabel("0,2"),
NewButton("1,0"), NewButton("1,1"), NewButton("1,2"),