outlay

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 3, 2023 License: MIT, Unlicense Imports: 10 Imported by: 17

README

outlay

Go Reference

This package provides extra layouts for gio.

State

This package has no stable API, and should always be locked to a particular commit with go modules.

Layouts

Grid

This layout allows placement of many items in a grid with to several different strategies for wrapping across lines. For examples, run:

Radial

The radial layout allows you to lay out a set of widgets along an arc. The width and oritentation of the arc are configurable to allow for everything from a hand of cards to a full circle of widgets.

Known issues:

  • The radial layout does not currently return correct dimensions for itself, which breaks most attempts to use it as part of a larger layout.

Documentation

Overview

Package outlay provides extra layouts for gio.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Animation

type Animation struct {
	time.Duration
	StartTime time.Time
}

Animation holds state for an Animation between two states that is not invertible.

func (*Animation) Animating

func (n *Animation) Animating(gtx layout.Context) bool

func (*Animation) Progress

func (n *Animation) Progress(gtx layout.Context) float32

Progress returns the current progress through the animation as a value in the range [0,1]

func (*Animation) SetDuration

func (n *Animation) SetDuration(d time.Duration)

func (*Animation) Start

func (n *Animation) Start(now time.Time)

type AxisPosition

type AxisPosition struct {
	// First and last are the indicies of the first and last visible
	// cell on the axis.
	First, Last int
	// Offset is the pixel offset from the beginning of the first cell to
	// the first visible pixel.
	Offset int
	// OffsetAbs is the estimated absolute position of the first visible
	// pixel within the entire axis, mesaured in pixels.
	OffsetAbs int
	// Length is the estimated total size of the axis, measured in pixels.
	Length int
}

AxisPosition describes the position of a viewport on a given axis.

type Cell

type Cell func(gtx layout.Context, row, col int) layout.Dimensions

Cell is the layout function for a grid cell, with row,col parameters.

type Dimensioner

type Dimensioner func(axis layout.Axis, index, constraint int) int

Dimensioner is a function that provides the dimensions (in pixels) of an element on a given axis. The constraint parameter provides the size of the visible portion of the axis for applications that want it.

type Fan

type Fan struct {
	Animation

	// The width, in radians, of the full arc that items should occupy.
	// If zero, math.Pi/2 will be used (1/4 of a full circle).
	WidthRadians float32

	// The offset, in radians, above the X axis to apply before rendering the
	// arc. This can be used with a value of Pi/4 to center an arc of width
	// Pi/2. If zero, math.Pi/4 will be used (1/8 of a full circle). To get the
	// equivalent of specifying zero, specify a value of 2*math.Pi.
	OffsetRadians float32

	// The radius of the hollow circle at the center of the fan. Leave nil to
	// use the default heuristic of half the width of the widest item.
	HollowRadius *unit.Dp
	// contains filtered or unexported fields
}

func (*Fan) Layout

func (f *Fan) Layout(gtx layout.Context, items ...FanItem) layout.Dimensions

type FanItem

type FanItem struct {
	W       layout.Widget
	Elevate bool
}

func Item

func Item(elevate bool, w layout.Widget) FanItem

type Flow

type Flow struct {
	Num       int
	Axis      layout.Axis
	Alignment layout.Alignment
	// contains filtered or unexported fields
}

Flow lays out at most Num elements along the main axis. The number of cross axis elements depend on the total number of elements.

func (*Flow) Layout

func (g *Flow) Layout(gtx layout.Context, num int, el FlowElement) layout.Dimensions

type FlowElement

type FlowElement func(gtx layout.Context, i int) layout.Dimensions

FlowElement lays out the ith element of a Grid.

type FlowWrap

type FlowWrap struct {
	Axis      layout.Axis
	Alignment layout.Alignment
}

FlowWrap lays out as many elements as possible along the main axis before wrapping to the cross axis.

func (FlowWrap) Layout

func (g FlowWrap) Layout(gtx layout.Context, num int, el FlowElement) layout.Dimensions

type Grid

type Grid struct {
	Vertical   AxisPosition
	Horizontal AxisPosition
	Vscroll    gesture.Scroll
	Hscroll    gesture.Scroll
	// LockedRows is a quantity of rows (starting from row 0) to lock to
	// the top of the grid's viewport. These rows will not be included in
	// the indicies provided in the Vertical AxisPosition field.
	LockedRows int
}

Grid provides a scrollable two dimensional viewport that efficiently lays out only content visible or nearly visible within the current viewport.

func (*Grid) Layout

func (g *Grid) Layout(gtx layout.Context, rows, cols int, dimensioner Dimensioner, cellFunc Cell) layout.Dimensions

Layout the Grid.

BUG(whereswaldon): all rows are set to the height returned by dimensioner(layout.Vertical, 0, gtx.Constraints.Max.Y). Support for variable-height rows is welcome as a patch.

Notes

Bugs

  • all rows are set to the height returned by dimensioner(layout.Vertical, 0, gtx.Constraints.Max.Y). Support for variable-height rows is welcome as a patch.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL