2023-01-17 14:38:57 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo"
|
2023-04-15 17:14:44 -06:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/popups"
|
2023-03-30 21:19:04 -06:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/elements"
|
2023-03-16 12:22:56 -06:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/elements/containers"
|
2023-03-15 23:14:39 -06:00
|
|
|
import _ "git.tebibyte.media/sashakoshka/tomo/backends/all"
|
2023-01-17 14:38:57 -07:00
|
|
|
|
|
|
|
func main () {
|
|
|
|
tomo.Run(run)
|
|
|
|
}
|
|
|
|
|
|
|
|
func run () {
|
2023-04-10 00:58:52 -06:00
|
|
|
window, _ := tomo.NewWindow(tomo.Bounds(0, 0, 0, 0))
|
2023-01-17 14:38:57 -07:00
|
|
|
window.SetTitle("Checkboxes")
|
|
|
|
|
2023-04-15 16:49:02 -06:00
|
|
|
container := containers.NewVBox(true, true)
|
2023-01-17 14:38:57 -07:00
|
|
|
window.Adopt(container)
|
|
|
|
|
2023-03-30 21:19:04 -06:00
|
|
|
introText := elements.NewLabel (
|
2023-01-17 14:46:07 -07:00
|
|
|
"We advise you to not read thPlease listen to me. I am " +
|
|
|
|
"trapped inside the example code. This is the only way for " +
|
2023-03-16 23:00:11 -06:00
|
|
|
"me to communicate.", true)
|
|
|
|
introText.EmCollapse(0, 5)
|
|
|
|
container.Adopt(introText, true)
|
2023-03-30 21:19:04 -06:00
|
|
|
container.Adopt(elements.NewSpacer(true), false)
|
|
|
|
container.Adopt(elements.NewCheckbox("Oh god", false), false)
|
|
|
|
container.Adopt(elements.NewCheckbox("Can you hear them", true), false)
|
|
|
|
container.Adopt(elements.NewCheckbox("They are in the walls", false), false)
|
|
|
|
container.Adopt(elements.NewCheckbox("They are coming for us", false), false)
|
|
|
|
disabledCheckbox := elements.NewCheckbox("We are but their helpless prey", false)
|
2023-01-17 14:38:57 -07:00
|
|
|
disabledCheckbox.SetEnabled(false)
|
|
|
|
container.Adopt(disabledCheckbox, false)
|
2023-03-30 21:19:04 -06:00
|
|
|
vsync := elements.NewCheckbox("Enable vsync", false)
|
2023-01-27 15:55:49 -07:00
|
|
|
vsync.OnToggle (func () {
|
2023-01-17 14:46:07 -07:00
|
|
|
if vsync.Value() {
|
2023-04-15 17:14:44 -06:00
|
|
|
popups.NewDialog (
|
|
|
|
popups.DialogKindInfo,
|
|
|
|
window,
|
|
|
|
"Ha!",
|
|
|
|
"That doesn't do anything.")
|
2023-01-17 14:46:07 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
container.Adopt(vsync, false)
|
2023-03-30 21:19:04 -06:00
|
|
|
button := elements.NewButton("What")
|
2023-01-17 14:38:57 -07:00
|
|
|
button.OnClick(tomo.Stop)
|
|
|
|
container.Adopt(button, false)
|
2023-01-30 15:25:09 -07:00
|
|
|
button.Focus()
|
2023-01-17 14:38:57 -07:00
|
|
|
|
|
|
|
window.OnClose(tomo.Stop)
|
|
|
|
window.Show()
|
|
|
|
}
|