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/gui"
|
|
|
|
"go.wit.com/lib/gadgets"
|
2024-02-11 02:16:51 -06:00
|
|
|
"go.wit.com/lib/gui/shell"
|
2024-02-11 01:00:05 -06:00
|
|
|
"go.wit.com/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
var apple *gui.Node
|
|
|
|
|
|
|
|
// 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()
|
2024-02-11 02:16:51 -06:00
|
|
|
control := newControl(box1)
|
2024-02-11 01:00:05 -06:00
|
|
|
|
|
|
|
vbox := box1.Box().Horizontal()
|
|
|
|
group1 := vbox.NewGroup("controls").Horizontal() // Vertical()
|
2024-02-11 02:16:51 -06:00
|
|
|
|
2024-02-11 01:00:05 -06:00
|
|
|
group1.NewButton("go build", func() {
|
2024-02-11 02:16:51 -06:00
|
|
|
shell.Run([]string{"go", "build", "-v", "-x"})
|
|
|
|
})
|
|
|
|
|
|
|
|
group1.NewButton("read control file", func() {
|
|
|
|
control.readControlFile()
|
2024-02-11 01:00:05 -06:00
|
|
|
})
|
2024-02-11 02:16:51 -06:00
|
|
|
|
2024-02-11 01:00:05 -06:00
|
|
|
group1.NewButton("Make .deb", func() {
|
|
|
|
})
|
2024-02-11 02:16:51 -06:00
|
|
|
|
2024-02-11 01:00:05 -06:00
|
|
|
group1.NewButton("open repo", func() {
|
|
|
|
})
|
|
|
|
/*
|
|
|
|
group1.NewButton("show apple", func() {
|
|
|
|
apple.Show()
|
|
|
|
})
|
|
|
|
apple = group1.NewButton("apple", func() {
|
|
|
|
log.Info("is not a pear")
|
|
|
|
})
|
|
|
|
*/
|
|
|
|
|
|
|
|
return basicWindow
|
|
|
|
}
|