[squeak-dev] The Trunk: System-mt.1352.mcz

commits at source.squeak.org commits at source.squeak.org
Tue May 17 09:35:51 UTC 2022


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

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

Name: System-mt.1352
Author: mt
Time: 17 May 2022, 11:35:48.573268 am
UUID: 1691db25-7e7f-a142-be41-a2d57721c5ca
Ancestors: System-dtl.1351

Adds new preference to scale-up (or down) the default extent of tool windows. Note that all tools are optimized for 1024 at 768 at 100% system scale factor.

Change this preference to accommodate very large screens.

=============== Diff against System-dtl.1351 ===============

Item was changed:
  Object subclass: #RealEstateAgent
  	instanceVariableNames: ''
+ 	classVariableNames: 'PlaceWindowsAtPointer ReverseStaggerOffset ScaleFactor StaggerOffset StaggerOrigin StandardSize StandardWindowOrigins WindowScaleFactor'
- 	classVariableNames: 'PlaceWindowsAtPointer ReverseStaggerOffset ScaleFactor StaggerOffset StaggerOrigin StandardSize StandardWindowOrigins'
  	poolDictionaries: ''
  	category: 'System-Support'!
  
  !RealEstateAgent commentStamp: '<historical>' prior: 0!
  Responsible for real-estate management on the screen, which is to say, controlling where new windows appear, with what sizes, etc.  5/20/96 sw!

Item was added:
+ ----- Method: RealEstateAgent class>>windowScaleFactor (in category 'preferences') -----
+ windowScaleFactor
+ 	<preference: 'Scale Factor for Default Extent of Tool Windows'
+ 		categoryList: #(Morphic Tools Accessibility)
+ 		description: 'The extent of tool windows is tweaked for a world extent of 1024 at 768 (or its scaled equivalent). If you have a larger screen available, you might want to increase a tool''s default extent. Note that you can also increase the system''s overall scale factor instead.'
+ 		type: #String>
+ 	^ WindowScaleFactor ifNil: [1.0]!

Item was added:
+ ----- Method: RealEstateAgent class>>windowScaleFactor: (in category 'preferences') -----
+ windowScaleFactor: aFloatOrNil
+ 
+ 	WindowScaleFactor := aFloatOrNil.!



More information about the Squeak-dev mailing list