docs: Fixes for ClutterAnimator

This commit is contained in:
Emmanuele Bassi 2010-02-08 17:37:00 +00:00
parent 9806f78905
commit d62ddc374f
3 changed files with 10 additions and 9 deletions

View File

@ -59,7 +59,7 @@
* </programlisting> * </programlisting>
* </informalexample> * </informalexample>
* <example id="ClutterAnimator-script-example"> * <example id="ClutterAnimator-script-example">
* <title>ClutterAnimator definition<title> * <title>ClutterAnimator definition</title>
* <para>The following JSON fragment defines a #ClutterAnimator * <para>The following JSON fragment defines a #ClutterAnimator
* with the duration of 1 second and operating on the x and y * with the duration of 1 second and operating on the x and y
* properties of a #ClutterActor named "rect-01", with two frames * properties of a #ClutterActor named "rect-01", with two frames

View File

@ -59,8 +59,8 @@ typedef struct _ClutterAnimatorKey ClutterAnimatorKey;
/** /**
* ClutterInterpolation: * ClutterInterpolation:
* @CLUTTER_INTERPOLATION_LINEAR: * @CLUTTER_INTERPOLATION_LINEAR: linear interpolation
* @CLUTTER_INTERPOLATION_CUBIC: * @CLUTTER_INTERPOLATION_CUBIC: cubic interpolation
* *
* The mode of interpolation between key frames * The mode of interpolation between key frames
* *
@ -154,12 +154,12 @@ void clutter_animator_property_set_interpolation (ClutterAnimato
ClutterInterpolation interpolation); ClutterInterpolation interpolation);
GType clutter_animator_key_get_type (void) G_GNUC_CONST; GType clutter_animator_key_get_type (void) G_GNUC_CONST;
GObject * clutter_animator_key_get_object (const ClutterAnimatorKey *animator_key); GObject * clutter_animator_key_get_object (const ClutterAnimatorKey *key);
G_CONST_RETURN gchar *clutter_animator_key_get_property_name (const ClutterAnimatorKey *animator_key); G_CONST_RETURN gchar *clutter_animator_key_get_property_name (const ClutterAnimatorKey *key);
GType clutter_animator_key_get_property_type (const ClutterAnimatorKey *animator_key); GType clutter_animator_key_get_property_type (const ClutterAnimatorKey *key);
gulong clutter_animator_key_get_mode (const ClutterAnimatorKey *animator_key); gulong clutter_animator_key_get_mode (const ClutterAnimatorKey *key);
gdouble clutter_animator_key_get_progress (const ClutterAnimatorKey *animator_key); gdouble clutter_animator_key_get_progress (const ClutterAnimatorKey *key);
gboolean clutter_animator_key_get_value (const ClutterAnimatorKey *animator_key, gboolean clutter_animator_key_get_value (const ClutterAnimatorKey *key,
GValue *value); GValue *value);
G_END_DECLS G_END_DECLS

View File

@ -2044,6 +2044,7 @@ clutter_animator_property_get_interpolation
ClutterAnimatorKey ClutterAnimatorKey
clutter_animator_key_get_object clutter_animator_key_get_object
clutter_animator_key_get_property_name clutter_animator_key_get_property_name
clutter_animator_key_get_property_type
clutter_animator_key_get_mode clutter_animator_key_get_mode
clutter_animator_key_get_progress clutter_animator_key_get_progress
clutter_animator_key_get_value clutter_animator_key_get_value