1
0
Fork 0
mutter-performance-source/clutter/clutter-script-private.h
Emmanuele Bassi 76dd06bc7b 2007-10-08 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-script-private.h:
	* clutter/clutter-script.c: Allow defining childrens for every
	container actor inside the UI definition files.
2007-10-08 16:25:10 +00:00

32 lines
585 B
C

#ifndef __CLUTTER_SCRIPT_PRIVATE_H__
#define __CLUTTER_SCRIPT_PRIVATE_H__
#include <glib-object.h>
#include "clutter-script.h"
G_BEGIN_DECLS
typedef GType (* GTypeGetFunc) (void);
typedef struct {
gchar *class_name;
gchar *id;
GList *properties;
GList *children;
GType gtype;
GObject *object;
} ObjectInfo;
typedef struct {
gchar *property_name;
GValue value;
} PropertyInfo;
GObject *clutter_script_construct_object (ClutterScript *script,
ObjectInfo *info);
G_END_DECLS
#endif /* __CLUTTER_SCRIPT_PRIVATE_H__ */