StrokeWrpr.st
changeset 405 4acab6da7d82
parent 365 47e0d48fd769
equal deleted inserted replaced
404:502b2dc1b0ba 405:4acab6da7d82
   270 
   270 
   271     aGC lineWidth:lineWidth.
   271     aGC lineWidth:lineWidth.
   272     aGC lineStyle:lineStyle.
   272     aGC lineStyle:lineStyle.
   273     aGC joinStyle:joinStyle.
   273     aGC joinStyle:joinStyle.
   274     aGC capStyle:capStyle.
   274     aGC capStyle:capStyle.
   275     aGC paint:fgColor on:bgColor.
   275     aGC paint:foregroundColor on:backgroundColor.
   276 
   276 
   277     component displayStrokedOn:aGC.
   277     component displayStrokedOn:aGC.
   278 
   278 
   279     aGC lineWidth:prevLineWidth.
   279     aGC lineWidth:prevLineWidth.
   280     aGC lineStyle:prevLineStyle.
   280     aGC lineStyle:prevLineStyle.
   281     aGC joinStyle:prevJoinStyle.
   281     aGC joinStyle:prevJoinStyle.
   282     aGC capStyle:prevCapStyle.
   282     aGC capStyle:prevCapStyle.
   283     aGC paint:prevFg on:prevBg.
   283     aGC paint:prevFg on:prevBg.
   284 
   284 
   285     "Created: 8.5.1996 / 23:24:04 / cg"
   285     "Created: 8.5.1996 / 23:24:04 / cg"
   286     "Modified: 9.5.1996 / 00:11:17 / cg"
   286     "Modified: 10.2.1997 / 14:21:33 / cg"
   287 ! !
   287 ! !
   288 
   288 
   289 !StrokingWrapper methodsFor:'initialization'!
   289 !StrokingWrapper methodsFor:'initialization'!
   290 
   290 
   291 initialize
   291 initialize
   299 ! !
   299 ! !
   300 
   300 
   301 !StrokingWrapper class methodsFor:'documentation'!
   301 !StrokingWrapper class methodsFor:'documentation'!
   302 
   302 
   303 version
   303 version
   304     ^ '$Header: /cvs/stx/stx/libview2/Attic/StrokeWrpr.st,v 1.13 1997-01-14 17:00:08 cg Exp $'
   304     ^ '$Header: /cvs/stx/stx/libview2/Attic/StrokeWrpr.st,v 1.14 1997-02-10 13:48:46 cg Exp $'
   305 ! !
   305 ! !