LCOV - code coverage report
Current view: top level - svx/source/sdr/attribute - sdrlinefillshadowtextattribute.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 18 23 78.3 %
Date: 2012-08-25 Functions: 5 6 83.3 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 15 24 62.5 %

           Branch data     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                 :            : 
      21                 :            : #include <svx/sdr/attribute/sdrlinefillshadowtextattribute.hxx>
      22                 :            : 
      23                 :            : //////////////////////////////////////////////////////////////////////////////
      24                 :            : 
      25                 :            : namespace drawinglayer
      26                 :            : {
      27                 :            :     namespace attribute
      28                 :            :     {
      29                 :      73040 :         SdrLineFillShadowTextAttribute::SdrLineFillShadowTextAttribute(
      30                 :            :             const SdrLineAttribute& rLine,
      31                 :            :             const SdrFillAttribute& rFill,
      32                 :            :             const SdrLineStartEndAttribute& rLineStartEnd,
      33                 :            :             const SdrShadowAttribute& rShadow,
      34                 :            :             const FillGradientAttribute& rFillFloatTransGradient,
      35                 :            :             const SdrTextAttribute& rTextAttribute)
      36                 :            :         :   SdrLineShadowTextAttribute(rLine, rLineStartEnd, rShadow, rTextAttribute),
      37                 :            :             maFill(rFill),
      38 [ +  - ][ +  - ]:      73040 :             maFillFloatTransGradient(rFillFloatTransGradient)
      39                 :            :         {
      40                 :      73040 :         }
      41                 :            : 
      42                 :      10746 :         SdrLineFillShadowTextAttribute::SdrLineFillShadowTextAttribute()
      43                 :            :         :   SdrLineShadowTextAttribute(),
      44                 :            :             maFill(),
      45 [ +  - ][ +  - ]:      10746 :             maFillFloatTransGradient()
      46                 :            :         {
      47                 :      10746 :         }
      48                 :            : 
      49                 :      83786 :         SdrLineFillShadowTextAttribute::SdrLineFillShadowTextAttribute(const SdrLineFillShadowTextAttribute& rCandidate)
      50                 :            :         :   SdrLineShadowTextAttribute(rCandidate),
      51                 :      83786 :             maFill(rCandidate.getFill()),
      52 [ +  - ][ +  - ]:     167572 :             maFillFloatTransGradient(rCandidate.getFillFloatTransGradient())
      53                 :            :         {
      54                 :      83786 :         }
      55                 :            : 
      56                 :          0 :         SdrLineFillShadowTextAttribute& SdrLineFillShadowTextAttribute::operator=(const SdrLineFillShadowTextAttribute& rCandidate)
      57                 :            :         {
      58                 :          0 :             SdrLineShadowTextAttribute::operator=(rCandidate);
      59                 :          0 :             maFill = rCandidate.getFill();
      60                 :          0 :             maFillFloatTransGradient = rCandidate.getFillFloatTransGradient();
      61                 :            : 
      62                 :          0 :             return *this;
      63                 :            :         }
      64                 :            : 
      65                 :        185 :         bool SdrLineFillShadowTextAttribute::isDefault() const
      66                 :            :         {
      67                 :        185 :             return (SdrLineShadowTextAttribute::isDefault()
      68                 :        165 :                 && getFill().isDefault()
      69         [ +  - ]:        350 :                 && getFillFloatTransGradient().isDefault());
           [ +  +  +  - ]
      70                 :            :         }
      71                 :            : 
      72                 :      54937 :         bool SdrLineFillShadowTextAttribute::operator==(const SdrLineFillShadowTextAttribute& rCandidate) const
      73                 :            :         {
      74                 :      54937 :             return(SdrLineShadowTextAttribute::operator==(rCandidate)
      75                 :      53321 :                 && getFill() == rCandidate.getFill()
      76         [ +  - ]:     108258 :                 && getFillFloatTransGradient() == rCandidate.getFillFloatTransGradient());
           [ +  +  +  + ]
      77                 :            :         }
      78                 :            :     } // end of namespace attribute
      79                 :            : } // end of namespace drawinglayer
      80                 :            : 
      81                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10