Etoys: Etoys-bf.123.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Etoys: Etoys-bf.123.mcz

commits-2
Bert Freudenberg uploaded a new version of Etoys to project Etoys:
http://source.squeak.org/etoys/Etoys-bf.123.mcz

==================== Summary ====================

Name: Etoys-bf.123
Author: bf
Time: 9 March 2012, 6:06:03 pm
UUID: 1632ba11-f3a4-4fe1-85c5-7ecbd141b334
Ancestors: Etoys-kfr.122

KeyPressMorph: fix event listener registration

=============== Diff against Etoys-kfr.122 ===============

Item was removed:
- ----- Method: KeyPressMorph>>delete (in category 'initialize') -----
- delete
- super delete.
- self unregisterToEvents!

Item was removed:
- ----- Method: KeyPressMorph>>duplicate (in category 'copying') -----
- duplicate
- ^ super duplicate registerToEvents!

Item was changed:
  ----- Method: KeyPressMorph>>initialize (in category 'initialize') -----
  initialize
  super initialize.
  currentKey := 'a'.
  isWaitingToSetCurrentKey := false.
  self layoutPolicy: TableLayout new;
  listDirection: #topToBottom;
  wrapCentering: #topLeft;
  hResizing: #shrinkWrap;
  vResizing: #shrinkWrap;
  layoutInset: 5;
  color: Color blue muchLighter;
  borderColor: Color blue;
  cornerStyle: #rounded;
+ rebuild
+ !
- rebuild;
- registerToEvents!

Item was added:
+ ----- Method: KeyPressMorph>>intoWorld: (in category 'events') -----
+ intoWorld: aWorld
+ super intoWorld: aWorld.
+ self registerToEvents.
+ !

Item was added:
+ ----- Method: KeyPressMorph>>outOfWorld: (in category 'events') -----
+ outOfWorld: aWorld
+ self unregisterToEvents.
+ super outOfWorld: aWorld.
+ !

Item was removed:
- ----- Method: KeyPressMorph>>usableSiblingInstance (in category 'copying') -----
- usableSiblingInstance
- ^ super usableSiblingInstance registerToEvents!

_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev