LCOV - code coverage report
Current view: top level - svx/source/sdr/attribute - sdrfilltextattribute.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 20 0.0 %
Date: 2012-08-25 Functions: 0 5 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 18 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2008 by Sun Microsystems, Inc.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : 
      30                 :            : #include <svx/sdr/attribute/sdrfilltextattribute.hxx>
      31                 :            : 
      32                 :            : //////////////////////////////////////////////////////////////////////////////
      33                 :            : 
      34                 :            : namespace drawinglayer
      35                 :            : {
      36                 :            :     namespace attribute
      37                 :            :     {
      38                 :          0 :         SdrFillTextAttribute::SdrFillTextAttribute(
      39                 :            :             const SdrFillAttribute& rFill,
      40                 :            :             const FillGradientAttribute& rFillFloatTransGradient,
      41                 :            :             const SdrTextAttribute& rTextAttribute)
      42                 :            :         :   maFill(rFill),
      43                 :            :             maFillFloatTransGradient(rFillFloatTransGradient),
      44 [ #  # ][ #  # ]:          0 :             maTextAttribute(rTextAttribute)
      45                 :            :         {
      46                 :          0 :         }
      47                 :            : 
      48                 :          0 :         SdrFillTextAttribute::SdrFillTextAttribute()
      49                 :            :         :   maFill(),
      50                 :            :             maFillFloatTransGradient(),
      51 [ #  # ][ #  # ]:          0 :             maTextAttribute()
      52                 :            :         {
      53                 :          0 :         }
      54                 :            : 
      55                 :          0 :         SdrFillTextAttribute::SdrFillTextAttribute(const SdrFillTextAttribute& rCandidate)
      56                 :          0 :         :   maFill(rCandidate.getFill()),
      57                 :          0 :             maFillFloatTransGradient(rCandidate.getFillFloatTransGradient()),
      58 [ #  # ][ #  # ]:          0 :             maTextAttribute(rCandidate.getText())
      59                 :            :         {
      60                 :          0 :         }
      61                 :            : 
      62                 :          0 :         SdrFillTextAttribute& SdrFillTextAttribute::operator=(const SdrFillTextAttribute& rCandidate)
      63                 :            :         {
      64                 :          0 :             maFill = rCandidate.getFill();
      65                 :          0 :             maFillFloatTransGradient = rCandidate.getFillFloatTransGradient();
      66                 :          0 :             maTextAttribute = rCandidate.getText();
      67                 :            : 
      68                 :          0 :             return *this;
      69                 :            :         }
      70                 :            : 
      71                 :          0 :         bool SdrFillTextAttribute::operator==(const SdrFillTextAttribute& rCandidate) const
      72                 :            :         {
      73                 :          0 :             return(getFill() == rCandidate.getFill()
      74                 :          0 :                 && getFillFloatTransGradient() == rCandidate.getFillFloatTransGradient()
      75         [ #  # ]:          0 :                 && getText() == rCandidate.getText());
           [ #  #  #  # ]
      76                 :            :         }
      77                 :            :     } // end of namespace attribute
      78                 :            : } // end of namespace drawinglayer
      79                 :            : 
      80                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10