2023-01-19 11:07:27 -07:00
package main
2023-03-09 20:23:09 -07:00
import "image"
2023-01-19 11:07:27 -07:00
import "git.tebibyte.media/sashakoshka/tomo"
2023-02-01 23:48:16 -07:00
import "git.tebibyte.media/sashakoshka/tomo/layouts/basic"
2023-01-19 11:07:27 -07:00
import "git.tebibyte.media/sashakoshka/tomo/elements/basic"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/x"
func main ( ) {
tomo . Run ( run )
}
func run ( ) {
2023-03-09 20:23:09 -07:00
window , _ := tomo . NewWindow ( 480 , 360 )
2023-01-19 11:07:27 -07:00
window . SetTitle ( "Scroll" )
2023-02-01 23:48:16 -07:00
container := basicElements . NewContainer ( basicLayouts . Vertical { true , true } )
2023-01-19 11:07:27 -07:00
window . Adopt ( container )
2023-03-09 20:23:09 -07:00
textBox := basicElements . NewTextBox ( "" , copypasta )
2023-02-01 23:48:16 -07:00
scrollContainer := basicElements . NewScrollContainer ( true , false )
2023-03-09 20:23:09 -07:00
disconnectedContainer := basicElements . NewContainer ( basicLayouts . Horizontal {
Gap : true ,
} )
list := basicElements . NewList (
2023-03-09 21:27:08 -07:00
basicElements . NewListEntry ( "This is list item 0" , nil ) ,
basicElements . NewListEntry ( "This is list item 1" , nil ) ,
basicElements . NewListEntry ( "This is list item 2" , nil ) ,
basicElements . NewListEntry ( "This is list item 3" , nil ) ,
basicElements . NewListEntry ( "This is list item 4" , nil ) ,
basicElements . NewListEntry ( "This is list item 5" , nil ) ,
basicElements . NewListEntry ( "This is list item 6" , nil ) ,
basicElements . NewListEntry ( "This is list item 7" , nil ) ,
basicElements . NewListEntry ( "This is list item 8" , nil ) ,
basicElements . NewListEntry ( "This is list item 9" , nil ) ,
basicElements . NewListEntry ( "This is list item 10" , nil ) ,
basicElements . NewListEntry ( "This is list item 11" , nil ) ,
basicElements . NewListEntry ( "This is list item 12" , nil ) ,
basicElements . NewListEntry ( "This is list item 13" , nil ) ,
basicElements . NewListEntry ( "This is list item 14" , nil ) ,
basicElements . NewListEntry ( "This is list item 15" , nil ) ,
basicElements . NewListEntry ( "This is list item 16" , nil ) ,
basicElements . NewListEntry ( "This is list item 17" , nil ) ,
basicElements . NewListEntry ( "This is list item 18" , nil ) ,
basicElements . NewListEntry ( "This is list item 19" , nil ) ,
basicElements . NewListEntry ( "This is list item 20" , nil ) )
2023-03-09 20:23:09 -07:00
list . Collapse ( 0 , 32 )
scrollBar := basicElements . NewScrollBar ( true )
list . OnScrollBoundsChange ( func ( ) {
scrollBar . SetBounds (
list . ScrollContentBounds ( ) ,
list . ScrollViewportBounds ( ) )
} )
scrollBar . OnScroll ( func ( viewport image . Point ) {
list . ScrollTo ( viewport )
} )
2023-03-09 21:27:08 -07:00
container . Adopt ( basicElements . NewLabel ( "A ScrollContainer:" , false ) , false )
2023-01-19 11:07:27 -07:00
scrollContainer . Adopt ( textBox )
2023-03-09 20:23:09 -07:00
container . Adopt ( scrollContainer , false )
disconnectedContainer . Adopt ( list , false )
2023-03-09 21:27:08 -07:00
disconnectedContainer . Adopt ( basicElements . NewLabel (
"Notice how the scroll bar to the right can be used to " +
"control the list, despite not even touching it. It is " +
"indeed a thing you can do. It is also terrible UI design so " +
"don't do it." , true ) , true )
2023-03-09 20:23:09 -07:00
disconnectedContainer . Adopt ( scrollBar , false )
container . Adopt ( disconnectedContainer , true )
2023-01-19 11:07:27 -07:00
window . OnClose ( tomo . Stop )
window . Show ( )
}
2023-03-09 20:23:09 -07:00
const copypasta = ` "I use Linux as my operating system," I state proudly to the unkempt, bearded man. He swivels around in his desk chair with a devilish gleam in his eyes, ready to mansplain with extreme precision. "Actually", he says with a grin, "Linux is just the kernel. You use GNU+Linux!' I don't miss a beat and reply with a smirk, "I use Alpine, a distro that doesn't include the GNU Coreutils, or any other GNU code. It's Linux, but it's not GNU+Linux." The smile quickly drops from the man's face. His body begins convulsing and he foams at the mouth and drops to the floor with a sickly thud. As he writhes around he screams "I-IT WAS COMPILED WITH GCC! THAT MEANS IT'S STILL GNU!" Coolly, I reply "If windows were compiled with GCC, would that make it GNU?" I interrupt his response with "-and work is being made on the kernel to make it more compiler-agnostic. Even if you were correct, you won't be for long." With a sickly wheeze, the last of the man's life is ejected from his body. He lies on the floor, cold and limp. I've womansplained him to death. `