GraphicsContext.st
changeset 716 b83fee8ff1b3
parent 713 c23f1d15b4cb
child 717 e8074dbbb33c
--- a/GraphicsContext.st	Sun May 26 15:33:56 1996 +0200
+++ b/GraphicsContext.st	Tue May 28 11:31:33 1996 +0200
@@ -12,7 +12,7 @@
 
 Object subclass:#GraphicsContext
 	instanceVariableNames:'paint bgPaint function font lineStyle lineWidth joinStyle
-		capStyle mask maskOrigin transformation'
+		capStyle mask maskOrigin transformation clipRect'
 	classVariableNames:'White Black DefaultFont'
 	poolDictionaries:''
 	category:'Graphics-Support'
@@ -76,6 +76,12 @@
                                         - not all Drawables support it
         maskOrigin      <Point>         the origin of the mask relative to
                                         the drawables origin
+	transformation
+		        <WindowingTransformation>
+				        controls scale & translation of nonNil
+
+	clipRect	<Rectangle>	a clip rectangle (device dep. usually pixels or inches)
+					or nil.
 
     [Class variables:[
 
@@ -1395,6 +1401,6 @@
 !GraphicsContext class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/GraphicsContext.st,v 1.34 1996-05-25 14:26:38 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/GraphicsContext.st,v 1.35 1996-05-28 09:31:33 cg Exp $'
 ! !
 GraphicsContext initialize!