cchat-gtk/internal/ui/rich/image.go

182 lines
3.7 KiB
Go
Raw Normal View History

2020-06-06 07:44:36 +00:00
package rich
import (
"context"
2020-06-06 07:44:36 +00:00
"github.com/diamondburned/cchat"
"github.com/diamondburned/cchat-gtk/internal/gts"
"github.com/diamondburned/cchat-gtk/internal/gts/httputil"
"github.com/diamondburned/cchat-gtk/internal/ui/primitives"
2020-07-11 06:48:44 +00:00
"github.com/diamondburned/cchat-gtk/internal/ui/primitives/roundimage"
2020-06-06 07:44:36 +00:00
"github.com/diamondburned/cchat/text"
"github.com/diamondburned/imgutil"
"github.com/gotk3/gotk3/gtk"
)
2020-06-30 03:39:42 +00:00
type IconerFn = func(context.Context, cchat.IconContainer) (func(), error)
2020-07-11 06:48:44 +00:00
// Icon represents a rounded image container.
2020-06-06 07:44:36 +00:00
type Icon struct {
*gtk.Revealer
2020-07-11 06:48:44 +00:00
Image *roundimage.Image
procs []imgutil.Processor
size int
r *Reusable
2020-06-07 07:06:13 +00:00
// state
url string
2020-06-06 07:44:36 +00:00
}
const DefaultIconSize = 16
var _ cchat.IconContainer = (*Icon)(nil)
func NewIcon(sizepx int, procs ...imgutil.Processor) *Icon {
if sizepx == 0 {
sizepx = DefaultIconSize
}
2020-07-11 06:48:44 +00:00
img, _ := roundimage.NewImage(0)
2020-06-06 07:44:36 +00:00
img.Show()
img.SetSizeRequest(sizepx, sizepx)
rev, _ := gtk.RevealerNew()
rev.Add(img)
rev.SetRevealChild(false)
rev.SetTransitionType(gtk.REVEALER_TRANSITION_TYPE_SLIDE_RIGHT)
rev.SetTransitionDuration(50)
i := &Icon{
2020-06-06 07:44:36 +00:00
Revealer: rev,
Image: img,
procs: procs,
}
i.SetSize(sizepx)
i.r = NewReusable(func(ni *nullIcon) {
i.SetIconUnsafe(ni.url)
})
return i
2020-06-06 07:44:36 +00:00
}
2020-06-07 07:06:13 +00:00
// Reset wipes the state to be just after construction.
func (i *Icon) Reset() {
i.url = ""
i.r.Invalidate() // invalidate async fetching images
2020-06-07 07:06:13 +00:00
i.Revealer.SetRevealChild(false)
i.Image.SetFromPixbuf(nil) // destroy old pb
2020-06-07 07:06:13 +00:00
}
2020-06-07 04:27:28 +00:00
// URL is not thread-safe.
func (i *Icon) URL() string {
return i.url
}
func (i *Icon) Size() int {
return i.size
}
2020-06-07 04:27:28 +00:00
func (i *Icon) CopyPixbuf(dst httputil.ImageContainer) {
switch i.Image.GetStorageType() {
case gtk.IMAGE_PIXBUF:
dst.SetFromPixbuf(i.Image.GetPixbuf())
case gtk.IMAGE_ANIMATION:
dst.SetFromAnimation(i.Image.GetAnimation())
}
}
// Thread-unsafe setter methods should only be called right after construction.
2020-06-06 07:44:36 +00:00
// SetPlaceholderIcon is not thread-safe.
func (i *Icon) SetPlaceholderIcon(iconName string, iconSzPx int) {
i.SetRevealChild(true)
i.SetSize(iconSzPx)
if iconName != "" {
2020-07-11 06:48:44 +00:00
primitives.SetImageIcon(i.Image.Image, iconName, iconSzPx)
2020-06-06 07:44:36 +00:00
}
}
// SetSize is not thread-safe.
func (i *Icon) SetSize(szpx int) {
i.size = szpx
2020-06-06 07:44:36 +00:00
i.Image.SetSizeRequest(szpx, szpx)
}
// AddProcessors is not thread-safe.
func (i *Icon) AddProcessors(procs ...imgutil.Processor) {
i.procs = append(i.procs, procs...)
}
// SetIcon is thread-safe.
func (i *Icon) SetIcon(url string) {
gts.ExecAsync(func() { i.SetIconUnsafe(url) })
}
func (i *Icon) AsyncSetIconer(iconer cchat.Icon, wrap string) {
AsyncUse(i.r, func(ctx context.Context) (interface{}, func(), error) {
2020-06-30 03:39:42 +00:00
ni := &nullIcon{}
f, err := iconer.Icon(ctx, ni)
return ni, f, err
})
}
2020-06-07 04:27:28 +00:00
// SetIconUnsafe is not thread-safe.
func (i *Icon) SetIconUnsafe(url string) {
i.SetRevealChild(true)
2020-06-06 07:44:36 +00:00
i.url = url
i.updateAsync()
}
func (i *Icon) updateAsync() {
2020-07-11 06:48:44 +00:00
httputil.AsyncImageSized(i.Image, i.url, i.size, i.size, i.procs...)
2020-06-06 07:44:36 +00:00
}
type ToggleButtonImage struct {
gtk.ToggleButton
Labeler
cchat.IconContainer
Label *gtk.Label
Image *Icon
Box *gtk.Box
}
var (
_ gtk.IWidget = (*ToggleButton)(nil)
_ cchat.LabelContainer = (*ToggleButton)(nil)
)
func NewToggleButtonImage(content text.Rich) *ToggleButtonImage {
l := NewLabel(content)
l.Show()
i := NewIcon(0)
i.Show()
box, _ := gtk.BoxNew(gtk.ORIENTATION_HORIZONTAL, 0)
box.PackStart(i, false, false, 0)
box.PackStart(l, true, true, 5)
box.Show()
b, _ := gtk.ToggleButtonNew()
b.Add(box)
return &ToggleButtonImage{
ToggleButton: *b,
Labeler: l, // easy inheritance of methods
IconContainer: i,
Label: &l.Label,
Image: i,
Box: box,
}
}
func (t *ToggleButtonImage) Reset() {
t.Labeler.Reset()
t.Image.Reset()
}