The Trunk: MorphicExtras-nice.124.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: MorphicExtras-nice.124.mcz

commits-2
Nicolas Cellier uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-nice.124.mcz

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

Name: MorphicExtras-nice.124
Author: nice
Time: 6 October 2013, 11:44:56.242 pm
UUID: 168a6120-5f7a-40b7-8481-7de9b9682c64
Ancestors: MorphicExtras-nice.123

CanvasCharacterScanner class comment.

=============== Diff against MorphicExtras-nice.123 ===============

Item was changed:
  CharacterScanner subclass: #CanvasCharacterScanner
  instanceVariableNames: 'canvas foregroundColor lineY defaultTextColor'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'MorphicExtras-Support'!
 
+ !CanvasCharacterScanner commentStamp: 'nice 10/6/2013 23:07' prior: 0!
+ A CanvasCharacterScanner is displaying characters onto a Morphic canvas.
+
+ Instance Variables
+ canvas: <Canvas>
+ defaultTextColor: <Color>
+ foregroundColor: <Color>
+ lineY: <Number>
+
+ canvas
+ - the canvas on which characters are displayed
+
+ defaultTextColor
+ - the default foreground color for displaying text in absence of other text attributes specification
+
+ foregroundColor
+ - the foreground color for displaying text, taking TextColor attributes being into account
+
+ lineY
+ - the distance between destination canvas top and current line top
+ !
- !CanvasCharacterScanner commentStamp: '<historical>' prior: 0!
- A displaying scanner which draws its output to a Morphic canvas.!