introspection: add missing introspection data from Vala bindings

https://bugzilla.gnome.org/show_bug.cgi?id=655387
This commit is contained in:
Evan Nemerson 2011-07-27 00:14:10 -07:00 committed by Emmanuele Bassi
parent fe66575a2c
commit a6bd11ac62
10 changed files with 20 additions and 15 deletions

View File

@ -10319,7 +10319,8 @@ _clutter_actor_get_stage_internal (ClutterActor *actor)
* *
* Retrieves the #ClutterStage where @actor is contained. * Retrieves the #ClutterStage where @actor is contained.
* *
* Return value: (transfer none): the stage containing the actor, or %NULL * Return value: (transfer none) (type Clutter.Actor): the stage
* containing the actor, or %NULL
* *
* Since: 0.8 * Since: 0.8
*/ */

View File

@ -77,7 +77,7 @@ typedef struct _ClutterActorPrivate ClutterActorPrivate;
/** /**
* ClutterCallback: * ClutterCallback:
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @data: user data * @data: (closure): user data
* *
* Generic callback * Generic callback
*/ */

View File

@ -377,7 +377,7 @@ clutter_behaviour_path_new_with_description (ClutterAlpha *alpha,
/** /**
* clutter_behaviour_path_new_with_knots: * clutter_behaviour_path_new_with_knots:
* @alpha: (allow-none): a #ClutterAlpha instance, or %NULL * @alpha: (allow-none): a #ClutterAlpha instance, or %NULL
* @knots: an array of #ClutterKnot<!-- -->s * @knots: (array length=n_knots): an array of #ClutterKnot<!-- -->s
* @n_knots: number of entries in @knots * @n_knots: number of entries in @knots
* *
* Creates a new path behaviour that will make the actors visit all of * Creates a new path behaviour that will make the actors visit all of

View File

@ -545,8 +545,8 @@ clutter_behaviour_rotate_set_direction (ClutterBehaviourRotate *rotate,
/** /**
* clutter_behaviour_rotate_get_bounds: * clutter_behaviour_rotate_get_bounds:
* @rotate: a #ClutterBehaviourRotate * @rotate: a #ClutterBehaviourRotate
* @angle_start: return value for the initial angle * @angle_start: (out): return value for the initial angle
* @angle_end: return value for the final angle * @angle_end: (out): return value for the final angle
* *
* Retrieves the rotation boundaries of the rotate behaviour. * Retrieves the rotation boundaries of the rotate behaviour.
* *

View File

@ -68,7 +68,7 @@ typedef struct _ClutterBehaviourClass ClutterBehaviourClass;
* ClutterBehaviourForeachFunc: * ClutterBehaviourForeachFunc:
* @behaviour: the #ClutterBehaviour * @behaviour: the #ClutterBehaviour
* @actor: an actor driven by @behaviour * @actor: an actor driven by @behaviour
* @data: optional data passed to the function * @data: (closure): optional data passed to the function
* *
* This function is passed to clutter_behaviour_actors_foreach() and * This function is passed to clutter_behaviour_actors_foreach() and
* will be called for each actor driven by @behaviour. * will be called for each actor driven by @behaviour.

View File

@ -490,7 +490,8 @@ clutter_container_foreach_with_internals (ClutterContainer *container,
* clutter_container_raise_child: * clutter_container_raise_child:
* @container: a #ClutterContainer * @container: a #ClutterContainer
* @actor: the actor to raise * @actor: the actor to raise
* @sibling: the sibling to raise to, or %NULL to raise to the top * @sibling: (allow-none): the sibling to raise to, or %NULL to raise
* to the top
* *
* Raises @actor to @sibling level, in the depth ordering. * Raises @actor to @sibling level, in the depth ordering.
* *
@ -545,7 +546,8 @@ clutter_container_raise_child (ClutterContainer *container,
* clutter_container_lower_child: * clutter_container_lower_child:
* @container: a #ClutterContainer * @container: a #ClutterContainer
* @actor: the actor to raise * @actor: the actor to raise
* @sibling: the sibling to lower to, or %NULL to lower to the bottom * @sibling: (allow-none): the sibling to lower to, or %NULL to lower
* to the bottom
* *
* Lowers @actor to @sibling level, in the depth ordering. * Lowers @actor to @sibling level, in the depth ordering.
* *

View File

@ -83,7 +83,7 @@ typedef struct _ClutterPathNode ClutterPathNode;
/** /**
* ClutterPathCallback: * ClutterPathCallback:
* @node: the node * @node: the node
* @data: optional data passed to the function * @data: (closure): optional data passed to the function
* *
* This function is passed to clutter_path_foreach() and will be * This function is passed to clutter_path_foreach() and will be
* called for each node contained in the path. * called for each node contained in the path.

View File

@ -1172,7 +1172,8 @@ clutter_script_error_quark (void)
/** /**
* clutter_script_add_search_paths: * clutter_script_add_search_paths:
* @script: a #ClutterScript * @script: a #ClutterScript
* @paths: an array of strings containing different search paths * @paths: (array length=n_paths): an array of strings containing
* different search paths
* @n_paths: the length of the passed array * @n_paths: the length of the passed array
* *
* Adds @paths to the list of search paths held by @script. * Adds @paths to the list of search paths held by @script.

View File

@ -2113,8 +2113,9 @@ clutter_stage_init (ClutterStage *self)
* *
* Clutter guarantess the existence of the default stage. * Clutter guarantess the existence of the default stage.
* *
* Return value: (transfer none): the main #ClutterStage. You should never * Return value: (transfer none) (type Clutter.Stage): the main
* destroy or unref the returned actor. * #ClutterStage. You should never destroy or unref the returned
* actor.
*/ */
ClutterActor * ClutterActor *
clutter_stage_get_default (void) clutter_stage_get_default (void)
@ -3042,7 +3043,7 @@ clutter_stage_set_fog (ClutterStage *stage,
/** /**
* clutter_stage_get_fog: * clutter_stage_get_fog:
* @stage: the #ClutterStage * @stage: the #ClutterStage
* @fog: return location for a #ClutterFog structure * @fog: (out): return location for a #ClutterFog structure
* *
* Retrieves the current depth cueing settings from the stage. * Retrieves the current depth cueing settings from the stage.
* *

View File

@ -3555,7 +3555,7 @@ clutter_text_new_full (const gchar *font_name,
/** /**
* clutter_text_new_with_text: * clutter_text_new_with_text:
* @font_name: a string with a font description * @font_name: (allow-none): a string with a font description
* @text: the contents of the actor * @text: the contents of the actor
* *
* Creates a new #ClutterText actor, using @font_name as the font * Creates a new #ClutterText actor, using @font_name as the font
@ -3863,7 +3863,7 @@ clutter_text_set_cursor_color (ClutterText *self,
/** /**
* clutter_text_get_cursor_color: * clutter_text_get_cursor_color:
* @self: a #ClutterText * @self: a #ClutterText
* @color: return location for a #ClutterColor * @color: (out): return location for a #ClutterColor
* *
* Retrieves the color of the cursor of a #ClutterText actor. * Retrieves the color of the cursor of a #ClutterText actor.
* *