mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
60 lines
963 B
Go
60 lines
963 B
Go
package compact
|
|
|
|
import (
|
|
ui "github.com/gizak/termui"
|
|
)
|
|
|
|
type CompactHeader struct {
|
|
pars []*ui.Par
|
|
X, Y int
|
|
Width int
|
|
Height int
|
|
}
|
|
|
|
func NewCompactHeader() *CompactHeader {
|
|
fields := []string{"", "NAME", "CID", "CPU", "MEM", "NET RX/TX"}
|
|
header := &CompactHeader{}
|
|
for _, f := range fields {
|
|
header.pars = append(header.pars, slimHeaderPar(f))
|
|
}
|
|
return header
|
|
}
|
|
|
|
func (c *CompactHeader) SetWidth(w int) {
|
|
if w == c.Width {
|
|
return
|
|
}
|
|
x := 1
|
|
autoWidth := calcWidth(w, 5)
|
|
for n, col := range c.pars {
|
|
if n == 0 {
|
|
col.SetX(x)
|
|
col.SetWidth(statusWidth)
|
|
x += statusWidth
|
|
continue
|
|
}
|
|
col.SetX(x)
|
|
col.SetWidth(autoWidth)
|
|
x += autoWidth + colSpacing
|
|
}
|
|
c.Width = w
|
|
}
|
|
|
|
func (c *CompactHeader) SetY(y int) {
|
|
if y == c.Y {
|
|
return
|
|
}
|
|
for _, p := range c.pars {
|
|
p.SetY(y)
|
|
}
|
|
c.Y = y
|
|
}
|
|
|
|
func (c *CompactHeader) Buffer() ui.Buffer {
|
|
buf := ui.NewBuffer()
|
|
for _, p := range c.pars {
|
|
buf.Merge(p.Buffer())
|
|
}
|
|
return buf
|
|
}
|