mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 11:32:04 +00:00
76dd06bc7b
* clutter/clutter-script-private.h: * clutter/clutter-script.c: Allow defining childrens for every container actor inside the UI definition files.
33 lines
585 B
C
33 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__ */
|