summaryrefslogtreecommitdiff
path: root/gtk/gtkpaned.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2003-06-14 22:27:14 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2003-06-14 22:27:14 +0000
commitec280c7b326e45dc014e94021fd290285570ad36 (patch)
treef0bc8b6563a0da5e0405b45dbf08de68297998c2 /gtk/gtkpaned.c
parentee9683ceec0a8d218a100624944f978a738d3d1f (diff)
downloadgdk-pixbuf-ec280c7b326e45dc014e94021fd290285570ad36.tar.gz
Document new properties as 2.4 additions.
2003-06-15 Matthias Clasen <maclas@gmx.de> * gtk/gtkcalendar.c (gtk_calendar_class_init): * gtk/gtknotebook.c (gtk_notebook_class_init): * gtk/gtkalignment.c (gtk_alignment_class_init): * gtk/gtkpaned.c (gtk_paned_class_init): Document new properties as 2.4 additions. * gtk/gtkwidget.c (gtk_widget_class_init): Move inline signal docs to the proper place, immediately before the g_signal_new() call. * gtk/gtktextiter.h: Make the flags-nature of GtkTextSearchFlags more obvious. (#115122, Jeff Franks)
Diffstat (limited to 'gtk/gtkpaned.c')
-rw-r--r--gtk/gtkpaned.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/gtk/gtkpaned.c b/gtk/gtkpaned.c
index 4f369b75a..c271f1a6c 100644
--- a/gtk/gtkpaned.c
+++ b/gtk/gtkpaned.c
@@ -256,6 +256,14 @@ gtk_paned_class_init (GtkPanedClass *class)
5,
G_PARAM_READABLE));
+/**
+ * GtkPaned:resize:
+ *
+ * The "resize" child property determines whether the child expands and
+ * shrinks along with the paned widget.
+ *
+ * Since: 2.4
+ */
gtk_container_class_install_child_property (container_class,
CHILD_PROP_RESIZE,
g_param_spec_boolean ("resize",
@@ -264,6 +272,14 @@ gtk_paned_class_init (GtkPanedClass *class)
TRUE,
G_PARAM_READWRITE));
+/**
+ * GtkPaned:shrink:
+ *
+ * The "shrink" child property determines whether the child can be made
+ * smaller than its requisition.
+ *
+ * Since: 2.4
+ */
gtk_container_class_install_child_property (container_class,
CHILD_PROP_SHRINK,
g_param_spec_boolean ("shrink",