2018-08-01 00:18:13 +00:00
|
|
|
package ui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"git.kirsle.net/apps/doodle/render"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Frame is a widget that contains other widgets.
|
|
|
|
type Frame struct {
|
2018-08-02 01:52:52 +00:00
|
|
|
Name string
|
2018-08-01 00:18:13 +00:00
|
|
|
BaseWidget
|
|
|
|
packs map[Anchor][]packedWidget
|
|
|
|
widgets []Widget
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewFrame creates a new Frame.
|
2018-08-02 01:52:52 +00:00
|
|
|
func NewFrame(name string) *Frame {
|
|
|
|
w := &Frame{
|
|
|
|
Name: name,
|
2018-08-01 00:18:13 +00:00
|
|
|
packs: map[Anchor][]packedWidget{},
|
|
|
|
widgets: []Widget{},
|
|
|
|
}
|
2018-08-02 01:52:52 +00:00
|
|
|
w.IDFunc(func() string {
|
|
|
|
return fmt.Sprintf("Frame<%s; %d widgets>",
|
|
|
|
name,
|
|
|
|
len(w.widgets),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
return w
|
2018-08-01 00:18:13 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 02:52:09 +00:00
|
|
|
// Setup ensures all the Frame's data is initialized and not null.
|
|
|
|
func (w *Frame) Setup() {
|
|
|
|
if w.packs == nil {
|
|
|
|
w.packs = map[Anchor][]packedWidget{}
|
2018-08-01 00:18:13 +00:00
|
|
|
}
|
2018-08-02 02:52:09 +00:00
|
|
|
if w.widgets == nil {
|
|
|
|
w.widgets = []Widget{}
|
2018-08-01 00:18:13 +00:00
|
|
|
}
|
2018-08-02 02:52:09 +00:00
|
|
|
}
|
2018-08-01 00:18:13 +00:00
|
|
|
|
2018-08-02 02:52:09 +00:00
|
|
|
// Compute the size of the Frame.
|
|
|
|
func (w *Frame) Compute(e render.Engine) {
|
|
|
|
w.computePacked(e)
|
2018-08-01 00:18:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Present the Frame.
|
2018-08-05 19:54:57 +00:00
|
|
|
func (w *Frame) Present(e render.Engine, P render.Point) {
|
2018-08-01 00:18:13 +00:00
|
|
|
var (
|
|
|
|
S = w.Size()
|
|
|
|
)
|
|
|
|
|
|
|
|
// Draw the widget's border and everything.
|
2018-08-05 19:54:57 +00:00
|
|
|
w.DrawBox(e, P)
|
2018-08-01 00:18:13 +00:00
|
|
|
|
|
|
|
// Draw the background color.
|
|
|
|
e.DrawBox(w.Background(), render.Rect{
|
|
|
|
X: P.X + w.BoxThickness(1),
|
|
|
|
Y: P.Y + w.BoxThickness(1),
|
|
|
|
W: S.W - w.BoxThickness(2),
|
|
|
|
H: S.H - w.BoxThickness(2),
|
|
|
|
})
|
|
|
|
|
|
|
|
// Draw the widgets.
|
|
|
|
for _, child := range w.widgets {
|
2018-08-05 19:54:57 +00:00
|
|
|
// child.Compute(e)
|
2018-08-01 00:18:13 +00:00
|
|
|
p := child.Point()
|
2018-08-05 19:54:57 +00:00
|
|
|
moveTo := render.NewPoint(
|
2018-08-01 00:18:13 +00:00
|
|
|
P.X+p.X+w.BoxThickness(1),
|
|
|
|
P.Y+p.Y+w.BoxThickness(1),
|
2018-08-05 19:54:57 +00:00
|
|
|
)
|
|
|
|
child.MoveTo(moveTo)
|
|
|
|
child.Present(e, moveTo)
|
2018-08-01 00:18:13 +00:00
|
|
|
}
|
|
|
|
}
|