LCOV - code coverage report
Current view: top level - drawinglayer/source/attribute - sdrfillattribute.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 46 46 100.0 %
Date: 2014-11-03 Functions: 22 22 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 <drawinglayer/attribute/sdrfillattribute.hxx>
      21             : #include <basegfx/color/bcolor.hxx>
      22             : #include <drawinglayer/attribute/sdrfillgraphicattribute.hxx>
      23             : #include <drawinglayer/attribute/fillhatchattribute.hxx>
      24             : #include <drawinglayer/attribute/fillgradientattribute.hxx>
      25             : #include <rtl/instance.hxx>
      26             : 
      27             : 
      28             : 
      29             : namespace drawinglayer
      30             : {
      31             :     namespace attribute
      32             :     {
      33      111710 :         class ImpSdrFillAttribute
      34             :         {
      35             :         public:
      36             :             // fill definitions
      37             :             double                              mfTransparence;     // [0.0 .. 1.0], 0.0==no transp.
      38             :             basegfx::BColor                     maColor;            // fill color
      39             :             FillGradientAttribute               maGradient;         // fill gradient (if used)
      40             :             FillHatchAttribute                  maHatch;            // fill hatch (if used)
      41             :             SdrFillGraphicAttribute             maFillGraphic;      // fill graphic (if used)
      42             : 
      43             :         public:
      44       37360 :             ImpSdrFillAttribute(
      45             :                 double fTransparence,
      46             :                 const basegfx::BColor& rColor,
      47             :                 const FillGradientAttribute& rGradient,
      48             :                 const FillHatchAttribute& rHatch,
      49             :                 const SdrFillGraphicAttribute& rFillGraphic)
      50             :             :   mfTransparence(fTransparence),
      51             :                 maColor(rColor),
      52             :                 maGradient(rGradient),
      53             :                 maHatch(rHatch),
      54       37360 :                 maFillGraphic(rFillGraphic)
      55             :             {
      56       37360 :             }
      57             : 
      58         128 :             ImpSdrFillAttribute()
      59             :             :   mfTransparence(0.0),
      60             :                 maColor(basegfx::BColor()),
      61             :                 maGradient(FillGradientAttribute()),
      62             :                 maHatch(FillHatchAttribute()),
      63         128 :                 maFillGraphic(SdrFillGraphicAttribute())
      64             :             {
      65         128 :             }
      66             : 
      67             :             // data read access
      68       73155 :             double getTransparence() const { return mfTransparence; }
      69       41366 :             const basegfx::BColor& getColor() const { return maColor; }
      70       46011 :             const FillGradientAttribute& getGradient() const { return maGradient; }
      71       45154 :             const FillHatchAttribute& getHatch() const { return maHatch; }
      72       47323 :             const SdrFillGraphicAttribute& getFillGraphic() const { return maFillGraphic; }
      73             : 
      74             :             // compare operator
      75       13876 :             bool operator==(const ImpSdrFillAttribute& rCandidate) const
      76             :             {
      77       13876 :                 return(getTransparence() == rCandidate.getTransparence()
      78       13872 :                     && getColor() == rCandidate.getColor()
      79       13816 :                     && getGradient() == rCandidate.getGradient()
      80       13816 :                     && getHatch() == rCandidate.getHatch()
      81       27692 :                     && getFillGraphic() == rCandidate.getFillGraphic());
      82             :             }
      83             :         };
      84             : 
      85             :         namespace
      86             :         {
      87             :             struct theGlobalDefault :
      88             :                 public rtl::Static< SdrFillAttribute::ImplType, theGlobalDefault > {};
      89             :         }
      90             : 
      91       37360 :         SdrFillAttribute::SdrFillAttribute(
      92             :             double fTransparence,
      93             :             const basegfx::BColor& rColor,
      94             :             const FillGradientAttribute& rGradient,
      95             :             const FillHatchAttribute& rHatch,
      96             :             const SdrFillGraphicAttribute& rFillGraphic)
      97             :         :   mpSdrFillAttribute(ImpSdrFillAttribute(
      98       37360 :                 fTransparence, rColor, rGradient, rHatch, rFillGraphic))
      99             :         {
     100       37360 :         }
     101             : 
     102      176053 :         SdrFillAttribute::SdrFillAttribute()
     103      176053 :         :   mpSdrFillAttribute(theGlobalDefault::get())
     104             :         {
     105      176053 :         }
     106             : 
     107      128915 :         SdrFillAttribute::SdrFillAttribute(const SdrFillAttribute& rCandidate)
     108      128915 :         :   mpSdrFillAttribute(rCandidate.mpSdrFillAttribute)
     109             :         {
     110      128915 :         }
     111             : 
     112      341373 :         SdrFillAttribute::~SdrFillAttribute()
     113             :         {
     114      341373 :         }
     115             : 
     116      549176 :         bool SdrFillAttribute::isDefault() const
     117             :         {
     118      549176 :             return mpSdrFillAttribute.same_object(theGlobalDefault::get());
     119             :         }
     120             : 
     121       68257 :         SdrFillAttribute& SdrFillAttribute::operator=(const SdrFillAttribute& rCandidate)
     122             :         {
     123       68257 :             mpSdrFillAttribute = rCandidate.mpSdrFillAttribute;
     124       68257 :             return *this;
     125             :         }
     126             : 
     127       44861 :         bool SdrFillAttribute::operator==(const SdrFillAttribute& rCandidate) const
     128             :         {
     129       44861 :             return rCandidate.mpSdrFillAttribute == mpSdrFillAttribute;
     130             :         }
     131             : 
     132       45403 :         double SdrFillAttribute::getTransparence() const
     133             :         {
     134       45403 :             return mpSdrFillAttribute->getTransparence();
     135             :         }
     136             : 
     137       13622 :         const basegfx::BColor& SdrFillAttribute::getColor() const
     138             :         {
     139       13622 :             return mpSdrFillAttribute->getColor();
     140             :         }
     141             : 
     142       18379 :         const FillGradientAttribute& SdrFillAttribute::getGradient() const
     143             :         {
     144       18379 :             return mpSdrFillAttribute->getGradient();
     145             :         }
     146             : 
     147       17522 :         const FillHatchAttribute& SdrFillAttribute::getHatch() const
     148             :         {
     149       17522 :             return mpSdrFillAttribute->getHatch();
     150             :         }
     151             : 
     152       19691 :         const SdrFillGraphicAttribute& SdrFillAttribute::getFillGraphic() const
     153             :         {
     154       19691 :             return mpSdrFillAttribute->getFillGraphic();
     155             :         }
     156             :     } // end of namespace attribute
     157             : } // end of namespace drawinglayer
     158             : 
     159             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10