Marcel Taeumel uploaded a new version of ToolBuilder-Kernel to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Kernel-mt.104.mcz==================== Summary ====================
Name: ToolBuilder-Kernel-mt.104
Author: mt
Time: 10 August 2016, 3:49:52.440966 pm
UUID: 9d1b6028-777b-cc4e-b5c3-aa6b026a9598
Ancestors: ToolBuilder-Kernel-mt.103
Also provide more control about automatic list filter clearing for pluggable lists. Needed for ListChooser if preference is globally enabled.
=============== Diff against ToolBuilder-Kernel-mt.103 ===============
Item was changed:
PluggableWidgetSpec subclass: #PluggableListSpec
+ instanceVariableNames: 'list getIndex setIndex getSelected setSelected menu keyPress autoDeselect dragItem dropItem dropAccept doubleClick listSize listItem keystrokePreview icon vScrollBarPolicy hScrollBarPolicy dragStarted helpItem filterableList clearFilterAutomatically'
- instanceVariableNames: 'list getIndex setIndex getSelected setSelected menu keyPress autoDeselect dragItem dropItem dropAccept doubleClick listSize listItem keystrokePreview icon vScrollBarPolicy hScrollBarPolicy dragStarted helpItem filterableList'
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>>clearFilterAutomatically (in category 'accessing - list') -----
+ clearFilterAutomatically
+ ^ clearFilterAutomatically!
Item was added:
+ ----- Method: PluggableListSpec>>clearFilterAutomatically: (in category 'accessing - list') -----
+ clearFilterAutomatically: aBoolean
+ clearFilterAutomatically := aBoolean.!