From a1fa82a306963652f465d715fd5ee4661b80ebd0 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Fri, 16 Sep 2011 12:09:25 -0700 Subject: [PATCH] Gtk-box-pack-end and gtk-scrolled-window-set-placement descriptions. --- doc/gtk/gtk.texinfo | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/doc/gtk/gtk.texinfo b/doc/gtk/gtk.texinfo index 9a15907a6..404c32014 100644 --- a/doc/gtk/gtk.texinfo +++ b/doc/gtk/gtk.texinfo @@ -1076,17 +1076,20 @@ or horizontally, respectively. @anchor{gtk-box-pack-start} @deffn Procedure gtk-box-pack-start box child expand? fill? padding -Adds @var{child} to @var{box}, packed with reference to the start of -@var{box}, which can be a gtk-vbox or gtk-hbox. If @var{expand?}, the -new child is positioned within a share of any extra space. If -@var{fill?} (and @var{expand?}), the child is allocated the share of -extra space. @var{Padding} is the space around the child, +Adds @var{child} to @var{box} @emph{after} siblings previously packed +with this procedure, and @emph{before} siblings previously packed with +@bref{gtk-box-pack-end}. @var{Box} can be a gtk-vbox or gtk-hbox. If +@var{expand?}, the new child is positioned within a share of any extra +space. If @var{fill?} (and @var{expand?}), the child is allocated the +share of extra space. @var{Padding} is the space around the child, e.g. between it and its neighbors @emph{and} the edge of the box. @end deffn +@anchor{gtk-box-pack-end} @deffn Procedure gtk-box-pack-end box child expand? fill? padding -Just like @bref{gtk-box-pack-start}, except @var{child} is packed with -reference to the end of @var{box}. +Just like @bref{gtk-box-pack-start}, except @var{child} is packed +@emph{before} siblings previously packed with this procedure, +@emph{after} siblings packed with gtk-box-pack-start. @end deffn @deffn Class @@ -1178,7 +1181,10 @@ A new gtk scrolled window. @deffn Procedure gtk-scrolled-window-set-placement window placement @var{Placement} should be one of the symbols @code{top-left}, -@code{bottom-left}, @code{top-right} or @code{bottom-right}. +@code{bottom-left}, @code{top-right} or @code{bottom-right}. This is +the placement of the scrolled window, not the scrollbars. If the +scrolled window is placed ``bottom left'', the scrollbars will appear +above and to the right. @end deffn @node Scheme Widget, Fix Layout, Gtk Scrolled Window, API Reference -- 2.25.1