[squeak-dev] The Trunk: Tools-cmm.423.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Sep 6 00:26:20 UTC 2012


Chris Muller uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-cmm.423.mcz

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

Name: Tools-cmm.423
Author: cmm
Time: 5 September 2012, 7:25:38.968 pm
UUID: ee66f6c3-32ef-4b09-9b2d-8977596be4c5
Ancestors: Tools-ul.422

New desktop hot-keys:  $O for Monticello, $] to save the image, and $_ to kill the image.

=============== Diff against Tools-ul.422 ===============

Item was changed:
  ----- Method: PasteUpMorph>>defaultDesktopCommandKeyTriplets (in category '*Tools') -----
  defaultDesktopCommandKeyTriplets
  	"Answer a list of triplets of the form
  		<key> <receiver> <selector>   [+ optional fourth element, a <description> for use in desktop-command-key-help]
  that will provide the default desktop command key handlers.  If the selector takes an argument, that argument will be the command-key event"
  
  	| noviceKeys expertKeys |
  
  	noviceKeys := {
  		{ $o.	ActiveWorld.						#activateObjectsTool.						'Activate the "Objects Tool"'}.
  		{ $r.	ActiveWorld.						#restoreMorphicDisplay.					'Redraw the screen'}.		
  		{ $z.	self.								#undoOrRedoCommand.					'Undo or redo the last undoable command'}.
  		{ $F.	Project current.					#toggleFlapsSuppressed.					'Toggle the display of flaps'}.
  		{ $N.	self.								#toggleClassicNavigatorIfAppropriate.	'Show/Hide the classic Navigator, if appropriate'}.
  		{ $M.	self.								#toggleShowWorldMainDockingBar.		'Show/Hide the Main Docking Bar'}.
+ 		{ $].	Smalltalk.							#saveSession.								'Save the image.'}.
  	}.
  
  	Preferences noviceMode
  			ifTrue:[^ noviceKeys].
  
  	expertKeys := {
  		{ $b.	SystemBrowser.					#defaultOpenBrowser.						'Open a new System Browser'}.
  		{ $k.	StringHolder.					#open.										'Open a new, blank Workspace'}.
  		{ $m.	self.								#putUpNewMorphMenu.					'Put up the "New Morph" menu'}.
+ 		{ $O.	self.								#findAMonticelloBrowser.					'Bring a Monticello window into focus.'}.
  		{ $t.	self.	 							#findATranscript:.							'Make a System Transcript visible'}.
  		{ $w.	SystemWindow.					#closeTopWindow.							'Close the topmost window'}.
  
  		{ $C.	self.								#findAChangeSorter:.						'Make a Change Sorter visible'}.
  
  		{ $L.	self.								#findAFileList:.								'Make a File List visible'}.
  		{ $P.	self.								#findAPreferencesPanel:.					'Activate the Preferences tool'}.
  		{ $R.	Utilities. 								#browseRecentSubmissions.		'Make a Recent Submissions browser visible'}.
  
  		{ $W.	self. 								#findAMessageNamesWindow:.			'Make a MessageNames tool visible'}.
  		{ $Z.	ChangeList. 						#browseRecentLog.							'Browse recently-logged changes'}.
  
  		{ $\.	SystemWindow. 					#sendTopWindowToBack.					'Send the top window to the back'}.
+ 		{ $_.	Smalltalk.							#quitPrimitive.								'Quit the image immediately.'}.
  	}.
  
  	^ noviceKeys, expertKeys
  !

Item was added:
+ ----- Method: PasteUpMorph>>findAMonticelloBrowser (in category '*Tools') -----
+ findAMonticelloBrowser
+ 	MCWorkingCopyBrowser open!

Item was changed:
+ (PackageInfo named: 'Tools') postscript: 'Workspace allSubInstancesDo: [ :each | (each instVarNamed: #bindings) ifNil: [ each initializeBindings ] ].
+ World initializeDesktopCommandKeySelectors'!
- (PackageInfo named: 'Tools') postscript: 'Workspace allSubInstancesDo: [ :each | (each instVarNamed: #bindings) ifNil: [ each initializeBindings ] ]'!



More information about the Squeak-dev mailing list