LCOV - code coverage report
Current view: top level - sw/source/core/graphic - grfatr.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 113 131 86.3 %
Date: 2014-11-03 Functions: 38 43 88.4 %
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/text/RelOrientation.hpp>
      21             : #include <com/sun/star/text/VertOrientation.hpp>
      22             : #include <com/sun/star/text/HorizontalAdjust.hpp>
      23             : #include <com/sun/star/text/DocumentStatistic.hpp>
      24             : #include <com/sun/star/text/HoriOrientation.hpp>
      25             : #include <com/sun/star/text/HoriOrientationFormat.hpp>
      26             : #include <com/sun/star/text/NotePrintMode.hpp>
      27             : #include <com/sun/star/text/SizeType.hpp>
      28             : #include <com/sun/star/text/VertOrientationFormat.hpp>
      29             : #include <com/sun/star/text/WrapTextMode.hpp>
      30             : #include <com/sun/star/text/GraphicCrop.hpp>
      31             : #include <com/sun/star/text/XTextGraphicObjectsSupplier.hpp>
      32             : #include <com/sun/star/drawing/ColorMode.hpp>
      33             : #include <svtools/grfmgr.hxx>
      34             : #include <swtypes.hxx>
      35             : #include <grfatr.hxx>
      36             : #include <swunohelper.hxx>
      37             : 
      38             : #include <cmdid.h>
      39             : #include <unomid.h>
      40             : 
      41             : using namespace ::com::sun::star;
      42             : 
      43       15547 : TYPEINIT1_AUTOFACTORY(SwCropGrf, SfxPoolItem)
      44       15581 : TYPEINIT1_AUTOFACTORY(SwGammaGrf, SfxPoolItem)
      45             : 
      46          82 : SfxPoolItem* SwMirrorGrf::Clone( SfxItemPool* ) const
      47             : {
      48          82 :     return new SwMirrorGrf( *this );
      49             : }
      50             : 
      51           0 : sal_uInt16 SwMirrorGrf::GetValueCount() const
      52             : {
      53           0 :     return RES_MIRROR_GRAPH_END - RES_MIRROR_GRAPH_BEGIN;
      54             : }
      55             : 
      56         166 : bool SwMirrorGrf::operator==( const SfxPoolItem& rItem) const
      57             : {
      58         266 :     return SfxEnumItem::operator==(rItem) &&
      59         266 :             ((SwMirrorGrf&)rItem).IsGrfToggle() == IsGrfToggle();
      60             : }
      61             : 
      62          52 : static bool lcl_IsHoriOnEvenPages(int nEnum, bool bToggle)
      63             : {
      64          52 :     bool bEnum = nEnum == RES_MIRROR_GRAPH_VERT ||
      65          52 :                    nEnum == RES_MIRROR_GRAPH_BOTH;
      66          52 :             return bEnum != bToggle;
      67             : }
      68             : 
      69          52 : static bool lcl_IsHoriOnOddPages(int nEnum)
      70             : {
      71          52 :     bool bEnum = nEnum == RES_MIRROR_GRAPH_VERT ||
      72          52 :                    nEnum == RES_MIRROR_GRAPH_BOTH;
      73          52 :             return bEnum;
      74             : }
      75             : 
      76          24 : bool SwMirrorGrf::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
      77             : {
      78          24 :     bool bRet = true;
      79             :     sal_Bool bVal;
      80             :     // vertical and horizontal were swapped at some point
      81          24 :     nMemberId &= ~CONVERT_TWIPS;
      82          24 :     switch ( nMemberId )
      83             :     {
      84             :         case MID_MIRROR_HORZ_EVEN_PAGES:
      85           8 :             bVal = lcl_IsHoriOnEvenPages(GetValue(), IsGrfToggle());
      86           8 :         break;
      87             :         case MID_MIRROR_HORZ_ODD_PAGES:
      88           8 :             bVal = lcl_IsHoriOnOddPages(GetValue());
      89           8 :         break;
      90             :         case MID_MIRROR_VERT:
      91          16 :             bVal = GetValue() == RES_MIRROR_GRAPH_HOR ||
      92          16 :                    GetValue() == RES_MIRROR_GRAPH_BOTH;
      93           8 :             break;
      94             :         default:
      95             :             OSL_ENSURE( false, "unknown MemberId" );
      96           0 :             bRet = false;
      97             :     }
      98          24 :     rVal.setValue( &bVal, ::getBooleanCppuType() );
      99          24 :     return bRet;
     100             : }
     101             : 
     102         132 : bool SwMirrorGrf::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
     103             : {
     104         132 :     bool bRet = true;
     105         132 :     bool bVal = *(sal_Bool*)rVal.getValue();
     106             :     // vertical and horizontal were swapped at some point
     107         132 :     nMemberId &= ~CONVERT_TWIPS;
     108         132 :     switch ( nMemberId )
     109             :     {
     110             :         case MID_MIRROR_HORZ_EVEN_PAGES:
     111             :         case MID_MIRROR_HORZ_ODD_PAGES:
     112             :         {
     113         176 :             bool bIsVert = GetValue() == RES_MIRROR_GRAPH_HOR ||
     114         176 :                                 GetValue() == RES_MIRROR_GRAPH_BOTH;
     115             :             bool bOnOddPages = nMemberId == MID_MIRROR_HORZ_EVEN_PAGES ?
     116          88 :                                     lcl_IsHoriOnOddPages(GetValue()) : bVal;
     117             :             bool bOnEvenPages = nMemberId == MID_MIRROR_HORZ_ODD_PAGES ?
     118          88 :                                        lcl_IsHoriOnEvenPages(GetValue(), IsGrfToggle()) : bVal;
     119             :             MirrorGraph nEnum = bOnOddPages ?
     120             :                     bIsVert ? RES_MIRROR_GRAPH_BOTH : RES_MIRROR_GRAPH_VERT :
     121          88 :                         bIsVert ? RES_MIRROR_GRAPH_HOR : RES_MIRROR_GRAPH_DONT;
     122          88 :             bool bToggle = bOnOddPages != bOnEvenPages;
     123          88 :             SetValue(static_cast<sal_uInt16>(nEnum));
     124          88 :             SetGrfToggle( bToggle );
     125             :         }
     126          88 :         break;
     127             :         case MID_MIRROR_VERT:
     128          44 :             if ( bVal )
     129             :             {
     130           2 :                 if ( GetValue() == RES_MIRROR_GRAPH_VERT )
     131           2 :                     SetValue( RES_MIRROR_GRAPH_BOTH );
     132           0 :                 else if ( GetValue() != RES_MIRROR_GRAPH_BOTH )
     133           0 :                     SetValue( RES_MIRROR_GRAPH_HOR );
     134             :             }
     135             :             else
     136             :             {
     137          42 :                 if ( GetValue() == RES_MIRROR_GRAPH_BOTH )
     138           0 :                     SetValue( RES_MIRROR_GRAPH_VERT );
     139          42 :                 else if ( GetValue() == RES_MIRROR_GRAPH_HOR )
     140           0 :                     SetValue( RES_MIRROR_GRAPH_DONT );
     141             :             }
     142          44 :             break;
     143             :         default:
     144             :             OSL_ENSURE( false, "unknown MemberId" );
     145           0 :             bRet = false;
     146             :     }
     147         132 :     return bRet;
     148             : }
     149             : 
     150         102 : SwCropGrf::SwCropGrf()
     151         102 :     : SvxGrfCrop( RES_GRFATR_CROPGRF )
     152         102 : {}
     153             : 
     154           0 : SwCropGrf::SwCropGrf(sal_Int32 nL, sal_Int32 nR, sal_Int32 nT, sal_Int32 nB )
     155           0 :     : SvxGrfCrop( nL, nR, nT, nB, RES_GRFATR_CROPGRF )
     156           0 : {}
     157             : 
     158        1150 : SfxPoolItem* SwCropGrf::Clone( SfxItemPool* ) const
     159             : {
     160        1150 :     return new SwCropGrf( *this );
     161             : }
     162             : 
     163         400 : SfxPoolItem* SwRotationGrf::Clone( SfxItemPool * ) const
     164             : {
     165         400 :     return new SwRotationGrf( GetValue(), aUnrotatedSize );
     166             : }
     167             : 
     168         512 : bool SwRotationGrf::operator==( const SfxPoolItem& rCmp ) const
     169             : {
     170        1024 :     return SfxUInt16Item::operator==( rCmp ) &&
     171        1024 :         GetUnrotatedSize() == ((SwRotationGrf&)rCmp).GetUnrotatedSize();
     172             : }
     173             : 
     174           2 : bool SwRotationGrf::QueryValue( uno::Any& rVal, sal_uInt8 ) const
     175             : {
     176             :     // SfxUInt16Item::QueryValue returns sal_Int32 in Any now... (srx642w)
     177             :     // where we still want this to be a sal_Int16
     178           2 :     rVal <<= (sal_Int16)GetValue();
     179           2 :     return true;
     180             : }
     181             : 
     182         292 : bool SwRotationGrf::PutValue( const uno::Any& rVal, sal_uInt8 )
     183             : {
     184             :     // SfxUInt16Item::QueryValue returns sal_Int32 in Any now... (srx642w)
     185             :     // where we still want this to be a sal_Int16
     186         292 :     sal_Int16 nValue = 0;
     187         292 :     if (rVal >>= nValue)
     188             :     {
     189             :         // sal_uInt16 argument needed
     190         292 :         SetValue( (sal_uInt16) nValue );
     191         292 :         return true;
     192             :     }
     193             : 
     194             :     OSL_FAIL( "SwRotationGrf::PutValue - Wrong type!" );
     195           0 :     return false;
     196             : }
     197             : 
     198             : // Sw___Grf::Clone(..)
     199             : 
     200         476 : SfxPoolItem* SwLuminanceGrf::Clone( SfxItemPool * ) const
     201             : {
     202         476 :     return new SwLuminanceGrf( *this );
     203             : }
     204             : 
     205         476 : SfxPoolItem* SwContrastGrf::Clone( SfxItemPool * ) const
     206             : {
     207         476 :     return new SwContrastGrf( *this );
     208             : }
     209             : 
     210         108 : SfxPoolItem* SwChannelRGrf::Clone( SfxItemPool * ) const
     211             : {
     212         108 :     return new SwChannelRGrf( *this );
     213             : }
     214             : 
     215         108 : SfxPoolItem* SwChannelGGrf::Clone( SfxItemPool * ) const
     216             : {
     217         108 :     return new SwChannelGGrf( *this );
     218             : }
     219             : 
     220         108 : SfxPoolItem* SwChannelBGrf::Clone( SfxItemPool * ) const
     221             : {
     222         108 :     return new SwChannelBGrf( *this );
     223             : }
     224             : 
     225         166 : SfxPoolItem* SwGammaGrf::Clone( SfxItemPool * ) const
     226             : {
     227         166 :     return new SwGammaGrf( *this );
     228             : }
     229             : 
     230             : // SwGammaGrf
     231             : 
     232          80 : bool SwGammaGrf::operator==( const SfxPoolItem& rCmp ) const
     233             : {
     234         160 :     return SfxPoolItem::operator==( rCmp ) &&
     235         160 :         nValue == ((SwGammaGrf&)rCmp).GetValue();
     236             : }
     237             : 
     238           8 : bool SwGammaGrf::QueryValue( uno::Any& rVal, sal_uInt8 ) const
     239             : {
     240           8 :     rVal <<= nValue;
     241           8 :     return true;
     242             : }
     243             : 
     244          44 : bool SwGammaGrf::PutValue( const uno::Any& rVal, sal_uInt8 )
     245             : {
     246          44 :     return rVal >>= nValue;
     247             : }
     248             : 
     249             : // Sw___Grf::Clone(..) cont'd
     250             : 
     251         108 : SfxPoolItem* SwInvertGrf::Clone( SfxItemPool * ) const
     252             : {
     253         108 :     return new SwInvertGrf( *this );
     254             : }
     255             : 
     256         108 : SfxPoolItem* SwTransparencyGrf::Clone( SfxItemPool * ) const
     257             : {
     258         108 :     return new SwTransparencyGrf( *this );
     259             : }
     260             : 
     261             : // SwTransparencyGrf
     262             : 
     263           8 : bool SwTransparencyGrf::QueryValue( uno::Any& rVal,
     264             :                                         sal_uInt8 ) const
     265             : {
     266             :     OSL_ENSURE(ISA(SfxByteItem),"Put/QueryValue should be removed!");
     267           8 :     sal_Int16 nRet = GetValue();
     268             :     OSL_ENSURE( 0 <= nRet && nRet <= 100, "value out of range" );
     269           8 :     rVal <<= nRet;
     270           8 :     return true;
     271             : }
     272             : 
     273          44 : bool SwTransparencyGrf::PutValue( const uno::Any& rVal,
     274             :                                         sal_uInt8 )
     275             : {
     276             :     //temporary conversion until this is a SfxInt16Item!
     277             :     OSL_ENSURE(ISA(SfxByteItem),"Put/QueryValue should be removed!");
     278          44 :     sal_Int16 nVal = 0;
     279          44 :     if(!(rVal >>= nVal) || nVal < -100 || nVal > 100)
     280           0 :         return false;
     281          44 :     if(nVal < 0)
     282             :     {
     283             :         // for compatibility with old documents
     284             :         // introduce rounding as for SO 6.0 PP2
     285           0 :         nVal = ( ( nVal * 128 ) - (99/2) ) / 100;
     286           0 :         nVal += 128;
     287             :     }
     288             :     OSL_ENSURE( 0 <= nVal && nVal <= 100, "value out of range" );
     289          44 :     SetValue(static_cast<sal_uInt8>(nVal));
     290          44 :     return true;
     291             : }
     292             : 
     293             : // Sw___Grf::Clone(..) cont'd
     294             : 
     295         114 : SfxPoolItem* SwDrawModeGrf::Clone( SfxItemPool * ) const
     296             : {
     297         114 :     return new SwDrawModeGrf( *this );
     298             : }
     299             : 
     300             : // SwDrawModeGrf
     301             : 
     302           0 : sal_uInt16 SwDrawModeGrf::GetValueCount() const
     303             : {
     304           0 :     return GRAPHICDRAWMODE_WATERMARK + 1;
     305             : }
     306             : 
     307           8 : bool SwDrawModeGrf::QueryValue( uno::Any& rVal,
     308             :                                 sal_uInt8 ) const
     309             : {
     310           8 :     drawing::ColorMode eRet = (drawing::ColorMode)GetEnumValue();
     311           8 :     rVal <<= eRet;
     312           8 :     return true;
     313             : }
     314             : 
     315          46 : bool SwDrawModeGrf::PutValue( const uno::Any& rVal,
     316             :                                 sal_uInt8 )
     317             : {
     318          46 :     sal_Int32 eVal = SWUnoHelper::GetEnumAsInt32( rVal );
     319          46 :     if(eVal >= 0 && eVal <= GRAPHICDRAWMODE_WATERMARK)
     320             :     {
     321          46 :         SetEnumValue((sal_uInt16)eVal);
     322          46 :         return true;
     323             :     }
     324           0 :     return false;
     325         270 : }
     326             : 
     327             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10