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

55 lines
1.4 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")
introText := elements.NewLabelWrapped (
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 " +
"me to communicate.")
2023-03-17 05:00:11 +00:00
introText.EmCollapse(0, 5)
2023-03-31 03:19:04 +00:00
disabledCheckbox := elements.NewCheckbox("We are but their helpless prey", false)
2023-01-17 21:38:57 +00:00
disabledCheckbox.SetEnabled(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
}
})
2023-03-31 03:19:04 +00:00
button := elements.NewButton("What")
2023-01-17 21:38:57 +00:00
button.OnClick(tomo.Stop)
box := elements.NewVBox(elements.SpaceBoth)
box.AdoptExpand(introText)
box.Adopt (
elements.NewLine(),
elements.NewCheckbox("Oh god", false),
elements.NewCheckbox("Can you hear them", true),
elements.NewCheckbox("They are in the walls", false),
elements.NewCheckbox("They are coming for us", false),
disabledCheckbox,
vsync, button)
window.Adopt(box)
2023-01-17 21:38:57 +00:00
button.Focus()
2023-01-17 21:38:57 +00:00
window.OnClose(tomo.Stop)
window.Show()
}