-
Notifications
You must be signed in to change notification settings - Fork 1
/
image.go
54 lines (46 loc) · 1.21 KB
/
image.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// SPDX-License-Identifier: Unlicense OR MIT
package gel
import (
"image"
"github.com/cybriq/p9/pkg/gel/gio/layout"
"github.com/cybriq/p9/pkg/gel/gio/op"
"github.com/cybriq/p9/pkg/gel/gio/op/clip"
"github.com/cybriq/p9/pkg/gel/gio/op/paint"
"github.com/cybriq/p9/pkg/gel/gio/unit"
)
// Image is a widget that displays an image.
type Image struct {
// src is the image to display.
src paint.ImageOp
// scale is the ratio of image pixels to dps. If scale is zero Image falls back to a scale that match a standard 72
// DPI.
scale float32
}
func (th *Theme) Image() *Image {
return &Image{}
}
func (i *Image) Src(img paint.ImageOp) *Image {
i.src = img
return i
}
func (i *Image) Scale(scale float32) *Image {
i.scale = scale
return i
}
func (i Image) Fn(gtx layout.Context) layout.Dimensions {
scale := i.scale
if scale == 0 {
scale = 160.0 / 72.0
}
size := i.src.Size()
wf, hf := float32(size.X), float32(size.Y)
w, h := gtx.Px(unit.Dp(wf*scale)), gtx.Px(unit.Dp(hf*scale))
cs := gtx.Constraints
d := cs.Constrain(image.Pt(w, h))
stack := op.Save(gtx.Ops)
clip.Rect(image.Rectangle{Max: d}).Add(gtx.Ops)
i.src.Add(gtx.Ops)
paint.PaintOp{}.Add(gtx.Ops)
stack.Load()
return layout.Dimensions{Size: size}
}