2019-05-08 15:09:17 -05:00
|
|
|
package gui
|
2019-05-08 15:04:18 -05:00
|
|
|
|
|
|
|
import "log"
|
2019-05-08 19:44:46 -05:00
|
|
|
import "time"
|
2019-05-08 15:04:18 -05:00
|
|
|
// import "fmt"
|
|
|
|
|
|
|
|
import "github.com/gookit/config"
|
|
|
|
import "github.com/andlabs/ui"
|
|
|
|
import _ "github.com/andlabs/ui/winmanifest"
|
|
|
|
|
2019-05-12 20:17:12 -05:00
|
|
|
// import "github.com/davecgh/go-spew/spew"
|
2019-05-08 15:04:18 -05:00
|
|
|
|
|
|
|
var mainwin *ui.Window
|
|
|
|
var maintab *ui.Tab
|
|
|
|
var tabcount int
|
|
|
|
|
|
|
|
var jcarrButton *ui.Button
|
|
|
|
var jcarrEntry *ui.MultilineEntry
|
|
|
|
|
2019-05-12 20:05:17 -05:00
|
|
|
type InputData struct {
|
|
|
|
Index int
|
|
|
|
CellType string
|
|
|
|
Heading string
|
|
|
|
Color string
|
|
|
|
}
|
|
|
|
|
2019-05-08 15:04:18 -05:00
|
|
|
func setupUI() {
|
|
|
|
mainwin = ui.NewWindow("Cloud Control Panel", config.Int("width"), config.Int("height"), false)
|
|
|
|
mainwin.OnClosing(func(*ui.Window) bool {
|
|
|
|
ui.Quit()
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
ui.OnShouldQuit(func() bool {
|
|
|
|
mainwin.Destroy()
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
|
|
|
maintab = ui.NewTab()
|
|
|
|
mainwin.SetChild(maintab)
|
|
|
|
mainwin.SetMargined(true)
|
|
|
|
|
2019-05-08 16:06:29 -05:00
|
|
|
// maintab.Append("List examples", makeNumbersPage())
|
2019-05-08 15:04:18 -05:00
|
|
|
tabcount = 0
|
2019-05-08 16:06:29 -05:00
|
|
|
// maintab.SetMargined(tabcount, true)
|
2019-05-08 15:04:18 -05:00
|
|
|
|
2019-05-08 16:01:57 -05:00
|
|
|
/*
|
2019-05-08 15:04:18 -05:00
|
|
|
maintab.Append("Choosers examples", makeDataChoosersPage())
|
|
|
|
tabcount += 1
|
|
|
|
maintab.SetMargined(tabcount, true)
|
|
|
|
|
|
|
|
maintab.Append("Group examples", makeGroupEntries())
|
|
|
|
tabcount += 1
|
|
|
|
maintab.SetMargined(tabcount, true)
|
2019-05-08 16:01:57 -05:00
|
|
|
*/
|
2019-05-08 15:04:18 -05:00
|
|
|
|
|
|
|
mainwin.Show()
|
|
|
|
}
|
|
|
|
|
2019-05-08 16:01:57 -05:00
|
|
|
func AddChoosersDemo() {
|
|
|
|
maintab.Append("Choosers examples", makeDataChoosersPage())
|
|
|
|
maintab.SetMargined(tabcount, true)
|
2019-05-08 16:06:29 -05:00
|
|
|
tabcount += 1
|
2019-05-08 16:01:57 -05:00
|
|
|
}
|
|
|
|
|
2019-05-10 03:26:55 -05:00
|
|
|
func AddNewTab(mytab *ui.Tab, newbox ui.Control, tabOffset int) {
|
|
|
|
mytab.Append("Cloud Info", newbox)
|
|
|
|
mytab.SetMargined(tabOffset, true)
|
2019-05-10 01:25:55 -05:00
|
|
|
}
|
|
|
|
|
2019-05-08 16:01:57 -05:00
|
|
|
// This hangs on GTK
|
|
|
|
func AddEntriesDemo() {
|
|
|
|
maintab.Append("Group examples", makeGroupEntries())
|
|
|
|
tabcount += 1
|
|
|
|
maintab.SetMargined(tabcount, true)
|
|
|
|
}
|
|
|
|
|
2019-05-12 17:11:32 -05:00
|
|
|
func initColumnNames(mh *TableData, cellJWC string, junk string) {
|
2019-05-08 18:50:52 -05:00
|
|
|
if (cellJWC == "BG") {
|
|
|
|
mh.generatedColumnTypes = append(mh.generatedColumnTypes, ui.TableColor{})
|
|
|
|
} else if (cellJWC == "BUTTON") {
|
|
|
|
mh.generatedColumnTypes = append(mh.generatedColumnTypes, ui.TableString(""))
|
|
|
|
} else if (cellJWC == "TEXTCOLOR") {
|
|
|
|
mh.generatedColumnTypes = append(mh.generatedColumnTypes, ui.TableString(""))
|
|
|
|
mh.generatedColumnTypes = append(mh.generatedColumnTypes, ui.TableColor{})
|
|
|
|
} else if (cellJWC == "TEXT") {
|
|
|
|
mh.generatedColumnTypes = append(mh.generatedColumnTypes, ui.TableString(""))
|
|
|
|
} else {
|
|
|
|
panic("I don't know what this is in initColumnNames")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-12 17:11:32 -05:00
|
|
|
func initRow(mh *TableData, row int, parts []InputData) {
|
2019-05-08 22:08:51 -05:00
|
|
|
tmpBTindex := 0
|
|
|
|
for key, foo := range parts {
|
|
|
|
log.Println(key, foo)
|
|
|
|
if (foo.CellType == "BG") {
|
2019-05-12 20:05:17 -05:00
|
|
|
initRowBTcolor (mh, row, tmpBTindex, parts[key])
|
2019-05-08 22:08:51 -05:00
|
|
|
tmpBTindex += 1
|
|
|
|
} else if (foo.CellType == "BUTTON") {
|
2019-05-12 20:05:17 -05:00
|
|
|
initRowButtonColumn (mh, row, tmpBTindex, parts[key].Heading, parts[key])
|
2019-05-08 22:08:51 -05:00
|
|
|
tmpBTindex += 1
|
|
|
|
} else if (foo.CellType == "TEXTCOLOR") {
|
2019-05-12 20:05:17 -05:00
|
|
|
initRowTextColorColumn(mh, row, tmpBTindex, tmpBTindex + 1, parts[key].Heading, ui.TableColor{0.0, 0, 0.9, 1}, parts[key])
|
2019-05-08 22:08:51 -05:00
|
|
|
tmpBTindex += 2
|
|
|
|
} else if (foo.CellType == "TEXT") {
|
2019-05-12 20:05:17 -05:00
|
|
|
initRowTextColumn (mh, row, tmpBTindex, parts[key].Heading, parts[key])
|
2019-05-08 22:08:51 -05:00
|
|
|
tmpBTindex += 1
|
|
|
|
} else {
|
|
|
|
panic("I don't know what this is in initColumnNames")
|
|
|
|
}
|
|
|
|
}
|
2019-05-08 17:28:40 -05:00
|
|
|
}
|
|
|
|
|
2019-05-12 14:54:11 -05:00
|
|
|
func AddSampleTableTab(mytab *ui.Tab, mytabcount int, name string, rowcount int, parts []InputData) {
|
2019-05-12 17:11:32 -05:00
|
|
|
mh := new(TableData)
|
2019-05-08 15:04:18 -05:00
|
|
|
|
2019-05-12 17:11:32 -05:00
|
|
|
mh.RowCount = rowcount
|
|
|
|
mh.Rows = make([]RowData, mh.RowCount)
|
2019-05-08 15:04:18 -05:00
|
|
|
|
|
|
|
// This is the standard callback function from libUI when the user does something
|
|
|
|
mh.libUIevent = defaultSetCellValue
|
|
|
|
|
|
|
|
tmpBTindex := 0
|
2019-05-08 18:50:52 -05:00
|
|
|
|
2019-05-08 19:44:46 -05:00
|
|
|
for key, foo := range parts {
|
|
|
|
log.Println(key, foo)
|
|
|
|
initColumnNames(mh, foo.CellType, foo.Heading)
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(1 * 1000 * 1000 * 1000)
|
|
|
|
|
2019-05-12 17:11:32 -05:00
|
|
|
for row := 0; row < mh.RowCount; row++ {
|
2019-05-08 22:08:51 -05:00
|
|
|
initRow(mh, row, parts)
|
2019-05-08 18:50:52 -05:00
|
|
|
}
|
2019-05-08 17:28:40 -05:00
|
|
|
log.Println(mh)
|
|
|
|
|
2019-05-08 15:04:18 -05:00
|
|
|
model := ui.NewTableModel(mh)
|
|
|
|
table := ui.NewTable(
|
|
|
|
&ui.TableParams{
|
|
|
|
Model: model,
|
|
|
|
RowBackgroundColorModelColumn: tmpBTindex,
|
|
|
|
})
|
|
|
|
|
2019-05-08 21:09:45 -05:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|
2019-05-08 15:04:18 -05:00
|
|
|
|
2019-05-10 03:26:55 -05:00
|
|
|
mytab.Append(name, table)
|
|
|
|
mytab.SetMargined(mytabcount, true)
|
2019-05-08 15:04:18 -05:00
|
|
|
}
|
|
|
|
|
2019-05-12 17:11:32 -05:00
|
|
|
func AddTableTab(mytab *ui.Tab, mytabcount int, name string, rowcount int, parts []InputData) *TableData {
|
|
|
|
mh := new(TableData)
|
2019-05-12 14:54:11 -05:00
|
|
|
|
2019-05-12 17:11:32 -05:00
|
|
|
mh.RowCount = rowcount
|
|
|
|
mh.Rows = make([]RowData, mh.RowCount)
|
2019-05-12 14:54:11 -05:00
|
|
|
|
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
2019-05-12 17:11:32 -05:00
|
|
|
for row := 0; row < mh.RowCount; row++ {
|
2019-05-12 14:54:11 -05:00
|
|
|
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(foo.Heading, tmpBTindex, ui.TableModelColumnAlwaysEditable)
|
|
|
|
} else if (foo.CellType == "TEXTCOLOR") {
|
|
|
|
tmpBTindex += 1
|
|
|
|
appendTextColorColumn (mh, table, tmpBTindex, tmpBTindex + 1, foo.Heading)
|
|
|
|
tmpBTindex += 1
|
|
|
|
} else if (foo.CellType == "TEXT") {
|
|
|
|
tmpBTindex += 1
|
|
|
|
appendTextColumn (mh, table, tmpBTindex, foo.Heading)
|
|
|
|
} else {
|
|
|
|
panic("I don't know what this is in initColumnNames")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mytab.Append(name, table)
|
|
|
|
mytab.SetMargined(mytabcount, true)
|
2019-05-12 17:11:32 -05:00
|
|
|
|
|
|
|
return mh
|
2019-05-12 14:54:11 -05:00
|
|
|
}
|
|
|
|
|
2019-05-08 15:09:17 -05:00
|
|
|
func DoGUI() {
|
2019-05-08 15:04:18 -05:00
|
|
|
ui.Main(setupUI)
|
|
|
|
|
|
|
|
log.Println("GUI exited. Not sure what to do here. os.Exit() ?")
|
|
|
|
|
2019-05-08 15:09:17 -05:00
|
|
|
// not sure how to pass this back to the main program
|
|
|
|
// onExit()
|
2019-05-08 15:04:18 -05:00
|
|
|
}
|