[docs] Update the Since tags
authorEmmanuele Bassi <ebassi@linux.intel.com>
Tue, 28 Jul 2009 17:21:56 +0000 (18:21 +0100)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Tue, 28 Jul 2009 17:21:56 +0000 (18:21 +0100)
The next stable release of clutter-gtk is going to be 0.10.

clutter-gtk/gtk-clutter-scrollable.c
clutter-gtk/gtk-clutter-scrollable.h
clutter-gtk/gtk-clutter-util.c
clutter-gtk/gtk-clutter-util.h
clutter-gtk/gtk-clutter-viewport.c
clutter-gtk/gtk-clutter-zoomable.c

index 6fea476..28bf5c7 100644 (file)
  * SECTION:gtk-clutter-scrollable
  * @short_description: Interface for scrollable actors
  *
- * FIXME
+ * #GtkClutterScrollable is an interface for scrollable actors, reusing
+ * the #GtkAdjustment objects from GTK+ do drive the scrolling.
  *
- * #GtkClutterScrollable is available since Clutter-GTK 1.0
+ * #GtkClutterScrollable is available since Clutter-GTK 0.10
  */
 
 static void
@@ -30,7 +31,7 @@ gtk_clutter_scrollable_base_init (gpointer g_iface)
        * The #GtkAdjustment that determines the value of the
        * horizontal position for this scrollable actor.
        *
-       * Since: 1.0
+       * Since: 0.10
        */
       pspec = g_param_spec_object ("hadjustment",
                                    "Horizontal adjustment",
@@ -47,7 +48,7 @@ gtk_clutter_scrollable_base_init (gpointer g_iface)
        * The #GtkAdjustment that determines the value of the
        * vertical position for this scrollable actor.
        *
-       * Since: 1.0
+       * Since: 0.10
        */
       pspec = g_param_spec_object ("vadjustment",
                                    "Vertical adjustment",
@@ -93,7 +94,7 @@ gtk_clutter_scrollable_get_type (void)
  * Sets the horizontal and vertical adjustments used to determine
  * the position of the scrollable actor.
  *
- * Since: 1.0
+ * Since: 0.10
  */
 void
 gtk_clutter_scrollable_set_adjustments (GtkClutterScrollable *scrollable,
@@ -119,7 +120,7 @@ gtk_clutter_scrollable_set_adjustments (GtkClutterScrollable *scrollable,
  * Retrieves the horizontal and vertical adjustments used to
  * determine the position of the scrollable actor.
  *
- * Since: 1.0
+ * Since: 0.10
  */
 void
 gtk_clutter_scrollable_get_adjustments (GtkClutterScrollable  *scrollable,
index e42695b..844e2f8 100644 (file)
@@ -54,7 +54,7 @@ typedef struct _GtkClutterScrollableIface       GtkClutterScrollableIface;
  * The #GtkClutterScrollableIface structure contains only private data
  * and should be accessed using the provided functions.
  *
- * Since: 0.8.2
+ * Since: 0.10
  */
 struct _GtkClutterScrollableIface
 {
index 8dfcf68..c8a4f09 100644 (file)
@@ -651,7 +651,7 @@ gtk_clutter_init (int    *argc,
  * Return value: %CLUTTER_INIT_SUCCESS on success, a negative integer
  *   on failure.
  *
- * Since: 1.0
+ * Since: 0.10
  */
 ClutterInitError
 gtk_clutter_init_with_args (int            *argc,
index 013da99..9b42e9a 100644 (file)
@@ -53,7 +53,7 @@ typedef enum {
  *
  * An enumeration of error types used in ClutterGtk texture functions
  *
- * Since: 1.0
+ * Since: 0.10
  * */
 typedef enum {
   CLUTTER_GTK_TEXTURE_INVALID_STOCK_ID,
index 1d350f1..c2f6a15 100644 (file)
@@ -14,7 +14,7 @@
  * The #GtkClutterViewport can be used inside any #ClutterContainer
  * implementation.
  *
- * #GtkClutterViewport is available since Clutter-GTK 1.0
+ * #GtkClutterViewport is available since Clutter-GTK 0.10
  */
 
 #ifdef HAVE_CONFIG_H
@@ -792,7 +792,7 @@ gtk_clutter_viewport_class_init (GtkClutterViewportClass *klass)
    *
    * The #ClutterActor inside the viewport.
    *
-   * Since: 1.0
+   * Since: 0.10
    */
   pspec = g_param_spec_object ("child",
                                "Child",
@@ -808,7 +808,7 @@ gtk_clutter_viewport_class_init (GtkClutterViewportClass *klass)
    * vertex to convert event coordinates for the child of the
    * viewport.
    *
-   * Since: 1.0
+   * Since: 0.10
    */
   pspec = g_param_spec_boxed ("origin",
                               "Origin",
@@ -849,7 +849,7 @@ gtk_clutter_viewport_init (GtkClutterViewport *viewport)
  *
  * Return value: the newly created viewport actor
  *
- * Since: 1.0
+ * Since: 0.10
  */
 ClutterActor *
 gtk_clutter_viewport_new (GtkAdjustment *h_adjust,
@@ -873,7 +873,7 @@ gtk_clutter_viewport_new (GtkAdjustment *h_adjust,
  * Retrieves the current translation factor ("origin") used when
  * displaying the child of @viewport.
  *
- * Since: 1.0.
+ * Since: 0.10
  */
 void
 gtk_clutter_viewport_get_origin (GtkClutterViewport *viewport,
index 6758ac0..5901059 100644 (file)
@@ -10,7 +10,9 @@
  * SECTION:gtk-clutter-zoomable
  * @short_description: Interface for zoomable actors
  *
- * FIXME
+ * #GtkClutterZoomable is an interface for zoomable actors, using, like
+ * #GtkClutterScrollable, the #GtkAdjustment objects from GTK+ to drive
+ * the zoom factor.
  *
  * #GtkClutterZoomable is available since Clutter-GTK 1.0
  */
@@ -30,7 +32,7 @@ gtk_clutter_zoomable_base_init (gpointer g_iface)
        * The #GtkAdjustment that determines the value of
        * the zoom factor for this zoomable actor
        *
-       * Since: 1.0
+       * Since: 0.10
        */
       pspec = g_param_spec_object ("zadjustment",
                                    "Zoom Adjustment",
@@ -75,7 +77,7 @@ gtk_clutter_zoomable_get_type (void)
  * Sets the adjustment used to determine the zoom factor of
  * the zoomable actor
  *
- * Since: 1.0
+ * Since: 0.10
  */
 void
 gtk_clutter_zoomable_set_adjustment (GtkClutterZoomable *zoomable,
@@ -100,7 +102,7 @@ gtk_clutter_zoomable_set_adjustment (GtkClutterZoomable *zoomable,
  *
  * Return value: (transfer none): a #GtkAdjustment
  *
- * Since: 1.0
+ * Since: 0.10
  */
 GtkAdjustment *
 gtk_clutter_zoomable_get_adjustment (GtkClutterZoomable *zoomable)