[squeak-dev] The Trunk: Graphics-mt.410.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Aug 19 15:35:15 UTC 2019


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

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

Name: Graphics-mt.410
Author: mt
Time: 19 August 2019, 5:35:05.184665 pm
UUID: 31bc105d-7933-0b4c-b1e0-e9d710940fd0
Ancestors: Graphics-nice.409

Un-deprecate old-style display resizing until HostWindowPlugin supports -vm-display-none flag.

=============== Diff against Graphics-nice.409 ===============

Item was added:
+ ----- Method: DisplayScreen class>>depth:width:height:fullscreen: (in category 'display box access') -----
+ depth: depthInteger width: widthInteger height: heightInteger fullscreen: aBoolean
+ 	"Force Squeak's window (if there's one) into a new size and depth."
+ 	"DisplayScreen depth: 8 width: 1024 height: 768 fullscreen: false"
+ 
+ 	"August 2019: This method will be deprecated in the future!! Use the HostWindowPlugin instead if possible.
+ 	
+ 	This method is still the only way to change the size of the display, when the image is started with the -vm-display-none flag, because
+ (1) you still have a Display, hurray!!, and (2) HostWindowPlugin will refuse to notice that, because you don't have any windows."
+ 
+ 	<primitive: 92>
+ 	self primitiveFailed!



More information about the Squeak-dev mailing list