[Pkg] The Trunk: ToolBuilder-Kernel-mt.87.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 3 08:32:07 UTC 2015


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

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

Name: ToolBuilder-Kernel-mt.87
Author: mt
Time: 3 May 2015, 10:32:01.168 am
UUID: 25617b43-37ef-f741-9f9f-249adcb3ee77
Ancestors: ToolBuilder-Kernel-mt.86

Added resizing policies to layout hints.

=============== Diff against ToolBuilder-Kernel-mt.86 ===============

Item was changed:
  ToolBuilderSpec subclass: #PluggableWidgetSpec
+ 	instanceVariableNames: 'model frame color minimumExtent margin padding horizontalResizing verticalResizing'
- 	instanceVariableNames: 'model frame color minimumExtent margin padding'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'ToolBuilder-Kernel'!
  
  !PluggableWidgetSpec commentStamp: 'ar 2/9/2005 18:40' prior: 0!
  The abstract superclass for all widgets.
  
  Instance variables:
  	model	<Object>	The object the various requests should be directed to.
  	frame	<Rectangle> The associated layout frame for this object (if any).
  !

Item was added:
+ ----- Method: PluggableWidgetSpec>>horizontalResizing (in category 'layout hints') -----
+ horizontalResizing
+ 
+ 	^ horizontalResizing!

Item was added:
+ ----- Method: PluggableWidgetSpec>>horizontalResizing: (in category 'layout hints') -----
+ horizontalResizing: aSymbol
+ 	"#rigid, #spaceFill, #shrinkWrap"
+ 
+ 	horizontalResizing := aSymbol.!

Item was added:
+ ----- Method: PluggableWidgetSpec>>verticalResizing (in category 'layout hints') -----
+ verticalResizing
+ 
+ 	^ verticalResizing!

Item was added:
+ ----- Method: PluggableWidgetSpec>>verticalResizing: (in category 'layout hints') -----
+ verticalResizing: aSymbol
+ 	"#rigid, #spaceFill, #shrinkWrap"
+ 
+ 	verticalResizing := aSymbol.!



More information about the Packages mailing list