LCOV - code coverage report
Current view: top level - svx/source/items - pageitem.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 60 125 48.0 %
Date: 2015-06-13 12:38:46 Functions: 14 22 63.6 %
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 <tools/stream.hxx>
      21             : 
      22             : 
      23             : #include <svx/pageitem.hxx>
      24             : #include <editeng/itemtype.hxx>
      25             : #include <svx/unomid.hxx>
      26             : #include <com/sun/star/style/PageStyleLayout.hpp>
      27             : #include <com/sun/star/style/BreakType.hpp>
      28             : #include <svl/itemset.hxx>
      29             : #include <svx/svxitems.hrc>
      30             : #include <svx/dialmgr.hxx>
      31             : 
      32             : using namespace ::com::sun::star;
      33             : 
      34       23939 : TYPEINIT1_FACTORY( SvxPageItem, SfxPoolItem , new  SvxPageItem(0));
      35             : 
      36       22964 : SvxPageItem::SvxPageItem( const sal_uInt16 nId ) : SfxPoolItem( nId ),
      37             : 
      38             :     eNumType    ( SVX_ARABIC ),
      39             :     bLandscape  ( false ),
      40       22964 :     eUse        ( SVX_PAGE_ALL )
      41             : {
      42       22964 : }
      43             : 
      44             : // Copy-Ctor
      45       55035 : SvxPageItem::SvxPageItem( const SvxPageItem& rItem )
      46       55035 :     : SfxPoolItem( rItem )
      47             : {
      48       55035 :     eNumType    = rItem.eNumType;
      49       55035 :     bLandscape  = rItem.bLandscape;
      50       55035 :     eUse        = rItem.eUse;
      51       55035 : }
      52             : 
      53             : // Clone
      54       54938 : SfxPoolItem* SvxPageItem::Clone( SfxItemPool * ) const
      55             : {
      56       54938 :     return new SvxPageItem( *this );
      57             : }
      58             : 
      59             : // Test for equality
      60        8393 : bool SvxPageItem::operator==( const SfxPoolItem& rAttr ) const
      61             : {
      62             :     DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unequal types" );
      63        8393 :     const SvxPageItem& rItem = static_cast<const SvxPageItem&>(rAttr);
      64       16780 :     return ( eNumType   == rItem.eNumType   &&
      65       16703 :              bLandscape == rItem.bLandscape &&
      66       16703 :              eUse       == rItem.eUse );
      67             : }
      68             : 
      69           0 : inline OUString GetUsageText( const sal_uInt16 eU )
      70             : {
      71           0 :     switch( eU & 0x000f )
      72             :     {
      73           0 :         case SVX_PAGE_LEFT  : return SVX_RESSTR(RID_SVXITEMS_PAGE_USAGE_LEFT);
      74           0 :         case SVX_PAGE_RIGHT : return SVX_RESSTR(RID_SVXITEMS_PAGE_USAGE_RIGHT);
      75           0 :         case SVX_PAGE_ALL   : return SVX_RESSTR(RID_SVXITEMS_PAGE_USAGE_ALL);
      76           0 :         case SVX_PAGE_MIRROR: return SVX_RESSTR(RID_SVXITEMS_PAGE_USAGE_MIRROR);
      77           0 :         default:              return OUString();
      78             :     }
      79             : }
      80             : 
      81             : 
      82             : 
      83           0 : bool SvxPageItem::GetPresentation
      84             : (
      85             :     SfxItemPresentation ePres,
      86             :     SfxMapUnit          /*eCoreUnit*/,
      87             :     SfxMapUnit          /*ePresUnit*/,
      88             :     OUString&           rText, const IntlWrapper *
      89             : )   const
      90             : {
      91           0 :     rText.clear();
      92           0 :     OUString cpDelimTmp = OUString(cpDelim);
      93             : 
      94           0 :     switch ( ePres )
      95             :     {
      96             :         case SFX_ITEM_PRESENTATION_NAMELESS:
      97             :         {
      98           0 :             if ( !aDescName.isEmpty() )
      99             :             {
     100           0 :                 rText = aDescName + cpDelimTmp;
     101             :             }
     102             :             DBG_ASSERT( eNumType <= SVX_NUMBER_NONE, "enum overflow" );
     103           0 :             rText += SVX_RESSTR(RID_SVXITEMS_PAGE_NUM_BEGIN + eNumType) + cpDelimTmp;
     104           0 :             if ( bLandscape )
     105           0 :                 rText += SVX_RESSTR(RID_SVXITEMS_PAGE_LAND_TRUE);
     106             :             else
     107           0 :                 rText += SVX_RESSTR(RID_SVXITEMS_PAGE_LAND_FALSE);
     108           0 :             OUString aUsageText = GetUsageText( eUse );
     109           0 :             if (!aUsageText.isEmpty())
     110             :             {
     111           0 :                 rText += cpDelimTmp + aUsageText;
     112             :             }
     113           0 :             return true;
     114             :         }
     115             :         case SFX_ITEM_PRESENTATION_COMPLETE:
     116             :         {
     117           0 :             rText += SVX_RESSTR(RID_SVXITEMS_PAGE_COMPLETE);
     118           0 :             if ( !aDescName.isEmpty() )
     119             :             {
     120           0 :                 rText += aDescName + cpDelimTmp;
     121             :             }
     122             :             DBG_ASSERT( eNumType <= SVX_NUMBER_NONE, "enum overflow" );
     123           0 :             rText += SVX_RESSTR(RID_SVXITEMS_PAGE_NUM_BEGIN + eNumType) + cpDelimTmp;
     124           0 :             if ( bLandscape )
     125           0 :                 rText += SVX_RESSTR(RID_SVXITEMS_PAGE_LAND_TRUE);
     126             :             else
     127           0 :                 rText += SVX_RESSTR(RID_SVXITEMS_PAGE_LAND_FALSE);
     128           0 :             OUString aUsageText = GetUsageText( eUse );
     129           0 :             if (!aUsageText.isEmpty())
     130             :             {
     131           0 :                 rText += cpDelimTmp + aUsageText;
     132             :             }
     133           0 :             return true;
     134             :         }
     135             :         default: ;//prevent warning
     136             :     }
     137           0 :     return false;
     138             : }
     139             : 
     140             : 
     141         700 : bool SvxPageItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
     142             : {
     143             : //    sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
     144         700 :     nMemberId &= ~CONVERT_TWIPS;
     145         700 :     switch( nMemberId )
     146             :     {
     147             :         case MID_PAGE_NUMTYPE:
     148             :         {
     149             :             //! constants aren't in IDLs any more ?!?
     150         435 :             rVal <<= (sal_Int16)( eNumType );
     151             :         }
     152         435 :         break;
     153             :         case MID_PAGE_ORIENTATION:
     154             :             //Landscape= sal_True
     155         159 :             rVal = css::uno::makeAny<bool>(bLandscape);
     156         159 :         break;
     157             :         case MID_PAGE_LAYOUT     :
     158             :         {
     159             :             style::PageStyleLayout eRet;
     160         106 :             switch(eUse & 0x0f)
     161             :             {
     162           1 :                 case SVX_PAGE_LEFT  : eRet = style::PageStyleLayout_LEFT;      break;
     163           4 :                 case SVX_PAGE_RIGHT : eRet = style::PageStyleLayout_RIGHT;     break;
     164          91 :                 case SVX_PAGE_ALL   : eRet = style::PageStyleLayout_ALL;       break;
     165          10 :                 case SVX_PAGE_MIRROR: eRet = style::PageStyleLayout_MIRRORED; break;
     166             :                 default:
     167             :                     OSL_FAIL("what layout is this?");
     168           0 :                     return false;
     169             :             }
     170         106 :             rVal <<= eRet;
     171             :         }
     172         106 :         break;
     173             :     }
     174             : 
     175         700 :     return true;
     176             : }
     177             : 
     178        5700 : bool SvxPageItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
     179             : {
     180        5700 :     switch( nMemberId )
     181             :     {
     182             :         case MID_PAGE_NUMTYPE:
     183             :         {
     184         453 :             sal_Int32 nValue = 0;
     185         453 :             if(!(rVal >>= nValue))
     186           0 :                 return false;
     187             : 
     188         453 :             eNumType = (SvxNumType)nValue;
     189             :         }
     190         453 :         break;
     191             :         case MID_PAGE_ORIENTATION:
     192        2852 :             bLandscape = Any2Bool(rVal);
     193        2852 :         break;
     194             :         case MID_PAGE_LAYOUT     :
     195             :         {
     196             :             style::PageStyleLayout eLayout;
     197        2395 :             if(!(rVal >>= eLayout))
     198             :             {
     199           0 :                 sal_Int32 nValue = 0;
     200           0 :                 if(!(rVal >>= nValue))
     201           0 :                     return false;
     202           0 :                 eLayout = (style::PageStyleLayout)nValue;
     203             :             }
     204        2395 :             eUse &= 0xfff0;
     205        2395 :             switch( eLayout )
     206             :             {
     207          10 :                 case style::PageStyleLayout_LEFT     : eUse |= SVX_PAGE_LEFT ; break;
     208          22 :                 case style::PageStyleLayout_RIGHT   : eUse |= SVX_PAGE_RIGHT; break;
     209        2308 :                 case style::PageStyleLayout_ALL     : eUse |= SVX_PAGE_ALL  ; break;
     210          55 :                 case style::PageStyleLayout_MIRRORED: eUse |= SVX_PAGE_MIRROR;break;
     211             :                 default: ;//prevent warning
     212             :             }
     213             :         }
     214        2395 :         break;
     215             :     }
     216        5700 :     return true;
     217             : }
     218             : 
     219             : 
     220             : 
     221           0 : SfxPoolItem* SvxPageItem::Create( SvStream& rStream, sal_uInt16 ) const
     222             : {
     223             :     sal_uInt8 eType;
     224             :     bool bLand;
     225             :     sal_uInt16 nUse;
     226             : 
     227             :     // UNICODE: rStream >> sStr;
     228           0 :     OUString sStr = rStream.ReadUniOrByteString( rStream.GetStreamCharSet() );
     229             : 
     230           0 :     rStream.ReadUChar( eType );
     231           0 :     rStream.ReadCharAsBool( bLand );
     232           0 :     rStream.ReadUInt16( nUse );
     233             : 
     234           0 :     SvxPageItem* pPage = new SvxPageItem( Which() );
     235           0 :     pPage->SetDescName( sStr );
     236           0 :     pPage->SetNumType( (SvxNumType)eType );
     237           0 :     pPage->SetLandscape( bLand );
     238           0 :     pPage->SetPageUsage( nUse );
     239           0 :     return pPage;
     240             : }
     241             : 
     242             : 
     243             : 
     244           0 : SvStream& SvxPageItem::Store( SvStream &rStrm, sal_uInt16 /*nItemVersion*/ ) const
     245             : {
     246             :     // UNICODE: rStrm << aDescName;
     247           0 :     rStrm.WriteUniOrByteString(aDescName, rStrm.GetStreamCharSet());
     248             : 
     249           0 :     rStrm.WriteUChar( eNumType ).WriteBool( bLandscape ).WriteUInt16( eUse );
     250           0 :     return rStrm;
     251             : }
     252             : 
     253             : // HeaderFooterSet
     254       12557 : SvxSetItem::SvxSetItem( const sal_uInt16 nId, const SfxItemSet& rSet ) :
     255             : 
     256       12557 :     SfxSetItem( nId, rSet )
     257             : {
     258       12557 : }
     259             : 
     260       57724 : SvxSetItem::SvxSetItem( const SvxSetItem& rItem ) :
     261             : 
     262       57724 :     SfxSetItem( rItem )
     263             : {
     264       57724 : }
     265             : 
     266           8 : SvxSetItem::SvxSetItem( const sal_uInt16 nId, SfxItemSet* _pSet ) :
     267             : 
     268           8 :     SfxSetItem( nId, _pSet )
     269             : {
     270           8 : }
     271             : 
     272       43907 : SfxPoolItem* SvxSetItem::Clone( SfxItemPool * ) const
     273             : {
     274       43907 :     return new SvxSetItem(*this);
     275             : }
     276             : 
     277             : 
     278             : 
     279           0 : bool SvxSetItem::GetPresentation
     280             : (
     281             :     SfxItemPresentation /*ePres*/,
     282             :     SfxMapUnit          /*eCoreUnit*/,
     283             :     SfxMapUnit          /*ePresUnit*/,
     284             :     OUString&           rText, const IntlWrapper *
     285             : )   const
     286             : {
     287           0 :     rText.clear();
     288           0 :     return false;
     289             : }
     290             : 
     291           0 : SfxPoolItem* SvxSetItem::Create(SvStream &rStrm, sal_uInt16 /*nVersion*/) const
     292             : {
     293           0 :     SfxItemSet* _pSet = new SfxItemSet( *GetItemSet().GetPool(),
     294           0 :                                        GetItemSet().GetRanges() );
     295             : 
     296           0 :     _pSet->Load( rStrm );
     297             : 
     298           0 :     return new SvxSetItem( Which(), *_pSet );
     299             : }
     300             : 
     301           0 : SvStream& SvxSetItem::Store(SvStream &rStrm, sal_uInt16 nItemVersion) const
     302             : {
     303           0 :     GetItemSet().Store( rStrm, nItemVersion );
     304             : 
     305           0 :     return rStrm;
     306             : }
     307             : 
     308             : 
     309             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11