all: rename layout.Dimens to layout.Dimensions

Dimens is only 4 characters shorter and not worth the abbreviation.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-08-30 15:00:17 +02:00
parent 7f29293f16
commit 12089ea62a
10 changed files with 29 additions and 29 deletions
+6 -6
View File
@@ -21,9 +21,9 @@ type Constraint struct {
Min, Max int
}
// Dimens are the resolved size and baseline for a user
// Dimensions are the resolved size and baseline for a user
// interface element.
type Dimens struct {
type Dimensions struct {
Size image.Point
Baseline int
}
@@ -143,13 +143,13 @@ func (in *Inset) Begin(c ui.Config, ops *ui.Ops, cs Constraints) Constraints {
// End the inset operation and return the dimensions for the
// inset child.
func (in *Inset) End(dims Dimens) Dimens {
func (in *Inset) End(dims Dimensions) Dimensions {
if !in.begun {
panic("must Begin before End")
}
in.begun = false
in.stack.Pop()
return Dimens{
return Dimensions{
Size: in.cs.Constrain(dims.Size.Add(image.Point{X: in.right + in.left, Y: in.top + in.bottom})),
Baseline: dims.Baseline + in.top,
}
@@ -177,7 +177,7 @@ func (a *Align) Begin(ops *ui.Ops, cs Constraints) Constraints {
// End the align operation and return the dimensions for the
// aligned child.
func (a *Align) End(dims Dimens) Dimens {
func (a *Align) End(dims Dimensions) Dimensions {
if !a.begun {
panic("must Begin before End")
}
@@ -209,7 +209,7 @@ func (a *Align) End(dims Dimens) Dimens {
ui.TransformOp{}.Offset(toPointF(p)).Add(ops)
a.macro.Add(ops)
stack.Pop()
return Dimens{
return Dimensions{
Size: sz,
Baseline: dims.Baseline,
}