Gtk-box-pack-end and gtk-scrolled-window-set-placement descriptions.
authorMatt Birkholz <matt@birkholz.chandler.az.us>
Fri, 16 Sep 2011 19:09:25 +0000 (12:09 -0700)
committerMatt Birkholz <matt@birkholz.chandler.az.us>
Fri, 16 Sep 2011 19:09:25 +0000 (12:09 -0700)
doc/gtk/gtk.texinfo

index 9a15907a6999b7e188b1862e50338dccf425462c..404c320144edeb408ba59e1777202d88ac1e7577 100644 (file)
@@ -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 <gtk-vbox>
@@ -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