GeometricWrapper.st
changeset 251 9c6e546a96e2
child 254 1286cec58b5d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GeometricWrapper.st	Thu May 09 10:30:41 1996 +0200
@@ -0,0 +1,75 @@
+"
+ COPYRIGHT (c) 1996 by Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+
+
+
+
+Wrapper subclass:#GeometricWrapper
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Graphics-Display Objects'
+!
+
+!GeometricWrapper class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1996 by Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+
+
+
+!
+
+documentation
+"
+    abstract class for wrappers of geometric objects.
+    These allows any geometric thingy to be used as a component in a view.
+
+    [see also:]
+        StrokingWrapper FillingWrapper
+        Geometric GraphicsContext
+
+    [author:]
+        Claus Gittinger
+"
+
+
+
+! !
+
+!GeometricWrapper methodsFor:'accessing - bounds'!
+
+preferredBounds
+    "return the components bounds as preferredBounds"
+
+    ^ component bounds
+
+    "Created: 9.5.1996 / 10:28:10 / cg"
+! !
+
+!GeometricWrapper class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libview2/GeometricWrapper.st,v 1.1 1996-05-09 08:30:41 cg Exp $'
+! !