summaryrefslogtreecommitdiff
path: root/docs/reference/gtk/tmpl/gtkcontainer.sgml
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2002-12-17 02:07:57 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2002-12-17 02:07:57 +0000
commit5d347cad8ebe7dd76ec1ff4a618f87ad16e14ae6 (patch)
treee609095f0830e3f608d84c0446ed07af41a990f4 /docs/reference/gtk/tmpl/gtkcontainer.sgml
parent7ed6dc1da84e8716463e819144aa9a4649f36568 (diff)
downloadgtk+-5d347cad8ebe7dd76ec1ff4a618f87ad16e14ae6.tar.gz
Fix a few doc comments. Link to style properties.
2002-12-17 Matthias Clasen <maclas@gmx.de> * gtk/gtkcontainer.c: Fix a few doc comments. * gtk/tmpl/gtkrc.sgml: Link to style properties. * gtk/tmpl/gtkcontainer.sgml: Add bits about child properties. * gtk/tmpl/gtkwidget.sgml: Add bits about style properties. * gdk/tmpl/pixmaps.sgml: * gdk/tmpl/windows.sgml: * gdk/tmpl/drawing.sgml: * gdk/tmpl/gcs.sgml: * gtk/tmpl/gtktextview.sgml: * gtk/tmpl/gtkrc.sgml: * gtk/tmpl/gtkiconfactory.sgml: * gtk/tmpl/gtkaccelgroup.sgml: Remove ids which are now generated by gtk-doc.
Diffstat (limited to 'docs/reference/gtk/tmpl/gtkcontainer.sgml')
-rw-r--r--docs/reference/gtk/tmpl/gtkcontainer.sgml17
1 files changed, 15 insertions, 2 deletions
diff --git a/docs/reference/gtk/tmpl/gtkcontainer.sgml b/docs/reference/gtk/tmpl/gtkcontainer.sgml
index 2f078572af..ccf1d0a705 100644
--- a/docs/reference/gtk/tmpl/gtkcontainer.sgml
+++ b/docs/reference/gtk/tmpl/gtkcontainer.sgml
@@ -5,8 +5,21 @@ GtkContainer
Base class for widgets which contain other widgets
<!-- ##### SECTION Long_Description ##### -->
-<para>
-
+<para id="child-properties">
+<structname>GtkContainer</structname> introduces <firstterm>child
+properties</firstterm> - these are object properties that are not specific
+to either the container or the contained widget, but rather to their relation.
+Typical examples of child properties are the position or pack-type of a widget
+which is contained in a #GtkBox.</para>
+<para>
+Use gtk_container_class_install_child_property() to install child properties
+for a container class and gtk_container_class_find_child_property() or
+gtk_container_class_list_child_properties() to get information about existing
+child properties. To set the value of a child property, use
+gtk_container_child_set_property(), gtk_container_child_set() or
+gtk_container_child_set_valist(). To obtain the value of a child property,
+use gtk_container_child_get_property(), gtk_container_child_get() or
+gtk_container_child_get_valist().
</para>
<!-- ##### SECTION See_Also ##### -->