File and directory view elements wip

This commit is contained in:
2023-03-21 12:26:48 -04:00
parent 60aac053fb
commit d9bddce20b
4 changed files with 220 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
package main
import "os"
import "git.tebibyte.media/sashakoshka/tomo"
import "git.tebibyte.media/sashakoshka/tomo/theme"
import "git.tebibyte.media/sashakoshka/tomo/layouts/basic"
import "git.tebibyte.media/sashakoshka/tomo/elements/file"
import "git.tebibyte.media/sashakoshka/tomo/elements/basic"
import "git.tebibyte.media/sashakoshka/tomo/elements/containers"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/all"
func main () {
tomo.Run(run)
}
func run () {
window, _ := tomo.NewWindow(384, 384)
window.SetTitle("File browser")
container := containers.NewContainer(basicLayouts.Vertical { true, true })
window.Adopt(container)
controlBar := containers.NewContainer(basicLayouts.Horizontal { })
backButton := basicElements.NewButton("Back")
backButton.SetIcon(theme.IconBackward)
backButton.ShowText(false)
forwardButton := basicElements.NewButton("Forward")
forwardButton.SetIcon(theme.IconForward)
forwardButton.ShowText(false)
refreshButton := basicElements.NewButton("Refresh")
refreshButton.SetIcon(theme.IconRefresh)
refreshButton.ShowText(false)
upwardButton := basicElements.NewButton("Go Up")
upwardButton.SetIcon(theme.IconUpward)
upwardButton.ShowText(false)
locationInput := basicElements.NewTextBox("Location", "")
scrollContainer := containers.NewScrollContainer(false, true)
homeDir,_ := os.UserHomeDir()
directoryView, _ := fileElements.NewDirectoryView(homeDir)
directoryView.Collapse(0, 8)
choose := func (filePath string) {
directoryView.SetLocation(filePath)
locationInput.SetValue(directoryView.Location())
}
directoryView.OnChoose(choose)
locationInput.OnEnter (func () {
choose(locationInput.Value())
})
choose(homeDir)
scrollContainer.Adopt(directoryView)
controlBar.Adopt(backButton, false)
controlBar.Adopt(forwardButton, false)
controlBar.Adopt(refreshButton, false)
controlBar.Adopt(upwardButton, false)
controlBar.Adopt(locationInput, true)
container.Adopt(controlBar, false)
container.Adopt(scrollContainer, true)
window.OnClose(tomo.Stop)
window.Show()
}