summaryrefslogtreecommitdiff
path: root/gui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-12 23:02:39 -0700
committerJeff Carr <[email protected]>2019-05-12 23:02:39 -0700
commit138eff381a675480678ad636b3ceb68819760536 (patch)
tree3fc7247139d67f64fe1eb2941fee728893f6af29 /gui.go
parent12e37b4d1faf3f19a4a5149a94b9fb613d7f9793 (diff)
more code cleanup
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gui.go')
-rw-r--r--gui.go106
1 files changed, 10 insertions, 96 deletions
diff --git a/gui.go b/gui.go
index 1ac1623..5b9e56d 100644
--- a/gui.go
+++ b/gui.go
@@ -1,21 +1,16 @@
package gui
import "log"
-import "time"
-// import "fmt"
-import "github.com/gookit/config"
import "github.com/andlabs/ui"
import _ "github.com/andlabs/ui/winmanifest"
-// import "github.com/davecgh/go-spew/spew"
+var mainwin *ui.Window
+var maintab *ui.Tab
+var tabcount int
-var mainwin *ui.Window
-var maintab *ui.Tab
-var tabcount int
-
-var jcarrButton *ui.Button
-var jcarrEntry *ui.MultilineEntry
+var Width int
+var Height int
type InputData struct {
Index int
@@ -25,7 +20,7 @@ type InputData struct {
}
func setupUI() {
- mainwin = ui.NewWindow("Cloud Control Panel", config.Int("width"), config.Int("height"), false)
+ mainwin = ui.NewWindow("Cloud Control Panel", Width, Height, false)
mainwin.OnClosing(func(*ui.Window) bool {
ui.Quit()
return true
@@ -39,41 +34,15 @@ func setupUI() {
mainwin.SetChild(maintab)
mainwin.SetMargined(true)
- // maintab.Append("List examples", makeNumbersPage())
tabcount = 0
- // maintab.SetMargined(tabcount, true)
-
-/*
- maintab.Append("Choosers examples", makeDataChoosersPage())
- tabcount += 1
- maintab.SetMargined(tabcount, true)
-
- maintab.Append("Group examples", makeGroupEntries())
- tabcount += 1
- maintab.SetMargined(tabcount, true)
-*/
-
mainwin.Show()
}
-func AddChoosersDemo() {
- maintab.Append("Choosers examples", makeDataChoosersPage())
- maintab.SetMargined(tabcount, true)
- tabcount += 1
-}
-
func AddNewTab(mytab *ui.Tab, newbox ui.Control, tabOffset int) {
mytab.Append("Cloud Info", newbox)
mytab.SetMargined(tabOffset, true)
}
-// This hangs on GTK
-func AddEntriesDemo() {
- maintab.Append("Group examples", makeGroupEntries())
- tabcount += 1
- maintab.SetMargined(tabcount, true)
-}
-
func initColumnNames(mh *TableData, cellJWC string, junk string) {
if (cellJWC == "BG") {
mh.generatedColumnTypes = append(mh.generatedColumnTypes, ui.TableColor{})
@@ -116,59 +85,6 @@ func initRow(mh *TableData, row int, parts []InputData) {
}
}
-func AddSampleTableTab(mytab *ui.Tab, mytabcount int, name string, rowcount int, parts []InputData) {
- mh := new(TableData)
-
- mh.RowCount = rowcount
- mh.Rows = make([]RowData, mh.RowCount)
-
- // This is the standard callback function from libUI when the user does something
- mh.libUIevent = defaultSetCellValue
-
- tmpBTindex := 0
-
- for key, foo := range parts {
- log.Println(key, foo)
- initColumnNames(mh, foo.CellType, foo.Heading)
- }
-
- time.Sleep(1 * 1000 * 1000 * 1000)
-
- for row := 0; row < mh.RowCount; row++ {
- initRow(mh, row, parts)
- }
- log.Println(mh)
-
- model := ui.NewTableModel(mh)
- table := ui.NewTable(
- &ui.TableParams{
- Model: model,
- RowBackgroundColorModelColumn: tmpBTindex,
- })
-
- for key, foo := range parts {
- log.Println(key, foo)
- initColumnNames(mh, foo.CellType, foo.Heading)
- if (foo.CellType == "BG") {
- } else if (foo.CellType == "BUTTON") {
- tmpBTindex += 1
- table.AppendButtonColumn("button3", tmpBTindex, ui.TableModelColumnAlwaysEditable)
- } else if (foo.CellType == "TEXTCOLOR") {
- tmpBTindex += 1
- appendTextColorColumn (mh, table, tmpBTindex, tmpBTindex + 1, "testcolor")
- tmpBTindex += 1
- } else if (foo.CellType == "TEXT") {
- tmpBTindex += 1
- appendTextColumn (mh, table, tmpBTindex, "jwc1col")
- } else {
- panic("I don't know what this is in initColumnNames")
- }
- }
-
- mytab.Append(name, table)
- mytab.SetMargined(mytabcount, true)
-}
-
func AddTableTab(mytab *ui.Tab, mytabcount int, name string, rowcount int, parts []InputData) *TableData {
mh := new(TableData)
@@ -223,10 +139,8 @@ func AddTableTab(mytab *ui.Tab, mytabcount int, name string, rowcount int, parts
}
func DoGUI() {
- ui.Main(setupUI)
-
- log.Println("GUI exited. Not sure what to do here. os.Exit() ?")
-
- // not sure how to pass this back to the main program
- // onExit()
+ for {
+ ui.Main(setupUI)
+ log.Println("GUI exited. Not sure what to do here. os.Exit() ?")
+ }
}