63 lines
2.7 KiB
Go
63 lines
2.7 KiB
Go
package main
|
|
|
|
import "fmt"
|
|
import "image/color"
|
|
// import "runtime"
|
|
|
|
import pb "git.wit.org/jcarr/witProtobuf"
|
|
import "git.wit.org/wit/gui"
|
|
|
|
var windowsTextVeryLightGrey = color.RGBA{10, 10, 10, 10}
|
|
var windowsTextBlack = color.RGBA{0, 0, 0, 255}
|
|
var windowsTextWhite = color.RGBA{255, 255, 255, 255}
|
|
var windowsTextYellow = color.RGBA{200, 200, 0, 200}
|
|
var windowsTextRed = color.RGBA{200, 0, 0, 200}
|
|
var windowsTextBlue = color.RGBA{0, 100, 200, 100}
|
|
var windowsBgGrey = color.RGBA{100, 100, 100, 142}
|
|
var windowsBgBlack = color.RGBA{55, 55, 55, 255}
|
|
|
|
var linuxTextBlue = color.RGBA{0, 100, 200, 100}
|
|
var linuxTextBlack = color.RGBA{0, 0, 0, 255}
|
|
var linuxTextYellow = color.RGBA{200, 200, 0, 200}
|
|
var linuxBgMauve = color.RGBA{72, 0, 0, 142}
|
|
var linuxBgBlack = color.RGBA{55, 55, 55, 255}
|
|
var linuxBgWhite = color.RGBA{0, 0, 0, 0}
|
|
var linuxBgYellow = color.RGBA{255, 255, 0, 255}
|
|
|
|
func setRowValues(mh *gui.TableData, row int, vm *pb.Event_VM) {
|
|
defaultTextColor := linuxTextBlack
|
|
if (row % 2) == 1 {
|
|
mh.Rows[row].HumanData[0].Color = color.RGBA{200, 200, 200, 100} // odd columns are light grey
|
|
} else {
|
|
mh.Rows[row].HumanData[0].Color = color.RGBA{255, 255, 255, 255} // white
|
|
}
|
|
/*if (row == 1) {
|
|
mh.Rows[row].HumanData[0].Color = color.RGBA{100, 100, 100, 142} // makes the background of each other row grey
|
|
} else if (row == 2) {
|
|
mh.Rows[row].HumanData[0].Color = color.RGBA{0, 0, 0, 0} // makes the background of each other row grey
|
|
} else if (row == 3) {
|
|
mh.Rows[row].HumanData[0].Color = color.RGBA{255, 255, 255, 255} // makes the background of each other row grey
|
|
} else if (row == 4) {
|
|
mh.Rows[row].HumanData[0].Color = color.RGBA{255, 255, 255, 0} // makes the background of each other row grey
|
|
} else if (row == 5) {
|
|
mh.Rows[row].HumanData[0].Color = color.RGBA{55, 55, 55, 255} // makes the background of each other row grey
|
|
} else if (row == 6) {
|
|
mh.Rows[row].HumanData[0].Color = linuxBgYellow
|
|
} else if (row < 10) {
|
|
mh.Rows[row].HumanData[0].Color = linuxBgMauve
|
|
} else {
|
|
mh.Rows[row].HumanData[0].Color = color.RGBA{250, 250, 250, 250}
|
|
}*/
|
|
mh.Rows[row].HumanData[1].Text = vm.Name
|
|
mh.Rows[row].HumanData[1].Color = defaultTextColor
|
|
mh.Rows[row].HumanData[2].Text = vm.Hostname
|
|
mh.Rows[row].HumanData[2].Color = defaultTextColor
|
|
mh.Rows[row].HumanData[3].Text = fmt.Sprintf("%d",vm.Cpus)
|
|
mh.Rows[row].HumanData[3].Color = defaultTextColor
|
|
mh.Rows[row].HumanData[4].Text = fmt.Sprintf("%d",vm.Memory)
|
|
mh.Rows[row].HumanData[4].Color = defaultTextColor
|
|
mh.Rows[row].HumanData[5].Text = fmt.Sprintf("%d",vm.Disk)
|
|
mh.Rows[row].HumanData[5].Color = defaultTextColor
|
|
mh.Rows[row].HumanData[6].Text = fmt.Sprintf("Details %s",vm.Name)
|
|
}
|