mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
354f2b65fa
Implement a GdkPaintable wrapper around GdkPixbufAnimation, so floppy buddy can waive again.
14 lines
281 B
C
14 lines
281 B
C
#pragma once
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define PIXBUF_TYPE_PAINTABLE (pixbuf_paintable_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE(PixbufPaintable, pixbuf_paintable, PIXBUF, PAINTABLE, GObject)
|
|
|
|
GdkPaintable * pixbuf_paintable_new_from_resource (const char *path);
|
|
|
|
G_END_DECLS
|