[squeak-dev] The Trunk: ToolBuilder-Kernel-mt.147.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Nov 19 17:14:20 UTC 2021


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

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

Name: ToolBuilder-Kernel-mt.147
Author: mt
Time: 19 November 2021, 6:14:20.163971 pm
UUID: 02e56cb0-f4d1-4c43-8698-f747c2250308
Ancestors: ToolBuilder-Kernel-mt.146

Complements Morphic-mt.1792

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

Item was changed:
  PluggableCompositeSpec subclass: #PluggableWindowSpec
+ 	instanceVariableNames: 'label extent closeAction multiWindowStyle defaultFocus'
- 	instanceVariableNames: 'label extent closeAction multiWindowStyle'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'ToolBuilder-Kernel'!
  
  !PluggableWindowSpec commentStamp: '<historical>' prior: 0!
  A common window. Expects to see change/update notifications when the label should change.
  
  Instance variables:
  	label	<String|Symbol> The selector under which to retrieve the label or the label directly
  	extent	<Point>	The (initial) extent of the window.
  	closeAction		<Symbol>	The action to perform when the window is closed.!

Item was added:
+ ----- Method: PluggableWindowSpec>>defaultFocus (in category 'accessing') -----
+ defaultFocus
+ 	"The name of the widget that should be initially focused or nil."
+ 	^ defaultFocus!

Item was added:
+ ----- Method: PluggableWindowSpec>>defaultFocus: (in category 'accessing') -----
+ defaultFocus: anObject
+ 	"The name of the widget that should be initially focused or nil."
+ 	defaultFocus := anObject!



More information about the Squeak-dev mailing list