mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
f8f391ceb9
The DND part of this demo was broken by recent icon theme changes. Make it work again. And make the demo nicer by breaking out a DemoImage widget.
14 lines
235 B
C
14 lines
235 B
C
#pragma once
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define DEMO_TYPE_IMAGE (demo_image_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE(DemoImage, demo_image, DEMO, IMAGE, GtkWidget)
|
|
|
|
GtkWidget * demo_image_new (const char *icon_name);
|
|
|
|
G_END_DECLS
|