mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
71 lines
1.3 KiB
Go
71 lines
1.3 KiB
Go
package compact
|
|
|
|
import (
|
|
ui "github.com/gizak/termui"
|
|
)
|
|
|
|
type CompactGrid struct {
|
|
ui.GridBufferer
|
|
Rows []*Compact // rows to render
|
|
X, Y int
|
|
Width int
|
|
Height int
|
|
header *CompactHeader
|
|
cursorID string
|
|
}
|
|
|
|
func NewCompactGrid() *CompactGrid {
|
|
return &CompactGrid{
|
|
header: NewCompactHeader(),
|
|
}
|
|
}
|
|
|
|
func (cg *CompactGrid) Align() {
|
|
// update header y pos
|
|
if cg.header.Y != cg.Y {
|
|
cg.header.SetY(cg.Y)
|
|
}
|
|
|
|
// update row y pos recursively
|
|
y := cg.Y + 1
|
|
for _, r := range cg.Rows {
|
|
if r.Y != y {
|
|
r.SetY(y)
|
|
}
|
|
y += r.Height
|
|
}
|
|
|
|
// update header width
|
|
if cg.header.Width != cg.Width {
|
|
cg.header.SetWidth(cg.Width)
|
|
}
|
|
|
|
// update row width recursively
|
|
for _, r := range cg.Rows {
|
|
if r.Width != cg.Width {
|
|
r.SetWidth(cg.Width)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (cg *CompactGrid) Clear() { cg.Rows = []*Compact{} }
|
|
func (cg *CompactGrid) GetHeight() int { return len(cg.Rows) }
|
|
func (cg *CompactGrid) SetX(x int) { cg.X = x }
|
|
func (cg *CompactGrid) SetY(y int) { cg.Y = y }
|
|
func (cg *CompactGrid) SetWidth(w int) { cg.Width = w }
|
|
|
|
func (cg *CompactGrid) Buffer() ui.Buffer {
|
|
buf := ui.NewBuffer()
|
|
buf.Merge(cg.header.Buffer())
|
|
for _, r := range cg.Rows {
|
|
buf.Merge(r.Buffer())
|
|
}
|
|
return buf
|
|
}
|
|
|
|
func (cg *CompactGrid) AddRows(rows ...*Compact) {
|
|
for _, r := range rows {
|
|
cg.Rows = append(cg.Rows, r)
|
|
}
|
|
}
|