erm/vendor/github.com/lxn/walk/imageview.go

282 lines
5.6 KiB
Go

// Copyright 2010 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package walk
import (
"math"
"github.com/lxn/win"
)
type ImageViewMode int
const (
ImageViewModeIdeal ImageViewMode = iota
ImageViewModeCorner
ImageViewModeCenter
ImageViewModeShrink
ImageViewModeZoom
ImageViewModeStretch
)
type ImageView struct {
*CustomWidget
image Image
imageChangedPublisher EventPublisher
margin96dpi int
marginChangedPublisher EventPublisher
mode ImageViewMode
}
func NewImageView(parent Container) (*ImageView, error) {
iv := new(ImageView)
cw, err := NewCustomWidgetPixels(parent, 0, func(canvas *Canvas, updateBounds Rectangle) error {
return iv.drawImage(canvas, updateBounds)
})
if err != nil {
return nil, err
}
iv.CustomWidget = cw
if err := InitWrapperWindow(iv); err != nil {
iv.Dispose()
return nil, err
}
iv.SetInvalidatesOnResize(true)
iv.SetBackground(NullBrush())
iv.MustRegisterProperty("Image", NewProperty(
func() interface{} {
return iv.Image()
},
func(v interface{}) error {
img, err := ImageFrom(v)
if err != nil {
return err
}
return iv.SetImage(img)
},
iv.imageChangedPublisher.Event()))
iv.MustRegisterProperty("Margin", NewProperty(
func() interface{} {
return iv.Margin()
},
func(v interface{}) error {
return iv.SetMargin(assertIntOr(v, 0))
},
iv.MarginChanged()))
return iv, nil
}
func (iv *ImageView) Mode() ImageViewMode {
return iv.mode
}
func (iv *ImageView) SetMode(mode ImageViewMode) {
if mode == iv.mode {
return
}
iv.mode = mode
iv.Invalidate()
iv.RequestLayout()
}
func (iv *ImageView) applyDPI(dpi int) {
iv.CustomWidget.ApplyDPI(dpi)
iv.Invalidate()
iv.RequestLayout()
}
func (iv *ImageView) Image() Image {
return iv.image
}
func (iv *ImageView) SetImage(image Image) error {
if image == iv.image {
return nil
}
var oldSize, newSize Size // in 1/96" units
if iv.image != nil {
oldSize = iv.image.Size()
}
if image != nil {
newSize = image.Size()
}
iv.image = image
_, isMetafile := image.(*Metafile)
iv.SetClearsBackground(isMetafile)
err := iv.Invalidate()
if iv.mode == ImageViewModeIdeal && newSize != oldSize {
iv.RequestLayout()
}
iv.imageChangedPublisher.Publish()
return err
}
func (iv *ImageView) ImageChanged() *Event {
return iv.imageChangedPublisher.Event()
}
func (iv *ImageView) Margin() int {
return iv.margin96dpi
}
func (iv *ImageView) SetMargin(margin int) error {
if margin == iv.margin96dpi {
return nil
}
iv.margin96dpi = margin
err := iv.Invalidate()
if iv.mode == ImageViewModeIdeal {
iv.RequestLayout()
}
iv.marginChangedPublisher.Publish()
return err
}
func (iv *ImageView) MarginChanged() *Event {
return iv.marginChangedPublisher.Event()
}
func (iv *ImageView) drawImage(canvas *Canvas, _ Rectangle) error {
if iv.image == nil {
return nil
}
cb := iv.ClientBoundsPixels()
dpi := iv.DPI()
margin := IntFrom96DPI(iv.margin96dpi, dpi)
cb.Width -= margin * 2
cb.Height -= margin * 2
s := SizeFrom96DPI(iv.image.Size(), dpi)
switch iv.mode {
case ImageViewModeShrink, ImageViewModeZoom, ImageViewModeStretch:
var bounds Rectangle
if iv.mode == ImageViewModeStretch {
bounds.X = margin
bounds.Y = margin
bounds.Width = cb.Width
bounds.Height = cb.Height
} else {
var scale float64
if iv.mode == ImageViewModeZoom || s.Width > cb.Width || s.Height > cb.Height {
sx := float64(cb.Width) / float64(s.Width)
sy := float64(cb.Height) / float64(s.Height)
scale = math.Min(sx, sy)
} else {
scale = 1.0
}
bounds.Width = int(float64(s.Width) * scale)
bounds.Height = int(float64(s.Height) * scale)
bounds.X = margin + (cb.Width-bounds.Width)/2
bounds.Y = margin + (cb.Height-bounds.Height)/2
}
return canvas.DrawImageStretchedPixels(iv.image, bounds)
case ImageViewModeCorner, ImageViewModeCenter:
win.IntersectClipRect(canvas.hdc, int32(margin), int32(margin), int32(cb.Width+margin), int32(cb.Height+margin))
}
var bounds Rectangle
switch iv.mode {
case ImageViewModeIdeal, ImageViewModeCorner:
bounds.X = margin
bounds.Y = margin
case ImageViewModeCenter:
bounds.X = margin + (cb.Width-s.Width)/2
bounds.Y = margin + (cb.Height-s.Height)/2
}
bounds.Width = s.Width
bounds.Height = s.Height
return canvas.DrawImageStretchedPixels(iv.image, bounds)
}
func (iv *ImageView) CreateLayoutItem(ctx *LayoutContext) LayoutItem {
var layoutFlags LayoutFlags
if iv.mode != ImageViewModeIdeal {
layoutFlags = ShrinkableHorz | ShrinkableVert | GrowableHorz | GrowableVert | GreedyHorz | GreedyVert
}
dpi := iv.DPI()
idealSize := SizeFrom96DPI(Size{100, 100}, dpi)
var minSize Size
if iv.mode == ImageViewModeIdeal {
if iv.image != nil {
idealSize = SizeFrom96DPI(iv.image.Size(), dpi)
margin2 := IntFrom96DPI(iv.margin96dpi, dpi) * 2
idealSize.Width += margin2
idealSize.Height += margin2
}
minSize = idealSize
} else {
s := IntFrom96DPI(iv.margin96dpi, dpi)*2 + 1
minSize = Size{s, s}
}
return &imageViewLayoutItem{
layoutFlags: layoutFlags,
idealSize: idealSize,
minSize: minSize,
}
}
type imageViewLayoutItem struct {
LayoutItemBase
layoutFlags LayoutFlags
idealSize Size // in native pixels
minSize Size // in native pixels
}
func (li *imageViewLayoutItem) LayoutFlags() LayoutFlags {
return li.layoutFlags
}
func (li *imageViewLayoutItem) IdealSize() Size {
return li.idealSize
}
func (li *imageViewLayoutItem) MinSize() Size {
return li.minSize
}