[squeak-dev] The Trunk: ST80-mt.281.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Mar 15 08:29:03 UTC 2022


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

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

Name: ST80-mt.281
Author: mt
Time: 15 March 2022, 9:29:01.217861 am
UUID: 54638d7b-7142-5343-9130-90668893b44f
Ancestors: ST80-mt.280

Complements Morphic-mt.1938

=============== Diff against ST80-mt.280 ===============

Item was changed:
  ----- Method: ParagraphEditor>>changeEmphasis: (in category 'editing keys') -----
  changeEmphasis: characterStream 
  	"Change the emphasis of the current selection or prepare to
  	accept characters with the change in emphasis. Emphasis
  	change amounts to a font change. Keeps typeahead."
  	
  	| keyCode attribute oldAttributes index thisSel colors extras |
  
  	"control 0..9 -> 0..9"
  	keyCode := ('0123456789' indexOf: sensor keyboard ifAbsent: [1]) - 1.
  
  	oldAttributes := paragraph text attributesAt: self pointIndex forStyle: paragraph textStyle.
  	thisSel := self selection.
  
  	"Decipher keyCodes for Command 0-9..."
  	"(keyCode between: 1 and: 5) ifTrue: [
  		attribute := TextFontChange fontNumber: keyCode
  	]."
  
  	keyCode = 5 ifTrue: [
  		| labels lines | 
  		colors := #(#black #magenta #red #yellow #green #blue #cyan #white ).
  		extras := #('Link to comment of class' 'Link to definition of class' 'Link to hierarchy of class' 'Link to method' ).
  
  		Preferences noviceMode ifTrue: [
  			labels := colors , #('choose color...' ).
  			lines := #()
  		]
  		ifFalse: [
  			labels := colors , #('choose color...' 'Do it' 'Print it' ) , extras , #('be a web URL link' 'Edit hidden info' 'Copy hidden info' ).
  			lines := Array with: colors size + 1
  		].
  
  		"index := (PopUpMenu labelArray: labels lines: lines) startUp. "
  		index := UIManager default chooseFrom: labels lines: lines.
  		index = 0
  			ifTrue: [ ^ true].
  			
  		index <= colors size ifTrue: [
  			attribute := TextColor color: (Color perform: (colors at: index))
  		]
  		ifFalse: [
  			index := index - colors size - 1. "Re-number!!!!!!"
  
  			index = 0 ifTrue: [
  				attribute := self chooseColor
  			].
  
  			index = 1 ifTrue: [
  				attribute := TextDoIt new.
  				thisSel := attribute analyze: self selection asString
  			].
  
  			index = 2 ifTrue: [
  				attribute := TextPrintIt new.
  				thisSel := attribute analyze: self selection asString
  			].
  
  			extras size = 0 & (index > 2) ifTrue: [
  				index := index + 4 "skip those"
  			].
  
  			index = 3 ifTrue: [
  				attribute := TextLink new.
  				thisSel := attribute analyze: self selection asString with: 'Comment'
  			].
  
  			index = 4 ifTrue: [
  				attribute := TextLink new.
  				thisSel := attribute analyze: self selection asString with: 'Definition'
  			].
  
  			index = 5 ifTrue: [
  				attribute := TextLink new.
  				thisSel := attribute analyze: self selection asString with: 'Hierarchy'
  			].
  
  			index = 6 ifTrue: [
  				attribute := TextLink new.
  				thisSel := attribute analyze: self selection asString
  			].
  		
  			index = 7 ifTrue: [
  				attribute := TextURL new.
  				thisSel := attribute analyze: self selection asString
  			].
  		
  			index = 8 ifTrue: [
  				"Edit hidden info"
  				thisSel := self hiddenInfo. "includes selection"
  				attribute := TextEmphasis normal
  			].
  
  			index = 9 ifTrue: [
  				"Copy hidden info"
  				self copyHiddenInfo.
  				^ true
  			].
  		
  			"no other action"
  			thisSel
  				ifNil: [ ^ true ]
  		]
  	].
  
  	(keyCode between: 6 and: 9) ifTrue: [
  		sensor leftShiftDown ifTrue: [
  			keyCode = 6 ifTrue: [
  				attribute := TextKern kern: -1
  			].
  			keyCode = 7 ifTrue: [
  				attribute := TextKern kern: 1
  			]
  		]
  		ifFalse: [
+ 			"And remember this: nine is fine for underline, obliter-eight it as you see fit, seven has been bold for ever'n, which leaves six as the obivous fix to emphasize your poetics."
+ 			attribute := TextEmphasis perform: (#(italic bold struckOut underlined) at: keyCode - 5).
- 			attribute := TextEmphasis perform: (#(#bold #italic #underlined #struckOut ) at: keyCode - 5).
  			oldAttributes
  						do: [:att | (att dominates: attribute) ifTrue: [attribute turnOff]]
  		]
  	].
  
  	keyCode = 0
  		ifTrue: [attribute := TextEmphasis normal].
  
  	attribute ifNil: [^ true].
  
  	beginTypeInBlock ~~ nil ifTrue: [
  		"only change emphasisHere while typing"
  		self insertTypeAhead: characterStream.
  		emphasisHere := Text addAttribute: attribute toArray: oldAttributes.
  		^ true
  	].
  
  	self
  		replaceSelectionWith: (thisSel asText addAttribute: attribute).
  		
  	^ true
  !



More information about the Squeak-dev mailing list