[squeak-dev] The Trunk: Morphic-edc.588.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Nov 11 09:47:58 UTC 2011


Edgar J. De Cleene uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-edc.588.mcz

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

Name: Morphic-edc.588
Author: edc
Time: 11 November 2011, 6:36:57.436 am
UUID: f72f1dd0-d555-4a76-ab6e-290136fe8859
Ancestors: Morphic-ul.587

For long time Squeak do not have Stack and all related.
I choose comment out the method for avoid DNU

=============== Diff against Morphic-ul.587 ===============

Item was changed:
  ----- Method: PasteUpMorph>>addCustomMenuItems:hand: (in category 'menu & halo') -----
  addCustomMenuItems: menu hand: aHandMorph 
  	"Add morph-specific menu itemns to the menu for the hand"
  	super addCustomMenuItems: menu hand: aHandMorph.
  
  	menu addLine.
  	Preferences noviceMode
  		ifFalse: [
+ 			"self addStackMenuItems: menu hand: aHandMorph."
- 			self addStackMenuItems: menu hand: aHandMorph.
  			self addPenMenuItems: menu hand: aHandMorph.
  			self addPlayfieldMenuItems: menu hand: aHandMorph].
  
  	self isWorldMorph
  		ifTrue: [
  			menu addLine.
  			Preferences noviceMode
  				ifFalse: [(owner isKindOf: BOBTransformationMorph)
  						ifTrue: [self addScalingMenuItems: menu hand: aHandMorph]].
  			menu addUpdating: #showWorldMainDockingBarString action: #toggleShowWorldMainDockingBar.
  
  			Flaps sharedFlapsAllowed ifTrue: [
  				menu
  					addUpdating: #suppressFlapsString
  					target: Project current
  					action: #toggleFlapsSuppressed.
  			].
  			 
  			Preferences noviceMode ifFalse: [| twm |
  				menu addLine.
  
  				twm := TheWorldMenu new.
  				twm world: self project: Project current hand: aHandMorph.
  
  				menu add: 'old desktop menu... (W)' translated subMenu: twm buildWorldMenu.
  			].
  		].
  !

Item was changed:
+ AnObsoleteParagraphEditor subclass: #TextMorphEditor
- ParagraphEditor subclass: #TextMorphEditor
  	instanceVariableNames: 'morph oldInterval pivotBlock editHistory'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'Morphic-Text Support'!
  
  !TextMorphEditor commentStamp: '<historical>' prior: 0!
  This is the ParagraphEditor for TextMorphs.
  
  
  
  -----
  In the past, BookMorphs had the ability to have each page be on the server as a .sp SqueakPage file.  The index of the book was a .bo file.  In text, Cmd-6 had a LinkTo option that linked to a page by its name, or created a new page of that name.  It assumed the book was on a server with a file per page.  Ted removed that code, and kept a copy on his disk in 'TME-ChngEmphasis.st for .bo .sp'!




More information about the Squeak-dev mailing list