The Trunk: ToolBuilder-Morphic-tpr.207.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-Morphic-tpr.207.mcz

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

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

Name: ToolBuilder-Morphic-tpr.207
Author: tpr
Time: 1 February 2018, 3:47:46.390567 pm
UUID: e04efbf4-8938-4eb6-8397-87ae178fb187
Ancestors: ToolBuilder-Morphic-mt.206

Preliminary support for changes involved in removing the Project>>dispatchTo:addPrefixAndSend:withArguments: method.

=============== Diff against ToolBuilder-Morphic-mt.206 ===============

Item was added:
+ ----- Method: MorphicUIManager>>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"
+ ^aDebugger morphicOpenOn: process context: context label: title contents: contentsStringOrNil fullView: bool!

Item was added:
+ ----- Method: MorphicUIManager>>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"
+ ^fancyMail morphicOpen!

Item was added:
+ ----- Method: MorphicUIManager>>openPluggableFileList:label:in: (in category 'ui project indirecting') -----
+ openPluggableFileList: aPluggableFileList label: aString in: aWorld
+ "PluggableFileList is being deprecated and this can go away soon"
+ ^aPluggableFileList morphicOpenLabel: aString in: aWorld!

Item was added:
+ ----- Method: MorphicUIManager>>openSyntaxError: (in category 'ui project indirecting') -----
+ openSyntaxError: aSyntaxError
+ "Syntax error opening probably ought to be handled with a ToolBuilder dance instead of this"
+ ^SyntaxError morphicOpen: aSyntaxError!

Item was added:
+ ----- Method: MorphicUIManager>>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"
+ ^aDebugger morphicResumeProcess: aTopView!

Item was added:
+ ----- Method: MorphicUIManager>>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"
+
+ ^aMenu morphicStartUpWithCaption: captionOrNil icon: aForm at: location allowKeyboard: aBoolean
+ !