]> Pileus Git - ~andy/gtk/commitdiff
Move documentation to inline comments: GtkOrientable
authorJavier Jardón <jjardon@gnome.org>
Thu, 13 May 2010 01:35:02 +0000 (03:35 +0200)
committerJavier Jardón <jjardon@gnome.org>
Thu, 13 May 2010 01:35:02 +0000 (03:35 +0200)
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkorientable.sgml [deleted file]
gtk/gtkorientable.c

index 85e880b6bbc762dcb256ab0fe47459b7564caca2..8b4eaa0db94a3b3747813deeca4ef261e5ebb1f0 100644 (file)
@@ -3,6 +3,7 @@ gtkbox.sgml
 gtkbuilder.sgml
 gtkhbox.sgml
 gtkmessagedialog.sgml
+gtkorientable.sgml
 gtkpagesetupunixdialog.sgml
 gtkseparator.sgml
 gtktesting.sgml
diff --git a/docs/reference/gtk/tmpl/gtkorientable.sgml b/docs/reference/gtk/tmpl/gtkorientable.sgml
deleted file mode 100644 (file)
index 4f1a153..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkOrientable
-
-<!-- ##### SECTION Short_Description ##### -->
-An interface for flippable widgets
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-The #GtkOrientable interface is implemented by all widgets that can be 
-oriented horizontally or vertically. Historically, such widgets have been 
-realized as subclasses of a common base class (e.g #GtkBox/#GtkHBox/#GtkVBox
-and #GtkScale/#GtkHScale/#GtkVScale). GtkOrientable is more flexible in that 
-it allows the orientation to be changed at runtime, allowing the widgets
-to 'flip'.
-</para>
-<para>
-GtkOrientable was introduced in GTK+ 2.16.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkOrientable ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### ARG GtkOrientable:orientation ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION gtk_orientable_get_orientation ##### -->
-<para>
-
-</para>
-
-@orientable: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_orientable_set_orientation ##### -->
-<para>
-
-</para>
-
-@orientable: 
-@orientation: 
-
-
index 95102cb5d90211c96a59496974d1ecc7933b4486..636f65da8f2d6a202e776cc7d7aba0ade45a9def 100644 (file)
 #include "gtkalias.h"
 
 
+/**
+ * SECTION:gtkorientable
+ * @Short_description: An interface for flippable widgets
+ * @Title: GtkOrientable
+ *
+ * The #GtkOrientable interface is implemented by all widgets that can be
+ * oriented horizontally or vertically. Historically, such widgets have been
+ * realized as subclasses of a common base class (e.g #GtkBox/#GtkHBox/#GtkVBox
+ * or #GtkScale/#GtkHScale/#GtkVScale). #GtkOrientable is more flexible in that
+ * it allows the orientation to be changed at runtime, allowing the widgets
+ * to 'flip'.
+ *
+ * #GtkOrientable was introduced in GTK+ 2.16.
+ */
+
+
 typedef GtkOrientableIface GtkOrientableInterface;
 G_DEFINE_INTERFACE (GtkOrientable, gtk_orientable, G_TYPE_OBJECT)