[squeak-dev] The Trunk: Morphic-mt.950.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Apr 29 17:25:47 UTC 2015


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

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

Name: Morphic-mt.950
Author: mt
Time: 29 April 2015, 7:25:04.297 pm
UUID: 54cdcc0b-9f1f-f84c-9d8d-7a47a1f82885
Ancestors: Morphic-mt.949

Add some useful defaults for layoutInset and cellInset to support non-Toolbuilder tools and their system windows.

=============== Diff against Morphic-mt.949 ===============

Item was changed:
  ----- Method: SystemWindow>>initialize (in category 'initialization') -----
  initialize
  	"Initialize a system window. Add label, stripes, etc., if desired"
  
  	super initialize.
  
  	self layoutPolicy: ProportionalLayout new.
  
+ 	self wantsPaneSplitters: true.
+ 	self layoutInset: ProportionalSplitterMorph gripThickness.
+ 	self cellInset: ProportionalSplitterMorph gripThickness.
+ 
  	self initializeLabelArea.				
  	self addCornerGrips.
  	self setDefaultParameters.
  
  	allowReframeHandles := true.
  	isCollapsed := false.
  	activeOnlyOnTop := true.
  	paneMorphs := Array new.
  	mustNotClose := false.
  	updatablePanes := Array new.!



More information about the Squeak-dev mailing list