go-deb/stateWindow.go

54 lines
1.2 KiB
Go
Raw Normal View History

2024-02-11 01:00:05 -06:00
// This window, when it's hidden, still exists to the application
// so it can be treated as if it really exists
package main
import (
"os"
"go.wit.com/lib/gadgets"
"go.wit.com/lib/gui/shell"
2024-02-11 01:00:05 -06:00
"go.wit.com/log"
)
// This initializes the first window, a group and a button
func makebasicWindow() *gadgets.BasicWindow {
log.Warn("init basicWindow state")
basicWindow = gadgets.NewBasicWindow(myGui, "Create .deb files for GO applications")
basicWindow.Make()
basicWindow.Custom = func() {
log.Info("got to close")
os.Exit(0)
}
box1 := basicWindow.Box()
cBox = newControl(box1)
2024-02-11 01:00:05 -06:00
vbox := box1.Box().Horizontal()
group1 := vbox.NewGroup("controls").Horizontal() // Vertical()
2024-02-11 01:00:05 -06:00
group1.NewButton("go build", func() {
shell.Run([]string{"go", "build", "-v", "-x"})
})
group1.NewButton("read control file", func() {
cBox.readControlFile()
2024-02-11 01:00:05 -06:00
})
2024-02-11 01:00:05 -06:00
group1.NewButton("Make .deb", func() {
basicWindow.Disable()
2024-03-01 07:44:02 -06:00
if err := cBox.buildPackage(); err == nil {
log.Info("build worked")
} else {
2024-03-01 07:44:02 -06:00
log.Warn("build failed", err)
}
basicWindow.Enable()
2024-02-11 01:00:05 -06:00
})
2024-02-11 01:00:05 -06:00
group1.NewButton("open repo", func() {
cBox.status.Update()
cBox.status.Toggle()
2024-02-11 01:00:05 -06:00
})
return basicWindow
}