The Trunk: ST80-nice.232.mcz

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

The Trunk: ST80-nice.232.mcz

commits-2
Nicolas Cellier uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-nice.232.mcz

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

Name: ST80-nice.232
Author: nice
Time: 2 December 2017, 10:05:36.568131 pm
UUID: 8575119e-3256-4a18-add5-d4a5f5e1b526
Ancestors: ST80-dtl.231

MailComposition has been tool-builder-ized, remove obsolete mvcOpen extension.

=============== Diff against ST80-dtl.231 ===============

Item was removed:
- ----- Method: MailComposition>>mvcOpen (in category '*ST80-Support') -----
- mvcOpen
- | 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.
-
-
- !