Files
prevara/image.go
2025-11-30 16:45:22 +00:00

52 lines
1.1 KiB
Go

// SPDX-License-Identifier: Unlicense OR MIT
package gel
import (
"image"
"github.com/p9c/p9/pkg/gel/gio/layout"
"github.com/p9c/p9/pkg/gel/gio/op/clip"
"github.com/p9c/p9/pkg/gel/gio/op/paint"
"github.com/p9c/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.Dp(unit.Dp(wf*scale)), gtx.Dp(unit.Dp(hf*scale))
cs := gtx.Constraints
d := cs.Constrain(image.Pt(w, h))
defer clip.Rect(image.Rectangle{Max: d}).Push(gtx.Ops).Pop()
i.src.Add(gtx.Ops)
paint.PaintOp{}.Add(gtx.Ops)
return layout.Dimensions{Size: size}
}