Update registrar

This commit is contained in:
Sasha Koshka 2024-08-11 10:36:29 -04:00
parent a8bc074aad
commit 3a4038dad9
2 changed files with 30 additions and 22 deletions

View File

@ -128,8 +128,9 @@ func (role ApplicationRole) Icon () tomo.Icon {
}
}
// RunApplication is like tomo.Run, but runs an application. If something fails
// to initialize, an error is written to the standard logger.
// RunApplication is like tomo.Run, but runs an application. It automatically
// sets up a backend. If something fails to initialize, an error is written to
// the standard logger.
func RunApplication (application Application) {
// TODO: see #4
@ -138,20 +139,20 @@ func RunApplication (application Application) {
}
flag.Parse()
err := registrar.RegisterBackend()
reg := new(registrar.Registrar)
backend, err := reg.SetBackend()
if err != nil { log.Fatalln("nasin: could not register backend:", err) }
err = tomo.Run(func () {
err := registrar.SetTheme()
if err != nil { log.Fatalln("nasin: could not set theme:", err) }
err = registrar.SetIconSet()
if err != nil { log.Fatalln("nasin: could not set icon set:", err) }
err = application.Init()
if err != nil { log.Fatalln("nasin: could not run application:", err) }
err = reg.SetTheme()
if err != nil { log.Fatalln("nasin: could not set theme:", err) }
err = reg.SetIconSet()
if err != nil { log.Fatalln("nasin: could not set icon set:", err) }
err = application.Init()
if err != nil { log.Fatalln("nasin: could not run application:", err) }
// open URLs
args := flag.Args()
applicationOpenUrls(application, args...)
})
// open URLs
args := flag.Args()
applicationOpenUrls(application, args...)
err = backend.Run()
if err != nil { log.Fatalln("nasin: could not run application:", err) }
}

View File

@ -11,19 +11,26 @@ import "git.tebibyte.media/tomo/nasin/internal/style/tss"
import "git.tebibyte.media/tomo/nasin/internal/icons/fallback"
import "git.tebibyte.media/tomo/nasin/internal/style/fallback"
func RegisterBackend () error {
tomo.Register(1, x.New)
return nil
type Registrar struct {
backend *x.Backend
}
func SetTheme () error {
func (this *Registrar) SetBackend () (tomo.Backend, error) {
backend, err := x.New()
if err != nil { return nil, err }
this.backend = backend.(*x.Backend)
tomo.SetBackend(backend)
return backend, nil
}
func (this *Registrar) SetTheme () error {
// TODO eventually get rid of this when we make a file format for
// storing visual styles
styleSheetName := os.Getenv("TOMO_STYLE_SHEET")
if styleSheetName != "" {
styl, _, err := tss.LoadFile(styleSheetName)
if err == nil {
tomo.SetStyle(styl)
this.backend.SetStyle(styl)
return nil
} else {
log.Printf (
@ -33,11 +40,11 @@ func SetTheme () error {
}
styl, _ := fallbackStyle.New()
tomo.SetStyle(styl)
this.backend.SetStyle(styl)
return nil
}
func SetIconSet () error {
func (this *Registrar) SetIconSet () error {
iconSet := fallbackIcons.New()
iconSetName := os.Getenv("TOMO_XDG_ICON_THEME")
if iconSetName != "" {
@ -49,6 +56,6 @@ func SetIconSet () error {
}
}
tomo.SetIconSet(iconSet)
this.backend.SetIconSet(iconSet)
return nil
}