diff options
author | Javier Jardón <jjardon@gnome.org> | 2011-04-11 02:36:23 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2011-04-11 02:36:23 +0100 |
commit | f7f7d4eee484c5413a1ebd82a2ad3a2c617396ae (patch) | |
tree | 86a45b2c2235a55339c76aec14b0544fec5a9c6e | |
parent | 735f3a23a41f51f72fb64562643d339489a82f51 (diff) | |
download | gtk+-f7f7d4eee484c5413a1ebd82a2ad3a2c617396ae.tar.gz |
Move documentation to inline comments: GtkHPaned
-rw-r--r-- | docs/reference/gtk/tmpl/.gitignore | 1 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtkhpaned.sgml | 39 | ||||
-rw-r--r-- | gtk/gtkhpaned.c | 19 |
3 files changed, 20 insertions, 39 deletions
diff --git a/docs/reference/gtk/tmpl/.gitignore b/docs/reference/gtk/tmpl/.gitignore index c992c535db..3f60574825 100644 --- a/docs/reference/gtk/tmpl/.gitignore +++ b/docs/reference/gtk/tmpl/.gitignore @@ -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 index 25fd0333b5..0000000000 --- a/docs/reference/gtk/tmpl/gtkhpaned.sgml +++ /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 - - diff --git a/gtk/gtkhpaned.c b/gtk/gtkhpaned.c index 86742f564c..e0b864c63e 100644 --- a/gtk/gtkhpaned.c +++ b/gtk/gtkhpaned.c @@ -30,6 +30,18 @@ #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) { |