LCOV - code coverage report
Current view: top level - solver/unxlngi6.pro/inc/editeng - udlnitem.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 13 15 86.7 %
Date: 2012-08-25 Functions: 15 17 88.2 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 3 6 50.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 2000, 2010 Oracle and/or its affiliates.
       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                 :            : #ifndef _SVX_UDLNITEM_HXX
      29                 :            : #define _SVX_UDLNITEM_HXX
      30                 :            : 
      31                 :            : #include <svl/eitem.hxx>
      32                 :            : #include <vcl/vclenum.hxx>
      33                 :            : #include <tools/color.hxx>
      34                 :            : #include <editeng/editengdllapi.h>
      35                 :            : 
      36                 :            : class SvXMLUnitConverter;
      37                 :            : namespace rtl
      38                 :            : {
      39                 :            :     class OUString;
      40                 :            : }
      41                 :            : 
      42                 :            : // class SvxTextLineItem ------------------------------------------------
      43                 :            : 
      44                 :            : /* Value container for underline and overline font effects */
      45                 :            : 
      46         [ -  + ]:     324833 : class EDITENG_DLLPUBLIC SvxTextLineItem : public SfxEnumItem
      47                 :            : {
      48                 :            :     Color mColor;
      49                 :            : public:
      50                 :            :     TYPEINFO();
      51                 :            : 
      52                 :            :     SvxTextLineItem( const FontUnderline eSt,
      53                 :            :                      const sal_uInt16 nId );
      54                 :            : 
      55                 :            :     // "pure virtual Methods" from SfxPoolItem
      56                 :            :     virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
      57                 :            :                             SfxMapUnit eCoreMetric,
      58                 :            :                             SfxMapUnit ePresMetric,
      59                 :            :                             String &rText, const IntlWrapper * = 0 ) const;
      60                 :            : 
      61                 :            :     virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const;
      62                 :            :     virtual SfxPoolItem*    Create(SvStream &, sal_uInt16) const;
      63                 :            :     virtual SvStream&       Store(SvStream &, sal_uInt16 nItemVersion) const;
      64                 :            :     virtual rtl::OUString   GetValueTextByPos( sal_uInt16 nPos ) const;
      65                 :            :     virtual sal_uInt16      GetValueCount() const;
      66                 :            : 
      67                 :            :     virtual bool            QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
      68                 :            :     virtual bool            PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
      69                 :            : 
      70                 :            :     // MS VC4.0 messes things up
      71                 :      60722 :     void                    SetValue( sal_uInt16 nNewVal )
      72                 :      60722 :                                 {SfxEnumItem::SetValue(nNewVal); }
      73                 :            :     virtual int             HasBoolValue() const;
      74                 :            :     virtual sal_Bool        GetBoolValue() const;
      75                 :            :     virtual void            SetBoolValue( sal_Bool bVal );
      76                 :            : 
      77                 :            :     virtual int             operator==( const SfxPoolItem& ) const;
      78                 :            : 
      79                 :      15402 :     inline SvxTextLineItem& operator=(const SvxTextLineItem& rTextLine)
      80                 :            :         {
      81                 :      15402 :             SetValue( rTextLine.GetValue() );
      82                 :      15402 :             SetColor( rTextLine.GetColor() );
      83                 :      15402 :             return *this;
      84                 :            :         }
      85                 :            : 
      86                 :            :     // enum cast
      87                 :    1103873 :     FontUnderline           GetLineStyle() const
      88                 :    1103873 :                                 { return (FontUnderline)GetValue(); }
      89                 :          0 :     void                    SetLineStyle( FontUnderline eNew )
      90                 :          0 :                                 { SetValue((sal_uInt16) eNew); }
      91                 :            : 
      92                 :     679449 :     const Color&            GetColor() const                { return mColor; }
      93                 :     167473 :     void                    SetColor( const Color& rCol )   { mColor = rCol; }
      94                 :            : };
      95                 :            : 
      96                 :            : // class SvxUnderlineItem ------------------------------------------------
      97                 :            : 
      98                 :            : /* Value container for underline font effects */
      99                 :            : 
     100         [ -  + ]:     253857 : class EDITENG_DLLPUBLIC SvxUnderlineItem : public SvxTextLineItem
     101                 :            : {
     102                 :            : public:
     103                 :            :     TYPEINFO();
     104                 :            : 
     105                 :            :     SvxUnderlineItem( const FontUnderline eSt,
     106                 :            :                       const sal_uInt16 nId );
     107                 :            : 
     108                 :            :     virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const;
     109                 :            :     virtual SfxPoolItem*    Create(SvStream &, sal_uInt16) const;
     110                 :            :     virtual rtl::OUString   GetValueTextByPos( sal_uInt16 nPos ) const;
     111                 :            : };
     112                 :            : 
     113                 :            : // class SvxOverlineItem ------------------------------------------------
     114                 :            : 
     115                 :            : /* Value container for overline font effects */
     116                 :            : 
     117         [ -  + ]:     239204 : class EDITENG_DLLPUBLIC SvxOverlineItem : public SvxTextLineItem
     118                 :            : {
     119                 :            : public:
     120                 :            :     TYPEINFO();
     121                 :            : 
     122                 :            :     SvxOverlineItem( const FontUnderline eSt,
     123                 :            :                      const sal_uInt16 nId );
     124                 :            : 
     125                 :            :     virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const;
     126                 :            :     virtual SfxPoolItem*    Create(SvStream &, sal_uInt16) const;
     127                 :            :     virtual rtl::OUString   GetValueTextByPos( sal_uInt16 nPos ) const;
     128                 :            : };
     129                 :            : 
     130                 :            : #endif // #ifndef _SVX_UDLNITEM_HXX
     131                 :            : 
     132                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10