The Inbox: EToys-bf.89.mcz

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

The Inbox: EToys-bf.89.mcz

commits-2
A new version of EToys was added to project The Inbox:
http://source.squeak.org/inbox/EToys-bf.89.mcz

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

Name: EToys-bf.89
Author: bf
Time: 27 June 2012, 12:01:21.329 am
UUID: 61a6aa3b-57c9-4b8e-9b35-c7bd9698e035
Ancestors: EToys-cmm.88

Remove UndefinedObject>>initialize, and add it back as class-side method of GeeMailMorph, where it was before.

=============== Diff against EToys-cmm.88 ===============

Item was removed:
- (PackageInfo named: 'EToys') preamble: '"below, add code to be run before the loading of this package"'!

Item was added:
+ ----- Method: GeeMailMorph class>>initialize (in category '*etoys-customevents-user events') -----
+ initialize
+ "AlansTextPlusMorph initialize"
+ ScriptingSystem addCustomEventFor: self named: #scrolledIntoView help: 'when I am scrolled into view in a GeeMailMorph' targetMorphClass: Morph.
+ ScriptingSystem addCustomEventFor: self named: #scrolledOutOfView help: 'when I am scrolled out of view in a GeeMailMorph'  targetMorphClass: Morph.
+ !

Item was added:
+ ----- Method: GeeMailMorph class>>unload (in category '*etoys-customevents-user events') -----
+ unload
+ ScriptingSystem removeCustomEventNamed: #scrolledIntoView for: self.
+ ScriptingSystem removeCustomEventNamed: #scrolledOutOfView for: self.!

Item was removed:
- ----- Method: UndefinedObject>>initialize (in category '*Etoys-*Morphic-customevents-class initialization') -----
- initialize
- "AlansTextPlusMorph initialize"
- ScriptingSystem addCustomEventFor: self named: #scrolledIntoView help: 'when I am scrolled into view in a GeeMailMorph' targetMorphClass: Morph.
- ScriptingSystem addCustomEventFor: self named: #scrolledOutOfView help: 'when I am scrolled out of view in a GeeMailMorph'  targetMorphClass: Morph.
- !

Item was removed:
- (PackageInfo named: 'EToys') preambleOfRemoval: '"below, add code to prepare for the unloading of this package"'!

Item was removed:
- (PackageInfo named: 'EToys') postscript: '"below, add code to be run after the loading of this package"'!