mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 04:31:09 +00:00
5e2aeee9b0
This is more or less a copy of the layout manager example from clutter.
9 lines
203 B
C
9 lines
203 B
C
#pragma once
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#define DEMO_TYPE_CHILD (demo_child_get_type ())
|
|
G_DECLARE_FINAL_TYPE (DemoChild, demo_child, DEMO, CHILD, GtkWidget)
|
|
|
|
GtkWidget * demo_child_new (const char *color);
|