Layout.st
changeset 415 5d1bf4dffbf5
parent 284 b31698e4ebb6
child 417 3b5a3b678ede
--- a/Layout.st	Wed Feb 12 00:06:06 1997 +0100
+++ b/Layout.st	Wed Feb 12 00:06:37 1997 +0100
@@ -92,14 +92,29 @@
 
 !Layout methodsFor:'queries'!
 
+isAlignmentOrigin
+    "return true, if this is an alignmentOrigin"
+
+    ^ false
+
+!
+
 isLayout
     "return true, if the recevier is a layout object. 
      Always return true here."
+
     ^ true
 
     "Modified: 27.4.1996 / 14:45:27 / cg"
 !
 
+isLayoutOrigin
+    "return true, if this is a layoutOrigin"
+
+    ^ false
+
+!
+
 rectangleRelativeTo:superRectangle preferred:prefRect
     "compute the rectangle represented by the receiver,
      given the superViews rectangle and the views preferredExtent.
@@ -113,5 +128,5 @@
 !Layout class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.12 1996-05-29 13:12:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.13 1997-02-11 23:06:19 ca Exp $'
 ! !