parent
3e823f12cb
commit
38bb9d0b16
10
main.go
10
main.go
|
@ -120,7 +120,7 @@ func main() {
|
||||||
ipAAAA := lookupAAAA(hostname)
|
ipAAAA := lookupAAAA(hostname)
|
||||||
gui.Data.IPv6 = ipAAAA
|
gui.Data.IPv6 = ipAAAA
|
||||||
|
|
||||||
gui.Data.Version = "v0.1a"
|
gui.Data.Version = "v0.2"
|
||||||
gui.Data.GitCommit = GITCOMMIT
|
gui.Data.GitCommit = GITCOMMIT
|
||||||
gui.Data.GoVersion = GOVERSION
|
gui.Data.GoVersion = GOVERSION
|
||||||
gui.Data.Buildtime = BUILDTIME
|
gui.Data.Buildtime = BUILDTIME
|
||||||
|
@ -144,7 +144,7 @@ func main() {
|
||||||
|
|
||||||
// make this the main loop in an attempt to figure out the crashes
|
// make this the main loop in an attempt to figure out the crashes
|
||||||
// do not change this until the GUI is stable
|
// 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))
|
// 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, entry)
|
||||||
log.Println("\tdefaultEntryChange() Data.AllEntries[key].Action =", entry.Action)
|
log.Println("\tdefaultEntryChange() Data.AllEntries[key].Action =", entry.Action)
|
||||||
if (entry.Action == "Hostname") {
|
if (entry.Action == "Hostname") {
|
||||||
event.Vms[0].Hostname = entry.E.Text()
|
event.Vms[0].Hostname = entry.UiEntry.Text()
|
||||||
}
|
}
|
||||||
if (entry.Action == "Memory") {
|
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)
|
log.Println("\tdefaultEntryChange() Data.AllEntries[key].B =", entry.B)
|
||||||
if entry.B == b {
|
if entry.B == b {
|
||||||
log.Println("defaultEntryChange() FOUND. Entry assigned to Button", b)
|
log.Println("defaultEntryChange() FOUND. Entry assigned to Button", b)
|
||||||
|
|
|
@ -5,11 +5,13 @@ import "git.wit.com/wit/gui"
|
||||||
import "github.com/andlabs/ui"
|
import "github.com/andlabs/ui"
|
||||||
import _ "github.com/andlabs/ui/winmanifest"
|
import _ "github.com/andlabs/ui/winmanifest"
|
||||||
|
|
||||||
|
/*
|
||||||
func getSplashText() *ui.AttributedString {
|
func getSplashText() *ui.AttributedString {
|
||||||
var aText *ui.AttributedString
|
var aText *ui.AttributedString
|
||||||
aText = ui.NewAttributedString("Click to continue")
|
aText = ui.NewAttributedString("Click to continue")
|
||||||
return aText
|
return aText
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
func getNEWTEXT() *ui.AttributedString {
|
func getNEWTEXT() *ui.AttributedString {
|
||||||
var aText *ui.AttributedString
|
var aText *ui.AttributedString
|
||||||
|
|
Loading…
Reference in New Issue