David T. Lewis uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-dtl.74.mcz==================== Summary ====================
Name: MorphicExtras-dtl.74
Author: dtl
Time: 9 February 2010, 11:27:01.189 pm
UUID: b2ce813a-275c-4632-bc1e-65600a345c80
Ancestors: MorphicExtras-nice.73
Remove explicit MVC and Morphic dependencies from MailComposition.
=============== Diff against MorphicExtras-nice.73 ===============
Item was removed:
- ----- Method: MailComposition>>openInMVC (in category '*MorphicExtras-interface') -----
- openInMVC
- | textView sendButton |
-
- mvcWindow := StandardSystemView new
- label: 'Mister Postman';
- minimumSize: 400@250;
- model: self.
-
- textView := PluggableTextView
- on: self
- text: #messageText
- accept: #messageText:.
- textEditor := textView controller.
-
- sendButton := PluggableButtonView
- on: self
- getState: nil
- action: #submit.
- sendButton label: 'Send'.
- sendButton borderWidth: 1.
-
- sendButton window: (1@1 extent: 398@38).
- mvcWindow addSubView: sendButton.
-
- textView window: (0@40 corner: 400@250).
- mvcWindow addSubView: textView below: sendButton.
-
- mvcWindow controller open.
-
-
- !