This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/examples/checkbox/main.go

52 lines
1.6 KiB
Go
Raw Normal View History

2023-01-17 21:38:57 +00:00
package main
import "git.tebibyte.media/sashakoshka/tomo"
2023-04-15 23:14:44 +00:00
import "git.tebibyte.media/sashakoshka/tomo/popups"
2023-03-31 03:19:04 +00:00
import "git.tebibyte.media/sashakoshka/tomo/elements"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/all"
2023-01-17 21:38:57 +00:00
func main () {
tomo.Run(run)
}
func run () {
window, _ := tomo.NewWindow(tomo.Bounds(0, 0, 0, 0))
2023-01-17 21:38:57 +00:00
window.SetTitle("Checkboxes")
container := elements.NewVBox(true, true)
2023-01-17 21:38:57 +00:00
window.Adopt(container)
2023-03-31 03:19:04 +00:00
introText := elements.NewLabel (
2023-01-17 21:46:07 +00: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-17 05:00:11 +00:00
"me to communicate.", true)
introText.EmCollapse(0, 5)
container.Adopt(introText, true)
2023-03-31 03:19:04 +00: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 21:38:57 +00:00
disabledCheckbox.SetEnabled(false)
container.Adopt(disabledCheckbox, false)
2023-03-31 03:19:04 +00:00
vsync := elements.NewCheckbox("Enable vsync", false)
vsync.OnToggle (func () {
2023-01-17 21:46:07 +00:00
if vsync.Value() {
2023-04-15 23:14:44 +00:00
popups.NewDialog (
popups.DialogKindInfo,
window,
"Ha!",
"That doesn't do anything.")
2023-01-17 21:46:07 +00:00
}
})
container.Adopt(vsync, false)
2023-03-31 03:19:04 +00:00
button := elements.NewButton("What")
2023-01-17 21:38:57 +00:00
button.OnClick(tomo.Stop)
container.Adopt(button, false)
button.Focus()
2023-01-17 21:38:57 +00:00
window.OnClose(tomo.Stop)
window.Show()
}