mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-18 08:29:55 +01:00
14 lines
424 B
Go
14 lines
424 B
Go
package mac
|
|
|
|
import "github.com/wailsapp/wails/v2/pkg/menu"
|
|
|
|
// Options are options specific to Mac
|
|
type Options struct {
|
|
TitleBar *TitleBar
|
|
Appearance AppearanceType
|
|
WebviewIsTransparent bool
|
|
WindowBackgroundIsTranslucent bool
|
|
Menu *menu.Menu
|
|
TrayMenus []*menu.TrayMenu
|
|
ContextMenus []*menu.ContextMenu
|
|
}
|