home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Inkscape / Inkscape-0.48.2-1-win32.exe / share / extensions / xaml2svg / properties.xsl < prev    next >
Extensible Markup Language  |  2011-07-08  |  15KB  |  287 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!--
  4. Copyright (c) 2005-2007 Toine de Greef (a.degreef@chello.nl)
  5.  
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12.  
  13. The above copyright notice and this permission notice shall be included in
  14. all copies or substantial portions of the Software.
  15.  
  16. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. THE SOFTWARE.
  23.  
  24. Version history:
  25.  
  26. 20070907 Initial release
  27. 20070912 TemplateBinding in template_color
  28.  
  29. -->
  30.  
  31. <xsl:stylesheet version="1.0"
  32. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  33. xmlns:xlink="http://www.w3.org/1999/xlink"
  34. xmlns:svg="http://www.w3.org/2000/svg"
  35. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  36. xmlns:msxsl="urn:schemas-microsoft-com:xslt">
  37. <xsl:strip-space elements="*" />
  38. <xsl:output method="xml" encoding="ISO-8859-1"/>
  39.  
  40. <xsl:template mode="boundingbox" match="*">
  41. <xsl:if test="system-property('xsl:vendor') = 'Microsoft'">
  42.   <xsl:choose>
  43.     <xsl:when test="@Canvas.Left and @Canvas.Top and @Width and @Height">
  44.       <boundingbox>
  45.         <xsl:attribute name="x1">
  46.           <xsl:value-of select="@Canvas.Left" />
  47.         </xsl:attribute>  
  48.         <xsl:attribute name="x2">
  49.           <xsl:value-of select="@Canvas.Left + @Width" />
  50.         </xsl:attribute>  
  51.         <xsl:attribute name="y1">
  52.           <xsl:value-of select="@Canvas.Top" />
  53.         </xsl:attribute>  
  54.         <xsl:attribute name="y2">
  55.           <xsl:value-of select="@Canvas.Top + @Height" />
  56.         </xsl:attribute>  
  57.       </boundingbox>
  58.     </xsl:when>
  59.     <xsl:when test="count(*) > 0">
  60.       <xsl:variable name="boundingboxes"><xsl:apply-templates mode="boundingbox" select="*" />
  61.       </xsl:variable>
  62.       <boundingbox>
  63.       <xsl:attribute name="x1">
  64.         <xsl:for-each select="msxsl:node-set($boundingboxes)/boundingbox">
  65.           <xsl:sort data-type="number" select="@x1" order="ascending"/>
  66.           <xsl:if test="position() = 1"><xsl:value-of select="@x1" /></xsl:if>
  67.         </xsl:for-each>
  68.       </xsl:attribute>  
  69.       <xsl:attribute name="x2">
  70.         <xsl:for-each select="msxsl:node-set($boundingboxes)/boundingbox">
  71.           <xsl:sort data-type="number" select="@x2" order="descending"/>
  72.           <xsl:if test="position() = 1"><xsl:value-of select="@x2" /></xsl:if>
  73.         </xsl:for-each>
  74.       </xsl:attribute>  
  75.       <xsl:attribute name="y1">
  76.         <xsl:for-each select="msxsl:node-set($boundingboxes)/boundingbox">
  77.           <xsl:sort data-type="number" select="@y1" order="ascending"/>
  78.           <xsl:if test="position() = 1"><xsl:value-of select="@y1" /></xsl:if>
  79.         </xsl:for-each>
  80.       </xsl:attribute>  
  81.       <xsl:attribute name="y2">
  82.         <xsl:for-each select="msxsl:node-set($boundingboxes)/boundingbox">
  83.           <xsl:sort data-type="number" select="@y2" order="descending"/>
  84.           <xsl:if test="position() = 1"><xsl:value-of select="@y2" /></xsl:if>
  85.         </xsl:for-each>
  86.       </xsl:attribute>
  87.       </boundingbox>
  88.     </xsl:when>
  89.   </xsl:choose>
  90. </xsl:if>
  91. </xsl:template>
  92.  
  93. <xsl:template mode="svg" match="*">
  94.   <xsl:choose>
  95.     <xsl:when test="false() and name(.) != 'Canvas' and name(.) != 'Image' and name(.) != 'Rect' and name(.) != 'Ellipse' and name(.) != 'Text' and name(.) != 'TextBlock' and (@Canvas.Left or @Canvas.Top)">
  96.       <svg>
  97.         <xsl:if test="@Canvas.Left and @Canvas.Top and @Width and @Height">
  98.           <xsl:attribute name="viewBox">
  99.         <xsl:value-of select="concat(@Canvas.Left, ' ')" />
  100.         <xsl:value-of select="concat(@Canvas.Top, ' ')" />
  101.         <xsl:value-of select="concat(@Width - @Canvas.Left, ' ')" />
  102.         <xsl:value-of select="@Height - @Canvas.Top" />
  103.       </xsl:attribute>
  104.         </xsl:if>
  105.         <xsl:if test="@Canvas.Left"><xsl:attribute name="x"><xsl:value-of select="@Canvas.Left" /></xsl:attribute></xsl:if>
  106.         <xsl:if test="@Canvas.Top"><xsl:attribute name="y"><xsl:value-of select="@Canvas.Top" /></xsl:attribute></xsl:if>
  107.         <xsl:if test="@Width"><xsl:attribute name="width"><xsl:value-of select="@Width" /></xsl:attribute></xsl:if>
  108.         <xsl:if test="@Height"><xsl:attribute name="height"><xsl:value-of select="@Height" /></xsl:attribute></xsl:if>
  109.         <xsl:apply-templates mode="g" select="." />
  110.       </svg>
  111.     </xsl:when>
  112.     <xsl:otherwise><xsl:apply-templates mode="g" select="." /></xsl:otherwise>
  113.   </xsl:choose>
  114. </xsl:template>
  115.  
  116. <xsl:template mode="g" match="*">
  117.   <xsl:choose>
  118.     <xsl:when test="*[(name(.) = 'Shape.Fill' or name(.) = concat(name(..), '.Fill')) and not(*[name(.) = 'SolidColorBrush']) or (name(.) = 'Shape.Stroke' or name(.) = concat(name(..), '.Stroke')) and not(*[name(.) = 'SolidColorBrush']) or name(.) = 'UIElement.OpacityMask' or name(.) = concat(name(..), '.OpacityMask') or name(.) = 'UIElement.Clip' or name(.) = concat(name(..), '.Clip')]">
  119.       <g>
  120.         <xsl:apply-templates mode="defs" select="." />
  121.         <xsl:apply-templates mode="forward" select="." />
  122.       </g>
  123.     </xsl:when>
  124.     <xsl:otherwise><xsl:apply-templates mode="forward" select="." /></xsl:otherwise>
  125.   </xsl:choose>
  126. </xsl:template>
  127.  
  128. <xsl:template name="template_color">
  129.   <xsl:param name="colorspec" />
  130.   <xsl:choose>
  131.     <xsl:when test="contains($colorspec, '#') and (string-length($colorspec) = 7 or string-length($colorspec) = 9)">
  132.       <xsl:value-of select="concat('#', substring($colorspec, string-length($colorspec) - 5, 6))" />
  133.     </xsl:when>
  134.     <xsl:when test="contains($colorspec, '#') and (string-length($colorspec) = 4 or string-length($colorspec) = 5)">
  135.       <xsl:value-of select="concat('#', substring($colorspec, string-length($colorspec) - 5, 3))" />
  136.     </xsl:when>
  137.     <xsl:when test="contains($colorspec, '{StaticResource ')"><xsl:value-of select="concat('url(#', substring-before(substring-after($colorspec, '{StaticResource '), '}'), ')')" /></xsl:when>
  138.     <xsl:when test="contains($colorspec, '{TemplateBinding ')"><xsl:value-of select="concat('url(#', substring-before(substring-after($colorspec, '{TemplateBinding '), '}'), ')')" /></xsl:when>
  139.     <xsl:otherwise><xsl:value-of select="$colorspec" /></xsl:otherwise>
  140.   </xsl:choose>
  141. </xsl:template>
  142.  
  143. <xsl:template name="template_opacity">
  144.   <xsl:param name="colorspec" />
  145.   <xsl:if test="contains($colorspec, '#') and (string-length($colorspec) = 4 or string-length($colorspec) = 9)">
  146.     <xsl:variable name="opacityspec"><xsl:value-of select="translate(substring($colorspec, 2, 2), 'abcdefgh', 'ABCDEFGH')" /></xsl:variable>
  147.     <xsl:choose>
  148.       <xsl:when test="$opacityspec != 'FF'">
  149.         <xsl:value-of select="format-number(number(string-length(substring-before('0123456789ABCDEF', substring($colorspec, 2, 1))) * 16 + string-length(substring-before('0123456789ABCDEF', substring($colorspec, 3, 1)))) div 255, '#0.00')" />
  150.       </xsl:when>
  151.       <xsl:otherwise><xsl:value-of select="''"/></xsl:otherwise>
  152.     </xsl:choose>
  153.   </xsl:if>
  154. </xsl:template>
  155.  
  156. <xsl:template name="template_properties">
  157.   <xsl:choose>
  158.     <!--
  159.     <xsl:when test="@ID"><xsl:attribute name="id"><xsl:value-of select="@ID" /></xsl:attribute></xsl:when>
  160.     -->
  161.     <xsl:when test="@x:Key"><xsl:attribute name="id"><xsl:value-of select="@x:Key" /></xsl:attribute></xsl:when>
  162.     <xsl:when test="@Name"><xsl:attribute name="id"><xsl:value-of select="@Name" /></xsl:attribute></xsl:when>
  163.   </xsl:choose>
  164.   <xsl:choose>
  165.     <xsl:when test="@Fill">
  166.       <xsl:attribute name="fill"><xsl:call-template name="template_color"><xsl:with-param name="colorspec" select="@Fill" /></xsl:call-template></xsl:attribute>
  167.       <xsl:variable name="test_opacity"><xsl:call-template name="template_opacity"><xsl:with-param name="colorspec" select="@Fill" /></xsl:call-template></xsl:variable>
  168.       <xsl:if test="string-length($test_opacity) > 0">
  169.         <xsl:attribute name="fill-opacity"><xsl:value-of select="$test_opacity" /></xsl:attribute>
  170.       </xsl:if>
  171.     </xsl:when>
  172.     <xsl:when test="not(name(.) = 'Canvas') and not(@Foreground or *[name(.) = 'Shape.Fill' or name(.) = concat(name(..), '.Fill')])"><xsl:attribute name="fill">none</xsl:attribute></xsl:when>
  173.   </xsl:choose>
  174.   <xsl:if test="@Stroke">
  175.     <xsl:attribute name="stroke"><xsl:call-template name="template_color"><xsl:with-param name="colorspec" select="@Stroke" /></xsl:call-template></xsl:attribute>
  176.     <xsl:variable name="test_opacity"><xsl:call-template name="template_opacity"><xsl:with-param name="colorspec" select="@Stroke" /></xsl:call-template></xsl:variable>
  177.     <xsl:if test="string-length($test_opacity) > 0"><xsl:attribute name="stroke-opacity"><xsl:value-of select="$test_opacity" /></xsl:attribute></xsl:if>
  178.   </xsl:if>
  179.   <xsl:if test="@StrokeThickness"><xsl:attribute name="stroke-width"><xsl:value-of select="@StrokeThickness" /></xsl:attribute></xsl:if>
  180.   <xsl:if test="@StrokeMiterLimit"><xsl:attribute name="stroke-miterlimit"><xsl:value-of select="@StrokeMiterLimit" /></xsl:attribute></xsl:if>
  181.   <xsl:if test="@StrokeDashArray"><xsl:attribute name="stroke-dasharray"><xsl:value-of select="@StrokeDashArray" /></xsl:attribute></xsl:if>
  182.   <xsl:if test="@StrokeDashOffset"><xsl:attribute name="stroke-dashoffset"><xsl:value-of select="@StrokeDashOffset" /></xsl:attribute></xsl:if>
  183.   <xsl:if test="@StrokeLineJoin"><xsl:attribute name="stroke-linejoin"><xsl:value-of select="@StrokeLineJoin" /></xsl:attribute></xsl:if>
  184.   <xsl:if test="@StrokeEndLineCap"><xsl:attribute name="stroke-linecap"><xsl:value-of select="@StrokeEndLineCap" /></xsl:attribute></xsl:if>
  185.   <xsl:if test="@Opacity"><xsl:attribute name="fill-opacity"><xsl:value-of select="@Opacity" /></xsl:attribute></xsl:if>
  186.   <xsl:if test="@Color">
  187.     <xsl:attribute name="fill"><xsl:call-template name="template_color"><xsl:with-param name="colorspec" select="@Color" /></xsl:call-template></xsl:attribute>
  188.     <xsl:variable name="test_opacity"><xsl:call-template name="template_opacity"><xsl:with-param name="colorspec" select="@Color" /></xsl:call-template></xsl:variable>
  189.     <xsl:if test="string-length($test_opacity) > 0"><xsl:attribute name="fill-opacity"><xsl:value-of select="$test_opacity" /></xsl:attribute></xsl:if>
  190.   </xsl:if>
  191.   <xsl:if test="@Clip">
  192.     <xsl:choose>
  193.       <xsl:when test="contains(@Clip, '{')"><xsl:attribute name="fill"><xsl:value-of select="concat('url(#', substring-before(substring-after(@Clip, '{'), '}'), ')')" /></xsl:attribute></xsl:when>
  194.       <xsl:otherwise>
  195.         <xsl:attribute name="clip-path"><xsl:value-of select="concat('url(#clippath_', generate-id(.),')')" /></xsl:attribute>
  196.     <defs>
  197.       <clipPath>
  198.         <xsl:attribute name="id"><xsl:value-of select="concat('clippath_', generate-id(.))" /></xsl:attribute>
  199.         <path>
  200.           <xsl:attribute name="d">
  201.                 <xsl:choose>
  202.                   <xsl:when test="contains(@Clip, 'F1')"><xsl:value-of select="substring-after(@Clip, 'F1')" /></xsl:when>
  203.                   <xsl:otherwise><xsl:value-of select="@Clip" /></xsl:otherwise>
  204.                 </xsl:choose>    
  205.           </xsl:attribute></path>
  206.       </clipPath>
  207.         </defs>
  208.       </xsl:otherwise>
  209.     </xsl:choose>
  210.   </xsl:if>
  211. </xsl:template>
  212.  
  213. <xsl:template mode="forward" match="*[name(.) = concat(name(..), '.Resources')]">
  214.   <defs><xsl:apply-templates mode="forward" /></defs>
  215. </xsl:template>
  216.  
  217. <xsl:template mode="forward" match="*[name(.) = concat(name(..), '.Children')]">
  218.   <xsl:apply-templates mode="forward" />
  219. </xsl:template>
  220.  
  221. <xsl:template mode="forward" match="*[name(.) = 'Shape.Fill' or name(.) = concat(name(..), '.Fill')]">
  222.   <xsl:choose>
  223.     <xsl:when test="not(*[name(.) = 'SolidColorBrush'])">
  224.       <xsl:attribute name="fill"><xsl:value-of select="concat('url(#id_', generate-id(.), ')')" /></xsl:attribute>
  225.     </xsl:when>
  226.     <xsl:otherwise><xsl:apply-templates select="*[name(.) = 'SolidColorBrush']" /></xsl:otherwise>
  227.   </xsl:choose>
  228. </xsl:template>
  229.  
  230. <xsl:template mode="defs" match="*[(name(.) = 'Shape.Fill' or name(.) = concat(name(..), '.Fill')) and not(*[name(.) = 'SolidColorBrush'])]">
  231.   <defs><xsl:apply-templates mode="forward" /></defs>
  232. </xsl:template>
  233.  
  234. <xsl:template mode="forward" match="*[name(.) = 'Shape.Opacity' or name(.) = concat(name(..), '.Opacity')]">
  235.   <xsl:apply-templates />
  236. </xsl:template>
  237.  
  238. <xsl:template mode="forward" match="*[name(.) = concat(name(..), '.Height') or name(.) = concat(name(..), '.Width')]">
  239.   <xsl:apply-templates />
  240. </xsl:template>
  241.  
  242. <xsl:template mode="forward" match="*[name(.) = 'Shape.Stroke' or name(.) = concat(name(..), '.Stroke')]">
  243.   <xsl:choose>
  244.     <xsl:when test="not(*[name(.) = 'SolidColorBrush'])">
  245.       <xsl:attribute name="stroke"><xsl:value-of select="concat('url(#id_', generate-id(.), ')')" /></xsl:attribute>
  246.     </xsl:when>
  247.     <xsl:otherwise><xsl:apply-templates select="*[name(.) = 'SolidColorBrush']" /></xsl:otherwise>
  248.   </xsl:choose>
  249. </xsl:template>
  250.  
  251. <xsl:template mode="defs" match="*[(name(.) = 'Shape.Stroke' or name(.) = concat(name(..), '.Stroke')) and not(*[name(.) = 'SolidColorBrush'])]">
  252.   <defs><xsl:apply-templates mode="forward" /></defs>
  253. </xsl:template>
  254.  
  255. <xsl:template mode="forward" match="*[name(.) = 'UIElement.Clip' or name(.) = concat(name(..), '.Clip')]">
  256.   <xsl:attribute name="clip-path"><xsl:value-of select="concat('url(#clippath_', generate-id(.),')')" /></xsl:attribute>
  257. </xsl:template>
  258.  
  259. <xsl:template mode="defs" match="*[name(.) = 'UIElement.Clip' or name(.) = concat(name(..), '.Clip')]">
  260.   <defs>
  261.     <clipPath>
  262.       <xsl:attribute name="id"><xsl:value-of select="concat('clippath_', generate-id(.))" /></xsl:attribute>
  263.       <path>
  264.         <xsl:attribute name="d">
  265.           <xsl:apply-templates mode="forward" />
  266.         </xsl:attribute>
  267.       </path>
  268.     </clipPath>
  269.   </defs>
  270. </xsl:template>
  271.  
  272. <xsl:template mode="forward" match="*[name(.) = 'UIElement.OpacityMask' or name(.) = concat(name(..), '.OpacityMask')]">
  273.   <xsl:attribute name="mask"><xsl:value-of select="concat('url(#mask_', generate-id(.),')')" /></xsl:attribute>
  274. </xsl:template>
  275.  
  276. <xsl:template mode="defs" match="*[name(.) = 'UIElement.OpacityMask' or name(.) = concat(name(..), '.OpacityMask')]">
  277.   <defs>
  278.     <mask>
  279.       <xsl:attribute name="id"><xsl:value-of select="concat('mask_', generate-id(.))" /></xsl:attribute>
  280.       <xsl:apply-templates mode="svg" />
  281.     </mask>
  282.   </defs>
  283. </xsl:template>
  284.  
  285.  
  286. </xsl:stylesheet>
  287.