]> Pileus Git - ~andy/gtk/commitdiff
Move documentation to inline comments: GtkHPaned
authorJavier Jardón <jjardon@gnome.org>
Mon, 11 Apr 2011 01:36:23 +0000 (02:36 +0100)
committerJavier Jardón <jjardon@gnome.org>
Mon, 11 Apr 2011 01:36:23 +0000 (02:36 +0100)
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkhpaned.sgml [deleted file]
gtk/gtkhpaned.c

index c992c535dbd41fef9f49d78481484dfa0afef5a3..3f6057482545a7c7522be53e49420eb97f26092f 100644 (file)
@@ -31,6 +31,7 @@ gtkfeatures.sgml
 gtkfixed.sgml
 gtkfilefilter.sgml
 gtkhbox.sgml
+gtkhpaned.sgml
 gtkiconview.sgml
 gtkimagemenuitem.sgml
 gtkimcontextsimple.sgml
diff --git a/docs/reference/gtk/tmpl/gtkhpaned.sgml b/docs/reference/gtk/tmpl/gtkhpaned.sgml
deleted file mode 100644 (file)
index 25fd033..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkHPaned
-
-<!-- ##### SECTION Short_Description ##### -->
-A container with two panes arranged horizontally
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-The HPaned widget is a container widget with two
-children arranged horizontally. The division between
-the two panes is adjustable by the user by dragging
-a handle. See #GtkPaned for details.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkHPaned ##### -->
-<para>
-</para>
-
-
-<!-- ##### FUNCTION gtk_hpaned_new ##### -->
-<para>
-Create a new #GtkHPaned
-</para>
-
-@void: 
-@Returns: the new #GtkHPaned
-
-
index 86742f564c66251d59ce75f54bf6bd0c63d46821..e0b864c63e375b583453dc6cc6e63bf43eac1069 100644 (file)
 #include "gtkorientable.h"
 
 
+/**
+ * SECTION:gtkhpaned
+ * @Short_description: A container with two panes arranged horizontally
+ * @Title: GtkHPaned
+ *
+ * The HPaned widget is a container widget with two
+ * children arranged horizontally. The division between
+ * the two panes is adjustable by the user by dragging
+ * a handle. See #GtkPaned for details.
+ */
+
+
 G_DEFINE_TYPE (GtkHPaned, gtk_hpaned, GTK_TYPE_PANED)
 
 static void
@@ -44,6 +56,13 @@ gtk_hpaned_init (GtkHPaned *hpaned)
                                   GTK_ORIENTATION_HORIZONTAL);
 }
 
+/**
+ * gtk_hpaned_new:
+ *
+ * Create a new #GtkHPaned
+ *
+ * Returns: the new #GtkHPaned
+ */
 GtkWidget *
 gtk_hpaned_new (void)
 {