The Trunk: EToys-mt.394.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-mt.394.mcz

commits-2
Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.394.mcz

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

Name: EToys-mt.394
Author: mt
Time: 17 May 2020, 11:58:37.025517 am
UUID: 310d441d-7f23-0646-9078-4a22426043bf
Ancestors: EToys-tpr.393

Complements Graphics-mt.432

=============== Diff against EToys-tpr.393 ===============

Item was changed:
  ----- Method: DisplayScreen class>>primitiveWindowSize:width:heigth: (in category '*Etoys-Squeakland-host window access') -----
+ primitiveWindowSize: id width: width heigth: height
+ self primitiveWindow: id width: width height: height.!
- primitiveWindowSize: id width: width heigth: height
- <primitive: 'primitiveHostWindowSizeSet' module: 'HostWindowPlugin'>
- "ignore failure"!

Item was changed:
  ----- Method: DisplayScreen class>>primitiveWindowTitle:string: (in category '*Etoys-Squeakland-host window access') -----
  primitiveWindowTitle: id string: titleString
+ self primitiveWindow: id title: titleString.!
- <primitive: 'primitiveHostWindowTitle' module:'HostWindowPlugin'>
- "ignore failure"!

Item was removed:
- ----- Method: DisplayScreen class>>restoreDisplay (in category '*Etoys-Squeakland-screen modes') -----
- restoreDisplay
- "Clear the screen to gray and then redisplay all the scheduled views."
-
- Smalltalk isMorphic ifTrue: [^ Project current world restoreMorphicDisplay].
-
- Display extent = DisplayScreen actualScreenSize
- ifFalse:
- [DisplayScreen startUp.
- ScheduledControllers unCacheWindows].
- ScheduledControllers restore!

Item was removed:
- ----- Method: OLPCVirtualScreen class>>startUp (in category 'installing') -----
- startUp
- "Figure out if we run on OLPC or not and need a virtual display"
- "Preferences enableVirtualOLPCDisplay ifTrue:[self install]."!

Item was added:
+ ----- Method: OLPCVirtualScreen>>shrink (in category 'initialize') -----
+ shrink
+ "Shut me down for saving the image"
+ display ifNotNil: [display shrink].
+ bits  := nil.
+ !

Item was removed:
- ----- Method: OLPCVirtualScreen>>shutDown (in category 'initialize') -----
- shutDown
- "Shut me down for saving the image"
- display ifNotNil: [display shutDown].
- bits  := nil.
- !

Item was changed:
  ----- Method: TextMorph class>>usePangoChanged (in category '*Etoys-Squeakland-class initialization') -----
  usePangoChanged
  self usePango: Preferences usePangoRenderer.
+ Project current restoreDisplay.
- DisplayScreen restoreDisplay.
  !