LayoutFrm.st
changeset 191 cb2815b77100
parent 126 25df58661f32
child 219 106b86ca81da
--- a/LayoutFrm.st	Fri Apr 19 18:07:39 1996 +0200
+++ b/LayoutFrm.st	Mon Apr 22 13:02:23 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 LayoutOrigin subclass:#LayoutFrame
-	 instanceVariableNames:'rightFraction bottomFraction rightOffset bottomOffset'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Graphics-Geometry'
+	instanceVariableNames:'rightFraction bottomFraction rightOffset bottomOffset'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Graphics-Geometry'
 !
 
 !LayoutFrame class methodsFor:'documentation'!
@@ -193,18 +193,20 @@
 !
 
 literalArrayEncoding
-    "encode myself as an array.
+    "encode myself as an array, from which a copy of the receiver
+     can be reconstructed with #decodeAsLiteralArray.
      The encoding is: 
-	(#LayoutOrigin orgOffsX relOrgX orgOffsY relOrgY cornOffsX relCornX cornOffsY relCornY)"
+        (#LayoutOrigin orgOffsX relOrgX orgOffsY relOrgY cornOffsX relCornX cornOffsY relCornY)"
 
     ^ super literalArrayEncoding
       , (Array
-	    with:rightOffset
-	    with:rightFraction
-	    with:bottomOffset
-	    with:bottomFraction)
+            with:rightOffset
+            with:rightFraction
+            with:bottomOffset
+            with:bottomFraction)
 
     "Modified: 1.9.1995 / 02:43:35 / claus"
+    "Modified: 22.4.1996 / 13:00:17 / cg"
 ! !
 
 !LayoutFrame methodsFor:'initialization'!
@@ -289,5 +291,5 @@
 !LayoutFrame class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/Attic/LayoutFrm.st,v 1.10 1995-11-23 17:42:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/Attic/LayoutFrm.st,v 1.11 1996-04-22 11:02:14 cg Exp $'
 ! !