2018-02-16 06:05:07 +01:00
|
|
|
package ui
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
)
|
2018-02-16 06:05:07 +01:00
|
|
|
|
|
|
|
type Grid struct {
|
2019-04-27 18:47:59 +02:00
|
|
|
Invalidatable
|
2018-02-18 02:11:58 +01:00
|
|
|
rows []GridSpec
|
|
|
|
rowLayout []gridLayout
|
|
|
|
columns []GridSpec
|
|
|
|
columnLayout []gridLayout
|
2018-02-28 01:30:59 +01:00
|
|
|
cells []*GridCell
|
2018-02-17 21:21:22 +01:00
|
|
|
invalid bool
|
2018-02-16 06:05:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
SIZE_EXACT = iota
|
|
|
|
SIZE_WEIGHT = iota
|
|
|
|
)
|
|
|
|
|
|
|
|
// Specifies the layout of a single row or column
|
2018-02-18 02:11:58 +01:00
|
|
|
type GridSpec struct {
|
2018-02-16 06:05:07 +01:00
|
|
|
// One of SIZE_EXACT or SIZE_WEIGHT
|
2018-02-17 21:21:22 +01:00
|
|
|
Strategy int
|
2018-02-18 02:11:58 +01:00
|
|
|
// If Strategy = SIZE_EXACT, this is the number of cells this row/col shall
|
|
|
|
// occupy. If SIZE_WEIGHT, the space left after all exact rows/cols are
|
|
|
|
// measured is distributed amonst the remainder weighted by this value.
|
2018-02-17 21:21:22 +01:00
|
|
|
Size int
|
|
|
|
}
|
|
|
|
|
|
|
|
// Used to cache layout of each row/column
|
2018-02-18 02:11:58 +01:00
|
|
|
type gridLayout struct {
|
2018-02-17 21:21:22 +01:00
|
|
|
Offset int
|
|
|
|
Size int
|
2018-02-16 06:05:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type GridCell struct {
|
2018-02-17 21:21:22 +01:00
|
|
|
Row int
|
|
|
|
Column int
|
|
|
|
RowSpan int
|
|
|
|
ColSpan int
|
2018-02-16 06:05:07 +01:00
|
|
|
Content Drawable
|
|
|
|
invalid bool
|
|
|
|
}
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
func NewGrid() *Grid {
|
|
|
|
return &Grid{invalid: true}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cell *GridCell) At(row, col int) *GridCell {
|
|
|
|
cell.Row = row
|
|
|
|
cell.Column = col
|
|
|
|
return cell
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cell *GridCell) Span(rows, cols int) *GridCell {
|
|
|
|
cell.RowSpan = rows
|
|
|
|
cell.ColSpan = cols
|
|
|
|
return cell
|
|
|
|
}
|
|
|
|
|
2018-02-18 02:11:58 +01:00
|
|
|
func (grid *Grid) Rows(spec []GridSpec) *Grid {
|
|
|
|
grid.rows = spec
|
|
|
|
return grid
|
|
|
|
}
|
|
|
|
|
|
|
|
func (grid *Grid) Columns(spec []GridSpec) *Grid {
|
|
|
|
grid.columns = spec
|
|
|
|
return grid
|
|
|
|
}
|
|
|
|
|
2019-01-20 21:06:44 +01:00
|
|
|
func (grid *Grid) Children() []Drawable {
|
|
|
|
children := make([]Drawable, len(grid.cells))
|
|
|
|
for i, cell := range grid.cells {
|
|
|
|
children[i] = cell.Content
|
|
|
|
}
|
|
|
|
return children
|
|
|
|
}
|
|
|
|
|
2018-02-17 21:21:22 +01:00
|
|
|
func (grid *Grid) Draw(ctx *Context) {
|
|
|
|
invalid := grid.invalid
|
|
|
|
if invalid {
|
|
|
|
grid.reflow(ctx)
|
|
|
|
}
|
2018-02-28 01:30:59 +01:00
|
|
|
for _, cell := range grid.cells {
|
2018-02-17 21:21:22 +01:00
|
|
|
if !cell.invalid && !invalid {
|
|
|
|
continue
|
|
|
|
}
|
2018-02-17 22:35:36 +01:00
|
|
|
rows := grid.rowLayout[cell.Row : cell.Row+cell.RowSpan]
|
|
|
|
cols := grid.columnLayout[cell.Column : cell.Column+cell.ColSpan]
|
2018-02-17 21:21:22 +01:00
|
|
|
x := cols[0].Offset
|
|
|
|
y := rows[0].Offset
|
|
|
|
width := 0
|
|
|
|
height := 0
|
|
|
|
for _, col := range cols {
|
2018-02-17 22:35:36 +01:00
|
|
|
width += col.Size
|
|
|
|
}
|
|
|
|
for _, row := range rows {
|
|
|
|
height += row.Size
|
2018-02-17 21:21:22 +01:00
|
|
|
}
|
|
|
|
subctx := ctx.Subcontext(x, y, width, height)
|
|
|
|
cell.Content.Draw(subctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (grid *Grid) reflow(ctx *Context) {
|
|
|
|
grid.rowLayout = nil
|
|
|
|
grid.columnLayout = nil
|
2018-02-18 02:11:58 +01:00
|
|
|
flow := func(specs *[]GridSpec, layouts *[]gridLayout, extent int) {
|
2018-02-17 21:21:22 +01:00
|
|
|
exact := 0
|
|
|
|
weight := 0
|
2018-02-17 22:35:36 +01:00
|
|
|
nweights := 0
|
2018-02-18 02:11:58 +01:00
|
|
|
for _, spec := range *specs {
|
|
|
|
if spec.Strategy == SIZE_EXACT {
|
|
|
|
exact += spec.Size
|
|
|
|
} else if spec.Strategy == SIZE_WEIGHT {
|
2018-02-17 22:35:36 +01:00
|
|
|
nweights += 1
|
2018-02-18 02:11:58 +01:00
|
|
|
weight += spec.Size
|
2018-02-17 21:21:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
offset := 0
|
2018-02-18 02:11:58 +01:00
|
|
|
for _, spec := range *specs {
|
|
|
|
layout := gridLayout{Offset: offset}
|
|
|
|
if spec.Strategy == SIZE_EXACT {
|
|
|
|
layout.Size = spec.Size
|
|
|
|
} else if spec.Strategy == SIZE_WEIGHT {
|
|
|
|
size := float64(spec.Size) / float64(weight)
|
2018-02-17 22:35:36 +01:00
|
|
|
size *= float64(extent - exact)
|
|
|
|
layout.Size = int(math.Floor(size))
|
2018-02-17 21:21:22 +01:00
|
|
|
}
|
2018-02-17 22:35:36 +01:00
|
|
|
offset += layout.Size
|
2018-02-17 21:21:22 +01:00
|
|
|
*layouts = append(*layouts, layout)
|
|
|
|
}
|
|
|
|
}
|
2018-02-18 02:11:58 +01:00
|
|
|
flow(&grid.rows, &grid.rowLayout, ctx.Height())
|
|
|
|
flow(&grid.columns, &grid.columnLayout, ctx.Width())
|
2018-02-17 21:21:22 +01:00
|
|
|
grid.invalid = false
|
|
|
|
}
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
func (grid *Grid) invalidateLayout() {
|
2018-02-17 21:21:22 +01:00
|
|
|
grid.invalid = true
|
2019-04-27 18:47:59 +02:00
|
|
|
grid.DoInvalidate(grid)
|
2018-02-17 22:35:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (grid *Grid) Invalidate() {
|
|
|
|
grid.invalidateLayout()
|
2018-02-28 01:30:59 +01:00
|
|
|
for _, cell := range grid.cells {
|
2018-02-17 22:35:36 +01:00
|
|
|
cell.Content.Invalidate()
|
|
|
|
}
|
2018-02-16 06:05:07 +01:00
|
|
|
}
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
func (grid *Grid) AddChild(content Drawable) *GridCell {
|
|
|
|
cell := &GridCell{
|
|
|
|
RowSpan: 1,
|
|
|
|
ColSpan: 1,
|
|
|
|
Content: content,
|
|
|
|
invalid: true,
|
|
|
|
}
|
2018-02-28 01:30:59 +01:00
|
|
|
grid.cells = append(grid.cells, cell)
|
2018-02-16 06:05:07 +01:00
|
|
|
cell.Content.OnInvalidate(grid.cellInvalidated)
|
|
|
|
cell.invalid = true
|
2018-02-17 22:35:36 +01:00
|
|
|
grid.invalidateLayout()
|
|
|
|
return cell
|
2018-02-16 06:05:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (grid *Grid) RemoveChild(cell *GridCell) {
|
2018-02-28 01:30:59 +01:00
|
|
|
for i, _cell := range grid.cells {
|
2018-02-16 06:05:07 +01:00
|
|
|
if _cell == cell {
|
2018-02-28 01:30:59 +01:00
|
|
|
grid.cells = append(grid.cells[:i], grid.cells[i+1:]...)
|
2018-02-16 06:05:07 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-02-17 22:35:36 +01:00
|
|
|
grid.invalidateLayout()
|
2018-02-16 06:05:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (grid *Grid) cellInvalidated(drawable Drawable) {
|
|
|
|
var cell *GridCell
|
2018-02-28 01:30:59 +01:00
|
|
|
for _, cell = range grid.cells {
|
2018-02-16 06:05:07 +01:00
|
|
|
if cell.Content == drawable {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
cell = nil
|
|
|
|
}
|
|
|
|
if cell == nil {
|
|
|
|
panic(fmt.Errorf("Attempted to invalidate unknown cell"))
|
|
|
|
}
|
|
|
|
cell.invalid = true
|
2019-04-27 18:47:59 +02:00
|
|
|
grid.DoInvalidate(grid)
|
2018-02-16 06:05:07 +01:00
|
|
|
}
|