98 lines
2.4 KiB
Go
98 lines
2.4 KiB
Go
// pkg/systray/tray.go
|
|
package systray
|
|
|
|
import (
|
|
_ "embed"
|
|
"sync"
|
|
|
|
coreerr "forge.lthn.ai/core/go-log"
|
|
)
|
|
|
|
//go:embed assets/apptray.png
|
|
var defaultIcon []byte
|
|
|
|
// Manager manages the system tray lifecycle.
|
|
// State that was previously in package-level vars is now on the Manager.
|
|
type Manager struct {
|
|
platform Platform
|
|
tray PlatformTray
|
|
callbacks map[string]func()
|
|
mu sync.RWMutex
|
|
}
|
|
|
|
// NewManager creates a systray Manager.
|
|
// systray.NewManager(systray.NewWailsPlatform(app)).Setup("Core", "Core")
|
|
func NewManager(platform Platform) *Manager {
|
|
return &Manager{
|
|
platform: platform,
|
|
callbacks: make(map[string]func()),
|
|
}
|
|
}
|
|
|
|
// Setup creates the system tray with default icon and tooltip.
|
|
// systray.NewManager(systray.NewWailsPlatform(app)).Setup("Core", "Core")
|
|
func (m *Manager) Setup(tooltip, label string) error {
|
|
m.tray = m.platform.NewTray()
|
|
if m.tray == nil {
|
|
return coreerr.E("systray.Setup", "platform returned nil tray", nil)
|
|
}
|
|
m.tray.SetTemplateIcon(defaultIcon)
|
|
m.tray.SetTooltip(tooltip)
|
|
m.tray.SetLabel(label)
|
|
return nil
|
|
}
|
|
|
|
// SetIcon sets the tray icon.
|
|
func (m *Manager) SetIcon(data []byte) error {
|
|
if m.tray == nil {
|
|
return coreerr.E("systray.SetIcon", "tray not initialised", nil)
|
|
}
|
|
m.tray.SetIcon(data)
|
|
return nil
|
|
}
|
|
|
|
// SetTemplateIcon sets the template icon (macOS).
|
|
func (m *Manager) SetTemplateIcon(data []byte) error {
|
|
if m.tray == nil {
|
|
return coreerr.E("systray.SetTemplateIcon", "tray not initialised", nil)
|
|
}
|
|
m.tray.SetTemplateIcon(data)
|
|
return nil
|
|
}
|
|
|
|
// SetTooltip sets the tray tooltip.
|
|
func (m *Manager) SetTooltip(text string) error {
|
|
if m.tray == nil {
|
|
return coreerr.E("systray.SetTooltip", "tray not initialised", nil)
|
|
}
|
|
m.tray.SetTooltip(text)
|
|
return nil
|
|
}
|
|
|
|
// SetLabel sets the tray label.
|
|
func (m *Manager) SetLabel(text string) error {
|
|
if m.tray == nil {
|
|
return coreerr.E("systray.SetLabel", "tray not initialised", nil)
|
|
}
|
|
m.tray.SetLabel(text)
|
|
return nil
|
|
}
|
|
|
|
// AttachWindow attaches a panel window to the tray.
|
|
func (m *Manager) AttachWindow(w WindowHandle) error {
|
|
if m.tray == nil {
|
|
return coreerr.E("systray.AttachWindow", "tray not initialised", nil)
|
|
}
|
|
m.tray.AttachWindow(w)
|
|
return nil
|
|
}
|
|
|
|
// Tray returns the underlying platform tray for direct access.
|
|
func (m *Manager) Tray() PlatformTray {
|
|
return m.tray
|
|
}
|
|
|
|
// IsActive returns whether a tray has been created.
|
|
func (m *Manager) IsActive() bool {
|
|
return m.tray != nil
|
|
}
|