[squeak-dev] The Trunk: 60Deprecated-mt.7.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jun 30 07:28:51 UTC 2017


Marcel Taeumel uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-mt.7.mcz

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

Name: 60Deprecated-mt.7
Author: mt
Time: 30 June 2017, 9:28:45.255527 am
UUID: 52918b74-85a9-bc4b-9af5-d9c234c32635
Ancestors: 60Deprecated-eem.6

Companion for Morphic-mt.1342.

Deprecates specific handler-priority callbacks, which can easily be replaced by using the generic callback #handlerForMouseDown:.

=============== Diff against 60Deprecated-eem.6 ===============

Item was added:
+ ----- Method: Morph>>blueButtonDown: (in category '*60Deprecated-meta-actions') -----
+ blueButtonDown: anEvent
+ 	"Nothing."
+ 	
+ 	self deprecated: 'Use #mouseDown:.'.!

Item was added:
+ ----- Method: Morph>>blueButtonUp: (in category '*60Deprecated-meta-actions') -----
+ blueButtonUp: anEvent
+ 	"Ignored. Theoretically we should never get here since control is transferred to the halo on #blueButtonDown: but subclasses may implement this differently."
+ 	
+ 	self deprecated: 'Use #mouseUp:.'.!

Item was added:
+ ----- Method: Morph>>handlerForBlueButtonDown: (in category '*60Deprecated-meta-actions') -----
+ handlerForBlueButtonDown: anEvent
+ 	
+ 	self deprecated: 'Use #handlerForMouseDown:.'.
+ 	^ nil!

Item was added:
+ ----- Method: Morph>>handlerForMetaMenu: (in category '*60Deprecated-meta-actions') -----
+ handlerForMetaMenu: evt
+ 	
+ 	self deprecated: 'Use #handlerForMouseDown: or #wantsMetaMenu or #mouseDownPriority.'.
+ 	^ nil!



More information about the Squeak-dev mailing list