LayoutFrame.st
changeset 2123 5247deafa7ef
parent 1795 19dee5013803
child 2221 52803ae96560
--- a/LayoutFrame.st	Mon Mar 06 09:56:36 2006 +0100
+++ b/LayoutFrame.st	Wed Mar 08 16:48:28 2006 +0100
@@ -207,19 +207,19 @@
 !LayoutFrame methodsFor:'accessing'!
 
 bottomFraction
-    "return bottomFraction"
+    "Return the y-coordinate of the bottom of the relative rectangle as a percentage of the height of the reference rectangle."
 
     ^ bottomFraction
 !
 
 bottomFraction:something
-    "set bottomFraction"
+    "Set the y-coordinate of the bottom of the relative rectangle to be a fraction of the height of the reference rectangle."
 
     bottomFraction := something.
 !
 
 bottomFraction:something offset:o
-    "set bottomFraction and offset"
+    "set both bottomFraction and offset"
 
     bottomFraction := something.
     bottomOffset := o
@@ -246,8 +246,7 @@
 !
 
 horizontalInset:aNumber
-    "setup the offsets for insetting horizontally the frame aNumber pixels
-     at all sides"
+    "setup the offsets for insetting horizontally the frame aNumber pixels at all sides"
 
     leftOffset := aNumber.
     rightOffset := aNumber negated.
@@ -256,8 +255,7 @@
 !
 
 inset:aNumber
-    "setup the offsets for insetting the frame aNumber pixels
-     at all sides"
+    "setup the offsets for insetting the frame aNumber pixels at all sides"
 
     topOffset := leftOffset := aNumber.
     rightOffset := bottomOffset := aNumber negated.
@@ -494,5 +492,5 @@
 !LayoutFrame class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/LayoutFrame.st,v 1.30 2003-08-28 09:47:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/LayoutFrame.st,v 1.31 2006-03-08 15:48:28 cg Exp $'
 ! !