[squeak-dev] The Trunk: 45Deprecated-nice.11.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Oct 26 20:46:07 UTC 2013


Nicolas Cellier uploaded a new version of 45Deprecated to project The Trunk:
http://source.squeak.org/trunk/45Deprecated-nice.11.mcz

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

Name: 45Deprecated-nice.11
Author: nice
Time: 26 October 2013, 10:45:56.53 pm
UUID: e5064650-ce13-4c4e-8a8a-af2df4838ac6
Ancestors: 45Deprecated-nice.10

Deprecate unused methods from BitBlt 'text display' protocol.

=============== Diff against 45Deprecated-nice.10 ===============

Item was added:
+ ----- Method: BitBlt>>displayString:from:to:at:kern:baselineY:font: (in category '*45Deprecated') -----
+ displayString: aString from: startIndex to: stopIndex at: aPoint kern: kernDelta baselineY: baselineY font: aFont
+ 	"Double dispatch into the font. This method is present so that other-than-bitblt entities can be used by CharacterScanner and friends to display text."
+ 	^ aFont displayString: aString on: self from: startIndex to: stopIndex at: aPoint kern: kernDelta baselineY: baselineY!

Item was added:
+ ----- Method: BitBlt>>displayString:from:to:at:kern:font: (in category '*45Deprecated') -----
+ displayString: aString from: startIndex to: stopIndex at: aPoint kern: kernDelta font: aFont
+ 	"Double dispatch into the font. This method is present so that other-than-bitblt entities can be used by CharacterScanner and friends to display text."
+ 	^ aFont displayString: aString on: self from: startIndex to: stopIndex at: aPoint kern: kernDelta!

Item was added:
+ ----- Method: BitBlt>>installFont:foregroundColor:backgroundColor: (in category '*45Deprecated') -----
+ installFont: aFont foregroundColor: foregroundColor backgroundColor: backgroundColor
+ 	"Double dispatch into the font. This method is present so that other-than-bitblt entities can be used by CharacterScanner and friends to display text."
+ 	^aFont installOn: self foregroundColor: foregroundColor backgroundColor: backgroundColor!



More information about the Squeak-dev mailing list