Documentation ¶
Overview ¶
Package systray is a cross-platform Go library to place an icon and menu in the notification area.
Index ¶
- func AddSeparator()
- func Quit()
- func Register(onReady func(), onExit func(), onSessionEvent func(SessionEvent))
- func Run(onReady func(), onExit func(), onSessionEvent func(SessionEvent))
- type MenuItem
- func (item *MenuItem) AddSubMenuItem(title string, tooltip string) *MenuItem
- func (item *MenuItem) AddSubMenuItemCheckbox(title string, tooltip string, checked bool) *MenuItem
- func (item *MenuItem) Check()
- func (item *MenuItem) Checked() bool
- func (item *MenuItem) Disable()
- func (item *MenuItem) Disabled() bool
- func (item *MenuItem) Enable()
- func (item *MenuItem) Hide()
- func (item *MenuItem) SetTitle(title string)
- func (item *MenuItem) SetTooltip(tooltip string)
- func (item *MenuItem) Show()
- func (item *MenuItem) String() string
- func (item *MenuItem) Uncheck()
- type SessionEvent
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Register ¶
func Register(onReady func(), onExit func(), onSessionEvent func(SessionEvent))
Register initializes GUI and registers the callbacks but relies on the caller to run the event loop somewhere else. It's useful if the program needs to show other UI elements, for example, webview. To overcome some OS weirdness, On macOS versions before Catalina, calling this does exactly the same as Run().
func Run ¶
func Run(onReady func(), onExit func(), onSessionEvent func(SessionEvent))
Run initializes GUI and starts the event loop, then invokes the onReady callback. It blocks until systray.Quit() is called.
Types ¶
type MenuItem ¶
type MenuItem struct { // ClickedCh is the channel which will be notified when the menu item is clicked ClickedCh chan struct{} // contains filtered or unexported fields }
MenuItem is used to keep track each menu item of systray. Don't create it directly, use the one systray.AddMenuItem() returned.
func AddMenuItem ¶
AddMenuItem adds a menu item with the designated title and tooltip. It can be safely invoked from different goroutines. Created menu items are checkable on Windows and OSX by default. For Linux you have to use AddMenuItemCheckbox.
func AddMenuItemCheckbox ¶
AddMenuItemCheckbox adds a menu item with the designated title and tooltip and a checkbox for Linux. It can be safely invoked from different goroutines. On Windows and OSX this is the same as calling AddMenuItem.
func (*MenuItem) AddSubMenuItem ¶
AddSubMenuItem adds a nested sub-menu item with the designated title and tooltip. It can be safely invoked from different goroutines. Created menu items are checkable on Windows and OSX by default. For Linux you have to use AddSubMenuItemCheckbox.
func (*MenuItem) AddSubMenuItemCheckbox ¶
AddSubMenuItemCheckbox adds a nested sub-menu item with the designated title and tooltip and a checkbox for Linux. It can be safely invoked from different goroutines. On Windows and OSX this is the same as calling AddSubMenuItem.
func (*MenuItem) Check ¶
func (item *MenuItem) Check()
Check a menu item regardless if it's previously checked or not.
func (*MenuItem) Disable ¶
func (item *MenuItem) Disable()
Disable a menu item regardless if it's previously disabled or not.
func (*MenuItem) Enable ¶
func (item *MenuItem) Enable()
Enable a menu item regardless if it's previously enabled or not.
func (*MenuItem) SetTooltip ¶
SetTooltip set the tooltip to show when mouse hover.
type SessionEvent ¶
type SessionEvent int32
SessionEvent describes WM_WTSSESSION_CHANGE wParam.
const ( SesConsoleConnect SessionEvent = iota + 0x1 // WTS_CONSOLE_CONNECT (0x1) SesConsoleDisconnect // WTS_CONSOLE_DISCONNECT (0x2) SesRemoteConnect // WTS_REMOTE_CONNECT (0x3) SesRemoteDisconnect // WTS_REMOTE_DISCONNECT (0x4) SesLogon // WTS_SESSION_LOGON (0x5) SesLogoff // WTS_SESSION_LOGOFF (0x6) SesLock // WTS_SESSION_LOCK (0x7) SesUnlock // WTS_SESSION_UNLOCK (0x8) SesRemoteControl // WTS_SESSION_REMOTE_CONTROL (0x9) )
SessionEvent values.
func (SessionEvent) String ¶
func (e SessionEvent) String() string