LCOV - code coverage report
Current view: top level - sw/source/core/attr - hints.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 74 89 83.1 %
Date: 2015-06-13 12:38:46 Functions: 20 24 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             : #include <com/sun/star/i18n/ScriptType.hpp>
      21             : #include <editeng/scripttypeitem.hxx>
      22             : #include <hintids.hxx>
      23             : #include <hints.hxx>
      24             : #include <ndtxt.hxx>
      25             : #include <swtypes.hxx>
      26             : 
      27      136140 : SwFormatChg::SwFormatChg( SwFormat* pFormat )
      28      136140 :     : SwMsgPoolItem( RES_FMT_CHG ), pChangedFormat( pFormat )
      29             : {
      30      136140 : }
      31             : 
      32       11555 : SwInsText::SwInsText( sal_Int32 nP, sal_Int32 nL )
      33       11555 :     : SwMsgPoolItem( RES_INS_TXT ), nPos( nP ), nLen( nL )
      34             : {
      35       11555 : }
      36             : 
      37        5113 : SwDelChr::SwDelChr( sal_Int32 nP )
      38        5113 :     : SwMsgPoolItem( RES_DEL_CHR ), nPos( nP )
      39             : {
      40        5113 : }
      41             : 
      42        1814 : SwDelText::SwDelText( sal_Int32 nS, sal_Int32 nL )
      43        1814 :     : SwMsgPoolItem( RES_DEL_TXT ), nStart( nS ), nLen( nL )
      44             : {
      45        1814 : }
      46             : 
      47       80647 : SwUpdateAttr::SwUpdateAttr( sal_Int32 nS, sal_Int32 nE, sal_uInt16 nW )
      48       80647 :     : SwMsgPoolItem( RES_UPDATE_ATTR ), nStart( nS ), nEnd( nE ), nWhichAttr( nW ), aWhichFormatAttr()
      49             : {
      50       80647 : }
      51             : 
      52           0 : SwRefMarkFieldUpdate::SwRefMarkFieldUpdate( OutputDevice* pOutput )
      53             :     : SwMsgPoolItem( RES_REFMARKFLD_UPDATE ),
      54           0 :     pOut( pOutput )
      55             : {
      56             :     OSL_ENSURE( pOut, "No OutputDevice pointer" );
      57           0 : }
      58             : 
      59        4010 : SwDocPosUpdate::SwDocPosUpdate( const SwTwips nDcPos )
      60        4010 :     : SwMsgPoolItem( RES_DOCPOS_UPDATE ), nDocPos(nDcPos)
      61             : {
      62        4010 : }
      63             : 
      64        1013 : SwTableFormulaUpdate::SwTableFormulaUpdate( const SwTable* pNewTable )
      65             :     : SwMsgPoolItem( RES_TABLEFML_UPDATE ),
      66             :     pTable( pNewTable ), pHistory( 0 ), nSplitLine( USHRT_MAX ),
      67        1013 :     eFlags( TBL_CALC )
      68             : {
      69        1013 :     DATA.pDelTable = 0;
      70        1013 :     bModified = bBehindSplitLine = false;
      71             :     OSL_ENSURE( pTable, "No Table pointer" );
      72        1013 : }
      73             : 
      74      701840 : SwAutoFormatGetDocNode::SwAutoFormatGetDocNode( const SwNodes* pNds )
      75      701840 :     : SwMsgPoolItem( RES_AUTOFMT_DOCNODE ), pContentNode( 0 ), pNodes( pNds )
      76             : {
      77      701840 : }
      78             : 
      79     3300952 : SwAttrSetChg::SwAttrSetChg( const SwAttrSet& rTheSet, SwAttrSet& rSet )
      80             :     : SwMsgPoolItem( RES_ATTRSET_CHG ),
      81             :     bDelSet( false ),
      82             :     pChgSet( &rSet ),
      83     3300952 :     pTheChgdSet( &rTheSet )
      84             : {
      85     3300952 : }
      86             : 
      87      958784 : SwAttrSetChg::SwAttrSetChg( const SwAttrSetChg& rChgSet )
      88             :     : SwMsgPoolItem( RES_ATTRSET_CHG ),
      89             :     bDelSet( true ),
      90      958784 :     pTheChgdSet( rChgSet.pTheChgdSet )
      91             : {
      92      958784 :     pChgSet = new SwAttrSet( *rChgSet.pChgSet );
      93      958784 : }
      94             : 
      95     8519472 : SwAttrSetChg::~SwAttrSetChg()
      96             : {
      97     4259736 :     if( bDelSet )
      98      958784 :         delete pChgSet;
      99     4259736 : }
     100             : 
     101             : #ifdef DBG_UTIL
     102             : void SwAttrSetChg::ClearItem( sal_uInt16 nWhch )
     103             : {
     104             :     OSL_ENSURE( bDelSet, "The Set may not be changed!" );
     105             :     pChgSet->ClearItem( nWhch );
     106             : }
     107             : #endif
     108             : 
     109     5328780 : SwMsgPoolItem::SwMsgPoolItem( sal_uInt16 nWhch )
     110     5328780 :     : SfxPoolItem( nWhch )
     111             : {
     112     5328780 : }
     113             : 
     114           0 : bool SwMsgPoolItem::operator==( const SfxPoolItem& ) const
     115             : {
     116             :     OSL_FAIL( "SwMsgPoolItem knows no ==" );
     117           0 :     return false;
     118             : }
     119             : 
     120           0 : SfxPoolItem* SwMsgPoolItem::Clone( SfxItemPool* ) const
     121             : {
     122             :     OSL_FAIL( "SwMsgPoolItem knows no Clone" );
     123           0 :     return 0;
     124             : }
     125             : 
     126             : #if OSL_DEBUG_LEVEL > 0
     127             : const SfxPoolItem* GetDfltAttr( sal_uInt16 nWhich )
     128             : {
     129             :     OSL_ASSERT( nWhich < POOLATTR_END && nWhich >= POOLATTR_BEGIN );
     130             : 
     131             :     SfxPoolItem *pHt = aAttrTab[ nWhich - POOLATTR_BEGIN ];
     132             :     OSL_ENSURE( pHt, "GetDfltFormatAttr(): Dflt == 0" );
     133             :     return pHt;
     134             : }
     135             : #else
     136        4302 : const SfxPoolItem* GetDfltAttr( sal_uInt16 nWhich )
     137             : {
     138        4302 :     return aAttrTab[ nWhich - POOLATTR_BEGIN ];
     139             : }
     140             : #endif
     141             : 
     142           1 : SwCondCollCondChg::SwCondCollCondChg( SwFormat *pFormat )
     143           1 :     : SwMsgPoolItem( RES_CONDCOLL_CONDCHG ), pChangedFormat( pFormat )
     144             : {
     145           1 : }
     146             : 
     147        1454 : SwVirtPageNumInfo::SwVirtPageNumInfo( const SwPageFrm *pPg ) :
     148        1454 :     SwMsgPoolItem( RES_VIRTPAGENUM_INFO ), pPage( 0 ), pOrigPage( pPg ), pFrm( 0 )
     149             : {
     150        1454 : }
     151             : 
     152        3425 : SwFindNearestNode::SwFindNearestNode( const SwNode& rNd )
     153        3425 :     : SwMsgPoolItem( RES_FINDNEARESTNODE ), pNd( &rNd ), pFnd( 0 )
     154             : {
     155        3425 : }
     156             : 
     157       27158 : void SwFindNearestNode::CheckNode( const SwNode& rNd )
     158             : {
     159       27158 :     if( &pNd->GetNodes() == &rNd.GetNodes() )
     160             :     {
     161       27158 :         sal_uLong nIdx = rNd.GetIndex();
     162       70333 :         if( nIdx < pNd->GetIndex() &&
     163       46647 :             ( !pFnd || nIdx > pFnd->GetIndex() ) &&
     164        6784 :             nIdx > rNd.GetNodes().GetEndOfExtras().GetIndex() )
     165        6784 :             pFnd = &rNd;
     166             :     }
     167       27158 : }
     168             : 
     169   188541072 : sal_uInt16 GetWhichOfScript( sal_uInt16 nWhich, sal_uInt16 nScript )
     170             : {
     171             :     static const sal_uInt16 aLangMap[3] =
     172             :         { RES_CHRATR_LANGUAGE, RES_CHRATR_CJK_LANGUAGE, RES_CHRATR_CTL_LANGUAGE };
     173             :     static const sal_uInt16 aFontMap[3] =
     174             :         { RES_CHRATR_FONT, RES_CHRATR_CJK_FONT,  RES_CHRATR_CTL_FONT};
     175             :     static const sal_uInt16 aFontSizeMap[3] =
     176             :         { RES_CHRATR_FONTSIZE, RES_CHRATR_CJK_FONTSIZE,  RES_CHRATR_CTL_FONTSIZE };
     177             :     static const sal_uInt16 aWeightMap[3] =
     178             :         { RES_CHRATR_WEIGHT, RES_CHRATR_CJK_WEIGHT,  RES_CHRATR_CTL_WEIGHT};
     179             :     static const sal_uInt16 aPostureMap[3] =
     180             :         { RES_CHRATR_POSTURE, RES_CHRATR_CJK_POSTURE,  RES_CHRATR_CTL_POSTURE};
     181             : 
     182             :     const sal_uInt16* pM;
     183   188541072 :     switch( nWhich )
     184             :     {
     185             :     case RES_CHRATR_LANGUAGE:
     186             :     case RES_CHRATR_CJK_LANGUAGE:
     187             :     case RES_CHRATR_CTL_LANGUAGE:
     188   188512245 :         pM = aLangMap;
     189   188512245 :         break;
     190             : 
     191             :     case RES_CHRATR_FONT:
     192             :     case RES_CHRATR_CJK_FONT:
     193             :     case RES_CHRATR_CTL_FONT:
     194       28827 :         pM = aFontMap;
     195       28827 :         break;
     196             : 
     197             :     case RES_CHRATR_FONTSIZE:
     198             :     case RES_CHRATR_CJK_FONTSIZE:
     199             :     case RES_CHRATR_CTL_FONTSIZE:
     200           0 :         pM = aFontSizeMap;
     201           0 :         break;
     202             : 
     203             :     case  RES_CHRATR_WEIGHT:
     204             :     case  RES_CHRATR_CJK_WEIGHT:
     205             :     case  RES_CHRATR_CTL_WEIGHT:
     206           0 :         pM = aWeightMap;
     207           0 :         break;
     208             : 
     209             :     case RES_CHRATR_POSTURE:
     210             :     case RES_CHRATR_CJK_POSTURE:
     211             :     case RES_CHRATR_CTL_POSTURE:
     212           0 :         pM = aPostureMap;
     213           0 :         break;
     214             : 
     215             :     default:
     216           0 :         pM = 0;
     217             :     }
     218             : 
     219             :     sal_uInt16 nRet;
     220   188541072 :     if( pM )
     221             :     {
     222             :         using namespace ::com::sun::star;
     223             :         {
     224   188541072 :             if( i18n::ScriptType::WEAK == nScript )
     225     5685134 :                 nScript = SvtLanguageOptions::GetI18NScriptTypeOfLanguage( GetAppLanguage() );
     226   188541072 :             switch( nScript)
     227             :             {
     228             :             case i18n::ScriptType::COMPLEX:
     229          12 :                 ++pM;  // no break;
     230             :             case i18n::ScriptType::ASIAN:
     231          78 :                 ++pM;  // no break;
     232             :             default:
     233   188541072 :                 nRet = *pM;
     234             :             }
     235             :         }
     236             :     }
     237             :     else
     238           0 :         nRet = nWhich;
     239   188541072 :     return nRet;
     240         177 : }
     241             : 
     242             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11