Move documentation to inline comments: GtkHPaned
This commit is contained in:
1
docs/reference/gtk/tmpl/.gitignore
vendored
1
docs/reference/gtk/tmpl/.gitignore
vendored
@ -31,6 +31,7 @@ gtkfeatures.sgml
|
|||||||
gtkfixed.sgml
|
gtkfixed.sgml
|
||||||
gtkfilefilter.sgml
|
gtkfilefilter.sgml
|
||||||
gtkhbox.sgml
|
gtkhbox.sgml
|
||||||
|
gtkhpaned.sgml
|
||||||
gtkiconview.sgml
|
gtkiconview.sgml
|
||||||
gtkimagemenuitem.sgml
|
gtkimagemenuitem.sgml
|
||||||
gtkimcontextsimple.sgml
|
gtkimcontextsimple.sgml
|
||||||
|
@ -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
|
|
||||||
|
|
||||||
|
|
@ -30,6 +30,18 @@
|
|||||||
#include "gtkorientable.h"
|
#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)
|
G_DEFINE_TYPE (GtkHPaned, gtk_hpaned, GTK_TYPE_PANED)
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -44,6 +56,13 @@ gtk_hpaned_init (GtkHPaned *hpaned)
|
|||||||
GTK_ORIENTATION_HORIZONTAL);
|
GTK_ORIENTATION_HORIZONTAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_hpaned_new:
|
||||||
|
*
|
||||||
|
* Create a new #GtkHPaned
|
||||||
|
*
|
||||||
|
* Returns: the new #GtkHPaned
|
||||||
|
*/
|
||||||
GtkWidget *
|
GtkWidget *
|
||||||
gtk_hpaned_new (void)
|
gtk_hpaned_new (void)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user