87 lines
1.7 KiB
Go
87 lines
1.7 KiB
Go
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.kirsle.net/SketchyMaze/doodle/pkg/balance"
|
|
"git.kirsle.net/SketchyMaze/doodle/pkg/branding"
|
|
"git.kirsle.net/SketchyMaze/doodle/pkg/native"
|
|
"git.kirsle.net/go/render"
|
|
"git.kirsle.net/go/ui"
|
|
)
|
|
|
|
// About window.
|
|
type About struct {
|
|
// Settings passed in by doodle
|
|
Supervisor *ui.Supervisor
|
|
Engine render.Engine
|
|
}
|
|
|
|
// NewAboutWindow initializes the window.
|
|
func NewAboutWindow(cfg About) *ui.Window {
|
|
window := ui.NewWindow("About " + branding.AppName)
|
|
window.SetButtons(ui.CloseButton)
|
|
window.Configure(ui.Config{
|
|
Width: 400,
|
|
Height: 170,
|
|
Background: render.Grey,
|
|
})
|
|
|
|
text := ui.NewLabel(ui.Label{
|
|
Text: fmt.Sprintf("%s is a drawing-based maze game.\n\n"+
|
|
"Copyright © %s.\nAll rights reserved.\n\n"+
|
|
"Version %s",
|
|
branding.AppName,
|
|
branding.Copyright,
|
|
branding.Version,
|
|
),
|
|
})
|
|
window.Pack(text, ui.Pack{
|
|
Side: ui.N,
|
|
Padding: 8,
|
|
})
|
|
|
|
frame := ui.NewFrame("Button frame")
|
|
buttons := []struct {
|
|
label string
|
|
f func()
|
|
}{
|
|
{"Website", func() {
|
|
native.OpenURL(branding.Website)
|
|
}},
|
|
{"Open Source Licenses", func() {
|
|
// TODO: open file
|
|
native.OpenURL("./Open Source Licenses.md")
|
|
}},
|
|
}
|
|
for _, button := range buttons {
|
|
button := button
|
|
|
|
btn := ui.NewButton(button.label, ui.NewLabel(ui.Label{
|
|
Text: button.label,
|
|
Font: balance.MenuFont,
|
|
}))
|
|
|
|
btn.Handle(ui.Click, func(ed ui.EventData) error {
|
|
button.f()
|
|
return nil
|
|
})
|
|
|
|
btn.Compute(cfg.Engine)
|
|
cfg.Supervisor.Add(btn)
|
|
|
|
frame.Pack(btn, ui.Pack{
|
|
Side: ui.W,
|
|
PadX: 4,
|
|
Expand: true,
|
|
Fill: true,
|
|
})
|
|
}
|
|
window.Pack(frame, ui.Pack{
|
|
Side: ui.N,
|
|
Padding: 8,
|
|
})
|
|
|
|
return window
|
|
}
|