2014-02-11 17:57:03 -06:00
|
|
|
// 11 february 2014
|
|
|
|
package main
|
|
|
|
|
2014-02-13 14:14:10 -06:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2014-02-11 17:57:03 -06:00
|
|
|
func main() {
|
2014-02-12 09:51:27 -06:00
|
|
|
w := NewWindow("Main Window", 320, 240)
|
2014-02-11 17:57:03 -06:00
|
|
|
w.Closing = make(chan struct{})
|
2014-02-12 10:29:20 -06:00
|
|
|
b := NewButton("Click Me")
|
2014-02-13 11:26:43 -06:00
|
|
|
c := NewCheckbox("Check Me")
|
2014-02-14 11:16:27 -06:00
|
|
|
cb1 := NewCombobox(true, "You can edit me!", "Yes you can!", "Yes you will!")
|
|
|
|
cb2 := NewCombobox(false, "You can't edit me!", "No you can't!", "No you won't!")
|
2014-02-14 14:00:59 -06:00
|
|
|
e := NewLineEdit("Enter text here too")
|
2014-02-14 14:12:03 -06:00
|
|
|
l := NewLabel("This is a label")
|
2014-02-14 15:25:39 -06:00
|
|
|
s0 := NewStack(Vertical, b, c, cb1, cb2, e, l)
|
|
|
|
lb := NewListbox(true, "Select One", "Or More", "To Continue")
|
2014-02-14 16:31:21 -06:00
|
|
|
lb2 := NewListbox(false, "Select", "Only", "One", "Please")
|
|
|
|
s1 := NewStack(Vertical, lb2, lb)
|
|
|
|
s := NewStack(Horizontal, s1, s0)
|
2014-02-13 16:04:57 -06:00
|
|
|
err := w.Open(s)
|
2014-02-13 11:26:43 -06:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2014-02-12 10:29:20 -06:00
|
|
|
mainloop:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-w.Closing:
|
|
|
|
break mainloop
|
|
|
|
case <-b.Clicked:
|
2014-02-15 12:36:24 -06:00
|
|
|
err = w.SetTitle(fmt.Sprintf("%v | %s | %s | %s",
|
|
|
|
c.Checked(),
|
|
|
|
cb1.Selection(),
|
|
|
|
cb2.Selection(),
|
|
|
|
e.Text()))
|
2014-02-12 17:14:37 -06:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-02-12 10:29:20 -06:00
|
|
|
}
|
|
|
|
}
|
2014-02-12 20:28:58 -06:00
|
|
|
w.Hide()
|
2014-02-11 17:57:03 -06:00
|
|
|
}
|
|
|
|
|