[squeak-dev] The Trunk: Morphic-ar.388.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 25 04:32:07 UTC 2010


Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.388.mcz

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

Name: Morphic-ar.388
Author: ar
Time: 24 March 2010, 9:30:23.106 pm
UUID: 08049072-9052-1146-9434-8e8b3a82d09c
Ancestors: Morphic-ar.387

Updated preferences for ongoing facelift.

=============== Diff against Morphic-ar.387 ===============

Item was changed:
  ----- Method: SystemWindow class>>initialize (in category 'initializing') -----
  initialize
+ 	"SystemWindow initialize"
+ 	
- 
  	CollapseBoxImage := nil.
  	CloseBoxImage := nil.
  	ExpandBoxImage := nil.
+ 	MenuBoxImage := nil.
+ 	
+ 	self updatePreferences.!
- 	MenuBoxImage := nil!

Item was added:
+ ----- Method: SystemWindow class>>updatePreferences (in category 'initializing') -----
+ updatePreferences
+ 	"Temporary method to update system-wide preferences"
+ 	Preferences setPreference: #defaultWindowColor toValue: (Color veryVeryLightGray muchLighter).
+ 	(Preferences dictionaryOfPreferences at: #defaultWindowColor) defaultValue: (Color veryVeryLightGray muchLighter).
+ 
+ 	Preferences setPreference: #menuAppearance3d toValue: true.
+ 	(Preferences dictionaryOfPreferences at: #menuAppearance3d) defaultValue: true.
+ 
+ 	Preferences setPreference: #menuColorFromWorld toValue: false.
+ 	(Preferences dictionaryOfPreferences at: #menuColorFromWorld) defaultValue: false.
+ 
+ 	Preferences setPreference: #roundedMenuCorners toValue: false.
+ 	(Preferences dictionaryOfPreferences at: #roundedMenuCorners) defaultValue: false.
+ 
+ 	Preferences setParameter: #menuColor to: (Color gray: 0.9).
+ 	Preferences setParameter: #menuTitleColor to: (Color transparent).
+ 	Preferences setParameter: #menuTitleBorderWidth to: 0.
+ 	Preferences setParameter: #defaultWorldColor to: (Color gray: 0.25).
+ 
+ 	Preferences setPreference: #showSplitterHandles toValue: true.
+ 	(Preferences dictionaryOfPreferences at: #showSplitterHandles) defaultValue: true.
+ 
+ 	Preferences setPreference: #showSharedFlaps toValue: false.
+ 	(Preferences dictionaryOfPreferences at: #showSharedFlaps) defaultValue: false.
+ 
+ 	Preferences installUniformWindowColors.
+ 
+ 	CornerGripMorph drawCornerResizeHandles: false.
+ 	FillInTheBlankMorph roundedDialogCorners: true.
+ 
+ 	LazyListMorph
+ 		listSelectionColor: LazyListMorph listSelectionColor;
+ 		listSelectionTextColor: Color black.
+ 	PluggableButtonMorph roundedButtonCorners: true.
+ 	SystemWindow
+ 		clickOnLabelToEdit: false;
+ 		doubleClickOnLabelToExpand: true;
+ 		moveMenuButtonRight: true;
+ 		hideExpandButton: false.
+ !




More information about the Squeak-dev mailing list