shithub: xui

ref: a8bb4e36f51179ad6b544d2236600b88aab371d2
dir: /layout/layout.go/

View raw version
package layout

import (
	"image"
)

type Interface interface {
	Arrange([]Element)
}

type Element interface {
	Geom() (orig, extent image.Point)
}

type Inline struct {
}

func (inl Inline) Arrange([]Element) {}