mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 11:00:32 +08:00
15 lines
423 B
Go
15 lines
423 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.ContextMenus
|
|
}
|