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/verticalLayout/main.go

40 lines
1.0 KiB
Go
Raw Normal View History

2023-01-10 02:22:08 +00:00
package main
import "git.tebibyte.media/sashakoshka/tomo"
2023-03-31 03:19:04 +00:00
import "git.tebibyte.media/sashakoshka/tomo/elements"
2023-04-15 22:24:16 +00:00
import "git.tebibyte.media/sashakoshka/tomo/elements/testing"
import "git.tebibyte.media/sashakoshka/tomo/elements/containers"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/all"
2023-01-10 02:22:08 +00:00
func main () {
tomo.Run(run)
}
func run () {
window, _ := tomo.NewWindow(tomo.Bounds(0, 0, 128, 128))
2023-01-10 02:22:08 +00:00
window.SetTitle("vertical stack")
2023-04-15 22:09:49 +00:00
container := containers.NewVBox(true, true)
2023-01-10 02:22:08 +00:00
2023-03-31 03:19:04 +00:00
label := elements.NewLabel("it is a label hehe", true)
button := elements.NewButton("drawing pad")
okButton := elements.NewButton("OK")
2023-01-10 21:39:37 +00:00
button.OnClick (func () {
2023-01-10 23:07:51 +00:00
container.DisownAll()
2023-03-31 03:19:04 +00:00
container.Adopt(elements.NewLabel("Draw here:", false), false)
2023-04-15 22:24:16 +00:00
container.Adopt(testing.NewMouse(), true)
2023-01-10 22:34:40 +00:00
container.Adopt(okButton, false)
okButton.Focus()
2023-01-10 21:39:37 +00:00
})
2023-01-10 22:34:40 +00:00
okButton.OnClick(tomo.Stop)
2023-01-10 21:39:37 +00:00
container.Adopt(label, true)
container.Adopt(button, false)
2023-01-10 22:34:40 +00:00
container.Adopt(okButton, false)
okButton.Focus()
2023-01-10 02:22:08 +00:00
2023-04-15 22:09:49 +00:00
window.Adopt(container)
2023-01-10 02:22:08 +00:00
window.OnClose(tomo.Stop)
window.Show()
}