Learning_GTK4_tree/demos/gtk-demo/pixbufpaintable.h

14 lines
281 B
C
Raw Permalink Normal View History

2023-12-12 11:36:42 +01:00
#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