ges: Add 'Since 0.10.2' to the new effects related API

This commit is contained in:
Thibault Saunier 2011-05-06 14:55:31 -03:00
parent ed8c00aa73
commit 898ddfde87
5 changed files with 16 additions and 0 deletions

View file

@ -27,6 +27,8 @@
* In a #GESSimpleTimelineLayer, the priorities will be set for you but if * In a #GESSimpleTimelineLayer, the priorities will be set for you but if
* you use another type of #GESTimelineLayer, you will have to handle it * you use another type of #GESTimelineLayer, you will have to handle it
* yourself. * yourself.
*
* Since: 0.10.2
*/ */
#include <ges/ges.h> #include <ges/ges.h>

View file

@ -266,6 +266,8 @@ ges_timeline_object_class_init (GESTimelineObjectClass * klass)
* @effect: the #GESTrackEffect that was added. * @effect: the #GESTrackEffect that was added.
* *
* Will be emitted after an effect was added to the object. * Will be emitted after an effect was added to the object.
*
* Since: 0.10.2
*/ */
ges_timeline_object_signals[EFFECT_ADDED] = ges_timeline_object_signals[EFFECT_ADDED] =
g_signal_new ("effect-added", G_TYPE_FROM_CLASS (klass), g_signal_new ("effect-added", G_TYPE_FROM_CLASS (klass),
@ -278,6 +280,8 @@ ges_timeline_object_class_init (GESTimelineObjectClass * klass)
* @effect: the #GESTrackEffect that was added. * @effect: the #GESTrackEffect that was added.
* *
* Will be emitted after an effect was remove from the object. * Will be emitted after an effect was remove from the object.
*
* Since: 0.10.2
*/ */
ges_timeline_object_signals[EFFECT_REMOVED] = ges_timeline_object_signals[EFFECT_REMOVED] =
g_signal_new ("effect-removed", G_TYPE_FROM_CLASS (klass), g_signal_new ("effect-removed", G_TYPE_FROM_CLASS (klass),
@ -862,6 +866,8 @@ sort_track_effects (gpointer a, gpointer b, GESTimelineObject * object)
* @object order by ascendant priorities. * @object order by ascendant priorities.
* The refcount of the objects will be increased. The user will have to * The refcount of the objects will be increased. The user will have to
* unref each #GESTrackEffect and free the #GList. * unref each #GESTrackEffect and free the #GList.
*
* Since: 0.10.2
*/ */
GList * GList *
ges_timeline_object_get_top_effects (GESTimelineObject * object) ges_timeline_object_get_top_effects (GESTimelineObject * object)
@ -888,6 +894,8 @@ ges_timeline_object_get_top_effects (GESTimelineObject * object)
* Gets the top position of an effect. * Gets the top position of an effect.
* *
* Returns: The top position of the effect, -1 if something went wrong. * Returns: The top position of the effect, -1 if something went wrong.
*
* Since: 0.10.2
*/ */
gint gint
ges_timeline_object_get_top_effect_position (GESTimelineObject * object, ges_timeline_object_get_top_effect_position (GESTimelineObject * object,
@ -907,6 +915,8 @@ ges_timeline_object_get_top_effect_position (GESTimelineObject * object,
* This is a convenience method that lets you set the priority of a top effect. * This is a convenience method that lets you set the priority of a top effect.
* *
* Returns: %TRUE if @effect was successfuly moved, %FALSE otherwise. * Returns: %TRUE if @effect was successfuly moved, %FALSE otherwise.
*
* Since: 0.10.2
*/ */
gboolean gboolean
ges_timeline_object_set_top_effect_priority (GESTimelineObject * object, ges_timeline_object_set_top_effect_priority (GESTimelineObject * object,

View file

@ -30,6 +30,8 @@
* In a #GESSimpleTimelineLayer, the priorities will be set for you but if * In a #GESSimpleTimelineLayer, the priorities will be set for you but if
* you use another type of #GESTimelineLayer, you will have to handle it * you use another type of #GESTimelineLayer, you will have to handle it
* yourself. * yourself.
*
* Since: 0.10.2
*/ */
#include <ges/ges.h> #include <ges/ges.h>

View file

@ -22,6 +22,7 @@
* @short_description: adds an effect to a stream in a #GESTimelineSource or a * @short_description: adds an effect to a stream in a #GESTimelineSource or a
* #GESTimelineLayer * #GESTimelineLayer
* *
* Since: 0.10.2
*/ */
#include <glib/gprintf.h> #include <glib/gprintf.h>

View file

@ -22,6 +22,7 @@
* @short_description: adds an effect build from a parse-launch style * @short_description: adds an effect build from a parse-launch style
* bin description to a stream in a #GESTimelineSource or a #GESTimelineLayer * bin description to a stream in a #GESTimelineSource or a #GESTimelineLayer
* *
* Since: 0.10.2
*/ */
#include "ges-internal.h" #include "ges-internal.h"