2.0: Remove all Since: annotations

We're starting from scratch.
This commit is contained in:
Emmanuele Bassi
2012-08-27 09:48:36 +01:00
parent f1846bcb53
commit e3259435f2
218 changed files with 1853 additions and 2038 deletions

View File

@@ -66,7 +66,7 @@ destroy_shader_data (gpointer data)
* Return value: (transfer none): The currently set #ClutterShader
* or %NULL if no shader is set.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use clutter_actor_get_effect() instead.
*/
@@ -100,7 +100,7 @@ clutter_actor_get_shader (ClutterActor *self)
* Return value: %TRUE if the shader was successfully applied
* or removed
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect and
* clutter_actor_add_effect() instead.
@@ -242,7 +242,7 @@ clutter_actor_set_shader_param_internal (ClutterActor *self,
* Sets the value for a named parameter of the shader applied
* to @actor.
*
* Since: 1.0
*
*
* Deprecated: 1.8: Use clutter_shader_effect_set_uniform_value() instead
*/
@@ -271,7 +271,7 @@ clutter_actor_set_shader_param (ClutterActor *self,
* Sets the value for a named float parameter of the shader applied
* to @actor.
*
* Since: 0.8
*
*
* Deprecated: 1.8: Use clutter_shader_effect_set_uniform() instead
*/
@@ -299,7 +299,7 @@ clutter_actor_set_shader_param_float (ClutterActor *self,
* Sets the value for a named int parameter of the shader applied to
* @actor.
*
* Since: 0.8
*
*
* Deprecated: 1.8: Use clutter_shader_effect_set_uniform() instead
*/
@@ -389,7 +389,7 @@ clutter_actor_get_geometry (ClutterActor *self,
*
* The returned rectangle is in pixels.
*
* Since: 0.8
*
*
* Deprecated: 1.12: Use clutter_actor_get_allocation_box() instead.
*/

View File

@@ -346,7 +346,7 @@ clutter_alpha_class_init (ClutterAlphaClass *klass)
*
* A #ClutterTimeline instance used to drive the alpha function.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -364,7 +364,7 @@ clutter_alpha_class_init (ClutterAlphaClass *klass)
* interval is 0.0 to 1.0, but the Alpha allows overshooting by
* one unit in each direction, so the valid interval is -1.0 to 2.0.
*
* Since: 0.2
*
* Deprecated: 1.12
*/
obj_props[PROP_ALPHA] =
@@ -386,7 +386,7 @@ clutter_alpha_class_init (ClutterAlphaClass *klass)
* clutter_alpha_set_closure() or clutter_alpha_set_func()
* will be used.
*
* Since: 1.0
*
* Deprecated: 1.12
*/
obj_props[PROP_MODE] =
@@ -421,7 +421,7 @@ clutter_alpha_init (ClutterAlpha *self)
*
* Return Value: The current alpha value for the alpha
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -512,7 +512,7 @@ clutter_alpha_set_closure_internal (ClutterAlpha *alpha,
* Sets the #GClosure used to compute the alpha value at each
* frame of the #ClutterTimeline bound to @alpha.
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -546,7 +546,7 @@ clutter_alpha_set_closure (ClutterAlpha *alpha,
*
* This function will not register @func as a global alpha function.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -589,7 +589,7 @@ clutter_alpha_set_func (ClutterAlpha *alpha,
*
* Binds @alpha to @timeline.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -637,7 +637,7 @@ clutter_alpha_set_timeline (ClutterAlpha *alpha,
*
* Return value: (transfer none): a #ClutterTimeline instance
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -662,7 +662,7 @@ clutter_alpha_get_timeline (ClutterAlpha *alpha)
*
* Return value: the newly created empty #ClutterAlpha instance.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -684,7 +684,7 @@ clutter_alpha_new (void)
*
* Return Value: the newly created #ClutterAlpha
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -717,7 +717,7 @@ clutter_alpha_new_full (ClutterTimeline *timeline,
*
* Return value: the newly created #ClutterAlpha
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -747,7 +747,7 @@ clutter_alpha_new_with_func (ClutterTimeline *timeline,
*
* Return value: the animation mode
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -796,7 +796,7 @@ clutter_alpha_easing_func (ClutterAlpha *alpha,
* of @mode, as taken by the #ClutterAnimationMode enumeration or
* using the value returned by clutter_alpha_register_func().
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -905,7 +905,7 @@ register_alpha_internal (AlphaData *alpha_data)
*
* Return value: the logical id of the alpha function
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -940,7 +940,7 @@ clutter_alpha_register_func (ClutterAlphaFunc func,
*
* Return value: the logical id of the alpha function
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/

View File

@@ -57,7 +57,7 @@ typedef struct _ClutterAlphaPrivate ClutterAlphaPrivate;
*
* Return value: a floating point value
*
* Since: 0.2
*
*/
typedef gdouble (*ClutterAlphaFunc) (ClutterAlpha *alpha,
gpointer user_data);
@@ -69,7 +69,7 @@ typedef gdouble (*ClutterAlphaFunc) (ClutterAlpha *alpha,
* The contents of the #ClutterAlpha structure are private and should
* only be accessed using the provided API.
*
* Since: 0.2
*
*/
struct _ClutterAlpha
{
@@ -84,7 +84,7 @@ struct _ClutterAlpha
*
* Base class for #ClutterAlpha
*
* Since: 0.2
*
*/
struct _ClutterAlphaClass
{

View File

@@ -503,7 +503,7 @@ clutter_animation_class_init (ClutterAnimationClass *klass)
*
* The #GObject to which the animation applies.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
obj_props[PROP_OBJECT] =
@@ -520,7 +520,7 @@ clutter_animation_class_init (ClutterAnimationClass *klass)
* or a value returned by clutter_alpha_register_func(). The
* default value is %CLUTTER_LINEAR.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
obj_props[PROP_MODE] =
@@ -536,7 +536,7 @@ clutter_animation_class_init (ClutterAnimationClass *klass)
*
* The duration of the animation, expressed in milliseconds.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
obj_props[PROP_DURATION] =
@@ -552,7 +552,7 @@ clutter_animation_class_init (ClutterAnimationClass *klass)
*
* Whether the animation should loop.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
obj_props[PROP_LOOP] =
@@ -567,7 +567,7 @@ clutter_animation_class_init (ClutterAnimationClass *klass)
*
* The #ClutterTimeline used by the animation.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
obj_props[PROP_TIMELINE] =
@@ -582,7 +582,7 @@ clutter_animation_class_init (ClutterAnimationClass *klass)
*
* The #ClutterAlpha used by the animation.
*
* Since: 1.0
*
*
* Deprecated: 1.10: Use the #ClutterAnimation:timeline property and
* the #ClutterTimeline:progress-mode property instead.
@@ -605,7 +605,7 @@ clutter_animation_class_init (ClutterAnimationClass *klass)
* The ::started signal is emitted once the animation has been
* started
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
animation_signals[STARTED] =
@@ -627,7 +627,7 @@ clutter_animation_class_init (ClutterAnimationClass *klass)
* The @animation instance is guaranteed to be valid for the entire
* duration of the signal emission chain.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
animation_signals[COMPLETED] =
@@ -781,7 +781,7 @@ clutter_animation_validate_bind (ClutterAnimation *animation,
* clutter_animation_update_interval() instead.
*
* Return value: (transfer none): The animation itself.
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
ClutterAnimation *
@@ -823,7 +823,7 @@ clutter_animation_bind_interval (ClutterAnimation *animation,
*
* Return value: (transfer none): The animation itself.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
ClutterAnimation *
@@ -893,7 +893,7 @@ clutter_animation_bind (ClutterAnimation *animation,
*
* Removes @property_name from the list of animated properties.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
void
@@ -928,7 +928,7 @@ clutter_animation_unbind_property (ClutterAnimation *animation,
* Return value: %TRUE if the property is animated by the
* #ClutterAnimation, %FALSE otherwise
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
gboolean
@@ -954,7 +954,7 @@ clutter_animation_has_property (ClutterAnimation *animation,
* Changes the @interval for @property_name. The #ClutterAnimation
* will take ownership of the passed #ClutterInterval.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
void
@@ -1032,7 +1032,7 @@ clutter_animation_update_interval (ClutterAnimation *animation,
*
* Return value: (transfer none): The animation itself.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
ClutterAnimation *
@@ -1088,7 +1088,7 @@ clutter_animation_update (ClutterAnimation *animation,
* property with the same name was found. The returned interval is
* owned by the #ClutterAnimation and should not be unreferenced
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
ClutterInterval *
@@ -1351,7 +1351,7 @@ out:
* Return value: the newly created #ClutterAnimation. Use g_object_unref()
* to release the associated resources
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
ClutterAnimation *
@@ -1368,7 +1368,7 @@ clutter_animation_new (void)
* Attaches @animation to @object. The #ClutterAnimation will take a
* reference on @object.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
void
@@ -1404,7 +1404,7 @@ clutter_animation_set_object (ClutterAnimation *animation,
*
* Return value: (transfer none): a #GObject
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
GObject *
@@ -1426,7 +1426,7 @@ clutter_animation_get_object (ClutterAnimation *animation)
*
* This function will also set #ClutterAnimation:alpha if needed.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
void
@@ -1471,7 +1471,7 @@ clutter_animation_set_mode (ClutterAnimation *animation,
*
* Return value: the mode for the animation
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
gulong
@@ -1499,7 +1499,7 @@ clutter_animation_get_mode (ClutterAnimation *animation)
* This function will set #ClutterAnimation:alpha and
* #ClutterAnimation:timeline if needed.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
void
@@ -1534,7 +1534,7 @@ clutter_animation_set_duration (ClutterAnimation *animation,
* This function will set #ClutterAnimation:alpha and
* #ClutterAnimation:timeline if needed.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
void
@@ -1563,7 +1563,7 @@ clutter_animation_set_loop (ClutterAnimation *animation,
*
* Return value: %TRUE if the animation is looping
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
gboolean
@@ -1586,7 +1586,7 @@ clutter_animation_get_loop (ClutterAnimation *animation)
*
* Return value: the duration of the animation
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
guint
@@ -1611,7 +1611,7 @@ clutter_animation_get_duration (ClutterAnimation *animation)
*
* This function will take a reference on the passed @timeline.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
void
@@ -1694,7 +1694,7 @@ clutter_animation_set_timeline (ClutterAnimation *animation,
*
* Return value: (transfer none): the timeline used by the animation
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
ClutterTimeline *
@@ -1715,7 +1715,7 @@ clutter_animation_get_timeline (ClutterAnimation *animation)
* If @alpha is not %NULL, the #ClutterAnimation will take ownership
* of the #ClutterAlpha instance.
*
* Since: 1.0
*
*
* Deprecated: 1.10: Use clutter_animation_get_timeline() and
* clutter_timeline_set_progress_mode() instead.
@@ -1738,7 +1738,7 @@ clutter_animation_set_alpha (ClutterAnimation *animation,
*
* Return value: (transfer none): the alpha object used by the animation
*
* Since: 1.0
*
*
* Deprecated: 1.10: Use clutter_animation_get_timeline() and
* clutter_timeline_get_progress_mode() instead.
@@ -1764,7 +1764,7 @@ clutter_animation_get_alpha (ClutterAnimation *animation)
* or unless a reference was taken inside a handler for the
* #ClutterAnimation::completed signal
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterPropertyTransition instead
*/
void
@@ -2130,7 +2130,7 @@ animation_create_for_actor (ClutterActor *actor)
* Return value: (transfer none): a #ClutterAnimation object. The object is owned by the
* #ClutterActor and should not be unreferenced with g_object_unref()
*
* Since: 1.0
*
*
* Deprecated: 1.10: Use clutter_actor_animate_with_timeline() instead
*/
@@ -2190,7 +2190,7 @@ clutter_actor_animate_with_alpha (ClutterActor *actor,
* owned by the #ClutterActor and should not be unreferenced with
* g_object_unref()
*
* Since: 1.0
*
* Deprecated: 1.12: Use the implicit transition for animatable properties
* in #ClutterActor instead.
*/
@@ -2377,7 +2377,7 @@ clutter_actor_animate_with_timeline (ClutterActor *actor,
* owned by the #ClutterActor and should not be unreferenced with
* g_object_unref()
*
* Since: 1.0
*
* Deprecated: 1.12: Use the implicit transition for animatable properties
* in #ClutterActor instead.
*/
@@ -2434,7 +2434,7 @@ clutter_actor_animate (ClutterActor *actor,
* owned by the #ClutterActor and should not be unreferenced with
* g_object_unref()
*
* Since: 1.0
*
* Deprecated: 1.12: Use the implicit transition for animatable properties
* in #ClutterActor instead.
*/
@@ -2493,7 +2493,7 @@ clutter_actor_animatev (ClutterActor *actor,
* owned by the #ClutterActor and should not be unreferenced with
* g_object_unref()
*
* Since: 1.0
*
* Deprecated: 1.12: Use the implicit transition for animatable properties
* in #ClutterActor instead.
*/
@@ -2549,7 +2549,7 @@ clutter_actor_animate_with_timelinev (ClutterActor *actor,
* Return value: (transfer none): a #ClutterAnimation object. The object is owned by the
* #ClutterActor and should not be unreferenced with g_object_unref()
*
* Since: 1.0
*
*
* Deprecated: 1.10: Use clutter_actor_animate_with_timelinev() instead
*/
@@ -2593,7 +2593,7 @@ clutter_actor_animate_with_alphav (ClutterActor *actor,
*
* Return value: (transfer none): a #ClutterAnimation, or %NULL
*
* Since: 1.0
*
* Deprecated: 1.12: Use the implicit transition for animatable properties
* in #ClutterActor instead, and clutter_actor_get_transition() to retrieve
* the transition.
@@ -2618,7 +2618,7 @@ clutter_actor_get_animation (ClutterActor *actor)
*
* The #ClutterAnimation::completed signal will not be emitted.
*
* Since: 1.4
*
* Deprecated: 1.12: Use the implicit transition for animatable properties
* in #ClutterActor instead, and clutter_actor_remove_transition() to
* remove the transition.

View File

@@ -49,7 +49,7 @@ typedef struct _ClutterAnimationClass ClutterAnimationClass;
* The #ClutterAnimation structure contains only private data and should
* be accessed using the provided functions.
*
* Since: 1.0
*
*/
struct _ClutterAnimation
{
@@ -67,7 +67,7 @@ struct _ClutterAnimation
* The #ClutterAnimationClass structure contains only private data and
* should be accessed using the provided functions.
*
* Since: 1.0
*
*/
struct _ClutterAnimationClass
{

View File

@@ -212,7 +212,7 @@ G_DEFINE_TYPE_WITH_CODE (ClutterAnimator,
*
* Return value: a new #ClutterAnimator.
*
* Since: 1.2
*
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
@@ -860,7 +860,7 @@ animation_animator_started (ClutterTimeline *timeline,
* an error occurs or the progress is before any of the keys) %FALSE is
* returned and the #GValue is left untouched
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
gboolean
@@ -1041,7 +1041,7 @@ clutter_animator_compute_value (ClutterAnimator *animator,
*
* Sets an external timeline that will be used for driving the animation
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
void
@@ -1087,7 +1087,7 @@ clutter_animator_set_timeline (ClutterAnimator *animator,
*
* Return value: (transfer none): the #ClutterTimeline that drives the animator
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
ClutterTimeline *
@@ -1108,7 +1108,7 @@ clutter_animator_get_timeline (ClutterAnimator *animator)
* the animator. The returned timeline is owned by the #ClutterAnimator
* and it should not be unreferenced
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
ClutterTimeline *
@@ -1134,7 +1134,7 @@ clutter_animator_start (ClutterAnimator *animator)
* Runs the timeline of the #ClutterAnimator with a duration in msecs
* as specified.
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
void
@@ -1154,7 +1154,7 @@ clutter_animator_set_duration (ClutterAnimator *animator,
*
* Return value: the duration of the animation, in milliseconds
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
guint
@@ -1185,7 +1185,7 @@ clutter_animator_get_duration (ClutterAnimator *animator)
* If a given (object, property, progress) tuple already exist the mode and
* value will be replaced with the new values.
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
void
@@ -1330,7 +1330,7 @@ clutter_animator_set_key_internal (ClutterAnimator *animator,
*
* Return value: (transfer none): The animator instance
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
ClutterAnimator *
@@ -1380,7 +1380,7 @@ clutter_animator_set_key (ClutterAnimator *animator,
* by the #ClutterAnimator, but you should free the returned list when done,
* using g_list_free()
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
GList *
@@ -1489,7 +1489,7 @@ again:
*
* Removes all keys matching the conditions specificed in the arguments.
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
void
@@ -1796,7 +1796,7 @@ clutter_animator_class_init (ClutterAnimatorClass *klass)
* The duration of the #ClutterTimeline used by the #ClutterAnimator
* to drive the animation
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
obj_props[PROP_DURATION] =
@@ -1813,7 +1813,7 @@ clutter_animator_class_init (ClutterAnimatorClass *klass)
* The #ClutterTimeline used by the #ClutterAnimator to drive the
* animation
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
obj_props[PROP_TIMELINE] =
@@ -1859,7 +1859,7 @@ clutter_animator_init (ClutterAnimator *animator)
*
* Return value: %TRUE if the property is eased in
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
gboolean
@@ -1897,7 +1897,7 @@ clutter_animator_property_get_ease_in (ClutterAnimator *animator,
*
* Sets whether a property value is to be eased into the animation.
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
void
@@ -1940,7 +1940,7 @@ clutter_animator_property_set_ease_in (ClutterAnimator *animator,
* object.
*
* Returns: a ClutterInterpolation value.
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
ClutterInterpolation
@@ -1984,7 +1984,7 @@ clutter_animator_property_get_interpolation (ClutterAnimator *animator,
* %CLUTTER_INTERPOLATION_CUBIC causes the values to smoothly change between
* the values.
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
void
@@ -2023,7 +2023,7 @@ G_DEFINE_BOXED_TYPE (ClutterAnimatorKey, clutter_animator_key,
*
* Return value: (transfer none): the object an animator_key exist for.
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
GObject *
@@ -2042,7 +2042,7 @@ clutter_animator_key_get_object (const ClutterAnimatorKey *key)
*
* Return value: the name of the property an animator_key exist for.
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
const gchar *
@@ -2064,7 +2064,7 @@ clutter_animator_key_get_property_name (const ClutterAnimatorKey *key)
*
* Return value: the #GType of the property
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
GType
@@ -2086,7 +2086,7 @@ clutter_animator_key_get_property_type (const ClutterAnimatorKey *key)
*
* Return value: the mode of a #ClutterAnimatorKey
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
gulong
@@ -2105,7 +2105,7 @@ clutter_animator_key_get_mode (const ClutterAnimatorKey *key)
*
* Return value: the progress defined for a #ClutterAnimator key.
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
gdouble
@@ -2132,7 +2132,7 @@ clutter_animator_key_get_progress (const ClutterAnimatorKey *key)
* Return value: %TRUE if the passed #GValue was successfully set, and
* %FALSE otherwise
*
* Since: 1.2
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition instead
*/
gboolean

View File

@@ -53,7 +53,7 @@ typedef struct _ClutterAnimatorPrivate ClutterAnimatorPrivate;
*
* A key frame inside a #ClutterAnimator
*
* Since: 1.2
*
*/
typedef struct _ClutterAnimatorKey ClutterAnimatorKey;
@@ -63,7 +63,7 @@ typedef struct _ClutterAnimatorKey ClutterAnimatorKey;
* The #ClutterAnimator structure contains only private data and
* should be accessed using the provided API
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -80,7 +80,7 @@ struct _ClutterAnimator
*
* The #ClutterAnimatorClass structure contains only private data
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/

View File

@@ -172,7 +172,7 @@ clutter_behaviour_depth_class_init (ClutterBehaviourDepthClass *klass)
*
* Start depth level to apply to the actors.
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -188,7 +188,7 @@ clutter_behaviour_depth_class_init (ClutterBehaviourDepthClass *klass)
*
* End depth level to apply to the actors.
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -224,7 +224,7 @@ clutter_behaviour_depth_init (ClutterBehaviourDepth *depth)
*
* Return value: (transfer full): the newly created behaviour
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -250,7 +250,7 @@ clutter_behaviour_depth_new (ClutterAlpha *alpha,
*
* Sets the boundaries of the @behaviour.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/
@@ -290,7 +290,7 @@ clutter_behaviour_depth_set_bounds (ClutterBehaviourDepth *behaviour,
*
* Gets the boundaries of the @behaviour
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/

View File

@@ -51,7 +51,7 @@ typedef struct _ClutterBehaviourDepthClass ClutterBehaviourDepthClass;
* The #ClutterBehaviourDepth structure contains only private data
* and should be accessed using the provided API
*
* Since: 0.2
*
*
* Deprecated: 1.6: Use clutter_actor_animate() with #ClutterActor:depth
* instead.
@@ -69,7 +69,7 @@ struct _ClutterBehaviourDepth
*
* The #ClutterBehaviourDepthClass structure contains only private data
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/

View File

@@ -40,7 +40,7 @@
* Deprecated: 1.6: Use clutter_actor_animate(), #ClutterPath and a
* #ClutterPathConstraint instead.
*
* Since: 0.4
*
*/
#ifdef HAVE_CONFIG_H
@@ -395,7 +395,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* The initial angle from where the rotation should start.
*
* Since: 0.4
*
*/
pspec = g_param_spec_double ("angle-start",
P_("Start Angle"),
@@ -411,7 +411,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* The final angle to where the rotation should end.
*
* Since: 0.4
*
*/
pspec = g_param_spec_double ("angle-end",
P_("End Angle"),
@@ -427,7 +427,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* The tilt angle for the rotation around center in X axis
*
* Since: 0.4
*
*/
pspec = g_param_spec_double ("angle-tilt-x",
P_("Angle x tilt"),
@@ -443,7 +443,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* The tilt angle for the rotation around center in Y axis
*
* Since: 0.4
*
*/
pspec = g_param_spec_double ("angle-tilt-y",
P_("Angle y tilt"),
@@ -459,7 +459,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* The tilt angle for the rotation on the Z axis
*
* Since: 0.4
*
*/
pspec = g_param_spec_double ("angle-tilt-z",
P_("Angle z tilt"),
@@ -475,7 +475,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* Width of the ellipse, in pixels
*
* Since: 0.4
*
*/
pspec = g_param_spec_int ("width",
P_("Width"),
@@ -491,7 +491,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* Height of the ellipse, in pixels
*
* Since: 0.4
*
*/
pspec = g_param_spec_int ("height",
P_("Height"),
@@ -507,7 +507,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* The center of the ellipse.
*
* Since: 0.4
*
*/
pspec = g_param_spec_boxed ("center",
P_("Center"),
@@ -522,7 +522,7 @@ clutter_behaviour_ellipse_class_init (ClutterBehaviourEllipseClass *klass)
*
* The direction of the rotation.
*
* Since: 0.4
*
*/
pspec = g_param_spec_enum ("direction",
P_("Direction"),
@@ -578,7 +578,7 @@ clutter_behaviour_ellipse_init (ClutterBehaviourEllipse * self)
*
* Return value: the newly created #ClutterBehaviourEllipse
*
* Since: 0.4
*
*/
ClutterBehaviour *
clutter_behaviour_ellipse_new (ClutterAlpha *alpha,
@@ -616,7 +616,7 @@ clutter_behaviour_ellipse_new (ClutterAlpha *alpha,
*
* Sets the center of the elliptical path to the point represented by knot.
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_set_center (ClutterBehaviourEllipse *self,
@@ -646,7 +646,7 @@ clutter_behaviour_ellipse_set_center (ClutterBehaviourEllipse *self,
*
* Gets the center of the elliptical path path.
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_get_center (ClutterBehaviourEllipse *self,
@@ -674,7 +674,7 @@ clutter_behaviour_ellipse_get_center (ClutterBehaviourEllipse *self,
*
* Sets the width of the elliptical path.
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_set_width (ClutterBehaviourEllipse *self,
@@ -702,7 +702,7 @@ clutter_behaviour_ellipse_set_width (ClutterBehaviourEllipse *self,
*
* Return value: the width of the path
*
* Since: 0.4
*
*/
gint
clutter_behaviour_ellipse_get_width (ClutterBehaviourEllipse *self)
@@ -719,7 +719,7 @@ clutter_behaviour_ellipse_get_width (ClutterBehaviourEllipse *self)
*
* Sets the height of the elliptical path.
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_set_height (ClutterBehaviourEllipse *self,
@@ -747,7 +747,7 @@ clutter_behaviour_ellipse_set_height (ClutterBehaviourEllipse *self,
*
* Return value: the height of the path
*
* Since: 0.4
*
*/
gint
clutter_behaviour_ellipse_get_height (ClutterBehaviourEllipse *self)
@@ -765,7 +765,7 @@ clutter_behaviour_ellipse_get_height (ClutterBehaviourEllipse *self)
* Sets the angle at which movement starts; angles >= 360 degress get clamped
* to the canonical interval <0, 360).
*
* Since: 0.6
*
*/
void
clutter_behaviour_ellipse_set_angle_start (ClutterBehaviourEllipse *self,
@@ -795,7 +795,7 @@ clutter_behaviour_ellipse_set_angle_start (ClutterBehaviourEllipse *self,
*
* Return value: angle in degrees
*
* Since: 0.6
*
*/
gdouble
clutter_behaviour_ellipse_get_angle_start (ClutterBehaviourEllipse *self)
@@ -813,7 +813,7 @@ clutter_behaviour_ellipse_get_angle_start (ClutterBehaviourEllipse *self)
* Sets the angle at which movement ends; angles >= 360 degress get clamped
* to the canonical interval <0, 360).
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_set_angle_end (ClutterBehaviourEllipse *self,
@@ -844,7 +844,7 @@ clutter_behaviour_ellipse_set_angle_end (ClutterBehaviourEllipse *self,
*
* Return value: angle in degrees
*
* Since: 0.4
*
*/
gdouble
clutter_behaviour_ellipse_get_angle_end (ClutterBehaviourEllipse *self)
@@ -863,7 +863,7 @@ clutter_behaviour_ellipse_get_angle_end (ClutterBehaviourEllipse *self)
*
* Sets the angle at which the ellipse should be tilted around it's center.
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_set_angle_tilt (ClutterBehaviourEllipse *self,
@@ -916,7 +916,7 @@ clutter_behaviour_ellipse_set_angle_tilt (ClutterBehaviourEllipse *self,
*
* Return value: angle in degrees.
*
* Since: 0.4
*
*/
gdouble
clutter_behaviour_ellipse_get_angle_tilt (ClutterBehaviourEllipse *self,
@@ -948,7 +948,7 @@ clutter_behaviour_ellipse_get_angle_tilt (ClutterBehaviourEllipse *self,
*
* Sets the angles at which the ellipse should be tilted around it's center.
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_set_tilt (ClutterBehaviourEllipse *self,
@@ -997,7 +997,7 @@ clutter_behaviour_ellipse_set_tilt (ClutterBehaviourEllipse *self,
*
* Gets the tilt of the ellipse around the center in Y axis.
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_get_tilt (ClutterBehaviourEllipse *self,
@@ -1029,7 +1029,7 @@ clutter_behaviour_ellipse_get_tilt (ClutterBehaviourEllipse *self,
*
* Return value: the rotation direction
*
* Since: 0.4
*
*/
ClutterRotateDirection
clutter_behaviour_ellipse_get_direction (ClutterBehaviourEllipse *self)
@@ -1047,7 +1047,7 @@ clutter_behaviour_ellipse_get_direction (ClutterBehaviourEllipse *self)
*
* Sets the rotation direction used by the ellipse behaviour.
*
* Since: 0.4
*
*/
void
clutter_behaviour_ellipse_set_direction (ClutterBehaviourEllipse *self,

View File

@@ -64,7 +64,7 @@ typedef struct _ClutterBehaviourEllipseClass ClutterBehaviourEllipseClass;
* The #ClutterBehaviourEllipse struct contains only private data
* and should be accessed using the provided API
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -80,7 +80,7 @@ struct _ClutterBehaviourEllipse
*
* The #ClutterBehaviourEllipseClass struct contains only private data
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/

View File

@@ -29,7 +29,7 @@
*
* #ClutterBehaviourOpacity controls the opacity of a set of actors.
*
* Since: 0.2
*
*
* Deprecated: 1.6: Use the #ClutterActor:opacity property and
* clutter_actor_animate(), or #ClutterAnimator, or #ClutterState
@@ -176,7 +176,7 @@ clutter_behaviour_opacity_class_init (ClutterBehaviourOpacityClass *klass)
*
* Initial opacity level of the behaviour.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -194,7 +194,7 @@ clutter_behaviour_opacity_class_init (ClutterBehaviourOpacityClass *klass)
*
* Final opacity level of the behaviour.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -235,7 +235,7 @@ clutter_behaviour_opacity_init (ClutterBehaviourOpacity *self)
*
* Return value: the newly created #ClutterBehaviourOpacity
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -260,7 +260,7 @@ clutter_behaviour_opacity_new (ClutterAlpha *alpha,
* Sets the initial and final levels of the opacity applied by @behaviour
* on each actor it controls.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/
@@ -303,7 +303,7 @@ clutter_behaviour_opacity_set_bounds (ClutterBehaviourOpacity *behaviour,
* Gets the initial and final levels of the opacity applied by @behaviour
* on each actor it controls.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/

View File

@@ -66,7 +66,7 @@ typedef struct _ClutterBehaviourOpacityClass ClutterBehaviourOpacityClass;
* The #ClutterBehaviourOpacity structure contains only private data and
* should be accessed using the provided API
*
* Since: 0.2
*
*
* Deprecated: 1.6: Use clutter_actor_animate() and #ClutterActor:opacity
* instead.
@@ -83,7 +83,7 @@ struct _ClutterBehaviourOpacity
*
* The #ClutterBehaviourOpacityClass structure contains only private data
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/

View File

@@ -238,7 +238,7 @@ clutter_behaviour_path_class_init (ClutterBehaviourPathClass *klass)
* This signal is emitted each time a node defined inside the path
* is reached.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -335,7 +335,7 @@ clutter_behaviour_path_init (ClutterBehaviourPath *self)
*
* Return value: (transfer full): a #ClutterBehaviour
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -363,7 +363,7 @@ clutter_behaviour_path_new (ClutterAlpha *alpha,
*
* Return value: (transfer full): a #ClutterBehaviour
*
* Since: 1.0
*
*
* Deprecated: 1.6
*/
@@ -396,7 +396,7 @@ clutter_behaviour_path_new_with_description (ClutterAlpha *alpha,
*
* Return value: (transfer full): a #ClutterBehaviour
*
* Since: 1.0
*
*
* Deprecated: 1.6
*/
@@ -431,7 +431,7 @@ clutter_behaviour_path_new_with_knots (ClutterAlpha *alpha,
* floating reference on the #ClutterPath so you do not need to unref
* it.
*
* Since: 1.0
*
*
* Deprecated: 1.6
*/
@@ -464,7 +464,7 @@ clutter_behaviour_path_set_path (ClutterBehaviourPath *pathb,
*
* Return value: (transfer none): the path
*
* Since: 1.0
*
*
* Deprecated: 1.6
*/

View File

@@ -67,7 +67,7 @@ typedef struct _ClutterBehaviourPathClass ClutterBehaviourPathClass;
* The #ClutterBehaviourPath structure contains only private data
* and should be accessed using the provided API
*
* Since: 0.2
*
*
* Deprecated: 1.6: Use #ClutterPathConstraint and clutter_actor_animate()
* instead.
@@ -86,7 +86,7 @@ struct _ClutterBehaviourPath
*
* The #ClutterBehaviourPathClass struct contains only private data
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/

View File

@@ -277,7 +277,7 @@ clutter_behaviour_rotate_class_init (ClutterBehaviourRotateClass *klass)
*
* The initial angle from whence the rotation should start.
*
* Since: 0.4
*
*/
pspec = g_param_spec_double ("angle-start",
P_("Angle Begin"),
@@ -295,7 +295,7 @@ clutter_behaviour_rotate_class_init (ClutterBehaviourRotateClass *klass)
*
* The final angle to where the rotation should end.
*
* Since: 0.4
*
*/
pspec = g_param_spec_double ("angle-end",
P_("Angle End"),
@@ -313,7 +313,7 @@ clutter_behaviour_rotate_class_init (ClutterBehaviourRotateClass *klass)
*
* The axis of rotation.
*
* Since: 0.4
*
*/
pspec = g_param_spec_enum ("axis",
P_("Axis"),
@@ -331,7 +331,7 @@ clutter_behaviour_rotate_class_init (ClutterBehaviourRotateClass *klass)
*
* The direction of the rotation.
*
* Since: 0.4
*
*/
pspec = g_param_spec_enum ("direction",
P_("Direction"),
@@ -349,7 +349,7 @@ clutter_behaviour_rotate_class_init (ClutterBehaviourRotateClass *klass)
*
* The x center of rotation.
*
* Since: 0.4
*
*/
pspec = g_param_spec_int ("center-x",
P_("Center X"),
@@ -367,7 +367,7 @@ clutter_behaviour_rotate_class_init (ClutterBehaviourRotateClass *klass)
*
* The y center of rotation.
*
* Since: 0.4
*
*/
pspec = g_param_spec_int ("center-y",
P_("Center Y"),
@@ -385,7 +385,7 @@ clutter_behaviour_rotate_class_init (ClutterBehaviourRotateClass *klass)
*
* The z center of rotation.
*
* Since: 0.4
*
*/
pspec = g_param_spec_int ("center-z",
P_("Center Z"),
@@ -435,7 +435,7 @@ clutter_behaviour_rotate_init (ClutterBehaviourRotate *rotate)
*
* Return value: the newly created #ClutterBehaviourRotate.
*
* Since: 0.4
*
*/
ClutterBehaviour *
clutter_behaviour_rotate_new (ClutterAlpha *alpha,
@@ -463,7 +463,7 @@ clutter_behaviour_rotate_new (ClutterAlpha *alpha,
*
* Return value: the rotation axis
*
* Since: 0.4
*
*/
ClutterRotateAxis
clutter_behaviour_rotate_get_axis (ClutterBehaviourRotate *rotate)
@@ -480,7 +480,7 @@ clutter_behaviour_rotate_get_axis (ClutterBehaviourRotate *rotate)
*
* Sets the axis used by the rotate behaviour.
*
* Since: 0.4
*
*/
void
clutter_behaviour_rotate_set_axis (ClutterBehaviourRotate *rotate,
@@ -508,7 +508,7 @@ clutter_behaviour_rotate_set_axis (ClutterBehaviourRotate *rotate,
*
* Return value: the rotation direction
*
* Since: 0.4
*
*/
ClutterRotateDirection
clutter_behaviour_rotate_get_direction (ClutterBehaviourRotate *rotate)
@@ -526,7 +526,7 @@ clutter_behaviour_rotate_get_direction (ClutterBehaviourRotate *rotate)
*
* Sets the rotation direction used by the rotate behaviour.
*
* Since: 0.4
*
*/
void
clutter_behaviour_rotate_set_direction (ClutterBehaviourRotate *rotate,
@@ -554,7 +554,7 @@ clutter_behaviour_rotate_set_direction (ClutterBehaviourRotate *rotate,
*
* Retrieves the rotation boundaries of the rotate behaviour.
*
* Since: 0.4
*
*/
void
clutter_behaviour_rotate_get_bounds (ClutterBehaviourRotate *rotate,
@@ -583,7 +583,7 @@ clutter_behaviour_rotate_get_bounds (ClutterBehaviourRotate *rotate,
* Sets the initial and final angles of a rotation behaviour; angles >= 360
* degrees get clamped to the canonical interval <0, 360).
*
* Since: 0.4
*
*/
void
clutter_behaviour_rotate_set_bounds (ClutterBehaviourRotate *rotate,
@@ -625,7 +625,7 @@ clutter_behaviour_rotate_set_bounds (ClutterBehaviourRotate *rotate,
* Sets the center of rotation. The coordinates are relative to the plane
* normal to the rotation axis set with clutter_behaviour_rotate_set_axis().
*
* Since: 0.4
*
*/
void
clutter_behaviour_rotate_set_center (ClutterBehaviourRotate *rotate,
@@ -672,7 +672,7 @@ clutter_behaviour_rotate_set_center (ClutterBehaviourRotate *rotate,
* Retrieves the center of rotation set using
* clutter_behaviour_rotate_set_center().
*
* Since: 0.4
*
*/
void
clutter_behaviour_rotate_get_center (ClutterBehaviourRotate *rotate,

View File

@@ -49,7 +49,7 @@ typedef struct _ClutterBehaviourRotateClass ClutterBehaviourRotateClass;
* The #ClutterBehaviourRotate struct contains only private data and
* should be accessed using the provided API
*
* Since: 0.4
*
*
* Deprecated: 1.6: Use clutter_actor_animate() instead.
*/
@@ -66,7 +66,7 @@ struct _ClutterBehaviourRotate
*
* The #ClutterBehaviourRotateClass struct contains only private data
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/

View File

@@ -218,7 +218,7 @@ clutter_behaviour_scale_class_init (ClutterBehaviourScaleClass *klass)
*
* The initial scaling factor on the X axis for the actors.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/
@@ -237,7 +237,7 @@ clutter_behaviour_scale_class_init (ClutterBehaviourScaleClass *klass)
*
* The final scaling factor on the X axis for the actors.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/
@@ -256,7 +256,7 @@ clutter_behaviour_scale_class_init (ClutterBehaviourScaleClass *klass)
*
* The initial scaling factor on the Y axis for the actors.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/
@@ -275,7 +275,7 @@ clutter_behaviour_scale_class_init (ClutterBehaviourScaleClass *klass)
*
* The final scaling factor on the Y axis for the actors.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/
@@ -320,7 +320,7 @@ clutter_behaviour_scale_init (ClutterBehaviourScale *self)
*
* Return value: (transfer full): the newly created #ClutterBehaviourScale
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -352,7 +352,7 @@ clutter_behaviour_scale_new (ClutterAlpha *alpha,
*
* Sets the bounds used by scale behaviour.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/
@@ -412,7 +412,7 @@ clutter_behaviour_scale_set_bounds (ClutterBehaviourScale *scale,
*
* Retrieves the bounds used by scale behaviour.
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/

View File

@@ -51,7 +51,7 @@ typedef struct _ClutterBehaviourScaleClass ClutterBehaviourScaleClass;
* The #ClutterBehaviourScale struct contains only private data and
* should be accessed using the provided API
*
* Since: 0.2
*
*
* Deprecated: 1.6: Use clutter_actor_animate() with #ClutterActor:scale-x
* and #ClutterActor:scale-y instead.
@@ -69,7 +69,7 @@ struct _ClutterBehaviourScale
*
* The #ClutterBehaviourScaleClass struct contains only private data
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/

View File

@@ -232,7 +232,7 @@ clutter_behaviour_class_init (ClutterBehaviourClass *klass)
* (the "alpha") depending on the time. Each time the alpha value changes
* the alpha-notify virtual function is called.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -257,7 +257,7 @@ clutter_behaviour_class_init (ClutterBehaviourClass *klass)
* The ::apply signal is emitted each time the behaviour is applied
* to an actor.
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -278,7 +278,7 @@ clutter_behaviour_class_init (ClutterBehaviourClass *klass)
* The ::removed signal is emitted each time a behaviour is not applied
* to an actor anymore.
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -316,7 +316,7 @@ remove_actor_on_destroy (ClutterActor *actor,
* Applies @behave to @actor. This function adds a reference on
* the actor.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -357,7 +357,7 @@ clutter_behaviour_apply (ClutterBehaviour *behave,
*
* Return value: TRUE if actor has behaviour. FALSE otherwise.
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -379,7 +379,7 @@ clutter_behaviour_is_applied (ClutterBehaviour *behave,
* Removes @actor from the list of #ClutterActor<!-- -->s to which
* @behave applies. This function removes a reference on the actor.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -422,7 +422,7 @@ clutter_behaviour_remove (ClutterBehaviour *behave,
*
* Return value: The number of applied actors
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -443,7 +443,7 @@ clutter_behaviour_get_n_actors (ClutterBehaviour *behave)
*
* Return value: (transfer none): A Clutter actor or NULL if @index_ is invalid.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -465,7 +465,7 @@ clutter_behaviour_get_nth_actor (ClutterBehaviour *behave,
*
* Calls @func for every actor driven by @behave.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -498,7 +498,7 @@ clutter_behaviour_actors_foreach (ClutterBehaviour *behave,
* Return value: (transfer none): a #ClutterAlpha object, or %NULL if no alpha
* object has been bound to this behaviour.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -552,7 +552,7 @@ notify_cb (GObject *object,
* If @alpha is not %NULL, the #ClutterBehaviour will take ownership
* of the #ClutterAlpha instance.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -614,7 +614,7 @@ clutter_behaviour_set_alpha (ClutterBehaviour *behave,
* actors. You should free the returned list with g_slist_free() when
* finished using it.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -640,7 +640,7 @@ clutter_behaviour_get_actors (ClutterBehaviour *behave)
*
* Removes every actor from the list that @behave holds.
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/

View File

@@ -68,7 +68,7 @@ typedef struct _ClutterBehaviourClass ClutterBehaviourClass;
* This function is passed to clutter_behaviour_actors_foreach() and
* will be called for each actor driven by @behaviour.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -82,7 +82,7 @@ typedef void (*ClutterBehaviourForeachFunc) (ClutterBehaviour *behaviour,
* #ClutterBehaviour-struct contains only private data and should
* be accessed with the functions below.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/
@@ -104,7 +104,7 @@ struct _ClutterBehaviour
*
* Base class for behaviours.
*
* Since: 0.2
*
*
* Deprecated: 1.6
*/

View File

@@ -253,7 +253,7 @@ clutter_box_class_init (ClutterBoxClass *klass)
* #ClutterBox. Setting this property will set the
* #ClutterBox:color-set property as a side effect
*
* Since: 1.2
*
*/
obj_props[PROP_COLOR] =
clutter_param_spec_color ("color",
@@ -267,7 +267,7 @@ clutter_box_class_init (ClutterBoxClass *klass)
*
* Whether the #ClutterBox:color property has been set
*
* Since: 1.2
*
*/
obj_props[PROP_COLOR_SET] =
g_param_spec_boolean ("color-set",
@@ -294,7 +294,7 @@ clutter_box_init (ClutterBox *self)
*
* Return value: the newly created #ClutterBox actor
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_new() instead.
*/
@@ -318,7 +318,7 @@ clutter_box_new (ClutterLayoutManager *manager)
* A #ClutterLayoutManager is a delegate object that controls the
* layout of the children of @box
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_set_layout_manager() instead.
*/
@@ -339,7 +339,7 @@ clutter_box_set_layout_manager (ClutterBox *box,
* #ClutterLayoutManager is owned by the #ClutterBox and it should not
* be unreferenced
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_get_layout_manager() instead.
*/
@@ -362,7 +362,7 @@ clutter_box_get_layout_manager (ClutterBox *box)
* Vector-based variant of clutter_box_pack(), intended for language
* bindings to use
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_add_child() instead.
*/
@@ -524,7 +524,7 @@ clutter_box_set_property_valist (ClutterBox *box,
* Language bindings should use the vector-based clutter_box_packv()
* variant instead
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_add_child() instead.
*/
@@ -567,7 +567,7 @@ clutter_box_pack (ClutterBox *box,
* This function is a wrapper around clutter_container_add_actor(),
* clutter_container_raise_child() and clutter_layout_manager_child_set()
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_insert_child_above() instead.
*/
@@ -613,7 +613,7 @@ clutter_box_pack_after (ClutterBox *box,
* This function is a wrapper around clutter_container_add_actor(),
* clutter_container_lower_child() and clutter_layout_manager_child_set()
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_insert_child_below() instead.
*/
@@ -657,7 +657,7 @@ clutter_box_pack_before (ClutterBox *box,
* children of @box, the new child is added at the end of the list of
* children
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_insert_child_at_index() instead.
*/
@@ -699,7 +699,7 @@ clutter_box_pack_at (ClutterBox *box,
*
* Sets (or unsets) the background color for @box
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_set_background_color() instead.
*/
@@ -722,7 +722,7 @@ clutter_box_set_color (ClutterBox *box,
* If the #ClutterBox:color-set property is set to %FALSE the
* returned #ClutterColor is undefined
*
* Since: 1.2
*
*
* Deprecated: 1.10: Use clutter_actor_get_background_color() instead.
*/

View File

@@ -52,7 +52,7 @@ typedef struct _ClutterBoxClass ClutterBoxClass;
* The #ClutterBox structure contains only private data and should
* be accessed using the provided API
*
* Since: 1.2
*
*/
struct _ClutterBox
{
@@ -67,7 +67,7 @@ struct _ClutterBox
*
* The #ClutterBoxClass structure contains only private data
*
* Since: 1.2
*
*/
struct _ClutterBoxClass
{

View File

@@ -588,7 +588,7 @@ clutter_cairo_texture_class_init (ClutterCairoTextureClass *klass)
* The width of the Cairo surface used by the #ClutterCairoTexture
* actor, in pixels.
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -606,7 +606,7 @@ clutter_cairo_texture_class_init (ClutterCairoTextureClass *klass)
* The height of the Cairo surface used by the #ClutterCairoTexture
* actor, in pixels.
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -627,7 +627,7 @@ clutter_cairo_texture_class_init (ClutterCairoTextureClass *klass)
* If :auto-resize is set to %TRUE the surface contents will also
* be invalidated automatically.
*
* Since: 1.8
*
*
* Deprecated: 1.12
*/
@@ -659,7 +659,7 @@ clutter_cairo_texture_class_init (ClutterCairoTextureClass *klass)
*
* Return value: the newly created #cairo_surface_t for the texture
*
* Since: 1.6
*
*
* Deprecated: 1.12
*/
@@ -693,7 +693,7 @@ clutter_cairo_texture_class_init (ClutterCairoTextureClass *klass)
* Return value: %TRUE if the signal emission should stop, and %FALSE
* to continue
*
* Since: 1.8
*
*
* Deprecated: 1.12
*/
@@ -740,7 +740,7 @@ clutter_cairo_texture_init (ClutterCairoTexture *self)
*
* Return value: the newly created #ClutterCairoTexture actor
*
* Since: 1.0
*
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
@@ -856,7 +856,7 @@ clutter_cairo_texture_create_region_internal (ClutterCairoTexture *self,
* Return value: a newly created Cairo context. Use cairo_destroy()
* to upload the contents of the context when done drawing
*
* Since: 1.0
*
*
* Deprecated: 1.8: Use the #ClutterCairoTexture::draw signal and
* clutter_cairo_texture_invalidate_rectangle() to obtain a
@@ -891,7 +891,7 @@ clutter_cairo_texture_create_region (ClutterCairoTexture *self,
*
* See also: clutter_cairo_texture_invalidate()
*
* Since: 1.8
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
void
@@ -951,7 +951,7 @@ clutter_cairo_texture_invalidate_rectangle (ClutterCairoTexture *self,
*
* See also: clutter_cairo_texture_invalidate_rectangle()
*
* Since: 1.8
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
void
@@ -978,7 +978,7 @@ clutter_cairo_texture_invalidate (ClutterCairoTexture *self)
* Return value: a newly created Cairo context. Use cairo_destroy()
* to upload the contents of the context when done drawing
*
* Since: 1.0
*
*
* Deprecated: 1.8: Use the #ClutterCairoTexture::draw signal and
* the clutter_cairo_texture_invalidate() function to obtain a
@@ -1007,7 +1007,7 @@ clutter_cairo_texture_create (ClutterCairoTexture *self)
* clutter_cairo_texture_invalidate_rectangle() or
* clutter_cairo_texture_invalidate().
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
void
@@ -1052,7 +1052,7 @@ clutter_cairo_texture_set_surface_size (ClutterCairoTexture *self,
*
* Retrieves the surface width and height for @self.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
void
@@ -1080,7 +1080,7 @@ clutter_cairo_texture_get_surface_size (ClutterCairoTexture *self,
* Calling this function from within a #ClutterCairoTexture::draw
* signal handler will clear the invalidated area.
*
* Since: 1.0
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
void
@@ -1131,7 +1131,7 @@ clutter_cairo_texture_clear (ClutterCairoTexture *self)
* the actor. If the allocation changes, the contents of the
* #ClutterCairoTexture will also be invalidated automatically.
*
* Since: 1.8
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
void
@@ -1165,7 +1165,7 @@ clutter_cairo_texture_set_auto_resize (ClutterCairoTexture *self,
* Return value: %TRUE if the #ClutterCairoTexture should track the
* allocation, and %FALSE otherwise
*
* Since: 1.8
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
gboolean

View File

@@ -52,7 +52,7 @@ typedef struct _ClutterCairoTexturePrivate ClutterCairoTexturePrivate;
*
* The #ClutterCairoTexture struct contains only private data.
*
* Since: 1.0
*
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/
@@ -72,7 +72,7 @@ struct _ClutterCairoTexture
*
* The #ClutterCairoTextureClass struct contains only private data.
*
* Since: 1.0
*
*
* Deprecated: 1.12: Use #ClutterCanvas instead
*/

View File

@@ -49,7 +49,7 @@
*
* Sets @value to @fixed_.
*
* Since: 0.8
*
*
* Deprecated: 1.10: Use g_value_set_int() instead.
*/
@@ -70,7 +70,7 @@ clutter_value_set_fixed (GValue *value,
*
* Return value: the value inside the passed #GValue
*
* Since: 0.8
*
*
* Deprecated: 1.10: Use g_value_get_int() instead.
*/
@@ -176,7 +176,7 @@ clutter_param_fixed_get_type (void)
*
* Return value: (transfer full): the newly created #GParamSpec
*
* Since: 0.8
*
*
* Deprecated: 1.10: Use #GParamSpecInt instead.
*/

View File

@@ -44,7 +44,7 @@ G_BEGIN_DECLS
*
* Evaluates to %TRUE if @x holds a #CoglFixed .
*
* Since: 0.8
*
*
* Deprecated: 1.10: Use %G_VALUE_HOLDS_INT instead
*/
@@ -60,7 +60,7 @@ typedef struct _ClutterParamSpecFixed ClutterParamSpecFixed;
*
* #GParamSpec subclass for fixed point based properties
*
* Since: 0.8
*
*
* Deprecated: Use #GParamSpecInt instead
*/

View File

@@ -89,7 +89,7 @@ static GSourceFuncs clutter_frame_source_funcs =
*
* Return value: the ID (greater than 0) of the event source.
*
* Since: 0.8
*
*
* Deprecated: 1.6
*/
@@ -130,7 +130,7 @@ clutter_frame_source_add_full (gint priority,
*
* Return value: the ID (greater than 0) of the event source.
*
* Since: 0.8
*
*
* Deprecated: 1.6
*/
@@ -213,7 +213,7 @@ clutter_frame_source_dispatch (GSource *source,
*
* Return value: the ID (greater than 0) of the event source.
*
* Since: 0.8
*
*
* Deprecated: 1.6
*/
@@ -249,7 +249,7 @@ clutter_threads_add_frame_source_full (gint priority,
*
* Return value: the ID (greater than 0) of the event source.
*
* Since: 0.8
*
*
* Deprecated: 1.6
*/

View File

@@ -523,7 +523,7 @@ clutter_group_remove_all (ClutterGroup *self)
*
* Return value: The number of child actors held in the group.
*
* Since: 0.2
*
*
* Deprecated: 1.10: Use clutter_actor_get_n_children() instead.
*/
@@ -545,7 +545,7 @@ clutter_group_get_n_children (ClutterGroup *self)
* Return value: (transfer none): A Clutter actor, or %NULL if
* @index_ is invalid.
*
* Since: 0.2
*
*
* Deprecated: 1.10: Use clutter_actor_get_child_at_index() instead.
*/

View File

@@ -17,7 +17,7 @@
*
* Retrieves the latest coordinates of the pointer of @device
*
* Since: 1.2
*
*
* Deprecated: 1.12: Use clutter_input_device_get_coords() instead.
*/

View File

@@ -22,7 +22,7 @@
* layout manager; the returned instance is owned by the layout
* manager and should not be unreferenced
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -48,7 +48,7 @@ clutter_layout_manager_begin_animation (ClutterLayoutManager *manager,
*
* The result of this call depends on the @manager implementation
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -72,7 +72,7 @@ clutter_layout_manager_end_animation (ClutterLayoutManager *manager)
*
* Return value: the progress of the animation
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/

View File

@@ -75,7 +75,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
*
* The location of a media file, expressed as a valid URI.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -92,7 +92,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
*
* Whether the #ClutterMedia actor is playing.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -110,7 +110,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
* The current progress of the playback, as a normalized
* value between 0.0 and 1.0.
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -127,7 +127,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
*
* The location of a subtitle file, expressed as a valid URI.
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -146,7 +146,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
* follow the same grammar as the one recognized by
* pango_font_description_from_string().
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -164,7 +164,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
* The volume of the audio, as a normalized value between
* 0.0 and 1.0.
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -181,7 +181,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
*
* Whether the current stream is seekable.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -199,7 +199,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
* The fill level of the buffer for the current stream,
* as a value between 0.0 and 1.0.
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -216,7 +216,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
*
* The duration of the current stream, in seconds
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -233,7 +233,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
*
* The ::eos signal is emitted each time the media stream ends.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -252,7 +252,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
*
* The ::error signal is emitted each time an error occurred.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -275,7 +275,7 @@ clutter_media_default_init (ClutterMediaInterface *iface)
*
* Sets the URI of @media to @uri.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -297,7 +297,7 @@ clutter_media_set_uri (ClutterMedia *media,
* Return value: the URI of the media stream. Use g_free()
* to free the returned string
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -326,7 +326,7 @@ clutter_media_get_uri (ClutterMedia *media)
* current state with clutter_media_get_playing(). ClutterGstVideoTexture
* in clutter-gst is an example of such an asynchronous implementation.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -347,7 +347,7 @@ clutter_media_set_playing (ClutterMedia *media,
*
* Return value: %TRUE if playing, %FALSE if stopped.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -371,7 +371,7 @@ clutter_media_get_playing (ClutterMedia *media)
* Sets the playback progress of @media. The @progress is
* a normalized value between 0.0 (begin) and 1.0 (end).
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -392,7 +392,7 @@ clutter_media_set_progress (ClutterMedia *media,
*
* Return value: the playback progress, between 0.0 and 1.0
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -415,7 +415,7 @@ clutter_media_get_progress (ClutterMedia *media)
*
* Sets the location of a subtitle file to display while playing @media.
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -437,7 +437,7 @@ clutter_media_set_subtitle_uri (ClutterMedia *media,
* Return value: the URI of the subtitle file. Use g_free()
* to free the returned string
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -467,7 +467,7 @@ clutter_media_get_subtitle_uri (ClutterMedia *media)
* clutter_media_set_subtitle_font_name (media, "Sans 24pt");
* ]|
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -489,7 +489,7 @@ clutter_media_set_subtitle_font_name (ClutterMedia *media,
* Return value: a string containing the font name. Use g_free()
* to free the returned string
*
* Since: 1.2
*
*
* Deprecated: 1.12
*/
@@ -512,7 +512,7 @@ clutter_media_get_subtitle_font_name (ClutterMedia *media)
*
* Sets the playback volume of @media to @volume.
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -533,7 +533,7 @@ clutter_media_set_audio_volume (ClutterMedia *media,
*
* Return value: The playback volume between 0.0 and 1.0
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -557,7 +557,7 @@ clutter_media_get_audio_volume (ClutterMedia *media)
*
* Return value: %TRUE if @media can seek, %FALSE otherwise.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -581,7 +581,7 @@ clutter_media_get_can_seek (ClutterMedia *media)
*
* Return value: the fill level, between 0.0 and 1.0
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -605,7 +605,7 @@ clutter_media_get_buffer_fill (ClutterMedia *media)
*
* Return value: the duration of the media stream, in seconds
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/
@@ -630,7 +630,7 @@ clutter_media_get_duration (ClutterMedia *media)
*
* Sets the source of @media using a file path.
*
* Since: 0.2
*
*
* Deprecated: 1.12
*/

View File

@@ -48,7 +48,7 @@ typedef struct _ClutterMediaIface ClutterMediaIface;
* #ClutterMedia is an opaque structure whose members cannot be directly
* accessed
*
* Since: 0.2
*
*/
/**
@@ -58,7 +58,7 @@ typedef struct _ClutterMediaIface ClutterMediaIface;
*
* Interface vtable for #ClutterMedia implementations
*
* Since: 0.2
*
*/
struct _ClutterMediaIface
{

View File

@@ -281,7 +281,7 @@ clutter_rectangle_class_init (ClutterRectangleClass *klass)
*
* The color of the border of the rectangle.
*
* Since: 0.2
*
*/
pspec = clutter_param_spec_color ("border-color",
P_("Border Color"),
@@ -295,7 +295,7 @@ clutter_rectangle_class_init (ClutterRectangleClass *klass)
*
* The width of the border of the rectangle, in pixels.
*
* Since: 0.2
*
*/
g_object_class_install_property (gobject_class,
PROP_BORDER_WIDTH,
@@ -310,7 +310,7 @@ clutter_rectangle_class_init (ClutterRectangleClass *klass)
*
* Whether the #ClutterRectangle should be displayed with a border.
*
* Since: 0.2
*
*/
g_object_class_install_property (gobject_class,
PROP_HAS_BORDER,
@@ -440,7 +440,7 @@ clutter_rectangle_set_color (ClutterRectangle *rectangle,
*
* Return value: the border's width
*
* Since: 0.2
*
*/
guint
clutter_rectangle_get_border_width (ClutterRectangle *rectangle)
@@ -458,7 +458,7 @@ clutter_rectangle_get_border_width (ClutterRectangle *rectangle)
* Sets the width (in pixel) of the border used by @rectangle.
* A @width of 0 will unset the border.
*
* Since: 0.2
*
*/
void
clutter_rectangle_set_border_width (ClutterRectangle *rectangle,
@@ -496,7 +496,7 @@ clutter_rectangle_set_border_width (ClutterRectangle *rectangle,
* Gets the color of the border used by @rectangle and places
* it into @color.
*
* Since: 0.2
*
*/
void
clutter_rectangle_get_border_color (ClutterRectangle *rectangle,

View File

@@ -51,7 +51,7 @@ typedef struct _ClutterRectanglePrivate ClutterRectanglePrivate;
* The #ClutterRectangle structure contains only private data
* and should be accessed using the provided API
*
* Since: 0.1
*
*/
struct _ClutterRectangle
{
@@ -66,7 +66,7 @@ struct _ClutterRectangle
*
* The #ClutterRectangleClass structure contains only private data
*
* Since: 0.1
*
*/
struct _ClutterRectangleClass
{

View File

@@ -220,7 +220,7 @@ clutter_score_class_init (ClutterScoreClass *klass)
*
* Whether the #ClutterScore should restart once finished.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
g_object_class_install_property (gobject_class,
@@ -239,7 +239,7 @@ clutter_score_class_init (ClutterScoreClass *klass)
* The ::timeline-started signal is emitted each time a new timeline
* inside a #ClutterScore starts playing.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
score_signals[TIMELINE_STARTED] =
@@ -259,7 +259,7 @@ clutter_score_class_init (ClutterScoreClass *klass)
* The ::timeline-completed signal is emitted each time a timeline
* inside a #ClutterScore terminates.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
score_signals[TIMELINE_COMPLETED] =
@@ -277,7 +277,7 @@ clutter_score_class_init (ClutterScoreClass *klass)
*
* The ::completed signal is emitted each time a #ClutterScore terminates.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
score_signals[COMPLETED] =
@@ -294,7 +294,7 @@ clutter_score_class_init (ClutterScoreClass *klass)
*
* The ::started signal is emitted each time a #ClutterScore starts playing.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
score_signals[STARTED] =
@@ -312,7 +312,7 @@ clutter_score_class_init (ClutterScoreClass *klass)
* The ::paused signal is emitted each time a #ClutterScore
* is paused.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
score_signals[PAUSED] =
@@ -352,7 +352,7 @@ clutter_score_init (ClutterScore *self)
* Return value: the newly created #ClutterScore. Use g_object_unref()
* when done.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
ClutterScore *
@@ -369,7 +369,7 @@ clutter_score_new (void)
* Sets whether @score should loop. A looping #ClutterScore will start
* from its initial state after the ::complete signal has been fired.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
void
@@ -394,7 +394,7 @@ clutter_score_set_loop (ClutterScore *score,
*
* Return value: %TRUE if the score is looping
*
* Since: 0.6
*
* Deprecated: 1.8
*/
gboolean
@@ -413,7 +413,7 @@ clutter_score_get_loop (ClutterScore *score)
*
* Return Value: %TRUE if score is currently playing
*
* Since: 0.6
*
* Deprecated: 1.8
*/
gboolean
@@ -752,7 +752,7 @@ foreach_running_timeline (gpointer key,
*
* Starts the score.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
void
@@ -787,7 +787,7 @@ clutter_score_start (ClutterScore *score)
*
* Stops and rewinds a playing #ClutterScore instance.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
void
@@ -815,7 +815,7 @@ clutter_score_stop (ClutterScore *score)
*
* Pauses a playing score @score.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
void
@@ -845,7 +845,7 @@ clutter_score_pause (ClutterScore *score)
*
* Rewinds a #ClutterScore to its initial state.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
void
@@ -894,7 +894,7 @@ clutter_score_clear (ClutterScore *score)
* 0 on failure. The returned id can be used with clutter_score_remove()
* or clutter_score_get_timeline().
*
* Since: 0.6
*
* Deprecated: 1.8
*/
gulong
@@ -971,7 +971,7 @@ clutter_score_append (ClutterScore *score,
* 0 on failure. The returned id can be used with clutter_score_remove()
* or clutter_score_get_timeline().
*
* Since: 0.8
*
* Deprecated: 1.8
*/
gulong
@@ -1037,7 +1037,7 @@ clutter_score_append_at_marker (ClutterScore *score,
* the timeline has other timelines attached to it, those are removed
* as well.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
void
@@ -1073,7 +1073,7 @@ clutter_score_remove (ClutterScore *score,
*
* Removes all the timelines inside @score.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
void
@@ -1106,7 +1106,7 @@ clutter_score_remove_all (ClutterScore *score)
* function does not increase the reference count on the returned
* #ClutterTimeline
*
* Since: 0.6
*
* Deprecated: 1.8
*/
ClutterTimeline *
@@ -1139,7 +1139,7 @@ clutter_score_get_timeline (ClutterScore *score,
* not increase the reference count of the returned timelines. Use
* g_slist_free() on the returned list to deallocate its resources.
*
* Since: 0.6
*
* Deprecated: 1.8
*/
GSList *

View File

@@ -50,7 +50,7 @@ typedef struct _ClutterScoreClass ClutterScoreClass;
* The #ClutterScore structure contains only private data
* and should be accessed using the provided API
*
* Since: 0.6
*
*/
struct _ClutterScore
{
@@ -70,7 +70,7 @@ struct _ClutterScore
*
* The #ClutterScoreClass structure contains only private data
*
* Since: 0.6
*
*/
struct _ClutterScoreClass
{

View File

@@ -253,7 +253,7 @@ clutter_shader_class_init (ClutterShaderClass *klass)
* GLSL source code for the vertex shader part of the shader
* program, if any
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -270,7 +270,7 @@ clutter_shader_class_init (ClutterShaderClass *klass)
*
* GLSL source code for the fragment shader part of the shader program.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -288,7 +288,7 @@ clutter_shader_class_init (ClutterShaderClass *klass)
* Whether the shader is compiled and linked, ready for use
* in the GL context.
*
* Since: 0.8
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -305,7 +305,7 @@ clutter_shader_class_init (ClutterShaderClass *klass)
*
* Whether the shader is currently used in the GL rendering pipeline.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -342,7 +342,7 @@ clutter_shader_init (ClutterShader *self)
*
* Return value: a new #ClutterShader.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -411,7 +411,7 @@ clutter_shader_set_source (ClutterShader *shader,
* Sets the GLSL source code to be used by a #ClutterShader for the fragment
* program.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -435,7 +435,7 @@ clutter_shader_set_fragment_source (ClutterShader *shader,
* Sets the GLSL source code to be used by a #ClutterShader for the vertex
* program.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -589,7 +589,7 @@ bind_glsl_shader (ClutterShader *self,
*
* Return value: returns TRUE if the shader was succesfully compiled.
*
* Since: 0.8
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -639,7 +639,7 @@ clutter_shader_compile (ClutterShader *shader,
*
* Frees up any GL context resources held by the shader.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -662,7 +662,7 @@ clutter_shader_release (ClutterShader *shader)
*
* Return value: %TRUE if the shader is compiled, linked and ready for use.
*
* Since: 0.8
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -685,7 +685,7 @@ clutter_shader_is_compiled (ClutterShader *shader)
* When @enabled is %FALSE the default state of the GL pipeline will be
* used instead.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -734,7 +734,7 @@ clutter_shader_set_is_enabled (ClutterShader *shader,
*
* Return value: %TRUE if the shader is enabled.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -756,7 +756,7 @@ clutter_shader_get_is_enabled (ClutterShader *shader)
* Sets a user configurable variable in the GLSL shader programs attached to
* a #ClutterShader.
*
* Since: 1.0
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -835,7 +835,7 @@ clutter_shader_set_uniform (ClutterShader *shader,
* ClutterShader object or %NULL. The returned string is owned by the
* shader object and should never be modified or freed
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -857,7 +857,7 @@ clutter_shader_get_fragment_source (ClutterShader *shader)
* ClutterShader object or %NULL. The returned string is owned by the
* shader object and should never be modified or freed
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -879,7 +879,7 @@ clutter_shader_get_vertex_source (ClutterShader *shader)
* or %NULL. The handle is owned by the #ClutterShader and it should
* not be unreferenced
*
* Since: 1.0
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -901,7 +901,7 @@ clutter_shader_get_cogl_program (ClutterShader *shader)
* shader, or %NULL. The handle is owned by the #ClutterShader
* and it should not be unreferenced
*
* Since: 1.0
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/
@@ -923,7 +923,7 @@ clutter_shader_get_cogl_fragment_shader (ClutterShader *shader)
* shader, or %NULL. The handle is owned by the #ClutterShader
* and it should not be unreferenced
*
* Since: 1.0
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead.
*/

View File

@@ -46,7 +46,7 @@ G_BEGIN_DECLS
*
* Error domain for #ClutterShader errors
*
* Since: 0.6
*
*
* Deprecated: 1.8
*/
@@ -60,7 +60,7 @@ G_BEGIN_DECLS
*
* #ClutterShader error enumeration
*
* Since: 0.6
*
*
* Deprecated: 1.8
*/
@@ -79,7 +79,7 @@ typedef struct _ClutterShaderClass ClutterShaderClass;
* The #ClutterShader structure contains only private data
* and should be accessed using the provided API
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffect instead
*/
@@ -95,7 +95,7 @@ struct _ClutterShader
*
* The #ClutterShaderClass structure contains only private data
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use #ClutterShaderEffectClass instead
*/

View File

@@ -37,7 +37,7 @@ G_BEGIN_DECLS
*
* Macro that evaluates to the width of the default stage
*
* Since: 0.2
*
*
* Deprecated: 1.2: Use clutter_actor_get_width() instead
*/
@@ -48,7 +48,7 @@ G_BEGIN_DECLS
*
* Macro that evaluates to the height of the default stage
*
* Since: 0.2
*
*
* Deprecated: 1.2: use clutter_actor_get_height() instead
*/

View File

@@ -303,7 +303,7 @@ G_DEFINE_TYPE_WITH_CODE (ClutterState, clutter_state, G_TYPE_OBJECT,
*
* Return value: the newly create #ClutterState instance
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -813,7 +813,7 @@ clutter_state_change (ClutterState *state,
* state transition. The returned timeline is owned by the #ClutterState
* and it should not be unreferenced
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -837,7 +837,7 @@ clutter_state_set_state (ClutterState *state,
* state transition. The returned timeline is owned by the #ClutterState
* and it should not be unreferenced
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -967,7 +967,7 @@ get_property_from_object (GObject *gobject,
* will pause for 20% of the duration of the transition before animating,
* and 20% of the duration after animating.
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1205,7 +1205,7 @@ clutter_state_fetch_state (ClutterState *state,
* Return value: (transfer none): the #ClutterState instance, allowing
* chaining of multiple calls
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1266,7 +1266,7 @@ clutter_state_set_key (ClutterState *state,
* g_list_free() to free the resources allocated by the returned list when
* done using it
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1298,7 +1298,7 @@ clutter_state_get_states (ClutterState *state)
* modified or freed. Use g_list_free() to free the resources allocated
* by the returned list when done using it
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1372,7 +1372,7 @@ clutter_state_get_keys (ClutterState *state,
*
* Removes all keys matching the search criteria passed in arguments.
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1401,7 +1401,7 @@ clutter_state_remove_key (ClutterState *state,
* the state change animations. The returned timeline is owned
* by the #ClutterState and it should not be unreferenced directly
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1476,7 +1476,7 @@ clutter_state_class_init (ClutterStateClass *klass)
* the target state specified by clutter_state_set_state() or
* clutter_state_warp_to_state().
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1497,7 +1497,7 @@ clutter_state_class_init (ClutterStateClass *klass)
* clutter_state_warp_to_state() to change state without
* a transition.
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1515,7 +1515,7 @@ clutter_state_class_init (ClutterStateClass *klass)
* Default duration used if an duration has not been specified for a specific
* source/target state pair. The values is in milliseconds.
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1567,7 +1567,7 @@ clutter_state_init (ClutterState *self)
*
* Return value: (transfer none): a #ClutterAnimator instance, or %NULL
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1622,7 +1622,7 @@ clutter_state_get_animator (ClutterState *state,
*
* #ClutterState will take a reference on the passed @animator, if any
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1702,7 +1702,7 @@ G_DEFINE_BOXED_TYPE (ClutterStateKey, clutter_state_key,
*
* Return value: the pre delay used before starting the transition.
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1723,7 +1723,7 @@ clutter_state_key_get_pre_delay (const ClutterStateKey *state_key)
*
* Return value: the post delay, used after doing the transition.
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1743,7 +1743,7 @@ clutter_state_key_get_post_delay (const ClutterStateKey *state_key)
*
* Return value: the mode of a #ClutterStateKey
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1771,7 +1771,7 @@ clutter_state_key_get_mode (const ClutterStateKey *state_key)
* Return value: %TRUE if the value was successfully retrieved,
* and %FALSE otherwise
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1823,7 +1823,7 @@ clutter_state_key_get_value (const ClutterStateKey *state_key,
*
* Return value: (transfer none): the object this state key applies to.
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1844,7 +1844,7 @@ clutter_state_key_get_object (const ClutterStateKey *state_key)
* Return value: the name of the property. The returned string is owned
* by the #ClutterStateKey and should never be modified or freed
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1867,7 +1867,7 @@ clutter_state_key_get_property_name (const ClutterStateKey *state_key)
* transitioning to the target state. The returned string is owned
* by the #ClutterStateKey and should never be modified or freed
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1893,7 +1893,7 @@ clutter_state_key_get_source_state_name (const ClutterStateKey *state_key)
* Return value: the name of the source state for this key, or NULL if
* the key is generic
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1916,7 +1916,7 @@ clutter_state_key_get_target_state_name (const ClutterStateKey *state_key)
*
* Return value: the #GType of the property
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -1946,7 +1946,7 @@ clutter_state_key_get_property_type (const ClutterStateKey *key)
* If both states names are specified, the passed @duration only applies
* to the specified transition.
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -2004,7 +2004,7 @@ clutter_state_set_duration (ClutterState *state,
*
* Return value: the duration, in milliseconds
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/
@@ -2065,7 +2065,7 @@ clutter_state_get_duration (ClutterState *state,
* Return value: a string containing the target state. The returned string
* is owned by the #ClutterState and should not be modified or freed
*
* Since: 1.4
*
* Deprecated: 1.12: Use #ClutterKeyframeTransition and
* #ClutterTransitionGroup instead
*/

View File

@@ -45,7 +45,7 @@ typedef struct _ClutterStateClass ClutterStateClass;
* <structname>ClutterStateKey</structname> is an opaque structure whose
* members cannot be accessed directly
*
* Since: 1.4
*
*/
typedef struct _ClutterStateKey ClutterStateKey;
@@ -55,7 +55,7 @@ typedef struct _ClutterStateKey ClutterStateKey;
* The <structname>ClutterState</structname> structure contains only
* private data and should be accessed using the provided API
*
* Since: 1.4
*
*/
struct _ClutterState
{
@@ -71,7 +71,7 @@ struct _ClutterState
* The <structname>ClutterStateClass</structname> structure contains
* only private data
*
* Since: 1.4
*
*
* Deprecated: 1.12
*/

View File

@@ -1111,7 +1111,7 @@ clutter_texture_class_init (ClutterTextureClass *klass)
* it must be performed from within the same thread that called
* clutter_main().
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -1130,7 +1130,7 @@ clutter_texture_class_init (ClutterTextureClass *klass)
* Like #ClutterTexture:load-async but loads the width and height
* synchronously causing some blocking.
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -1157,7 +1157,7 @@ clutter_texture_class_init (ClutterTextureClass *klass)
* determine what value of alpha is considered pickable, and so
* only fully opaque parts of the texture will react to picking.
*
* Since: 1.4
*
*
* Deprecated: 1.12
*/
@@ -1218,7 +1218,7 @@ clutter_texture_class_init (ClutterTextureClass *klass)
* completed. If there was an error during loading, @error will
* be set, otherwise it will be %NULL
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -1336,7 +1336,7 @@ clutter_texture_init (ClutterTexture *self)
* material is owned by the #ClutterTexture and it should not be
* unreferenced
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -1362,7 +1362,7 @@ clutter_texture_get_cogl_material (ClutterTexture *texture)
* layer so you should set one on the material before calling this
* function.
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -1437,7 +1437,7 @@ get_first_layer_index (CoglPipeline *pipeline, int *layer_index)
* Return value: (transfer none): a #CoglHandle for the texture. The returned
* handle is owned by the #ClutterTexture and it should not be unreferenced
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -1466,7 +1466,7 @@ clutter_texture_get_cogl_texture (ClutterTexture *texture)
* @cogl_tex. A reference to the texture is taken so if the handle is
* no longer needed it should be deref'd with cogl_handle_unref.
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -1680,7 +1680,7 @@ get_pixel_format_from_texture_flags (gint bpp,
*
* Return value: %TRUE on success, %FALSE on failure.
*
* Since: 0.4
*
*
* Deprecated: 1.12
*/
@@ -1735,7 +1735,7 @@ clutter_texture_set_from_rgb_data (ClutterTexture *texture,
*
* Return value: %TRUE if the texture was successfully updated
*
* Since: 0.4
*
*
* Deprecated: 1.10: Use clutter_texture_get_cogl_material() and
* the Cogl API to install a fragment shader for decoding YUV
@@ -2053,7 +2053,7 @@ clutter_texture_async_load (ClutterTexture *self,
*
* Return value: %TRUE if the image was successfully loaded and set
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -2128,7 +2128,7 @@ clutter_texture_set_from_file (ClutterTexture *texture,
* improve scaled down rendering as well (by using mipmaps). The default value
* is %CLUTTER_TEXTURE_QUALITY_MEDIUM.
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -2171,7 +2171,7 @@ clutter_texture_set_filter_quality (ClutterTexture *texture,
*
* Return value: The filter quality value.
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -2216,7 +2216,7 @@ clutter_texture_get_filter_quality (ClutterTexture *texture)
* Return value: The maximum waste or -1 if the texture waste is
* unlimited.
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -2250,7 +2250,7 @@ clutter_texture_get_max_tile_waste (ClutterTexture *texture)
* Return value: A newly created #ClutterTexture object or NULL on
* error.
*
* Since: 0.8
*
*
* Deprecated: 1.12
*/
@@ -2330,7 +2330,7 @@ clutter_texture_get_base_size (ClutterTexture *texture,
*
* Return value: %TRUE on success, %FALSE on failure.
*
* Since: 0.6
*
*
* Deprecated: 1.12
*/
@@ -2576,7 +2576,7 @@ fbo_source_queue_relayout_cb (ClutterActor *source,
*
* Return value: A newly created #ClutterTexture object, or %NULL on failure.
*
* Since: 0.6
*
*
* Deprecated: 1.8: Use the #ClutterOffscreenEffect and #ClutterShaderEffect
* directly on the intended #ClutterActor to replace the functionality of
@@ -2748,7 +2748,7 @@ texture_fbo_free_resources (ClutterTexture *texture)
* Sets whether @texture should have the same preferred size as the
* underlying image data.
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -2781,7 +2781,7 @@ clutter_texture_set_sync_size (ClutterTexture *texture,
* Return value: %TRUE if the #ClutterTexture should have the same
* preferred size of the underlying image data
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -2802,7 +2802,7 @@ clutter_texture_get_sync_size (ClutterTexture *texture)
* Sets whether the @texture should repeat horizontally or
* vertically when the actor size is bigger than the image size
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -2853,7 +2853,7 @@ clutter_texture_set_repeat (ClutterTexture *texture,
* Retrieves the horizontal and vertical repeat values set
* using clutter_texture_set_repeat()
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -2887,7 +2887,7 @@ clutter_texture_get_repeat (ClutterTexture *texture,
*
* Return value: a #CoglPixelFormat value
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -2913,7 +2913,7 @@ clutter_texture_get_pixel_format (ClutterTexture *texture)
* Sets whether @texture should have a preferred size maintaining
* the aspect ratio of the underlying image
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -2946,7 +2946,7 @@ clutter_texture_set_keep_aspect_ratio (ClutterTexture *texture,
* Return value: %TRUE if the #ClutterTexture should maintain the
* aspect ratio of the underlying image
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -2971,7 +2971,7 @@ clutter_texture_get_keep_aspect_ratio (ClutterTexture *texture)
* See the #ClutterTexture:load-async property documentation, and
* clutter_texture_set_load_data_async().
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -3008,7 +3008,7 @@ clutter_texture_set_load_async (ClutterTexture *texture,
* Return value: %TRUE if the #ClutterTexture should load the data from
* disk asynchronously
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -3034,7 +3034,7 @@ clutter_texture_get_load_async (ClutterTexture *texture)
* See the #ClutterTexture:load-async property documentation, and
* clutter_texture_set_load_async().
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -3070,7 +3070,7 @@ clutter_texture_set_load_data_async (ClutterTexture *texture,
* Return value: %TRUE if the #ClutterTexture should load the image
* data from a file asynchronously
*
* Since: 1.0
*
*
* Deprecated: 1.12
*/
@@ -3101,7 +3101,7 @@ clutter_texture_get_load_data_async (ClutterTexture *texture)
* determine what value of alpha is considered pickable, and so only
* fully opaque parts of the texture will react to picking.
*
* Since: 1.4
*
*
* Deprecated: 1.12
*/
@@ -3142,7 +3142,7 @@ clutter_texture_set_pick_with_alpha (ClutterTexture *texture,
* Return value: %TRUE if the #ClutterTexture should define its shape
* using the alpha channel when picking.
*
* Since: 1.4
*
*
* Deprecated: 1.12
*/

View File

@@ -379,7 +379,7 @@ clutter_timeout_pool_finalize (GSource *source)
* destroyed when the context is destroyed. It is possible to force
* the destruction of the timeout pool using g_source_destroy()
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -435,7 +435,7 @@ clutter_timeout_pool_new (gint priority)
* Return value: the ID (greater than 0) of the timeout inside the pool.
* Use clutter_timeout_pool_remove() to stop the timeout.
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/
@@ -472,7 +472,7 @@ clutter_timeout_pool_add (ClutterTimeoutPool *pool,
* is the same returned when adding a function to the timeout pool with
* clutter_timeout_pool_add().
*
* Since: 0.4
*
*
* Deprecated: 1.6
*/

View File

@@ -45,7 +45,7 @@ G_BEGIN_DECLS
* <structname>ClutterTimeoutPool</structname> is an opaque structure
* whose members cannot be directly accessed.
*
* Since: 0.6
*
*
* Deprecated: 1.6
*/