[squeak-dev] The Trunk: MorphicExtras-dtl.74.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Feb 10 04:29:10 UTC 2010


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 at 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 at 1 extent: 398 at 38).
- 	mvcWindow addSubView: sendButton.
- 
- 	textView window: (0 at 40 corner: 400 at 250).
- 	mvcWindow addSubView: textView below: sendButton.
- 
- 	mvcWindow controller open.
- 
- 		
- !




More information about the Squeak-dev mailing list