[squeak-dev] The Trunk: 60Deprecated-mt.73.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 5 15:26:08 UTC 2020


Marcel Taeumel uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-mt.73.mcz

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

Name: 60Deprecated-mt.73
Author: mt
Time: 5 March 2020, 4:26:08.425454 pm
UUID: 7e6fa2f2-3b3d-0143-8e68-5a6cfcce829d
Ancestors: 60Deprecated-mt.72

Complements MorphicExtras-mt.274.

=============== Diff against 60Deprecated-mt.72 ===============

Item was added:
+ ----- Method: FancyMailComposition>>morphicOpen (in category '*60Deprecated-user interface') -----
+ morphicOpen
+ 
+ 	self deprecated.
+ 	^ self open!

Item was changed:
  ----- Method: FancyMailComposition>>mvcOpen (in category '*60Deprecated-ST80-Support') -----
  mvcOpen
- 	| textView sendButton  |
  
+ 	self deprecated.
+ 	^ self open!
- 	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.
- 
- 		
- !

Item was added:
+ ----- Method: FancyMailComposition>>openInMorphic (in category '*60Deprecated-morphic gui') -----
+ openInMorphic
+ 
+ 	self deprecated.
+ 	^ self open!



More information about the Squeak-dev mailing list