This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/layouts/vertical.go

133 lines
3.2 KiB
Go
Raw Normal View History

2023-01-10 01:34:19 +00:00
package layouts
2023-01-10 21:39:37 +00:00
import "image"
2023-01-10 01:34:19 +00:00
import "git.tebibyte.media/sashakoshka/tomo"
2023-01-10 16:51:46 +00:00
import "git.tebibyte.media/sashakoshka/tomo/theme"
2023-01-10 01:34:19 +00:00
2023-01-10 21:39:37 +00:00
// Vertical arranges elements vertically. Elements at the start of the entry
// list will be positioned at the top, and elements at the end of the entry list
// will positioned at the bottom. All elements have the same width.
2023-01-10 01:34:19 +00:00
type Vertical struct {
2023-01-10 21:39:37 +00:00
// If Gap is true, a gap will be placed between each element.
Gap bool
2023-01-10 16:51:46 +00:00
2023-01-10 21:39:37 +00:00
// If Pad is true, there will be padding running along the inside of the
// layout's border.
Pad bool
2023-01-10 16:51:46 +00:00
}
2023-01-10 21:39:37 +00:00
// Arrange arranges a list of entries vertically.
func (layout Vertical) Arrange (entries []tomo.LayoutEntry, width, height int) {
if layout.Pad {
width -= theme.Padding() * 2
height -= theme.Padding() * 2
}
freeSpace := height
expandingElements := 0
// count the number of expanding elements and the amount of free space
// for them to collectively occupy, while gathering minimum heights.
minimumHeights := make([]int, len(entries))
for index, entry := range entries {
var entryMinHeight int
if child, flexible := entry.Element.(tomo.Flexible); flexible {
entryMinHeight = child.MinimumHeightFor(width)
} else {
_, entryMinHeight = entry.MinimumSize()
}
minimumHeights[index] = entryMinHeight
2023-01-10 21:39:37 +00:00
if entry.Expand {
expandingElements ++
} else {
freeSpace -= entryMinHeight
}
2023-01-11 04:20:42 +00:00
if index > 0 && layout.Gap {
2023-01-10 22:34:40 +00:00
freeSpace -= theme.Padding()
2023-01-10 16:51:46 +00:00
}
}
2023-01-10 21:39:37 +00:00
expandingElementHeight := 0
if expandingElements > 0 {
expandingElementHeight = freeSpace / expandingElements
2023-01-10 16:51:46 +00:00
}
2023-01-10 21:39:37 +00:00
x, y := 0, 0
if layout.Pad {
x += theme.Padding()
y += theme.Padding()
2023-01-10 16:51:46 +00:00
}
2023-01-10 21:39:37 +00:00
// set the size and position of each element
for index, entry := range entries {
if index > 0 && layout.Gap { y += theme.Padding() }
entries[index].Position = image.Pt(x, y)
entryHeight := 0
if entry.Expand {
entryHeight = expandingElementHeight
} else {
entryHeight = minimumHeights[index]
2023-01-10 21:39:37 +00:00
}
y += entryHeight
entryBounds := entry.Bounds()
if entryBounds.Dx() != width || entryBounds.Dy() != entryHeight {
entry.Resize(width, entryHeight)
2023-01-10 21:39:37 +00:00
}
2023-01-10 16:51:46 +00:00
}
}
2023-01-11 04:20:42 +00:00
// MinimumSize returns the minimum width and height that will be needed to
// arrange the given list of entries.
func (layout Vertical) MinimumSize (
entries []tomo.LayoutEntry,
) (
width, height int,
) {
2023-01-10 21:39:37 +00:00
for index, entry := range entries {
entryWidth, entryHeight := entry.MinimumSize()
if entryWidth > width {
width = entryWidth
}
height += entryHeight
if layout.Gap && index > 0 {
height += theme.Padding()
}
}
2023-01-10 16:51:46 +00:00
2023-01-10 21:39:37 +00:00
if layout.Pad {
width += theme.Padding() * 2
height += theme.Padding() * 2
2023-01-10 16:51:46 +00:00
}
2023-01-10 21:39:37 +00:00
return
2023-01-10 01:34:19 +00:00
}
// MinimumHeightFor Returns the minimum height the layout needs to lay out the
// specified elements at the given width, taking into account flexible elements.
func (layout Vertical) MinimumHeightFor (
entries []tomo.LayoutEntry,
2023-01-17 15:55:38 +00:00
width int,
) (
height int,
) {
2023-01-17 15:55:38 +00:00
if layout.Pad {
width -= theme.Padding() * 2
height += theme.Padding() * 2
2023-01-17 15:55:38 +00:00
}
for index, entry := range entries {
child, flexible := entry.Element.(tomo.Flexible)
if flexible {
2023-01-17 15:55:38 +00:00
height += child.MinimumHeightFor(width)
} else {
_, entryHeight := entry.MinimumSize()
height += entryHeight
}
if layout.Gap && index > 0 {
height += theme.Padding()
}
}
return
}