LCOV - code coverage report
Current view: top level - svgio/source/svgreader - svgcirclenode.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 43 47 91.5 %
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/svgcirclenode.hxx>
      21             : #include <basegfx/polygon/b2dpolygon.hxx>
      22             : #include <basegfx/polygon/b2dpolygontools.hxx>
      23             : 
      24             : namespace svgio
      25             : {
      26             :     namespace svgreader
      27             :     {
      28         208 :         SvgCircleNode::SvgCircleNode(
      29             :             SvgDocument& rDocument,
      30             :             SvgNode* pParent)
      31             :         :   SvgNode(SVGTokenCircle, rDocument, pParent),
      32             :             maSvgStyleAttributes(*this),
      33             :             maCx(0),
      34             :             maCy(0),
      35             :             maR(0),
      36         208 :             mpaTransform(0)
      37             :         {
      38         208 :         }
      39             : 
      40         624 :         SvgCircleNode::~SvgCircleNode()
      41             :         {
      42         208 :             if(mpaTransform) delete mpaTransform;
      43         416 :         }
      44             : 
      45         438 :         const SvgStyleAttributes* SvgCircleNode::getSvgStyleAttributes() const
      46             :         {
      47         438 :             return checkForCssStyle(OUString("circle"), maSvgStyleAttributes);
      48             :         }
      49             : 
      50        1021 :         void SvgCircleNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent)
      51             :         {
      52             :             // call parent
      53        1021 :             SvgNode::parseAttribute(rTokenName, aSVGToken, aContent);
      54             : 
      55             :             // read style attributes
      56        1021 :             maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent, false);
      57             : 
      58             :             // parse own
      59        1021 :             switch(aSVGToken)
      60             :             {
      61             :                 case SVGTokenStyle:
      62             :                 {
      63           6 :                     readLocalCssStyle(aContent);
      64           6 :                     break;
      65             :                 }
      66             :                 case SVGTokenCx:
      67             :                 {
      68         208 :                     SvgNumber aNum;
      69             : 
      70         208 :                     if(readSingleNumber(aContent, aNum))
      71             :                     {
      72         208 :                         setCx(aNum);
      73             :                     }
      74         208 :                     break;
      75             :                 }
      76             :                 case SVGTokenCy:
      77             :                 {
      78         208 :                     SvgNumber aNum;
      79             : 
      80         208 :                     if(readSingleNumber(aContent, aNum))
      81             :                     {
      82         208 :                         setCy(aNum);
      83             :                     }
      84         208 :                     break;
      85             :                 }
      86             :                 case SVGTokenR:
      87             :                 {
      88         208 :                     SvgNumber aNum;
      89             : 
      90         208 :                     if(readSingleNumber(aContent, aNum))
      91             :                     {
      92         208 :                         if(aNum.isPositive())
      93             :                         {
      94         208 :                             setR(aNum);
      95             :                         }
      96             :                     }
      97         208 :                     break;
      98             :                 }
      99             :                 case SVGTokenTransform:
     100             :                 {
     101           0 :                     const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this));
     102             : 
     103           0 :                     if(!aMatrix.isIdentity())
     104             :                     {
     105           0 :                         setTransform(&aMatrix);
     106             :                     }
     107           0 :                     break;
     108             :                 }
     109             :                 default:
     110             :                 {
     111         391 :                     break;
     112             :                 }
     113             :             }
     114        1021 :         }
     115             : 
     116         277 :         void SvgCircleNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool /*bReferenced*/) const
     117             :         {
     118         277 :             const SvgStyleAttributes* pStyle = getSvgStyleAttributes();
     119             : 
     120         277 :             if(pStyle && getR().isSet())
     121             :             {
     122         277 :                 const double fR(getR().solve(*this, length));
     123             : 
     124         277 :                 if(fR > 0.0)
     125             :                 {
     126             :                     const basegfx::B2DPolygon aPath(
     127             :                         basegfx::tools::createPolygonFromCircle(
     128             :                             basegfx::B2DPoint(
     129         554 :                                 getCx().isSet() ? getCx().solve(*this, xcoordinate) : 0.0,
     130         554 :                                 getCy().isSet() ? getCy().solve(*this, ycoordinate) : 0.0),
     131        1108 :                             fR));
     132             : 
     133         554 :                     drawinglayer::primitive2d::Primitive2DSequence aNewTarget;
     134             : 
     135         277 :                     pStyle->add_path(basegfx::B2DPolyPolygon(aPath), aNewTarget, 0);
     136             : 
     137         277 :                     if(aNewTarget.hasElements())
     138             :                     {
     139         277 :                         pStyle->add_postProcess(rTarget, aNewTarget, getTransform());
     140         277 :                     }
     141             :                 }
     142             :             }
     143         277 :         }
     144             :     } // end of namespace svgreader
     145             : } // end of namespace svgio
     146             : 
     147             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10