FillStyle.st
changeset 6664 64018d639874
child 6673 7176fa5cb1bc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/FillStyle.st	Fri Dec 19 16:08:30 2014 +0100
@@ -0,0 +1,47 @@
+"{ Package: 'stx:libview' }"
+
+Object subclass:#FillStyle
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Graphics-Support'
+!
+
+!FillStyle class methodsFor:'documentation'!
+
+documentation
+"
+    an as-yet unused class.
+    For now, this is present as compatibility class (for Squeak),
+    but we may move change the fill/drawing code in the view hierarchy to use it later.
+
+    [author:]
+        cg
+
+    [instance variables:]
+
+    [class variables:]
+
+    [see also:]
+
+"
+! !
+
+!FillStyle methodsFor:'*SVG-Morphic'!
+
+alphaMixed: aFloat
+	"Answer a new fill with the extra transparency."
+
+	self subclassResponsibility
+! !
+
+!FillStyle class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libview/FillStyle.st,v 1.1 2014-12-19 15:08:30 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libview/FillStyle.st,v 1.1 2014-12-19 15:08:30 cg Exp $'
+! !
+