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

84 lines
2.3 KiB
Go
Raw Normal View History

2023-03-21 10:26:48 -06:00
package main
import "os"
import "path/filepath"
2023-03-21 10:26:48 -06:00
import "git.tebibyte.media/sashakoshka/tomo"
2023-03-30 21:19:04 -06:00
import "git.tebibyte.media/sashakoshka/tomo/elements"
2023-03-21 10:26:48 -06:00
import _ "git.tebibyte.media/sashakoshka/tomo/backends/all"
func main () {
tomo.Run(run)
}
func run () {
window, _ := tomo.NewWindow(tomo.Bounds(0, 0, 384, 384))
2023-03-21 10:26:48 -06:00
window.SetTitle("File browser")
container := elements.NewVBox(elements.SpaceBoth)
2023-03-21 10:26:48 -06:00
window.Adopt(container)
homeDir, _ := os.UserHomeDir()
2023-03-21 10:26:48 -06:00
controlBar := elements.NewHBox(elements.SpaceNone)
2023-03-30 23:06:29 -06:00
backButton := elements.NewButton("Back")
backButton.SetIcon(tomo.IconBackward)
2023-03-21 10:26:48 -06:00
backButton.ShowText(false)
2023-03-30 23:06:29 -06:00
forwardButton := elements.NewButton("Forward")
forwardButton.SetIcon(tomo.IconForward)
2023-03-21 10:26:48 -06:00
forwardButton.ShowText(false)
2023-03-30 23:06:29 -06:00
refreshButton := elements.NewButton("Refresh")
refreshButton.SetIcon(tomo.IconRefresh)
2023-03-21 10:26:48 -06:00
refreshButton.ShowText(false)
2023-03-30 23:06:29 -06:00
upwardButton := elements.NewButton("Go Up")
upwardButton.SetIcon(tomo.IconUpward)
2023-03-21 10:26:48 -06:00
upwardButton.ShowText(false)
2023-03-30 23:06:29 -06:00
locationInput := elements.NewTextBox("Location", "")
2023-03-21 10:26:48 -06:00
statusBar := elements.NewHBox(elements.SpaceMargin)
directory, _ := elements.NewFile(homeDir, nil)
baseName := elements.NewLabel(filepath.Base(homeDir))
directoryView, _ := elements.NewDirectory(homeDir, nil)
updateStatus := func () {
filePath, _ := directoryView.Location()
directory.SetLocation(filePath, nil)
locationInput.SetValue(filePath)
baseName.SetText(filepath.Base(filePath))
2023-03-21 10:26:48 -06:00
}
choose := func (filePath string) {
directoryView.SetLocation(filePath, nil)
updateStatus()
}
2023-03-21 10:26:48 -06:00
directoryView.OnChoose(choose)
locationInput.OnEnter (func () {
choose(locationInput.Value())
})
choose(homeDir)
backButton.OnClick (func () {
directoryView.Backward()
updateStatus()
})
forwardButton.OnClick (func () {
directoryView.Forward()
updateStatus()
})
refreshButton.OnClick (func () {
directoryView.Update()
updateStatus()
})
upwardButton.OnClick (func () {
filePath, _ := directoryView.Location()
choose(filepath.Dir(filePath))
})
controlBar.Adopt(backButton, forwardButton, refreshButton, upwardButton)
controlBar.AdoptExpand(locationInput)
statusBar.Adopt(directory, baseName)
2023-03-21 10:26:48 -06:00
container.Adopt(controlBar)
container.AdoptExpand (
elements.NewScroll(elements.ScrollVertical, directoryView))
container.Adopt(statusBar)
2023-03-21 10:26:48 -06:00
window.OnClose(tomo.Stop)
window.Show()
}