mirror of
https://github.com/diamondburned/cchat-gtk.git
synced 2024-11-01 03:54:16 +00:00
90 lines
1.7 KiB
Go
90 lines
1.7 KiB
Go
package roundimage
|
|
|
|
import (
|
|
"github.com/diamondburned/cchat-gtk/internal/gts/httputil"
|
|
"github.com/diamondburned/handy"
|
|
"github.com/gotk3/gotk3/gdk"
|
|
"github.com/gotk3/gotk3/gtk"
|
|
)
|
|
|
|
// TODO: GIF support
|
|
|
|
// TextSetter is an interface for setting texts.
|
|
type TextSetter interface {
|
|
SetText(text string)
|
|
}
|
|
|
|
func TrySetText(imager Imager, text string) {
|
|
if setter, ok := imager.(TextSetter); ok {
|
|
setter.SetText(text)
|
|
}
|
|
}
|
|
|
|
// Avatar is a static HdyAvatar container.
|
|
type Avatar struct {
|
|
handy.Avatar
|
|
pixbuf *gdk.Pixbuf
|
|
}
|
|
|
|
var (
|
|
_ Imager = (*Avatar)(nil)
|
|
_ TextSetter = (*Avatar)(nil)
|
|
_ httputil.ImageContainer = (*Avatar)(nil)
|
|
)
|
|
|
|
func NewAvatar(size int) *Avatar {
|
|
a := handy.AvatarNew(size, "", true)
|
|
if a == nil {
|
|
return nil
|
|
}
|
|
|
|
return &Avatar{*a, nil}
|
|
}
|
|
|
|
// SetSizeRequest sets the avatar size. The actual size is min(w, h).
|
|
func (a *Avatar) SetSizeRequest(w, h int) {
|
|
var min = w
|
|
if w > h {
|
|
min = h
|
|
}
|
|
|
|
a.Avatar.SetSize(min)
|
|
a.Avatar.SetSizeRequest(w, h)
|
|
}
|
|
|
|
func (a *Avatar) loadFunc(int) *gdk.Pixbuf {
|
|
return a.pixbuf
|
|
}
|
|
|
|
// SetRadius is a no-op.
|
|
func (a *Avatar) SetRadius(float64) {}
|
|
|
|
// SetFromPixbuf sets the pixbuf.
|
|
func (a *Avatar) SetFromPixbuf(pb *gdk.Pixbuf) {
|
|
a.pixbuf = pb
|
|
a.Avatar.SetImageLoadFunc(a.loadFunc)
|
|
}
|
|
|
|
func (a *Avatar) SetFromAnimation(pa *gdk.PixbufAnimation) {
|
|
a.pixbuf = pa.GetStaticImage()
|
|
a.Avatar.SetImageLoadFunc(a.loadFunc)
|
|
}
|
|
|
|
func (a *Avatar) GetPixbuf() *gdk.Pixbuf {
|
|
return a.pixbuf
|
|
}
|
|
|
|
// GetAnimation returns nil.
|
|
func (a *Avatar) GetAnimation() *gdk.PixbufAnimation {
|
|
return nil
|
|
}
|
|
|
|
// GetImage returns nil.
|
|
func (a *Avatar) GetImage() *gtk.Image {
|
|
return nil
|
|
}
|
|
|
|
func (a *Avatar) GetStorageType() gtk.ImageType {
|
|
return gtk.IMAGE_PIXBUF
|
|
}
|