*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 23 Aug 2001 00:07:47 +0200
changeset 1496 c0a69df5abc0
parent 1495 100e4e782f71
child 1497 dff682eb74fc
*** empty log message ***
DisplayObject.st
--- a/DisplayObject.st	Wed Aug 22 18:38:44 2001 +0200
+++ b/DisplayObject.st	Thu Aug 23 00:07:47 2001 +0200
@@ -135,6 +135,12 @@
 
 !DisplayObject methodsFor:'accessing'!
 
+bounds
+    "ST80 component compatibility"
+
+    ^ self frame.
+!
+
 corner
     "return the frame corner"
 
@@ -217,6 +223,23 @@
     "Created: 12.5.1996 / 20:20:45 / cg"
 ! !
 
+!DisplayObject methodsFor:'component protocol'!
+
+container:aComponent
+    "ignored here - added to allow images to be used like
+     VisualComponents (later, Image should inherit from it)"
+!
+
+containerChangedSize
+    "ignored here - added to allow images to be used like
+     VisualComponents (later, Image should inherit from it)"
+!
+
+realize
+    "ignored here - added to allow images to be used like
+     VisualComponents (later, Image should inherit from it)"
+! !
+
 !DisplayObject methodsFor:'converting'!
 
 asDisplayObject
@@ -492,5 +515,5 @@
 !DisplayObject class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.23 2000-08-31 10:02:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.24 2001-08-22 22:07:47 cg Exp $'
 ! !