The Trunk: Multilingual-mt.247.mcz

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

The Trunk: Multilingual-mt.247.mcz

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

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

Name: Multilingual-mt.247
Author: mt
Time: 15 October 2019, 8:59:34.263598 am
UUID: b164ae52-6298-a141-ac88-ba01c7456dbc
Ancestors: Multilingual-mt.246

Due to dependencies, do not add extensions from Multilingual to Morphic. But flag those with #ImmPlugin because the methods themselves are hard to associate with it otherwise.

=============== Diff against Multilingual-mt.246 ===============

Item was removed:
- ----- Method: HandMorph class>>compositionWindowManager (in category '*Multilingual-ImmPlugin') -----
- compositionWindowManager
- CompositionWindowManager ifNotNil: [^CompositionWindowManager].
- Smalltalk platformName = 'Win32'
- ifTrue: [^CompositionWindowManager := ImmWin32 new].
- (Smalltalk platformName = 'unix'
- and: [(Smalltalk windowSystemName) = 'X11'])
- ifTrue: [^CompositionWindowManager := ImmX11 new].
- ^CompositionWindowManager := ImmAbstractPlatform new!

Item was removed:
- ----- Method: HandMorph>>compositionWindowManager (in category '*Multilingual-ImmPlugin') -----
- compositionWindowManager
-
- ^ self class compositionWindowManager.
- !

Item was removed:
- ----- Method: Morph>>preferredKeyboardBounds (in category '*Multilingual-ImmPlugin') -----
- preferredKeyboardBounds
-
- ^ self bounds: self bounds in: self world.
- !

Item was removed:
- ----- Method: Morph>>preferredKeyboardPosition (in category '*Multilingual-ImmPlugin') -----
- preferredKeyboardPosition
-
- ^ (self bounds: self bounds in: self world) topLeft.
- !

Item was removed:
- ----- Method: TextMorphForEditView>>preferredKeyboardPosition (in category '*Multilingual-ImmPlugin') -----
- preferredKeyboardPosition
-
- | pos |
- pos := super preferredKeyboardPosition.
- ^ pos + (self boundsInWorld) topLeft.
- !