[squeak-dev] The Trunk: Kernel-laza.423.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 11 08:33:50 UTC 2010


Alexander Lazarević uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-laza.423.mcz

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

Name: Kernel-laza.423
Author: laza
Time: 11 March 2010, 9:33:09.112 am
UUID: 4c7bfbb9-65d0-4419-a8be-432b2410216a
Ancestors: Kernel-ar.420

Adds Host WindowEvent handling

=============== Diff against Kernel-ar.420 ===============

Item was changed:
  SharedPool subclass: #EventSensorConstants
  	instanceVariableNames: ''
+ 	classVariableNames: 'BlueButtonBit CommandKeyBit CtrlKeyBit EventKeyChar EventKeyDown EventKeyUp EventTypeDragDropFiles EventTypeKeyboard EventTypeMenu EventTypeMouse EventTypeNone EventTypeWindow OptionKeyBit RedButtonBit ShiftKeyBit YellowButtonBit'
- 	classVariableNames: 'BlueButtonBit CommandKeyBit CtrlKeyBit EventKeyChar EventKeyDown EventKeyUp EventTypeDragDropFiles EventTypeKeyboard EventTypeMouse EventTypeNone OptionKeyBit RedButtonBit ShiftKeyBit YellowButtonBit'
  	poolDictionaries: ''
  	category: 'Kernel-Processes'!

Item was changed:
  ----- Method: EventSensorConstants class>>initialize (in category 'pool initialization') -----
  initialize
  	"EventSensorConstants initialize"
  	RedButtonBit := 4.
  	BlueButtonBit := 2.
  	YellowButtonBit := 1.
  
  	ShiftKeyBit := 1.
  	CtrlKeyBit := 2.
  	OptionKeyBit := 4.
  	CommandKeyBit := 8.
  
  	"Types of events"
  	EventTypeNone := 0.
  	EventTypeMouse := 1.
  	EventTypeKeyboard := 2.
  	EventTypeDragDropFiles := 3.
+ 	EventTypeMenu := 4.
+ 	EventTypeWindow := 5.
  
  	"Press codes for keyboard events"
  	EventKeyChar := 0.
  	EventKeyDown := 1.
  	EventKeyUp := 2.
  !

Item was changed:
  SystemOrganization addCategory: #'Kernel-Chronology'!
  SystemOrganization addCategory: #'Kernel-Classes'!
  SystemOrganization addCategory: #'Kernel-Methods'!
  SystemOrganization addCategory: #'Kernel-Numbers'!
  SystemOrganization addCategory: #'Kernel-Objects'!
  SystemOrganization addCategory: #'Kernel-Processes'!
  SystemOrganization addCategory: #'Kernel-Models'!
- SystemOrganization addCategory: #'Kernel-Tests-ClassBuilder'!




More information about the Squeak-dev mailing list