The Trunk: Morphic-mt.950.mcz

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

The Trunk: Morphic-mt.950.mcz

commits-2
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.!