The Trunk: Kernel-dtl.1123.mcz

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

The Trunk: Kernel-dtl.1123.mcz

commits-2
David T. Lewis uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-dtl.1123.mcz

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

Name: Kernel-dtl.1123
Author: dtl
Time: 14 November 2017, 9:49:38.176543 pm
UUID: 5b3f0e1b-0cf5-481f-8d80-31041122d3a7
Ancestors: Kernel-nice.1122

Move Object>>currentEvent, Object>>currentHand, and Object>>currentWord from catagory macpal to *Morphic-Kernel.

=============== Diff against Kernel-nice.1122 ===============

Item was removed:
- ----- Method: Object>>currentEvent (in category 'macpal') -----
- currentEvent
- "Answer the current Morphic event.  This method never returns nil."
- ^ActiveEvent ifNil:[self currentHand lastEvent]!

Item was removed:
- ----- Method: Object>>currentHand (in category 'macpal') -----
- currentHand
- "Return a usable HandMorph -- the one associated with the object's current environment.  This method will always return a hand, even if it has to conjure one up as a last resort.  If a particular hand is actually handling events at the moment (such as a remote hand or a ghost hand), it will be returned."
-
- ^ActiveHand ifNil: [ self currentWorld primaryHand ]!

Item was removed:
- ----- Method: Object>>currentWorld (in category 'macpal') -----
- currentWorld
- "Answer a morphic world that is the current UI focus."
- ^ActiveWorld ifNil:[World]!