docs: Fixes for building the API reference

This commit is contained in:
Emmanuele Bassi 2011-07-26 13:43:37 +01:00
parent 278daca61c
commit 78049c38bf
15 changed files with 41 additions and 43 deletions

View File

@ -2119,10 +2119,10 @@ clutter_actor_apply_transform_to_point (ClutterActor *self,
* using cogl_set_modelview_matrix() for example then you would want a matrix * using cogl_set_modelview_matrix() for example then you would want a matrix
* that transforms into eye coordinates. * that transforms into eye coordinates.
* *
* <note>This function explicitly initializes the given @matrix. If you just * <note><para>This function explicitly initializes the given @matrix. If you just
* want clutter to multiply a relative transformation with an existing matrix * want clutter to multiply a relative transformation with an existing matrix
* you can use clutter_actor_apply_relative_transformation_matrix() instead. * you can use clutter_actor_apply_relative_transformation_matrix()
* </note> * instead.</para></note>
* *
*/ */
/* XXX: We should consider caching the stage relative modelview along with /* XXX: We should consider caching the stage relative modelview along with

View File

@ -2007,7 +2007,7 @@ animation_create_for_actor (ClutterActor *actor)
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @alpha: a #ClutterAlpha * @alpha: a #ClutterAlpha
* @first_property_name: the name of a property * @first_property_name: the name of a property
* @Varargs: a %NULL terminated list of property names and * @...: a %NULL terminated list of property names and
* property values * property values
* *
* Animates the given list of properties of @actor between the current * Animates the given list of properties of @actor between the current
@ -2064,7 +2064,7 @@ clutter_actor_animate_with_alpha (ClutterActor *actor,
* @mode: an animation mode logical id * @mode: an animation mode logical id
* @timeline: a #ClutterTimeline * @timeline: a #ClutterTimeline
* @first_property_name: the name of a property * @first_property_name: the name of a property
* @Varargs: a %NULL terminated list of property names and * @...: a %NULL terminated list of property names and
* property values * property values
* *
* Animates the given list of properties of @actor between the current * Animates the given list of properties of @actor between the current
@ -2115,7 +2115,7 @@ clutter_actor_animate_with_timeline (ClutterActor *actor,
* @mode: an animation mode logical id * @mode: an animation mode logical id
* @duration: duration of the animation, in milliseconds * @duration: duration of the animation, in milliseconds
* @first_property_name: the name of a property * @first_property_name: the name of a property
* @Varargs: a %NULL terminated list of property names and * @...: a %NULL terminated list of property names and
* property values * property values
* *
* Animates the given list of properties of @actor between the current * Animates the given list of properties of @actor between the current

View File

@ -1161,7 +1161,7 @@ clutter_animator_get_duration (ClutterAnimator *animator)
* @first_mode: the id of the alpha function to use * @first_mode: the id of the alpha function to use
* @first_progress: at which stage of the animation this value applies; the * @first_progress: at which stage of the animation this value applies; the
* range is a normalized floating point value between 0 and 1 * range is a normalized floating point value between 0 and 1
* @Varargs: the value first_property_name should have for first_object * @...: the value first_property_name should have for first_object
* at first_progress, followed by more (object, property_name, mode, * at first_progress, followed by more (object, property_name, mode,
* progress, value) tuples, followed by %NULL * progress, value) tuples, followed by %NULL
* *

View File

@ -807,7 +807,7 @@ clutter_box_set_property_valist (ClutterBox *box,
* @box: a #ClutterBox * @box: a #ClutterBox
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @first_property: the name of the first property to set, or %NULL * @first_property: the name of the first property to set, or %NULL
* @Varargs: a list of property name and value pairs, terminated by %NULL * @...: a list of property name and value pairs, terminated by %NULL
* *
* Adds @actor to @box and sets layout properties at the same time, * Adds @actor to @box and sets layout properties at the same time,
* if the #ClutterLayoutManager used by @box has them * if the #ClutterLayoutManager used by @box has them
@ -847,7 +847,7 @@ clutter_box_pack (ClutterBox *box,
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @sibling: (allow-none): a #ClutterActor or %NULL * @sibling: (allow-none): a #ClutterActor or %NULL
* @first_property: the name of the first property to set, or %NULL * @first_property: the name of the first property to set, or %NULL
* @Varargs: a list of property name and value pairs, terminated by %NULL * @...: a list of property name and value pairs, terminated by %NULL
* *
* Adds @actor to @box, placing it after @sibling, and sets layout * Adds @actor to @box, placing it after @sibling, and sets layout
* properties at the same time, if the #ClutterLayoutManager used by * properties at the same time, if the #ClutterLayoutManager used by
@ -891,7 +891,7 @@ clutter_box_pack_after (ClutterBox *box,
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @sibling: (allow-none): a #ClutterActor or %NULL * @sibling: (allow-none): a #ClutterActor or %NULL
* @first_property: the name of the first property to set, or %NULL * @first_property: the name of the first property to set, or %NULL
* @Varargs: a list of property name and value pairs, terminated by %NULL * @...: a list of property name and value pairs, terminated by %NULL
* *
* Adds @actor to @box, placing it before @sibling, and sets layout * Adds @actor to @box, placing it before @sibling, and sets layout
* properties at the same time, if the #ClutterLayoutManager used by * properties at the same time, if the #ClutterLayoutManager used by
@ -935,7 +935,7 @@ clutter_box_pack_before (ClutterBox *box,
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @position: the position to insert the @actor at * @position: the position to insert the @actor at
* @first_property: the name of the first property to set, or %NULL * @first_property: the name of the first property to set, or %NULL
* @Varargs: a list of property name and value pairs, terminated by %NULL * @...: a list of property name and value pairs, terminated by %NULL
* *
* Adds @actor to @box, placing it at @position, and sets layout * Adds @actor to @box, placing it at @position, and sets layout
* properties at the same time, if the #ClutterLayoutManager used by * properties at the same time, if the #ClutterLayoutManager used by

View File

@ -594,7 +594,7 @@ clutter_cairo_texture_class_init (ClutterCairoTextureClass *klass)
/** /**
* ClutterCairoTexture::draw: * ClutterCairoTexture::draw:
* @self: the #ClutterCairoTexture that emitted the signal * @texture: the #ClutterCairoTexture that emitted the signal
* @cr: the Cairo context to use to draw * @cr: the Cairo context to use to draw
* *
* The ::draw signal is emitted each time a #ClutterCairoTexture has * The ::draw signal is emitted each time a #ClutterCairoTexture has

View File

@ -87,6 +87,7 @@ struct _ClutterCairoTexture
* ClutterCairoTextureClass: * ClutterCairoTextureClass:
* @create_surface: class handler for the #ClutterCairoTexture::create-surface * @create_surface: class handler for the #ClutterCairoTexture::create-surface
* signal * signal
* @draw: class handler for the #ClutterCairoTexture::draw signal
* *
* The #ClutterCairoTextureClass struct contains only private data. * The #ClutterCairoTextureClass struct contains only private data.
* *

View File

@ -180,7 +180,7 @@ clutter_container_default_init (ClutterContainerInterface *iface)
* clutter_container_add: (skip) * clutter_container_add: (skip)
* @container: a #ClutterContainer * @container: a #ClutterContainer
* @first_actor: the first #ClutterActor to add * @first_actor: the first #ClutterActor to add
* @Varargs: %NULL terminated list of actors to add * @...: %NULL terminated list of actors to add
* *
* Adds a list of #ClutterActor<!-- -->s to @container. Each time and * Adds a list of #ClutterActor<!-- -->s to @container. Each time and
* actor is added, the "actor-added" signal is emitted. Each actor should * actor is added, the "actor-added" signal is emitted. Each actor should
@ -284,7 +284,7 @@ clutter_container_add_valist (ClutterContainer *container,
* clutter_container_remove: (skip) * clutter_container_remove: (skip)
* @container: a #ClutterContainer * @container: a #ClutterContainer
* @first_actor: first #ClutterActor to remove * @first_actor: first #ClutterActor to remove
* @Varargs: a %NULL-terminated list of actors to remove * @...: a %NULL-terminated list of actors to remove
* *
* Removes a %NULL terminated list of #ClutterActor<!-- -->s from * Removes a %NULL terminated list of #ClutterActor<!-- -->s from
* @container. Each actor should be unparented, so if you want to keep it * @container. Each actor should be unparented, so if you want to keep it

View File

@ -495,7 +495,7 @@ clutter_interval_get_interval_valist (ClutterInterval *interval,
/** /**
* clutter_interval_new: * clutter_interval_new:
* @gtype: the type of the values in the interval * @gtype: the type of the values in the interval
* @Varargs: the initial value and the final value of the interval * @...: the initial value and the final value of the interval
* *
* Creates a new #ClutterInterval holding values of type @gtype. * Creates a new #ClutterInterval holding values of type @gtype.
* *
@ -785,7 +785,7 @@ clutter_interval_peek_final_value (ClutterInterval *interval)
/** /**
* clutter_interval_set_interval: * clutter_interval_set_interval:
* @interval: a #ClutterInterval * @interval: a #ClutterInterval
* @Varargs: the initial and final values of the interval * @...: the initial and final values of the interval
* *
* Variable arguments wrapper for clutter_interval_set_initial_value() * Variable arguments wrapper for clutter_interval_set_initial_value()
* and clutter_interval_set_final_value() that avoids using the * and clutter_interval_set_final_value() that avoids using the
@ -819,7 +819,7 @@ clutter_interval_set_interval (ClutterInterval *interval,
/** /**
* clutter_interval_get_interval: * clutter_interval_get_interval:
* @interval: a #ClutterInterval * @interval: a #ClutterInterval
* @Varargs: return locations for the initial and final values of * @...: return locations for the initial and final values of
* the interval * the interval
* *
* Variable arguments wrapper for clutter_interval_get_initial_value() * Variable arguments wrapper for clutter_interval_get_initial_value()

View File

@ -896,7 +896,7 @@ layout_get_property_internal (ClutterLayoutManager *manager,
* @container: a #ClutterContainer using @manager * @container: a #ClutterContainer using @manager
* @actor: a #ClutterActor child of @container * @actor: a #ClutterActor child of @container
* @first_property: the first property name * @first_property: the first property name
* @Varargs: a list of property name and value pairs * @...: a list of property name and value pairs
* *
* Sets a list of properties and their values on the #ClutterLayoutMeta * Sets a list of properties and their values on the #ClutterLayoutMeta
* associated by @manager to a child of @container * associated by @manager to a child of @container
@ -1038,7 +1038,7 @@ clutter_layout_manager_child_set_property (ClutterLayoutManager *manager,
* @container: a #ClutterContainer using @manager * @container: a #ClutterContainer using @manager
* @actor: a #ClutterActor child of @container * @actor: a #ClutterActor child of @container
* @first_property: the name of the first property * @first_property: the name of the first property
* @Varargs: a list of property name and return location for the value pairs * @...: a list of property name and return location for the value pairs
* *
* Retrieves the values for a list of properties out of the * Retrieves the values for a list of properties out of the
* #ClutterLayoutMeta created by @manager and attached to the * #ClutterLayoutMeta created by @manager and attached to the

View File

@ -718,7 +718,7 @@ clutter_list_model_init (ClutterListModel *model)
/** /**
* clutter_list_model_new: * clutter_list_model_new:
* @n_columns: number of columns in the model * @n_columns: number of columns in the model
* @Varargs: @n_columns number of #GType and string pairs * @...: @n_columns number of #GType and string pairs
* *
* Creates a new default model with @n_columns columns with the types * Creates a new default model with @n_columns columns with the types
* and names passed in. * and names passed in.

View File

@ -1074,7 +1074,7 @@ static void clutter_model_iter_set_internal_valist (ClutterModelIter *iter,
/** /**
* clutter_model_append: * clutter_model_append:
* @model: a #ClutterModel * @model: a #ClutterModel
* @Varargs: pairs of column number and value, terminated with -1 * @...: pairs of column number and value, terminated with -1
* *
* Creates and appends a new row to the #ClutterModel, setting the * Creates and appends a new row to the #ClutterModel, setting the
* row values upon creation. For example, to append a new row where * row values upon creation. For example, to append a new row where
@ -1164,7 +1164,7 @@ clutter_model_prependv (ClutterModel *model,
/** /**
* clutter_model_prepend: * clutter_model_prepend:
* @model: a #ClutterModel * @model: a #ClutterModel
* @Varargs: pairs of column number and value, terminated with -1 * @...: pairs of column number and value, terminated with -1
* *
* Creates and prepends a new row to the #ClutterModel, setting the row * Creates and prepends a new row to the #ClutterModel, setting the row
* values upon creation. For example, to prepend a new row where column 0 * values upon creation. For example, to prepend a new row where column 0
@ -1206,7 +1206,7 @@ clutter_model_prepend (ClutterModel *model,
* clutter_model_insert: * clutter_model_insert:
* @model: a #ClutterModel * @model: a #ClutterModel
* @row: the position to insert the new row * @row: the position to insert the new row
* @Varargs: pairs of column number and value, terminated with -1 * @...: pairs of column number and value, terminated with -1
* *
* Inserts a new row to the #ClutterModel at @row, setting the row * Inserts a new row to the #ClutterModel at @row, setting the row
* values upon creation. For example, to insert a new row at index 100, * values upon creation. For example, to insert a new row at index 100,
@ -2068,7 +2068,7 @@ clutter_model_iter_set_valist (ClutterModelIter *iter,
/** /**
* clutter_model_iter_get: * clutter_model_iter_get:
* @iter: a #ClutterModelIter * @iter: a #ClutterModelIter
* @Varargs: a list of column/return location pairs, terminated by -1 * @...: a list of column/return location pairs, terminated by -1
* *
* Gets the value of one or more cells in the row referenced by @iter. The * Gets the value of one or more cells in the row referenced by @iter. The
* variable argument list should contain integer column numbers, each column * variable argument list should contain integer column numbers, each column
@ -2191,7 +2191,7 @@ clutter_model_iter_get_valist (ClutterModelIter *iter,
/** /**
* clutter_model_iter_set: * clutter_model_iter_set:
* @iter: a #ClutterModelIter * @iter: a #ClutterModelIter
* @Varargs: a list of column/return location pairs, terminated by -1 * @...: a list of column/return location pairs, terminated by -1
* *
* Sets the value of one or more cells in the row referenced by @iter. The * Sets the value of one or more cells in the row referenced by @iter. The
* variable argument list should contain integer column numbers, each column * variable argument list should contain integer column numbers, each column

View File

@ -290,16 +290,15 @@ clutter_paint_volume_set_width (ClutterPaintVolume *pv,
* around the volume. It returns the size of that bounding box as * around the volume. It returns the size of that bounding box as
* measured along the x-axis. * measured along the x-axis.
* *
* <note>If, for example, clutter_actor_get_transformed_paint_volume() * <note><para>If, for example, clutter_actor_get_transformed_paint_volume()
* is used to transform a 2D child actor that is 100px wide, 100px * is used to transform a 2D child actor that is 100px wide, 100px
* high and 0px deep into container coordinates then the width might * high and 0px deep into container coordinates then the width might
* not simply be 100px if the child actor has a 3D rotation applied to * not simply be 100px if the child actor has a 3D rotation applied to
* it. * it.</para>
* * <para>Remember; after clutter_actor_get_transformed_paint_volume() is
* Remember; after clutter_actor_get_transformed_paint_volume() is
* used then a transformed child volume will be defined relative to the * used then a transformed child volume will be defined relative to the
* ancestor container actor and so a 2D child actor * ancestor container actor and so a 2D child actor
* can have a 3D bounding volume.</note> * can have a 3D bounding volume.</para></note>
* *
* <note>There are no accuracy guarantees for the reported width, * <note>There are no accuracy guarantees for the reported width,
* except that it must always be >= to the true width. This is * except that it must always be >= to the true width. This is
@ -382,16 +381,15 @@ clutter_paint_volume_set_height (ClutterPaintVolume *pv,
* around the volume. It returns the size of that bounding box as * around the volume. It returns the size of that bounding box as
* measured along the y-axis. * measured along the y-axis.
* *
* <note>If, for example, clutter_actor_get_transformed_paint_volume() * <note><para>If, for example, clutter_actor_get_transformed_paint_volume()
* is used to transform a 2D child actor that is 100px wide, 100px * is used to transform a 2D child actor that is 100px wide, 100px
* high and 0px deep into container coordinates then the height might * high and 0px deep into container coordinates then the height might
* not simply be 100px if the child actor has a 3D rotation applied to * not simply be 100px if the child actor has a 3D rotation applied to
* it. * it.</para>
* * <para>Remember; after clutter_actor_get_transformed_paint_volume() is
* Remember; after clutter_actor_get_transformed_paint_volume() is
* used then a transformed child volume will be defined relative to the * used then a transformed child volume will be defined relative to the
* ancestor container actor and so a 2D child actor * ancestor container actor and so a 2D child actor
* can have a 3D bounding volume.</note> * can have a 3D bounding volume.</para></note>
* *
* <note>There are no accuracy guarantees for the reported height, * <note>There are no accuracy guarantees for the reported height,
* except that it must always be >= to the true height. This is * except that it must always be >= to the true height. This is
@ -475,16 +473,15 @@ clutter_paint_volume_set_depth (ClutterPaintVolume *pv,
* around the volume. It returns the size of that bounding box as * around the volume. It returns the size of that bounding box as
* measured along the z-axis. * measured along the z-axis.
* *
* <note>If, for example, clutter_actor_get_transformed_paint_volume() * <note><para>If, for example, clutter_actor_get_transformed_paint_volume()
* is used to transform a 2D child actor that is 100px wide, 100px * is used to transform a 2D child actor that is 100px wide, 100px
* high and 0px deep into container coordinates then the depth might * high and 0px deep into container coordinates then the depth might
* not simply be 0px if the child actor has a 3D rotation applied to * not simply be 0px if the child actor has a 3D rotation applied to
* it. * it.</para>
* * <para>Remember; after clutter_actor_get_transformed_paint_volume() is
* Remember; after clutter_actor_get_transformed_paint_volume() is
* used then the transformed volume will be defined relative to the * used then the transformed volume will be defined relative to the
* container actor and in container coordinates a 2D child actor * container actor and in container coordinates a 2D child actor
* can have a 3D bounding volume.</note> * can have a 3D bounding volume.</para></note>
* *
* <note>There are no accuracy guarantees for the reported depth, * <note>There are no accuracy guarantees for the reported depth,
* except that it must always be >= to the true depth. This is * except that it must always be >= to the true depth. This is

View File

@ -661,7 +661,7 @@ clutter_script_get_objects_valist (ClutterScript *script,
* clutter_script_get_objects: * clutter_script_get_objects:
* @script: a #ClutterScript * @script: a #ClutterScript
* @first_name: the name of the first object to retrieve * @first_name: the name of the first object to retrieve
* @Varargs: return location for a #GObject, then additional names, ending * @...: return location for a #GObject, then additional names, ending
* with %NULL * with %NULL
* *
* Retrieves a list of objects for the given names. After @script, object * Retrieves a list of objects for the given names. After @script, object

View File

@ -727,7 +727,7 @@ add_uniform:
* @name: the name of the uniform to set * @name: the name of the uniform to set
* @gtype: the type of the uniform to set * @gtype: the type of the uniform to set
* @n_values: the number of values * @n_values: the number of values
* @Varargs: a list of values * @...: a list of values
* *
* Sets a list of values as the payload for the uniform @name inside * Sets a list of values as the payload for the uniform @name inside
* the shader effect * the shader effect

View File

@ -847,7 +847,7 @@ get_property_from_object (GObject *gobject,
* @first_object: a #GObject * @first_object: a #GObject
* @first_property_name: a property of @first_object to specify a key for * @first_property_name: a property of @first_object to specify a key for
* @first_mode: the id of the alpha function to use * @first_mode: the id of the alpha function to use
* @Varargs: the value @first_property_name should have in @target_state_name, * @...: the value @first_property_name should have in @target_state_name,
* followed by object, property name, mode, value tuples, terminated * followed by object, property name, mode, value tuples, terminated
* by %NULL * by %NULL
* *