summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-19 11:41:10 -0500
committerPietro Gagliardi <[email protected]>2014-02-19 11:41:10 -0500
commitfb82e651a4c90c3dd79d6ba08613b382f474a868 (patch)
tree840f40c3e3362b6999446a96dc69b2f11ac83183 /main.go
parentc02948847e9fb6102926a8a80c8feb817403db29 (diff)
Moved to a proper package; main() is now a test and go test -c is used to build. Once I iron out a bug with Windows event handling, I'll add a README.
Diffstat (limited to 'main.go')
-rw-r--r--main.go71
1 files changed, 0 insertions, 71 deletions
diff --git a/main.go b/main.go
deleted file mode 100644
index 10add2d..0000000
--- a/main.go
+++ /dev/null
@@ -1,71 +0,0 @@
-// 11 february 2014
-package main
-
-import (
- "fmt"
-)
-
-func main() {
- w := NewWindow("Main Window", 320, 240)
- w.Closing = Event()
- b := NewButton("Click Me")
- b2 := NewButton("Or Me")
- s2 := NewStack(Horizontal, b, b2)
- c := NewCheckbox("Check Me")
- 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!")
- e := NewLineEdit("Enter text here too")
- l := NewLabel("This is a label")
- b3 := NewButton("List Info")
- s3 := NewStack(Horizontal, l, b3)
- s0 := NewStack(Vertical, s2, c, cb1, cb2, e, s3)
- lb1 := NewListbox(true, "Select One", "Or More", "To Continue")
- lb2 := NewListbox(false, "Select", "Only", "One", "Please")
- i := 0
- doAdjustments := func() {
- cb1.Append("append")
- cb2.InsertBefore(fmt.Sprintf("before %d", i), 1)
- lb1.InsertBefore(fmt.Sprintf("%d", i), 2)
- lb2.Append("Please")
- i++
- }
- doAdjustments()
- s1 := NewStack(Vertical, lb2, lb1)
- s := NewStack(Horizontal, s1, s0)
- err := w.Open(s)
- if err != nil {
- panic(err)
- }
-
-mainloop:
- for {
- select {
- case <-w.Closing:
- break mainloop
- case <-b.Clicked:
- err = w.SetTitle(fmt.Sprintf("%v | %s | %s | %s",
- c.Checked(),
- cb1.Selection(),
- cb2.Selection(),
- e.Text()))
- if err != nil {
- panic(err)
- }
- doAdjustments()
- case <-b2.Clicked:
- cb1.Delete(1)
- cb2.Delete(2)
- lb1.Delete(3)
- lb2.Delete(4)
- case <-b3.Clicked:
- MsgBox("List Info",
- "cb1: %d %q\ncb2: %d %q\nlb1: %d %q\nlb2: %d %q",
- cb1.SelectedIndex(), cb1.Selection(),
- cb2.SelectedIndex(), cb2.Selection(),
- lb1.SelectedIndices(), lb1.Selection(),
- lb2.SelectedIndices(), lb2.Selection())
- }
- }
- w.Hide()
-}
-