[squeak-dev] The Trunk: PreferenceBrowser-mt.67.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Aug 10 14:25:38 UTC 2016


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

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

Name: PreferenceBrowser-mt.67
Author: mt
Time: 10 August 2016, 4:25:35.059852 pm
UUID: 16112823-ec2a-914d-b626-054a50d1e95e
Ancestors: PreferenceBrowser-mt.66

Forgot to add "open tools attached to mouse cursor" in wizard. :-)

=============== Diff against PreferenceBrowser-mt.66 ===============

Item was changed:
  ----- Method: PreferenceWizardMorph>>initializePage04InteractionMore (in category 'initialization') -----
  initializePage04InteractionMore
  
  	| currentPage |
  	currentPage := pages add: self createPage.
  	currentPage addMorphBack: (self createLabel: 'Choose more interaction settings' color: Color white).
  	
  	
  	currentPage addAllMorphsBack: {
  		self createCheckbox: 'Windows raise on click' translated for: #WindowsRaiseOnClick.
  		self createCheckbox: 'Windows always active' for: #WindowsAlwaysActive.
  		self createCheckbox: 'Window buttons always active' translated for: #WindowButtonsAlwaysActive.
  		self createVerticalSpace.
  		self createCheckbox: 'Smart horizontal splitters' translated for: #SmartHorizontalSplitters.
  		self createCheckbox: 'Smart vertical splitters' translated for: #SmartVerticalSplitters.
  		self createVerticalSpace.
  		self createCheckbox: 'Filterable lists and trees' translated for: #FilterableLists.
  		self createCheckbox: 'Filters clear if unfocused' translated for: #ClearFilterAutomatically.
+ 		self createVerticalSpace.
+ 		self createCheckbox: 'Attach tools to mouse' translated for: #AttachToolsToMouse.		
  		}.
  		
  	currentPage addMorphBack: self createVerticalSpacer.
  !

Item was added:
+ ----- Method: PreferenceWizardMorph>>stateAttachToolsToMouse (in category 'buttons') -----
+ stateAttachToolsToMouse
+ 
+ 	^ ToolBuilder openToolsAttachedToMouseCursor!

Item was added:
+ ----- Method: PreferenceWizardMorph>>toggleAttachToolsToMouse (in category 'buttons') -----
+ toggleAttachToolsToMouse
+ 
+ 	ToolBuilder openToolsAttachedToMouseCursor: ToolBuilder openToolsAttachedToMouseCursor not.
+ 	self changed: #stateAttachToolsToMouse.!



More information about the Squeak-dev mailing list