[squeak-dev] The Trunk: 51Deprecated-mt.29.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 20 09:43:45 UTC 2016


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

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

Name: 51Deprecated-mt.29
Author: mt
Time: 20 May 2016, 11:43:34.671411 am
UUID: dd938ba1-6eda-894c-92d7-83a3e075e04e
Ancestors: 51Deprecated-mt.28

Appendix to Morphic-mt.1150.

=============== Diff against 51Deprecated-mt.28 ===============

Item was added:
+ ----- Method: SystemWindow>>activateAndForceLabelToShow (in category '*51Deprecated') -----
+ activateAndForceLabelToShow
+ 
+ 	self deprecated.
+ 	self beKeyWindow.
+ !

Item was added:
+ ----- Method: SystemWindow>>activateWindow (in category '*51Deprecated') -----
+ activateWindow
+ 
+ 	self deprecated: 'Override #activate if needed'.!

Item was added:
+ ----- Method: SystemWindow>>activeOnlyOnTop (in category '*51Deprecated') -----
+ activeOnlyOnTop
+ 
+ 	self deprecated: 'Being active is a synonym for being the top window. If you want to accept input in background windows, check the preference #allWindowsAcceptInput..'.
+ 	^ true!

Item was added:
+ ----- Method: SystemWindow>>activeOnlyOnTop: (in category '*51Deprecated') -----
+ activeOnlyOnTop: trueOrFalse
+ 
+ 	self deprecated: 'Being active is a synonym for being the top window. If you want to accept input in background windows, use the preference "All windows accept input".'.!

Item was added:
+ ----- Method: SystemWindow>>adjustBorderUponActivationWhenLabeless (in category '*51Deprecated') -----
+ adjustBorderUponActivationWhenLabeless
+ 	"Adjust the border upon, um, activation when, um, labelless"
+ 
+ 	| aWidth |
+ 	self deprecated: 'See #beKeyWindow'.
+ 	(aWidth := self valueOfProperty: #borderWidthWhenActive) ifNotNil:
+ 		[self acquireBorderWidth: aWidth]!

Item was added:
+ ----- Method: SystemWindow>>adjustBorderUponDeactivationWhenLabeless (in category '*51Deprecated') -----
+ adjustBorderUponDeactivationWhenLabeless
+ 	"Adjust the border upon deactivation when, labelless"
+ 
+ 	| aWidth |
+ 	self deprecated: 'See #beKeyWindow'.
+ 	(aWidth := self valueOfProperty: #borderWidthWhenInactive) ifNotNil:
+ 		[self acquireBorderWidth: aWidth]!

Item was added:
+ ----- Method: SystemWindow>>bringBehind: (in category '*51Deprecated') -----
+ bringBehind: aMorph
+ 	"Make the receiver be directly behind the given morph.
+ 	Take into account any modal owner and propagate."
+ 
+ 	|outerMorph|
+ 	self deprecated: 'Just use #comeToFront on model windows.'.
+ 	outerMorph := self topRendererOrSelf.
+ 	outerMorph owner ifNil: [^ self "avoid spurious activate when drop in trash"].
+ 	outerMorph owner addMorph: outerMorph after: aMorph topRendererOrSelf.
+ 	self modalOwner ifNotNil: [:mo | mo bringBehind: self]!



More information about the Squeak-dev mailing list