6c01499abf
* clutter/Makefile.am: * clutter/clutter.h: * clutter/clutter-scriptable.[ch]: Add the ClutterScriptable interface; by implementing this interface, a class can override the UI definition parsing and transform complex data types into GObject properties, or allow custom properties. * clutter/clutter-script.c: * clutter/clutter-script-parser.c: * clutter/clutter-script-private.h: Rearrange the code and use the ClutterScriptable interface to parse and build the custom properties. This cleans up the code and also it makes it more reliable (the complex type parsing is now done using the target type and not just the name of the property).
104 lines
3.5 KiB
C
104 lines
3.5 KiB
C
/*
|
|
* Clutter.
|
|
*
|
|
* An OpenGL based 'interactive canvas' library.
|
|
*
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
*
|
|
* Copyright (C) 2006 OpenedHand
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __CLUTTER_SCRIPT_PRIVATE_H__
|
|
#define __CLUTTER_SCRIPT_PRIVATE_H__
|
|
|
|
#include <glib-object.h>
|
|
#include "json/json-types.h"
|
|
#include "clutter-types.h"
|
|
#include "clutter-script.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef GType (* GTypeGetFunc) (void);
|
|
|
|
typedef struct {
|
|
gchar *id;
|
|
gchar *class_name;
|
|
gchar *type_func;
|
|
|
|
GList *properties;
|
|
GList *children;
|
|
GList *behaviours;
|
|
|
|
GType gtype;
|
|
GObject *object;
|
|
|
|
guint merge_id;
|
|
|
|
guint is_toplevel : 1;
|
|
guint has_unresolved : 1;
|
|
guint is_unmerged : 1;
|
|
} ObjectInfo;
|
|
|
|
void object_info_free (gpointer data);
|
|
|
|
typedef struct {
|
|
gchar *name;
|
|
JsonNode *node;
|
|
GParamSpec *pspec;
|
|
} PropertyInfo;
|
|
|
|
void property_info_free (gpointer data);
|
|
|
|
gboolean clutter_script_parse_node (ClutterScript *script,
|
|
GValue *value,
|
|
const gchar *name,
|
|
JsonNode *node,
|
|
GParamSpec *pspec);
|
|
|
|
GType clutter_script_get_type_from_symbol (const gchar *symbol);
|
|
GType clutter_script_get_type_from_class (const gchar *name);
|
|
|
|
GObject *clutter_script_construct_object (ClutterScript *script,
|
|
ObjectInfo *info);
|
|
|
|
gboolean clutter_script_enum_from_string (GType gtype,
|
|
const gchar *string,
|
|
gint *enum_value);
|
|
gboolean clutter_script_flags_from_string (GType gtype,
|
|
const gchar *string,
|
|
gint *flags_value);
|
|
|
|
gboolean clutter_script_parse_knot (ClutterScript *script,
|
|
JsonNode *node,
|
|
ClutterKnot *knot);
|
|
gboolean clutter_script_parse_padding (ClutterScript *script,
|
|
JsonNode *node,
|
|
ClutterPadding *padding);
|
|
gboolean clutter_script_parse_margin (ClutterScript *script,
|
|
JsonNode *node,
|
|
ClutterMargin *margin);
|
|
gboolean clutter_script_parse_geometry (ClutterScript *script,
|
|
JsonNode *node,
|
|
ClutterGeometry *geometry);
|
|
GObject *clutter_script_parse_alpha (ClutterScript *script,
|
|
JsonNode *node);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CLUTTER_SCRIPT_PRIVATE_H__ */
|