Update registrar
This commit is contained in:
parent
a8bc074aad
commit
3a4038dad9
@ -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,12 +139,12 @@ 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()
|
||||
err = reg.SetTheme()
|
||||
if err != nil { log.Fatalln("nasin: could not set theme:", err) }
|
||||
err = registrar.SetIconSet()
|
||||
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) }
|
||||
@ -151,7 +152,7 @@ func RunApplication (application Application) {
|
||||
// open URLs
|
||||
args := flag.Args()
|
||||
applicationOpenUrls(application, args...)
|
||||
})
|
||||
err = backend.Run()
|
||||
if err != nil { log.Fatalln("nasin: could not run application:", err) }
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user