LCOV - code coverage report
Current view: top level - libreoffice/svx/source/sdr/attribute - sdrlineshadowtextattribute.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 18 23 78.3 %
Date: 2012-12-27 Functions: 5 6 83.3 %
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             : 
      21             : #include <svx/sdr/attribute/sdrlineshadowtextattribute.hxx>
      22             : 
      23             : //////////////////////////////////////////////////////////////////////////////
      24             : 
      25             : namespace drawinglayer
      26             : {
      27             :     namespace attribute
      28             :     {
      29         211 :         SdrLineShadowTextAttribute::SdrLineShadowTextAttribute(
      30             :             const SdrLineAttribute& rLine,
      31             :             const SdrLineStartEndAttribute& rLineStartEnd,
      32             :             const SdrShadowAttribute& rShadow,
      33             :             const SdrTextAttribute& rTextAttribute)
      34             :         :   SdrShadowTextAttribute(rShadow, rTextAttribute),
      35             :             maLine(rLine),
      36         211 :             maLineStartEnd(rLineStartEnd)
      37             :         {
      38         211 :         }
      39             : 
      40         137 :         SdrLineShadowTextAttribute::SdrLineShadowTextAttribute()
      41             :         :   SdrShadowTextAttribute(),
      42             :             maLine(),
      43         137 :             maLineStartEnd()
      44             :         {
      45         137 :         }
      46             : 
      47         348 :         SdrLineShadowTextAttribute::SdrLineShadowTextAttribute(const SdrLineShadowTextAttribute& rCandidate)
      48             :         :   SdrShadowTextAttribute(rCandidate),
      49         348 :             maLine(rCandidate.getLine()),
      50         696 :             maLineStartEnd(rCandidate.getLineStartEnd())
      51             :         {
      52         348 :         }
      53             : 
      54           0 :         SdrLineShadowTextAttribute& SdrLineShadowTextAttribute::operator=(const SdrLineShadowTextAttribute& rCandidate)
      55             :         {
      56           0 :             SdrShadowTextAttribute::operator=(rCandidate);
      57           0 :             maLine = rCandidate.getLine();
      58           0 :             maLineStartEnd = rCandidate.getLineStartEnd();
      59             : 
      60           0 :             return *this;
      61             :         }
      62             : 
      63          46 :         bool SdrLineShadowTextAttribute::isDefault() const
      64             :         {
      65          46 :             return(SdrShadowTextAttribute::isDefault()
      66          46 :                 && getLine().isDefault()
      67          92 :                 && getLineStartEnd().isDefault());
      68             :         }
      69             : 
      70          72 :         bool SdrLineShadowTextAttribute::operator==(const SdrLineShadowTextAttribute& rCandidate) const
      71             :         {
      72          72 :             return(SdrShadowTextAttribute::operator==(rCandidate)
      73          42 :                 && getLine() == rCandidate.getLine()
      74         114 :                 && getLineStartEnd() == rCandidate.getLineStartEnd());
      75             :         }
      76             :     } // end of namespace attribute
      77             : } // end of namespace drawinglayer
      78             : 
      79             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10