63 lines
2.0 KiB
Go
63 lines
2.0 KiB
Go
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()
|
|
}
|