Guest User

Untitled

a guest
Mar 14th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'From Squeak4.2 of 4 February 2011 [latest update: #10966] on 15 November 2011 at 10:28:03 pm'!
  2. Morph subclass: #TestMorph
  3.     instanceVariableNames: 'path'
  4.     classVariableNames: ''
  5.     poolDictionaries: ''
  6.     category: 'My Stuff'!
  7.  
  8. !TestMorph methodsFor: 'user interface' stamp: 'kilon 11/15/2011 22:27'!
  9. doCancel
  10.     super doCancel! !
  11.  
  12.  
  13. !TestMorph methodsFor: 'drawing' stamp: 'kilon 11/15/2011 21:20'!
  14. drawOn: aCanvas
  15.     | colors |
  16.     colors := Color wheel: 10.
  17.     colors withIndexDo: [:c :i |
  18.         aCanvas fillOval: (self bounds insetBy: self width // 25 * i + 1)
  19.                 color: c].! !
  20.  
  21.  
  22. !TestMorph methodsFor: 'event handling' stamp: 'kilon 11/15/2011 21:20'!
  23. handlesMouseDown: evt
  24.     ^ true! !
  25.  
  26. !TestMorph methodsFor: 'event handling' stamp: 'kilon 11/15/2011 21:20'!
  27. mouseDown: evt
  28.     self position: self position + (10 @ 0).! !
  29.  
  30.  
  31. !TestMorph methodsFor: 'initialization' stamp: 'kilon 11/15/2011 21:51'!
  32. initialize
  33.     super initialize.
  34.     path := OrderedCollection new.! !
Add Comment
Please, Sign In to add comment