The Trunk: Kernel-mt.1003.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-mt.1003.mcz

commits-2
Marcel Taeumel uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-mt.1003.mcz

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

Name: Kernel-mt.1003
Author: mt
Time: 2 March 2016, 1:09:36.194111 pm
UUID: 17eba02e-a573-4eb3-bcf6-dbb07fce130f
Ancestors: Kernel-dtl.1002

Restores some missing messages in EventSensor. Provide the default callback for swapMouseButtons preference as expected by our preference system.

=============== Diff against Kernel-dtl.1002 ===============

Item was added:
+ ----- Method: EventSensor class>>duplicateControlAndAltKeys: (in category 'public') -----
+ duplicateControlAndAltKeys: aBoolean
+ "EventSensor duplicateControlAndAltKeys: true"
+
+ Preferences setPreference: #duplicateControlAndAltKeys toValue: aBoolean.
+ self installKeyDecodeTable
+ !

Item was added:
+ ----- Method: EventSensor class>>swapControlAndAltKeys: (in category 'public') -----
+ swapControlAndAltKeys: aBoolean
+ "EventSensor swapControlAndAltKeys: true"
+
+ Preferences setPreference: #swapControlAndAltKeys toValue: aBoolean.
+ self installKeyDecodeTable!

Item was added:
+ ----- Method: EventSensor class>>swapMouseButtons: (in category 'public') -----
+ swapMouseButtons: aBoolean
+ "EventSensor swapMouseButtons: true"
+
+ Preferences setPreference: #swapMouseButtons toValue: aBoolean.
+ self installMouseDecodeTable.!

Item was added:
+ ----- Method: EventSensor class>>swapMouseButtonsChanged (in category 'preference change notification') -----
+ swapMouseButtonsChanged
+
+ self installMouseDecodeTable.!