38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
21 lines
784 B
XML
21 lines
784 B
XML
<?xml version="1.0"?>
|
|
<svg width="8cm" height="4cm" viewBox="0 0 800 400"
|
|
xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny">
|
|
<desc>Example lingrad01 - fill a rectangle using a
|
|
linear gradient paint server</desc>
|
|
<g>
|
|
<defs>
|
|
<linearGradient xml:id="MyGradient">
|
|
<stop offset="0.05" stop-color="#F60" />
|
|
<stop offset="0.95" stop-color="#FF6" />
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Outline the drawing area in blue -->
|
|
<rect fill="none" stroke="blue"
|
|
x="1" y="1" width="798" height="398"/>
|
|
<!-- The rectangle is filled using a linear gradient paint server -->
|
|
<rect fill="url(#MyGradient)" stroke="black" stroke-width="5"
|
|
x="100" y="100" width="600" height="200"/>
|
|
</g>
|
|
</svg>
|