[etoys-dev] Etoys: Morphic-kfr.81.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Mar 4 09:36:21 EST 2012


Karl Ramberg uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-kfr.81.mcz

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

Name: Morphic-kfr.81
Author: kfr
Time: 4 March 2012, 3:34:47 pm
UUID: 90add4b0-4d3b-de47-b4ad-d2fee1d0d755
Ancestors: Morphic-kfr.80

Update for moved methods

=============== Diff against Morphic-kfr.80 ===============

Item was removed:
- ----- Method: HaloMorph>>openViewerForTarget:with: (in category 'handles') -----
- openViewerForTarget: evt with: aHandle
- 	"Open  a viewer for my inner target"
- 
- 	self obtainHaloForEvent: evt andRemoveAllHandlesBut: nil.
- 	innerTarget openViewerForArgument!

Item was removed:
- ----- Method: Morph>>addMiscExtrasTo: (in category 'menus') -----
- addMiscExtrasTo: aMenu
- 	"Add a submenu of miscellaneous extra items to the menu."
- 
- 	| realOwner realMorph subMenu |
- 	subMenu _ MenuMorph new defaultTarget: self.
- 	(Preferences eToyFriendly not and: [self isWorldMorph not and: [self renderedMorph isSystemWindow not]])
- 		ifTrue: [subMenu add: 'put in a window' translated action: #embedInWindow].
- 
- 	self isWorldMorph ifFalse:
- 		[subMenu add: 'adhere to edge...' translated action: #adhereToEdge.
- 		subMenu addLine].
- 
- 	realOwner _ (realMorph _ self topRendererOrSelf) owner.
- 	(realOwner isKindOf: TextPlusPasteUpMorph) ifTrue:
- 		[subMenu add: 'GeeMail stuff...' translated subMenu: (realOwner textPlusMenuFor: realMorph)].
- 
- 	Preferences eToyFriendly
-  ifFalse: [
- 		subMenu
- 	
- 		add: 'add mouse up action' translated action: #addMouseUpAction;
- 	
- 		add: 'remove mouse up action' translated action: #removeMouseUpAction;
- 	
- 		add: 'hand me tiles to fire this button' translated action: #handMeTilesToFire.
- 	
- 	subMenu addLine.
- 	].
- 
- 	Preferences eToyFriendly
-  ifFalse: [
- 		subMenu add: 'arrowheads on pen trails...' translated action: #setArrowheads.
- 	
- 	subMenu addLine.
- 	
- ].
- 	subMenu defaultTarget: self topRendererOrSelf.
- 	(self isWorldMorph not and: [(self renderedMorph isSystemWindow) not]) ifTrue: [
- 		subMenu add: 'draw new path' translated action: #definePath.
- 	
- 	subMenu add: 'follow existing path' translated action: #followPath.
- 	
- 	subMenu add: 'delete existing path' translated action: #deletePath.
- 	
- 	subMenu addLine.
- 	].
- 	self addGestureMenuItems: subMenu hand: ActiveHand.
- 
- 	self isWorldMorph ifFalse:
- 		[subMenu add: 'balloon help for this object' translated action: #editBalloonHelpText].
- 
- 	subMenu submorphs isEmpty ifFalse: [
- 		aMenu add: 'extras...' translated subMenu: subMenu
- 	].!

Item was removed:
- ----- Method: PasteUpMorph class>>descriptionForPartsBin (in category 'parts bin') -----
- descriptionForPartsBin
- 	^ self partName:	'Playfield' translatedNoop
- 		categories:		{'Basic' translatedNoop}
- 		documentation:	'A place for assembling parts or for staging animations' translatedNoop!



More information about the etoys-dev mailing list