mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:19:15 +08:00
36 lines
682 B
Go
36 lines
682 B
Go
package options
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/imdario/mergo"
|
|
"github.com/wailsapp/wails/v2/pkg/logger"
|
|
"github.com/wailsapp/wails/v2/pkg/options/mac"
|
|
)
|
|
|
|
// App contains options for creating the App
|
|
type App struct {
|
|
Title string
|
|
Width int
|
|
Height int
|
|
DisableResize bool
|
|
Fullscreen bool
|
|
MinWidth int
|
|
MinHeight int
|
|
MaxWidth int
|
|
MaxHeight int
|
|
StartHidden bool
|
|
DevTools bool
|
|
RGBA int
|
|
Mac *mac.Options
|
|
Logger logger.Logger
|
|
}
|
|
|
|
// MergeDefaults will set the minimum default values for an application
|
|
func (a *App) MergeDefaults() {
|
|
err := mergo.Merge(a, Default)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|