more common window/box functions
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
575be8d6d6
commit
c555147ebc
|
@ -6,15 +6,17 @@ import "git.wit.com/wit/gui"
|
||||||
|
|
||||||
func makeCloudInfoBox(gw *gui.GuiWindow) {
|
func makeCloudInfoBox(gw *gui.GuiWindow) {
|
||||||
log.Println("makeCloudInfoBox() START gw =", gw)
|
log.Println("makeCloudInfoBox() START gw =", gw)
|
||||||
box := gui.AddMainTab(gw)
|
// box := gui.AddMainTab(gw)
|
||||||
gw = box.Window
|
|
||||||
|
gw = gui.InitGuiWindow(gui.Data.Config, "Box23", nil, gw.UiWindow, gw.UiTab)
|
||||||
|
box := gui.AddGenericBox(gw, "makeCloudInfoBox")
|
||||||
|
|
||||||
log.Println("makeCloudInfoBox() START GW IS NOW: gw =", gw)
|
log.Println("makeCloudInfoBox() START GW IS NOW: gw =", gw)
|
||||||
log.Println("makeCloudInfoBox() box =", box)
|
log.Println("makeCloudInfoBox() box =", box)
|
||||||
|
|
||||||
gui.NewLabel(box, "Hostname:")
|
gui.NewLabel(box, "Hostname:")
|
||||||
|
|
||||||
box = gui.HardHorizontalBox(gw)
|
// box = gui.HardHorizontalBox(gw)
|
||||||
|
|
||||||
tmp := gui.Data.Hostname + " (" + gui.Data.IPv6 + ")"
|
tmp := gui.Data.Hostname + " (" + gui.Data.IPv6 + ")"
|
||||||
gui.MakeEntryHbox(box, "hostname:", tmp, true, "Hostname")
|
gui.MakeEntryHbox(box, "hostname:", tmp, true, "Hostname")
|
||||||
|
|
|
@ -70,16 +70,9 @@ func splashClick(b *gui.GuiButton) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
// if there is not an account, then go to 'make account'
|
// if there is not an account, then go to 'make account'
|
||||||
newGW := gui.InitGuiWindow(gui.Data.Config, "Box22", gw.MakeWindow, gw.UiWindow, gw.UiTab)
|
gw = gui.InitGuiWindow(gui.Data.Config, "Box22", gw.MakeWindow, gw.UiWindow, gw.UiTab)
|
||||||
newGW.UiTab.Delete(0)
|
gw.UiTab.Delete(0)
|
||||||
addSubdomainQuestionBox(newGW)
|
|
||||||
|
|
||||||
// gw.MakeWindow = addSubdomainQuestionBox
|
|
||||||
// window.MakeWindow(window)
|
|
||||||
// gui.ReplaceTab(gw, "Box22", "New Account?")
|
|
||||||
}
|
|
||||||
|
|
||||||
func addSubdomainQuestionBox(gw *gui.GuiWindow) *gui.GuiBox {
|
|
||||||
log.Println("addSubdomainQuestionBox() START")
|
log.Println("addSubdomainQuestionBox() START")
|
||||||
box := gui.AddGenericBox(gw, "addSubdomainQuestion")
|
box := gui.AddGenericBox(gw, "addSubdomainQuestion")
|
||||||
|
|
||||||
|
@ -96,7 +89,6 @@ func addSubdomainQuestionBox(gw *gui.GuiWindow) *gui.GuiBox {
|
||||||
gui.AddButtonToBox(box, button2)
|
gui.AddButtonToBox(box, button2)
|
||||||
|
|
||||||
log.Println("addSubdomainQuestionBox() END box =", box)
|
log.Println("addSubdomainQuestionBox() END box =", box)
|
||||||
return box
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// curl -vv -X POST -H "X-Wit-Auth: $TOKEN" 'http://stackapi-api1.stackapi.customers.wit.com:4000/vms/toby?count=1&cpu=2&ram=512&disk=25'
|
// curl -vv -X POST -H "X-Wit-Auth: $TOKEN" 'http://stackapi-api1.stackapi.customers.wit.com:4000/vms/toby?count=1&cpu=2&ram=512&disk=25'
|
||||||
|
|
Loading…
Reference in New Issue