introspection: add some missing annotations

https://bugzilla.gnome.org/show_bug.cgi?id=667840
This commit is contained in:
Evan Nemerson 2012-01-12 18:15:55 -08:00
parent 2475443a87
commit 4b6156a57a
3 changed files with 13 additions and 13 deletions

View File

@ -5841,7 +5841,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::parent-set: * ClutterActor::parent-set:
* @actor: the object which received the signal * @actor: the object which received the signal
* @old_parent: the previous parent of the actor, or %NULL * @old_parent: (allow-none): the previous parent of the actor, or %NULL
* *
* This signal is emitted when the parent of the actor changes. * This signal is emitted when the parent of the actor changes.
* *
@ -5972,7 +5972,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::button-press-event: * ClutterActor::button-press-event:
* @actor: the actor which received the event * @actor: the actor which received the event
* @event: a #ClutterButtonEvent * @event: (type ClutterButtonEvent): a #ClutterButtonEvent
* *
* The ::button-press-event signal is emitted each time a mouse button * The ::button-press-event signal is emitted each time a mouse button
* is pressed on @actor. * is pressed on @actor.
@ -5994,7 +5994,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::button-release-event: * ClutterActor::button-release-event:
* @actor: the actor which received the event * @actor: the actor which received the event
* @event: a #ClutterButtonEvent * @event: (type ClutterButtonEvent): a #ClutterButtonEvent
* *
* The ::button-release-event signal is emitted each time a mouse button * The ::button-release-event signal is emitted each time a mouse button
* is released on @actor. * is released on @actor.
@ -6016,7 +6016,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::scroll-event: * ClutterActor::scroll-event:
* @actor: the actor which received the event * @actor: the actor which received the event
* @event: a #ClutterScrollEvent * @event: (type ClutterScrollEvent): a #ClutterScrollEvent
* *
* The ::scroll-event signal is emitted each time the mouse is * The ::scroll-event signal is emitted each time the mouse is
* scrolled on @actor * scrolled on @actor
@ -6038,7 +6038,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::key-press-event: * ClutterActor::key-press-event:
* @actor: the actor which received the event * @actor: the actor which received the event
* @event: a #ClutterKeyEvent * @event: (type ClutterKeyEvent): a #ClutterKeyEvent
* *
* The ::key-press-event signal is emitted each time a keyboard button * The ::key-press-event signal is emitted each time a keyboard button
* is pressed while @actor has key focus (see clutter_stage_set_key_focus()). * is pressed while @actor has key focus (see clutter_stage_set_key_focus()).
@ -6060,7 +6060,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::key-release-event: * ClutterActor::key-release-event:
* @actor: the actor which received the event * @actor: the actor which received the event
* @event: a #ClutterKeyEvent * @event: (type ClutterKeyEvent): a #ClutterKeyEvent
* *
* The ::key-release-event signal is emitted each time a keyboard button * The ::key-release-event signal is emitted each time a keyboard button
* is released while @actor has key focus (see * is released while @actor has key focus (see
@ -6083,7 +6083,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::motion-event: * ClutterActor::motion-event:
* @actor: the actor which received the event * @actor: the actor which received the event
* @event: a #ClutterMotionEvent * @event: (type ClutterMotionEvent): a #ClutterMotionEvent
* *
* The ::motion-event signal is emitted each time the mouse pointer is * The ::motion-event signal is emitted each time the mouse pointer is
* moved over @actor. * moved over @actor.
@ -6140,7 +6140,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::enter-event: * ClutterActor::enter-event:
* @actor: the actor which the pointer has entered. * @actor: the actor which the pointer has entered.
* @event: a #ClutterCrossingEvent * @event: (type ClutterCrossingEvent): a #ClutterCrossingEvent
* *
* The ::enter-event signal is emitted when the pointer enters the @actor * The ::enter-event signal is emitted when the pointer enters the @actor
* *
@ -6162,7 +6162,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::leave-event: * ClutterActor::leave-event:
* @actor: the actor which the pointer has left * @actor: the actor which the pointer has left
* @event: a #ClutterCrossingEvent * @event: (type ClutterCrossingEvent): a #ClutterCrossingEvent
* *
* The ::leave-event signal is emitted when the pointer leaves the @actor. * The ::leave-event signal is emitted when the pointer leaves the @actor.
* *
@ -12421,7 +12421,7 @@ _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) (type Clutter.Actor): the stage * Return value: (transfer none) (type Clutter.Stage): the stage
* containing the actor, or %NULL * containing the actor, or %NULL
* *
* Since: 0.8 * Since: 0.8

View File

@ -782,8 +782,8 @@ clutter_list_model_new (guint n_columns,
/** /**
* clutter_list_model_newv: * clutter_list_model_newv:
* @n_columns: number of columns in the model * @n_columns: number of columns in the model
* @types: an array of #GType types for the columns, from first to last * @types: (array length=n_columns): an array of #GType types for the columns, from first to last
* @names: an array of names for the columns, from first to last * @names: (array length=n_columns): an array of names for the columns, from first to last
* *
* Non-vararg version of clutter_list_model_new(). This function is * Non-vararg version of clutter_list_model_new(). This function is
* useful for language bindings. * useful for language bindings.

View File

@ -413,7 +413,7 @@ clutter_timeout_pool_new (gint priority)
* @pool: a #ClutterTimeoutPool * @pool: a #ClutterTimeoutPool
* @fps: the time between calls to the function, in frames per second * @fps: the time between calls to the function, in frames per second
* @func: function to call * @func: function to call
* @data: data to pass to the function, or %NULL * @data: (closure): data to pass to the function, or %NULL
* @notify: function to call when the timeout is removed, or %NULL * @notify: function to call when the timeout is removed, or %NULL
* *
* Sets a function to be called at regular intervals, and puts it inside * Sets a function to be called at regular intervals, and puts it inside