David T. Lewis uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-dtl.239.mcz==================== Summary ====================
Name: System-dtl.239
Author: dtl
Time: 24 January 2010, 3:02:16.598 pm
UUID: 21b72cf5-e92a-43e4-85d8-0336c6e0f01a
Ancestors: System-ar.238
Remove all MVC BitEditor references from non-MVC packages.
Form>>bitEdit to Project class>>bitEdit:
Form>>bitEditAt:scale: to Project class>>bitEdit:at:scale:
BitEditor class>>locateMagnifiedView:scale: to Rectangle class>>locateMagnifiedView:scale:
=============== Diff against System-ar.238 ===============
Item was added:
+ ----- Method: Project>>bitEdit: (in category 'editors') -----
+ bitEdit: aForm
+ "Create and schedule a view located in an area designated by the user
+ that contains a view of aForm magnified by 8@8 that can be modified using
+ a bit editor. It also contains a view of the original form."
+
+ self subclassResponsibility
+ !
Item was added:
+ ----- Method: Project>>bitEdit:at:scale: (in category 'editors') -----
+ bitEdit: aForm at: magnifiedFormLocation scale: scaleFactor
+ "Create and schedule a view whose top left corner is magnifiedLocation
+ and that contains a view of aForm magnified by scaleFactor that can be
+ modified using the Bit Editor. It also contains a view of the original form."
+
+ self subclassResponsibility!
Item was added:
+ ----- Method: Project>>editCharacter:ofFont: (in category 'editors') -----
+ editCharacter: character ofFont: strikeFont
+ "Open a bit editor on a character in the given strike font."
+
+ self subclassResponsibility !