# HG changeset patch # User Claus Gittinger # Date 998518067 -7200 # Node ID c0a69df5abc00c41aaa8a2fc14e767b1f16029d8 # Parent 100e4e782f71a31e6fb1a4b7ae32f541a27f8cf9 *** empty log message *** diff -r 100e4e782f71 -r c0a69df5abc0 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 $' ! !