2023-04-03 18:01:44 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo"
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/layouts"
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/elements"
|
2023-04-04 11:44:38 -06:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/textdraw"
|
2023-04-03 18:01:44 -06:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/elements/containers"
|
|
|
|
import _ "git.tebibyte.media/sashakoshka/tomo/backends/all"
|
|
|
|
|
|
|
|
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-04-03 18:01:44 -06:00
|
|
|
window.SetTitle("Table")
|
|
|
|
|
|
|
|
container := containers.NewContainer(layouts.Vertical { true, true })
|
|
|
|
table := containers.NewTableContainer(7, 7, true, true)
|
2023-04-03 21:09:02 -06:00
|
|
|
scroller := containers.NewScrollContainer(true, true)
|
2023-04-03 18:01:44 -06:00
|
|
|
|
|
|
|
index := 0
|
|
|
|
for row := 0; row < 7; row ++ {
|
|
|
|
for column := 0; column < 7; column ++ {
|
|
|
|
if index % 2 == 0 {
|
|
|
|
label := elements.NewLabel (
|
|
|
|
fmt.Sprintf("%d, %d", row, column),
|
|
|
|
false)
|
2023-04-04 11:44:38 -06:00
|
|
|
label.SetAlign(textdraw.AlignCenter)
|
2023-04-03 18:01:44 -06:00
|
|
|
table.Set(row, column, label)
|
|
|
|
}
|
|
|
|
index ++
|
|
|
|
}}
|
2023-04-03 21:09:02 -06:00
|
|
|
table.Set(2, 1, elements.NewButton("Oh hi mars!"))
|
2023-04-03 18:01:44 -06:00
|
|
|
|
2023-04-03 20:22:29 -06:00
|
|
|
statusLabel := elements.NewLabel("Selected: none", false)
|
2023-04-03 21:09:02 -06:00
|
|
|
table.Collapse(128, 128)
|
2023-04-03 20:22:29 -06:00
|
|
|
table.OnSelect (func () {
|
|
|
|
column, row := table.Selected()
|
|
|
|
statusLabel.SetText (
|
|
|
|
fmt.Sprintf("Selected: %d, %d",
|
|
|
|
column, row))
|
|
|
|
})
|
|
|
|
|
2023-04-03 21:09:02 -06:00
|
|
|
scroller.Adopt(table)
|
|
|
|
container.Adopt(scroller, true)
|
2023-04-03 20:22:29 -06:00
|
|
|
container.Adopt(statusLabel, false)
|
2023-04-03 18:01:44 -06:00
|
|
|
window.Adopt(container)
|
2023-04-03 19:41:39 -06:00
|
|
|
|
2023-04-03 18:01:44 -06:00
|
|
|
window.OnClose(tomo.Stop)
|
|
|
|
window.Show()
|
|
|
|
}
|