The Trunk: ToolBuilder-Kernel-tpr.116.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: ToolBuilder-Kernel-tpr.116.mcz

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

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

Name: ToolBuilder-Kernel-tpr.116
Author: tpr
Time: 28 December 2017, 1:01:20.596849 pm
UUID: fee85035-98b7-48f7-bf0e-940635b7ee7d
Ancestors: ToolBuilder-Kernel-tpr.115

Connect UIManager api to new file dialogs

=============== Diff against ToolBuilder-Kernel-tpr.115 ===============

Item was added:
+ ----- Method: UIManager>>chooseFileMatchingSuffixes: (in category 'ui requests') -----
+ chooseFileMatchingSuffixes: suffixList
+ "Let the user choose a file matching the given suffixes"
+ ^self chooseFileMatchingSuffixes: suffixList label: nil!

Item was added:
+ ----- Method: UIManager>>chooseFileMatchingSuffixes:label: (in category 'ui requests') -----
+ chooseFileMatchingSuffixes: suffixList label: labelString
+ "Let the user choose a file matching the given suffixes"
+ ^self subclassResponsibility!

Item was removed:
- ----- 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!