2019-05-24 02:53:34 -05:00
|
|
|
package gui
|
|
|
|
|
|
|
|
import "log"
|
|
|
|
import "time"
|
|
|
|
import "fmt"
|
2019-05-24 11:02:35 -05:00
|
|
|
import "strings"
|
|
|
|
import "os/exec"
|
2019-05-24 13:32:47 -05:00
|
|
|
import "runtime"
|
2019-05-24 02:53:34 -05:00
|
|
|
|
|
|
|
import "github.com/andlabs/ui"
|
|
|
|
import _ "github.com/andlabs/ui/winmanifest"
|
|
|
|
|
2019-05-24 17:35:41 -05:00
|
|
|
import "github.com/davecgh/go-spew/spew"
|
2019-05-24 02:53:34 -05:00
|
|
|
|
2019-05-24 17:35:41 -05:00
|
|
|
// import pb "git.wit.com/wit/witProtobuf"
|
2019-05-24 02:53:34 -05:00
|
|
|
|
|
|
|
// can not pass any args to this (?)
|
|
|
|
func setupCloudUI() {
|
2019-05-29 14:21:10 -05:00
|
|
|
Data.Window1.W = ui.NewWindow("Cloud Control Panel", Data.Width, Data.Height, false)
|
|
|
|
Data.Window1.W.OnClosing(func(*ui.Window) bool {
|
2019-05-24 02:53:34 -05:00
|
|
|
ui.Quit()
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
ui.OnShouldQuit(func() bool {
|
2019-05-29 14:21:10 -05:00
|
|
|
Data.Window1.W.Destroy()
|
2019-05-24 02:53:34 -05:00
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
2019-05-29 14:21:10 -05:00
|
|
|
Data.Window1.T = ui.NewTab()
|
|
|
|
Data.Window1.W.SetChild(Data.Window1.T)
|
|
|
|
Data.Window1.W.SetMargined(true)
|
2019-05-24 02:53:34 -05:00
|
|
|
|
2019-05-29 15:11:08 -05:00
|
|
|
// Data.tabcount = 0
|
2019-05-29 14:21:10 -05:00
|
|
|
Data.Window1.T.Append("Cloud Info", makeCloudInfoBox())
|
2019-05-29 15:11:08 -05:00
|
|
|
// Data.Window1.T.SetMargined(Data.tabcount, true)
|
2019-05-24 02:53:34 -05:00
|
|
|
|
2019-05-29 14:21:10 -05:00
|
|
|
Data.Window1.W.Show()
|
2019-05-24 02:53:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func addTableTab() {
|
|
|
|
var parts []TableColumnData
|
|
|
|
|
|
|
|
for key, foo := range []string{"BG", "TEXTCOLOR", "BUTTON", "TEXTCOLOR", "TEXTCOLOR", "TEXT", "BUTTON", "TEXT", "BUTTON"} {
|
|
|
|
log.Println(key, foo)
|
|
|
|
|
|
|
|
var b TableColumnData
|
|
|
|
b.CellType = foo
|
|
|
|
b.Heading = fmt.Sprintf("heading%d", key)
|
|
|
|
parts = append(parts, b)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Println("Sleep for 2 seconds, then try to add new tabs")
|
|
|
|
time.Sleep(1 * 1000 * 1000 * 1000)
|
2019-05-29 14:21:10 -05:00
|
|
|
AddTableTab(Data.Window1.T, 1, "test seven", 7, parts, nil)
|
2019-05-24 02:53:34 -05:00
|
|
|
}
|
|
|
|
|
2019-05-26 14:40:07 -05:00
|
|
|
func addDebuggingButtons(vbox *ui.Box) {
|
2019-05-24 02:53:34 -05:00
|
|
|
vbox.Append(ui.NewLabel("Debugging:"), false)
|
|
|
|
|
|
|
|
vbox.Append(ui.NewColorButton(), false)
|
2019-05-26 14:40:07 -05:00
|
|
|
vbox.Append(CreateButton(nil, nil, "Add Account", "ADD", nil), false)
|
|
|
|
vbox.Append(CreateButton(nil, nil, "Quit", "QUIT", nil), false)
|
2019-05-24 02:53:34 -05:00
|
|
|
|
|
|
|
// ATTEMPT TO ADD THE TABLE HERE
|
|
|
|
add2button := ui.NewButton("Add a Test Table")
|
|
|
|
add2button.OnClicked(func(*ui.Button) {
|
|
|
|
log.Println("send over socket")
|
|
|
|
addTableTab()
|
|
|
|
})
|
|
|
|
vbox.Append(add2button, false)
|
|
|
|
// ATTEMPT TO ADD THE TABLE HERE END
|
|
|
|
|
2019-05-29 15:11:08 -05:00
|
|
|
vbox.Append(CreateButton(nil, nil, "Hide & Show Box1&2", "HIDE", runTestHide), false)
|
|
|
|
|
2019-05-26 14:40:07 -05:00
|
|
|
vbox.Append(CreateButton(nil, nil, "Close GUI", "QUIT", nil), false)
|
|
|
|
vbox.Append(CreateButton(nil, nil, "DEBUG goroutines", "DEBUG", nil), false)
|
2019-05-24 22:54:09 -05:00
|
|
|
vbox.Append(CreateButton(nil, nil, "xterm", "XTERM", runTestExecClick), false)
|
2019-05-26 14:40:07 -05:00
|
|
|
vbox.Append(CreateButton(nil, nil, "Load test.json config file", "CONFIG", nil), false)
|
2019-05-24 11:02:35 -05:00
|
|
|
}
|
|
|
|
|
2019-05-29 15:11:08 -05:00
|
|
|
func runTestHide(b *ButtonMap) {
|
|
|
|
log.Println("runTestHide START")
|
|
|
|
Data.Window1.Box1.Hide()
|
|
|
|
Data.Window1.Box2.Hide()
|
2019-05-29 17:46:21 -05:00
|
|
|
// time.Sleep(2000 * time.Millisecond)
|
2019-05-29 15:11:08 -05:00
|
|
|
Data.State = "HIDE"
|
|
|
|
log.Println("runTestHide END")
|
|
|
|
}
|
|
|
|
|
2019-05-24 17:35:41 -05:00
|
|
|
func runPingClick(b *ButtonMap) {
|
|
|
|
log.Println("runPingClick START")
|
2019-05-25 18:00:33 -05:00
|
|
|
log.Println("runTestExecClick b.VM", b.VM)
|
|
|
|
hostname := "localhost"
|
|
|
|
if (b.VM != nil) {
|
|
|
|
hostname = b.VM.Hostname
|
|
|
|
}
|
2019-05-24 17:35:41 -05:00
|
|
|
spew.Dump(b)
|
|
|
|
var tmp []string
|
2019-05-29 04:44:18 -05:00
|
|
|
tmp = append(tmp, "xterm", "-geometry", "120x30", "-e", "ping " + hostname + ";sleep 3")
|
|
|
|
go runCommand(tmp)
|
2019-05-24 17:35:41 -05:00
|
|
|
log.Println("runPingClick END")
|
|
|
|
}
|
|
|
|
|
2019-05-24 15:23:50 -05:00
|
|
|
func runTestExecClick(b *ButtonMap) {
|
2019-05-24 11:02:35 -05:00
|
|
|
log.Println("runTestExecClick START")
|
2019-05-24 13:32:47 -05:00
|
|
|
if runtime.GOOS == "linux" {
|
2019-05-24 17:35:41 -05:00
|
|
|
go runSimpleCommand("xterm -report-fonts")
|
|
|
|
} else if runtime.GOOS == "windows" {
|
2019-05-25 18:00:33 -05:00
|
|
|
go runSimpleCommand("mintty.exe")
|
2019-05-24 13:32:47 -05:00
|
|
|
} else {
|
2019-05-24 17:35:41 -05:00
|
|
|
go runSimpleCommand("xterm")
|
2019-05-24 13:32:47 -05:00
|
|
|
}
|
2019-05-24 11:02:35 -05:00
|
|
|
log.Println("runTestExecClick END")
|
|
|
|
}
|
|
|
|
|
2019-05-24 17:35:41 -05:00
|
|
|
func runSimpleCommand(s string) {
|
|
|
|
cmd := strings.TrimSpace(s) // this is like 'chomp' in perl
|
|
|
|
cmdArgs := strings.Fields(cmd)
|
|
|
|
runCommand(cmdArgs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func runCommand(cmdArgs []string) {
|
2019-05-29 04:44:18 -05:00
|
|
|
log.Println("runCommand() START", cmdArgs)
|
2019-05-24 11:02:35 -05:00
|
|
|
process := exec.Command(cmdArgs[0], cmdArgs[1:len(cmdArgs)]...)
|
2019-05-24 17:35:41 -05:00
|
|
|
// process := exec.Command("xterm", "-e", "ping localhost")
|
2019-05-29 04:44:18 -05:00
|
|
|
log.Println("runCommand() process.Start()")
|
2019-05-24 11:02:35 -05:00
|
|
|
process.Start()
|
2019-05-29 04:44:18 -05:00
|
|
|
log.Println("runCommand() process.Wait()")
|
2019-05-24 11:02:35 -05:00
|
|
|
process.Wait()
|
2019-05-29 04:44:18 -05:00
|
|
|
log.Println("runCommand() NEED TO CHECK THE TIME HERE TO SEE IF THIS WORKED")
|
|
|
|
log.Println("runCommand() OTHERWISE INFORM THE USER")
|
|
|
|
log.Println("runCommand() END")
|
2019-05-24 02:53:34 -05:00
|
|
|
}
|