Qt, SVG, Stylesheets?
-
Simple question: Does the QT SVG implementation support stylesheets? I've tried to following to no avail:
@<?xml version="1.0" standalone="no"?>
<?xml-stylesheet href="stylesheet.css" type="text/css"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" version="1.1"><circle cx="0" cy="0" r="10"/>
</svg>@
With the stylesheet:
@circle
{
stroke-width: 1;
stroke: black;
fill:yellow;
fill-opacity: 0.0;
}@