[squeak-dev] The Trunk: ToolBuilder-MVC-bp.19.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Apr 3 05:46:37 UTC 2010


Andreas Raab uploaded a new version of ToolBuilder-MVC to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-MVC-bp.19.mcz

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

Name: ToolBuilder-MVC-bp.19
Author: bp
Time: 2 April 2010, 11:37:19.607 pm
UUID: ee4164eb-fca3-4d5f-af5c-3155f9d7ea6b
Ancestors: ToolBuilder-MVC-dtl.18

add support for LayoutFrames in addition to Rectangle frames

=============== Diff against ToolBuilder-MVC-dtl.18 ===============

Item was changed:
  ----- Method: MVCToolBuilder>>setFrame:in: (in category 'private') -----
+ setFrame: fractionsRectangleOrLayoutFrame in: widget
- setFrame: aRectangle in: widget
  	| win |
+ 	fractionsRectangleOrLayoutFrame ifNil: [^nil].
+ 	win := fractionsRectangleOrLayoutFrame isRectangle
+ 		ifTrue: [self asWindow: fractionsRectangleOrLayoutFrame]
+ 		ifFalse: [fractionsRectangleOrLayoutFrame layout: nil in: topSize]. "assume LayoutFrame"
- 	aRectangle ifNil:[^nil].
- 	win := self asWindow: aRectangle.
  	widget window: win.!




More information about the Squeak-dev mailing list