[squeak-dev] The Trunk: ST80-nice.232.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Dec 2 21:05:49 UTC 2017


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 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