[Pkg] The Trunk: ToolBuilder-Kernel-tpr.114.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Nov 11 00:15:37 UTC 2017


tim Rowledge uploaded a new version of ToolBuilder-Kernel to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Kernel-tpr.114.mcz

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

Name: ToolBuilder-Kernel-tpr.114
Author: tpr
Time: 10 November 2017, 4:15:30.142191 pm
UUID: 19c5cd07-e942-45d4-9529-30de44339db0
Ancestors: ToolBuilder-Kernel-eem.113

Add a multi-column list to the ToolBuider world.

=============== Diff against ToolBuilder-Kernel-eem.113 ===============

Item was added:
+ PluggableListSpec subclass: #PluggableMultiColumnListSpec
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'ToolBuilder-Kernel'!

Item was added:
+ ----- Method: PluggableMultiColumnListSpec>>buildWith: (in category 'building') -----
+ buildWith: builder
+ 	^builder buildPluggableMultiColumnList: self!

Item was added:
+ ----- Method: ToolBuilder>>buildPluggableMultiColumnList: (in category 'widgets required') -----
+ buildPluggableMultiColumnList: aSpec
+ 	^self subclassResponsibility!

Item was added:
+ ----- Method: ToolBuilder>>pluggableMultiColumnListSpec (in category 'defaults') -----
+ pluggableMultiColumnListSpec
+ 	^PluggableMultiColumnListSpec!

Item was added:
+ ----- Method: UIManager>>filenameSaverRequest:initialAnswer: (in category 'ui requests') -----
+ filenameSaverRequest: queryString initialAnswer: defaultAnswer 
+ 	"Open a FileSaverDialog to ask for a place and filename to use for saving a file. The initial suggestion for the filename is defaultAnswer but the user may choose any existing file or type in a new name entirely"
+ 	"Note that this is a trulyawful message name but I can't think of a better one right now"
+ 	^self subclassResponsibility!



More information about the Packages mailing list