tim Rowledge uploaded a new version of ToolBuilder-Kernel to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Kernel-tpr.121.mcz==================== Summary ====================
Name: ToolBuilder-Kernel-tpr.121
Author: tpr
Time: 1 February 2018, 3:46:10.733492 pm
UUID: 9964559b-6c3b-4543-8da3-850104eef0eb
Ancestors: ToolBuilder-Kernel-eem.120
Preliminary support for changes involved in removing the Project>>dispatchTo:addPrefixAndSend:withArguments: method.
=============== Diff against ToolBuilder-Kernel-eem.120 ===============
Item was changed:
----- Method: ToolBuilder class>>default (in category 'accessing') -----
default
"Answer the default tool builder"
+ ^ Project uiManager toolBuilder
- ^ Project current uiManager toolBuilder
!
Item was changed:
----- Method: UIManager class>>default (in category 'class initialization') -----
default
+ ^ Project uiManager!
- ^ Project current uiManager!
Item was added:
+ ----- Method: UIManager>>openDebugger:on:context:label:contents:fullView: (in category 'ui project indirecting') -----
+ openDebugger: aDebugger on: process context: context label: title contents: contentsStringOrNil fullView: bool
+ "open a debugger - the two versions for mvc & morphic are very close and can surely be merged so that this can be removed"
+ ^self subclassResponsibility!
Item was added:
+ ----- Method: UIManager>>openFancyMailComposition: (in category 'ui project indirecting') -----
+ openFancyMailComposition: fancyMail
+ "FancyMailComposition should probably be removed in favour of MailComposition, but at least ought to be made a ToolBuilder thing"
+ ^self subclassResponsibility!
Item was added:
+ ----- Method: UIManager>>openPluggableFileList:label:in: (in category 'ui project indirecting') -----
+ openPluggableFileList: aPluggableFileList label: aString in: aWorld
+ "PluggableFileList is being deprecated and this can go away soon"
+ ^self subclassResponsibility!
Item was added:
+ ----- Method: UIManager>>openSyntaxError: (in category 'ui project indirecting') -----
+ openSyntaxError: aSyntaxError
+ "Syntax error opening probably ought to be handled with a ToolBuilder dance instead of this"
+ ^self subclassResponsibility!
Item was added:
+ ----- Method: UIManager>>resumeDebugger:process: (in category 'ui project indirecting') -----
+ resumeDebugger: aDebugger process: aTopView
+ "resume a debugger - the two versions for mvc & morphic are very close and can surely be merged so that this can be removed"
+ ^self subclassResponsibility!
Item was added:
+ ----- Method: UIManager>>startUpMenu:withCaption:icon:at:allowKeyboard: (in category 'ui project indirecting') -----
+ startUpMenu: aMenu withCaption: captionOrNil icon: aForm at: location allowKeyboard: aBoolean
+ "A menu needs to startup and depends on the current type of ui manager for what sort of startup to do. Very ugly, and really needs replacing with a much better menu system"
+
+ ^self subclassResponsibility
+ !