LCOV - code coverage report
Current view: top level - svgio/source/svgreader - svgrectnode.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 76 79 96.2 %
Date: 2014-11-03 Functions: 6 6 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <svgio/svgreader/svgrectnode.hxx>
      21             : #include <basegfx/polygon/b2dpolygon.hxx>
      22             : #include <basegfx/polygon/b2dpolygontools.hxx>
      23             : 
      24             : namespace svgio
      25             : {
      26             :     namespace svgreader
      27             :     {
      28         134 :         SvgRectNode::SvgRectNode(
      29             :             SvgDocument& rDocument,
      30             :             SvgNode* pParent)
      31             :         :   SvgNode(SVGTokenRect, rDocument, pParent),
      32             :             maSvgStyleAttributes(*this),
      33             :             maX(0),
      34             :             maY(0),
      35             :             maWidth(0),
      36             :             maHeight(0),
      37             :             maRx(0),
      38             :             maRy(0),
      39         134 :             mpaTransform(0)
      40             :         {
      41         134 :         }
      42             : 
      43         402 :         SvgRectNode::~SvgRectNode()
      44             :         {
      45         134 :             if(mpaTransform) delete mpaTransform;
      46         268 :         }
      47             : 
      48         268 :         const SvgStyleAttributes* SvgRectNode::getSvgStyleAttributes() const
      49             :         {
      50         268 :             return checkForCssStyle(OUString("rect"), maSvgStyleAttributes);
      51             :         }
      52             : 
      53         735 :         void SvgRectNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent)
      54             :         {
      55             :             // call parent
      56         735 :             SvgNode::parseAttribute(rTokenName, aSVGToken, aContent);
      57             : 
      58             :             // read style attributes
      59         735 :             maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent, false);
      60             : 
      61             :             // parse own
      62         735 :             switch(aSVGToken)
      63             :             {
      64             :                 case SVGTokenStyle:
      65             :                 {
      66          13 :                     readLocalCssStyle(aContent);
      67          13 :                     break;
      68             :                 }
      69             :                 case SVGTokenX:
      70             :                 {
      71         133 :                     SvgNumber aNum;
      72             : 
      73         133 :                     if(readSingleNumber(aContent, aNum))
      74             :                     {
      75         133 :                         setX(aNum);
      76             :                     }
      77         133 :                     break;
      78             :                 }
      79             :                 case SVGTokenY:
      80             :                 {
      81         134 :                     SvgNumber aNum;
      82             : 
      83         134 :                     if(readSingleNumber(aContent, aNum))
      84             :                     {
      85         134 :                         setY(aNum);
      86             :                     }
      87         134 :                     break;
      88             :                 }
      89             :                 case SVGTokenWidth:
      90             :                 {
      91         134 :                     SvgNumber aNum;
      92             : 
      93         134 :                     if(readSingleNumber(aContent, aNum))
      94             :                     {
      95         134 :                         if(aNum.isPositive())
      96             :                         {
      97         134 :                             setWidth(aNum);
      98             :                         }
      99             :                     }
     100         134 :                     break;
     101             :                 }
     102             :                 case SVGTokenHeight:
     103             :                 {
     104         134 :                     SvgNumber aNum;
     105             : 
     106         134 :                     if(readSingleNumber(aContent, aNum))
     107             :                     {
     108         134 :                         if(aNum.isPositive())
     109             :                         {
     110         134 :                             setHeight(aNum);
     111             :                         }
     112             :                     }
     113         134 :                     break;
     114             :                 }
     115             :                 case SVGTokenRx:
     116             :                 {
     117           8 :                     SvgNumber aNum;
     118             : 
     119           8 :                     if(readSingleNumber(aContent, aNum))
     120             :                     {
     121           8 :                         if(aNum.isPositive())
     122             :                         {
     123           8 :                             setRx(aNum);
     124             :                         }
     125             :                     }
     126           8 :                     break;
     127             :                 }
     128             :                 case SVGTokenRy:
     129             :                 {
     130           8 :                     SvgNumber aNum;
     131             : 
     132           8 :                     if(readSingleNumber(aContent, aNum))
     133             :                     {
     134           8 :                         if(aNum.isPositive())
     135             :                         {
     136           8 :                             setRy(aNum);
     137             :                         }
     138             :                     }
     139           8 :                     break;
     140             :                 }
     141             :                 case SVGTokenTransform:
     142             :                 {
     143          32 :                     const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this));
     144             : 
     145          32 :                     if(!aMatrix.isIdentity())
     146             :                     {
     147          32 :                         setTransform(&aMatrix);
     148             :                     }
     149          32 :                     break;
     150             :                 }
     151             :                 default:
     152             :                 {
     153         139 :                     break;
     154             :                 }
     155             :             }
     156         735 :         }
     157             : 
     158         134 :         void SvgRectNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool /*bReferenced*/) const
     159             :         {
     160             :             // get size range and create path
     161         134 :             const SvgStyleAttributes* pStyle = getSvgStyleAttributes();
     162             : 
     163         134 :             if(pStyle && getWidth().isSet() && getHeight().isSet())
     164             :             {
     165         134 :                 const double fWidth(getWidth().solve(*this, xcoordinate));
     166         134 :                 const double fHeight(getHeight().solve(*this, ycoordinate));
     167             : 
     168         134 :                 if(fWidth > 0.0 && fHeight > 0.0)
     169             :                 {
     170         134 :                     const double fX(getX().isSet() ? getX().solve(*this, xcoordinate) : 0.0);
     171         134 :                     const double fY(getY().isSet() ? getY().solve(*this, ycoordinate) : 0.0);
     172         134 :                     const basegfx::B2DRange aRange(fX, fY, fX + fWidth, fY + fHeight);
     173         134 :                     basegfx::B2DPolygon aPath;
     174             : 
     175         134 :                     if(getRx().isSet() || getRy().isSet())
     176             :                     {
     177         134 :                         double frX(getRx().isSet() ? getRx().solve(*this, xcoordinate) : 0.0);
     178         134 :                         double frY(getRy().isSet() ? getRy().solve(*this, ycoordinate) : 0.0);
     179             : 
     180         134 :                         frX = std::max(0.0, frX);
     181         134 :                         frY = std::max(0.0, frY);
     182             : 
     183         134 :                         if(0.0 == frY && frX > 0.0)
     184             :                         {
     185           0 :                             frY = frX;
     186             :                         }
     187         134 :                         else if(0.0 == frX && frY > 0.0)
     188             :                         {
     189           0 :                             frX = frY;
     190             :                         }
     191             : 
     192         134 :                         frX /= fWidth;
     193         134 :                         frY /= fHeight;
     194             : 
     195         134 :                         frX = std::min(0.5, frX);
     196         134 :                         frY = std::min(0.5, frY);
     197             : 
     198         134 :                         aPath = basegfx::tools::createPolygonFromRect(aRange, frX * 2.0, frY * 2.0);
     199             :                     }
     200             :                     else
     201             :                     {
     202           0 :                         aPath = basegfx::tools::createPolygonFromRect(aRange);
     203             :                     }
     204             : 
     205         268 :                     drawinglayer::primitive2d::Primitive2DSequence aNewTarget;
     206             : 
     207         134 :                     pStyle->add_path(basegfx::B2DPolyPolygon(aPath), aNewTarget, 0);
     208             : 
     209         134 :                     if(aNewTarget.hasElements())
     210             :                     {
     211         114 :                         pStyle->add_postProcess(rTarget, aNewTarget, getTransform());
     212         134 :                     }
     213             :                 }
     214             :             }
     215         134 :         }
     216             :     } // end of namespace svgreader
     217             : } // end of namespace svgio
     218             : 
     219             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10