mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-12 17:59:06 +02:00
* desktop UI light mode * Theme review fixes plus macOS window outline fix * Windows runtime chrome re-theming plus apply serialization * Windows chrome threading and theme event ordering fixes * Darken toggle and setting sidebar text * resolve theme appearance, apply on UI thread * read theme once per window * Re-assert Windows dark opt-in after SetTheme * split app-wide GTK theming from per-window chrome * Update Wails dependency and checksums * KDE tray icon panel fix * Five review fixes: theme ordering, cgo dedup, KDE panel resolution * Path guard hardening, toggle contrast, windows comment * non-vacuous escape tests * Default view edits * Polish settings nav, controls, borders, and disc * Profiles settings boarder, modals, and buttons * Additional edits based on feedback * Switch colors away from slight blue hue * Update missing lang * Fix vertical tab active view
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
//go:build !android && !ios && !freebsd && !js
|
|
|
|
package services
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/netbirdio/netbird/client/ui/i18n"
|
|
"github.com/netbirdio/netbird/client/ui/preferences"
|
|
)
|
|
|
|
// Preferences is the Wails-bound facade over preferences.Store; the context.Context-first
|
|
// signatures are what the binding generator requires.
|
|
type Preferences struct {
|
|
store *preferences.Store
|
|
}
|
|
|
|
func NewPreferences(store *preferences.Store) *Preferences {
|
|
return &Preferences{store: store}
|
|
}
|
|
|
|
func (s *Preferences) Get(_ context.Context) (preferences.UIPreferences, error) {
|
|
return s.store.Get(), nil
|
|
}
|
|
|
|
func (s *Preferences) SetLanguage(_ context.Context, lang i18n.LanguageCode) error {
|
|
return s.store.SetLanguage(lang)
|
|
}
|
|
|
|
func (s *Preferences) SetViewMode(_ context.Context, mode preferences.ViewMode) error {
|
|
return s.store.SetViewMode(mode)
|
|
}
|
|
|
|
func (s *Preferences) SetTheme(_ context.Context, theme preferences.Theme) error {
|
|
return s.store.SetTheme(theme)
|
|
}
|
|
|
|
func (s *Preferences) SetOnboardingCompleted(_ context.Context, done bool) error {
|
|
return s.store.SetOnboardingCompleted(done)
|
|
}
|
|
|
|
func (s *Preferences) SetKeepConnectedOnQuit(_ context.Context, keep bool) error {
|
|
return s.store.SetKeepConnectedOnQuit(keep)
|
|
}
|