DisplayObject.st
changeset 1688 c1b54f4961e4
parent 1675 c481d1b55c93
child 1692 eb0522e1c05a
--- a/DisplayObject.st	Tue Jan 21 12:37:27 2003 +0100
+++ b/DisplayObject.st	Tue Jan 21 16:50:42 2003 +0100
@@ -142,6 +142,10 @@
 
 !DisplayObject methodsFor:'accessing'!
 
+bottom
+    ^ self frame bottom
+!
+
 bounds
     "ST80 component compatibility"
 
@@ -213,6 +217,10 @@
     ^ self subclassResponsibility
 !
 
+right
+    ^ self frame right
+!
+
 width
     "return the width of the frame"
 
@@ -378,6 +386,23 @@
     self drawOutlineIn:aView offset:anOffset
 ! !
 
+!DisplayObject methodsFor:'dummy event handling'!
+
+buttonMotion:buttNr x:x y:y
+!
+
+buttonPress:buttNr x:x y:y
+!
+
+buttonRelease:buttNr x:x y:y
+!
+
+keyPress:key x:x y:y
+!
+
+keyRelease:key x:x y:y
+! !
+
 !DisplayObject methodsFor:'initialization'!
 
 computeBoundingBox
@@ -528,5 +553,5 @@
 !DisplayObject class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.27 2002-12-09 10:44:15 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.28 2003-01-21 15:50:42 mb Exp $'
 ! !