DisplayObject.st
changeset 2267 e5d7628a03fc
parent 2131 768a3cb71598
child 2658 757b1aea5fb8
equal deleted inserted replaced
2266:2f9a3d9320a7 2267:e5d7628a03fc
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libview2' }"
    12 "{ Package: 'stx:libview2' }"
    14 
    13 
    15 Object subclass:#DisplayObject
    14 Object subclass:#DisplayObject
    16 	instanceVariableNames:'frame'
    15 	instanceVariableNames:'frame'
    17 	classVariableNames:''
    16 	classVariableNames:''
   173     "return the height of the frame if drawon on aCG"
   172     "return the height of the frame if drawon on aCG"
   174 
   173 
   175     ^ self height
   174     ^ self height
   176 
   175 
   177     "Created: 12.5.1996 / 20:20:54 / cg"
   176     "Created: 12.5.1996 / 20:20:54 / cg"
       
   177 !
       
   178 
       
   179 left
       
   180     ^ self frame left
       
   181 
       
   182     "Created: / 26-10-2006 / 18:08:42 / cg"
   178 !
   183 !
   179 
   184 
   180 origin
   185 origin
   181     "return the frame origin"
   186     "return the frame origin"
   182 
   187 
   545 ! !
   550 ! !
   546 
   551 
   547 !DisplayObject class methodsFor:'documentation'!
   552 !DisplayObject class methodsFor:'documentation'!
   548 
   553 
   549 version
   554 version
   550     ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.34 2006-03-31 17:53:06 cg Exp $'
   555     ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.35 2006-10-26 17:34:45 cg Exp $'
   551 ! !
   556 ! !