[squeak-dev] The Trunk: ToolBuilder-Kernel-cwp.53.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Apr 2 23:59:59 UTC 2012


Colin Putney uploaded a new version of ToolBuilder-Kernel to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Kernel-cwp.53.mcz

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

Name: ToolBuilder-Kernel-cwp.53
Author: cwp
Time: 8 December 2011, 1:00:37 pm
UUID: 1f09affc-a701-45ed-9224-925fc91a13a2
Ancestors: ToolBuilder-Kernel-cmm.52

Added icon support for ToolBuilder-Morphic.

=============== Diff against ToolBuilder-Kernel-cmm.52 ===============

Item was changed:
  PluggableWidgetSpec subclass: #PluggableListSpec
+ 	instanceVariableNames: 'list getIndex setIndex getSelected setSelected menu keyPress autoDeselect dragItem dropItem dropAccept doubleClick listSize listItem keystrokePreview icon'
- 	instanceVariableNames: 'list getIndex setIndex getSelected setSelected menu keyPress autoDeselect dragItem dropItem dropAccept doubleClick listSize listItem keystrokePreview'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'ToolBuilder-Kernel'!
  
  !PluggableListSpec commentStamp: 'ar 7/15/2005 11:54' prior: 0!
  A single selection list element.
  
  Instance variables:
  	list		<Symbol>	The selector to retrieve the list elements.
  	getIndex	<Symbol>	The selector to retrieve the list selection index.
  	setIndex	<Symbol>	The selector to set the list selection index.
  	getSelected	<Symbol>	The selector to retrieve the list selection.
  	setSelected	<Symbol>	The selector to set the list selection.
  	menu	<Symbol>	The selector to offer (to retrieve?) the context menu.
  	keyPress <Symbol>	The selector to invoke for handling keyboard shortcuts.
  	autoDeselect	<Boolean>	Whether the list should allow automatic deselection or not.
  	dragItem	<Symbol>	Selector to initiate a drag action on an item
  	dropItem	<Symbol>	Selector to initiate a drop action of an item
  	dropAccept	<Symbol>	Selector to determine whether a drop would be accepted!

Item was added:
+ ----- Method: PluggableListSpec>>icon (in category 'accessing') -----
+ icon
+ 	^ icon!

Item was added:
+ ----- Method: PluggableListSpec>>icon: (in category 'accessing') -----
+ icon: aSelector
+ 	icon := aSelector!



More information about the Squeak-dev mailing list