Marcel Taeumel uploaded a new version of ToolBuilder-Kernel to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Kernel-mt.102.mcz==================== Summary ====================
Name: ToolBuilder-Kernel-mt.102
Author: mt
Time: 5 August 2016, 9:48:53.027358 am
UUID: bc3bad64-ecbb-c347-adda-d7193c3fbefc
Ancestors: ToolBuilder-Kernel-mt.101
Due to popular request, provide support for dialogs to behave more like pop-up menus, that is, dismiss them if you click outside their bounds.
=============== Diff against ToolBuilder-Kernel-mt.101 ===============
Item was changed:
PluggableCompositeSpec subclass: #PluggableDialogSpec
+ instanceVariableNames: 'title message extent buttons closeAction exclusive autoCancel'
- instanceVariableNames: 'title message extent buttons closeAction'
classVariableNames: ''
poolDictionaries: ''
category: 'ToolBuilder-Kernel'!
Item was added:
+ ----- Method: PluggableDialogSpec>>autoCancel (in category 'accessing') -----
+ autoCancel
+ ^ autoCancel!
Item was added:
+ ----- Method: PluggableDialogSpec>>autoCancel: (in category 'accessing') -----
+ autoCancel: aBoolean
+ autoCancel := aBoolean.!
Item was added:
+ ----- Method: PluggableDialogSpec>>exclusive (in category 'accessing') -----
+ exclusive
+ ^ exclusive!
Item was added:
+ ----- Method: PluggableDialogSpec>>exclusive: (in category 'accessing') -----
+ exclusive: aBoolean
+ exclusive := aBoolean.!
Item was changed:
+ ----- Method: PluggableDialogSpec>>horizontalResizing (in category 'layout hints') -----
- ----- Method: PluggableDialogSpec>>horizontalResizing (in category 'as yet unclassified') -----
horizontalResizing
^ #rigid!
Item was changed:
+ ----- Method: PluggableDialogSpec>>verticalResizing (in category 'layout hints') -----
- ----- Method: PluggableDialogSpec>>verticalResizing (in category 'as yet unclassified') -----
verticalResizing
^ #rigid!