Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-05-31 22:27:52 -07:00
parent 3e823f12cb
commit 38bb9d0b16
2 changed files with 7 additions and 5 deletions

10
main.go
View File

@ -120,7 +120,7 @@ func main() {
ipAAAA := lookupAAAA(hostname)
gui.Data.IPv6 = ipAAAA
gui.Data.Version = "v0.1a"
gui.Data.Version = "v0.2"
gui.Data.GitCommit = GITCOMMIT
gui.Data.GoVersion = GOVERSION
gui.Data.Buildtime = BUILDTIME
@ -144,7 +144,7 @@ func main() {
// make this the main loop in an attempt to figure out the crashes
// do not change this until the GUI is stable
gui.StartNewWindow(config, false, "SPLASH")
gui.StartNewWindow(config, false, "SPLASH", getNEWTEXT)
}
// This is the handler for all mosue clicks (buttons, areas, etc))
@ -249,12 +249,12 @@ func mainMouseClick(b *gui.GuiButton) {
log.Println("\tdefaultEntryChange() Data.AllEntries =", key, entry)
log.Println("\tdefaultEntryChange() Data.AllEntries[key].Action =", entry.Action)
if (entry.Action == "Hostname") {
event.Vms[0].Hostname = entry.E.Text()
event.Vms[0].Hostname = entry.UiEntry.Text()
}
if (entry.Action == "Memory") {
event.Vms[0].Memory = pint64(entry.E.Text())
event.Vms[0].Memory = pint64(entry.UiEntry.Text())
}
log.Println("\tdefaultEntryChange() Data.AllEntries[key].E =", entry.E.Text())
log.Println("\tdefaultEntryChange() Data.AllEntries[key].E =", entry.UiEntry.Text())
log.Println("\tdefaultEntryChange() Data.AllEntries[key].B =", entry.B)
if entry.B == b {
log.Println("defaultEntryChange() FOUND. Entry assigned to Button", b)

View File

@ -5,11 +5,13 @@ import "git.wit.com/wit/gui"
import "github.com/andlabs/ui"
import _ "github.com/andlabs/ui/winmanifest"
/*
func getSplashText() *ui.AttributedString {
var aText *ui.AttributedString
aText = ui.NewAttributedString("Click to continue")
return aText
}
*/
func getNEWTEXT() *ui.AttributedString {
var aText *ui.AttributedString