LCOV - code coverage report
Current view: top level - libreoffice/svx/source/items - algitem.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 33 165 20.0 %
Date: 2012-12-27 Functions: 10 36 27.8 %
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             : 
      21             : #include <svx/svxitems.hrc>
      22             : 
      23             : 
      24             : #include <tools/stream.hxx>
      25             : #include <com/sun/star/table/BorderLine.hpp>
      26             : #include <com/sun/star/table/ShadowLocation.hpp>
      27             : #include <com/sun/star/table/TableBorder.hpp>
      28             : #include <com/sun/star/table/ShadowFormat.hpp>
      29             : #include <com/sun/star/table/CellRangeAddress.hpp>
      30             : #include <com/sun/star/table/CellContentType.hpp>
      31             : #include <com/sun/star/table/TableOrientation.hpp>
      32             : #include <com/sun/star/util/SortField.hpp>
      33             : #include <com/sun/star/util/SortFieldType.hpp>
      34             : #include <com/sun/star/table/CellOrientation.hpp>
      35             : #include <com/sun/star/table/CellAddress.hpp>
      36             : 
      37             : #include <svx/algitem.hxx>
      38             : #include <svx/dialmgr.hxx>
      39             : #include <editeng/itemtype.hxx>
      40             : #include <svx/unomid.hxx>
      41             : 
      42             : using namespace ::rtl;
      43             : using namespace ::com::sun::star;
      44             : 
      45             : // Konvertierung fuer UNO
      46             : #define TWIP_TO_MM100(TWIP)     ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L))
      47             : #define MM100_TO_TWIP(MM100)    ((MM100) >= 0 ? (((MM100)*72L+63L)/127L) : (((MM100)*72L-63L)/127L))
      48             : 
      49             : // STATIC DATA -----------------------------------------------------------
      50             : 
      51             : //TYPEINIT1_AUTOFACTORY( SvxHorJustifyItem, SfxEnumItem );
      52           0 : TYPEINIT1_FACTORY( SvxOrientationItem, SfxEnumItem, new SvxOrientationItem(SVX_ORIENTATION_STANDARD, 0) );
      53        9748 : TYPEINIT1_FACTORY( SvxMarginItem, SfxPoolItem, new SvxMarginItem(0) );
      54             : 
      55             : // class SvxOrientationItem ----------------------------------------------
      56             : 
      57           0 : SvxOrientationItem::SvxOrientationItem( const SvxCellOrientation eOrientation,
      58             :                                         const sal_uInt16 nId):
      59           0 :     SfxEnumItem( nId, (sal_uInt16)eOrientation )
      60             : {
      61           0 : }
      62             : 
      63           0 : SvxOrientationItem::SvxOrientationItem( sal_Int32 nRotation, sal_Bool bStacked, const sal_uInt16 nId ) :
      64           0 :     SfxEnumItem( nId )
      65             : {
      66           0 :     SetFromRotation( nRotation, bStacked );
      67           0 : }
      68             : 
      69             : //------------------------------------------------------------------------
      70             : 
      71           0 : SfxItemPresentation SvxOrientationItem::GetPresentation
      72             : (
      73             :     SfxItemPresentation ePres,
      74             :     SfxMapUnit          /*eCoreUnit*/,
      75             :     SfxMapUnit          /*ePresUnit*/,
      76             :     XubString&              rText, const IntlWrapper * ) const
      77             : {
      78           0 :     switch ( ePres )
      79             :     {
      80             :         case SFX_ITEM_PRESENTATION_NONE:
      81           0 :             rText.Erase();
      82           0 :             return SFX_ITEM_PRESENTATION_NONE;
      83             :         case SFX_ITEM_PRESENTATION_NAMELESS:
      84             :         case SFX_ITEM_PRESENTATION_COMPLETE:
      85           0 :             rText = GetValueText( GetValue() );
      86           0 :             return SFX_ITEM_PRESENTATION_COMPLETE;
      87             :         default: ; //prevent warning
      88             :     }
      89           0 :     return SFX_ITEM_PRESENTATION_NONE;
      90             : }
      91             : 
      92             : //------------------------------------------------------------------------
      93             : 
      94           0 : bool SvxOrientationItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
      95             : {
      96           0 :     table::CellOrientation eUno = table::CellOrientation_STANDARD;
      97           0 :     switch ( (SvxCellOrientation)GetValue() )
      98             :     {
      99           0 :     case SVX_ORIENTATION_STANDARD:  eUno = table::CellOrientation_STANDARD;  break;
     100           0 :     case SVX_ORIENTATION_TOPBOTTOM: eUno = table::CellOrientation_TOPBOTTOM; break;
     101           0 :     case SVX_ORIENTATION_BOTTOMTOP: eUno = table::CellOrientation_BOTTOMTOP; break;
     102           0 :     case SVX_ORIENTATION_STACKED:   eUno = table::CellOrientation_STACKED;    break;
     103             :     }
     104           0 :     rVal <<= eUno;
     105           0 :     return true;
     106             : }
     107             : 
     108           0 : bool SvxOrientationItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
     109             : {
     110             :     table::CellOrientation eOrient;
     111           0 :     if(!(rVal >>= eOrient))
     112             :     {
     113           0 :         sal_Int32 nValue = 0;
     114           0 :         if(!(rVal >>= nValue))
     115           0 :             return sal_False;
     116           0 :         eOrient = (table::CellOrientation)nValue;
     117             :     }
     118           0 :     SvxCellOrientation eSvx = SVX_ORIENTATION_STANDARD;
     119           0 :     switch (eOrient)
     120             :     {
     121           0 :         case table::CellOrientation_STANDARD:   eSvx = SVX_ORIENTATION_STANDARD;  break;
     122           0 :         case table::CellOrientation_TOPBOTTOM:  eSvx = SVX_ORIENTATION_TOPBOTTOM; break;
     123           0 :         case table::CellOrientation_BOTTOMTOP:  eSvx = SVX_ORIENTATION_BOTTOMTOP; break;
     124           0 :         case table::CellOrientation_STACKED:    eSvx = SVX_ORIENTATION_STACKED;   break;
     125             :         default: ; //prevent warning
     126             :     }
     127           0 :     SetValue( (sal_uInt16)eSvx );
     128           0 :     return true;
     129             : }
     130             : 
     131             : //------------------------------------------------------------------------
     132             : 
     133           0 : XubString SvxOrientationItem::GetValueText( sal_uInt16 nVal ) const
     134             : {
     135             :     DBG_ASSERT( nVal <= SVX_ORIENTATION_STACKED, "enum overflow!" );
     136           0 :     return SVX_RESSTR(RID_SVXITEMS_ORI_STANDARD + nVal);
     137             : }
     138             : 
     139             : //------------------------------------------------------------------------
     140             : 
     141           0 : SfxPoolItem* SvxOrientationItem::Clone( SfxItemPool* ) const
     142             : {
     143           0 :     return new SvxOrientationItem( *this );
     144             : }
     145             : 
     146             : //------------------------------------------------------------------------
     147             : 
     148           0 : SfxPoolItem* SvxOrientationItem::Create( SvStream& rStream, sal_uInt16 ) const
     149             : {
     150             :     sal_uInt16 nVal;
     151           0 :     rStream >> nVal;
     152           0 :     return new SvxOrientationItem( (SvxCellOrientation)nVal, Which() );
     153             : }
     154             : 
     155             : //------------------------------------------------------------------------
     156             : 
     157           0 : sal_uInt16 SvxOrientationItem::GetValueCount() const
     158             : {
     159           0 :     return SVX_ORIENTATION_STACKED + 1; // letzter Enum-Wert + 1
     160             : }
     161             : 
     162             : //------------------------------------------------------------------------
     163             : 
     164           0 : sal_Bool SvxOrientationItem::IsStacked() const
     165             : {
     166           0 :     return static_cast< SvxCellOrientation >( GetValue() ) == SVX_ORIENTATION_STACKED;
     167             : }
     168             : 
     169           0 : sal_Int32 SvxOrientationItem::GetRotation( sal_Int32 nStdAngle ) const
     170             : {
     171           0 :     sal_Int32 nAngle = nStdAngle;
     172           0 :     switch( static_cast< SvxCellOrientation >( GetValue() ) )
     173             :     {
     174           0 :         case SVX_ORIENTATION_BOTTOMTOP: nAngle = 9000;break;
     175           0 :         case SVX_ORIENTATION_TOPBOTTOM: nAngle = 27000;break;
     176             :         default: ; //prevent warning
     177             :     }
     178           0 :     return nAngle;
     179             : }
     180             : 
     181           0 : void SvxOrientationItem::SetFromRotation( sal_Int32 nRotation, sal_Bool bStacked )
     182             : {
     183           0 :     if( bStacked )
     184             :     {
     185           0 :         SetValue( SVX_ORIENTATION_STACKED );
     186             :     }
     187           0 :     else switch( nRotation )
     188             :     {
     189           0 :         case 9000:  SetValue( SVX_ORIENTATION_BOTTOMTOP );  break;
     190           0 :         case 27000: SetValue( SVX_ORIENTATION_TOPBOTTOM );  break;
     191           0 :         default:    SetValue( SVX_ORIENTATION_STANDARD );
     192             :     }
     193           0 : }
     194             : 
     195             : // class SvxMarginItem ---------------------------------------------------
     196             : 
     197         195 : SvxMarginItem::SvxMarginItem( const sal_uInt16 nId ) :
     198             : 
     199             :     SfxPoolItem( nId ),
     200             : 
     201             :     nLeftMargin  ( 20 ),
     202             :     nTopMargin   ( 20 ),
     203             :     nRightMargin ( 20 ),
     204         195 :     nBottomMargin( 20 )
     205             : {
     206         195 : }
     207             : 
     208             : //------------------------------------------------------------------------
     209             : 
     210        1168 : SvxMarginItem::SvxMarginItem( sal_Int16 nLeft,
     211             :                               sal_Int16 nTop,
     212             :                               sal_Int16 nRight,
     213             :                               sal_Int16 nBottom,
     214             :                               const sal_uInt16 nId ) :
     215             :     SfxPoolItem( nId ),
     216             : 
     217             :     nLeftMargin  ( nLeft ),
     218             :     nTopMargin   ( nTop ),
     219             :     nRightMargin ( nRight ),
     220        1168 :     nBottomMargin( nBottom )
     221             : {
     222        1168 : }
     223             : 
     224             : 
     225             : //------------------------------------------------------------------------
     226             : 
     227         127 : SvxMarginItem::SvxMarginItem( const SvxMarginItem& rItem ) :
     228             : 
     229         127 :     SfxPoolItem( rItem.Which() )
     230             : {
     231         127 :     nLeftMargin = rItem.nLeftMargin;
     232         127 :     nTopMargin = rItem.nTopMargin;
     233         127 :     nRightMargin = rItem.nRightMargin;
     234         127 :     nBottomMargin = rItem.nBottomMargin;
     235         127 : }
     236             : 
     237             : //------------------------------------------------------------------------
     238             : 
     239           0 : SfxItemPresentation SvxMarginItem::GetPresentation
     240             : (
     241             :     SfxItemPresentation ePres,
     242             :     SfxMapUnit          eCoreUnit,
     243             :     SfxMapUnit          ePresUnit,
     244             :     XubString&          rText, const IntlWrapper *pIntl
     245             : )   const
     246             : {
     247           0 :     switch ( ePres )
     248             :     {
     249             :         case SFX_ITEM_PRESENTATION_NONE:
     250           0 :             rText.Erase();
     251           0 :             return SFX_ITEM_PRESENTATION_NONE;
     252             :         case SFX_ITEM_PRESENTATION_NAMELESS:
     253             :         {
     254           0 :             rText = GetMetricText( (long)nLeftMargin, eCoreUnit, ePresUnit, pIntl );
     255           0 :             rText += cpDelim;
     256           0 :             rText += GetMetricText( (long)nTopMargin, eCoreUnit, ePresUnit, pIntl );
     257           0 :             rText += cpDelim;
     258           0 :             rText += GetMetricText( (long)nRightMargin, eCoreUnit, ePresUnit, pIntl );
     259           0 :             rText += cpDelim;
     260           0 :             rText += GetMetricText( (long)nBottomMargin, eCoreUnit, ePresUnit, pIntl );
     261           0 :             return SFX_ITEM_PRESENTATION_NAMELESS;
     262             :         }
     263             :         case SFX_ITEM_PRESENTATION_COMPLETE:
     264             :         {
     265           0 :             rText = SVX_RESSTR(RID_SVXITEMS_MARGIN_LEFT);
     266           0 :             rText += GetMetricText( (long)nLeftMargin, eCoreUnit, ePresUnit, pIntl );
     267           0 :             rText += SVX_RESSTR(GetMetricId(ePresUnit));
     268           0 :             rText += cpDelim;
     269           0 :             rText += SVX_RESSTR(RID_SVXITEMS_MARGIN_TOP);
     270           0 :             rText += GetMetricText( (long)nTopMargin, eCoreUnit, ePresUnit, pIntl );
     271           0 :             rText += SVX_RESSTR(GetMetricId(ePresUnit));
     272           0 :             rText += cpDelim;
     273           0 :             rText += SVX_RESSTR(RID_SVXITEMS_MARGIN_RIGHT);
     274           0 :             rText += GetMetricText( (long)nRightMargin, eCoreUnit, ePresUnit, pIntl );
     275           0 :             rText += SVX_RESSTR(GetMetricId(ePresUnit));
     276           0 :             rText += cpDelim;
     277           0 :             rText += SVX_RESSTR(RID_SVXITEMS_MARGIN_BOTTOM);
     278           0 :             rText += GetMetricText( (long)nBottomMargin, eCoreUnit, ePresUnit, pIntl );
     279           0 :             rText += SVX_RESSTR(GetMetricId(ePresUnit));
     280           0 :             return SFX_ITEM_PRESENTATION_COMPLETE;
     281             :         }
     282             :         default: ; //prevent warning
     283             :     }
     284           0 :     return SFX_ITEM_PRESENTATION_NONE;
     285             : }
     286             : 
     287             : //------------------------------------------------------------------------
     288             : 
     289        1334 : int SvxMarginItem::operator==( const SfxPoolItem& rItem ) const
     290             : {
     291             :     DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
     292             : 
     293             :     return ( ( nLeftMargin == ( (SvxMarginItem&)rItem ).nLeftMargin )   &&
     294             :              ( nTopMargin == ( (SvxMarginItem&)rItem ).nTopMargin )     &&
     295             :              ( nRightMargin == ( (SvxMarginItem&)rItem ).nRightMargin ) &&
     296        1334 :              ( nBottomMargin == ( (SvxMarginItem&)rItem ).nBottomMargin ) );
     297             : }
     298             : 
     299             : //------------------------------------------------------------------------
     300             : 
     301         127 : SfxPoolItem* SvxMarginItem::Clone( SfxItemPool* ) const
     302             : {
     303         127 :     return new SvxMarginItem(*this);
     304             : }
     305             : 
     306             : //------------------------------------------------------------------------
     307             : 
     308           0 : SfxPoolItem* SvxMarginItem::Create( SvStream& rStream, sal_uInt16 ) const
     309             : {
     310             :     sal_Int16   nLeft;
     311             :     sal_Int16   nTop;
     312             :     sal_Int16   nRight;
     313             :     sal_Int16   nBottom;
     314           0 :     rStream >> nLeft;
     315           0 :     rStream >> nTop;
     316           0 :     rStream >> nRight;
     317           0 :     rStream >> nBottom;
     318           0 :     return new SvxMarginItem( nLeft, nTop, nRight, nBottom, Which() );
     319             : }
     320             : 
     321             : //------------------------------------------------------------------------
     322             : 
     323           0 : SvStream& SvxMarginItem::Store( SvStream &rStream, sal_uInt16 /*nItemVersion*/) const
     324             : {
     325           0 :     rStream << nLeftMargin;
     326           0 :     rStream << nTopMargin;
     327           0 :     rStream << nRightMargin;
     328           0 :     rStream << nBottomMargin;
     329           0 :     return rStream;
     330             : }
     331             : 
     332             : 
     333             : //------------------------------------------------------------------------
     334             : 
     335           0 : bool SvxMarginItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
     336             : {
     337           0 :     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
     338           0 :     nMemberId &= ~CONVERT_TWIPS;
     339           0 :     switch ( nMemberId )
     340             :     {
     341             :         //  jetzt alles signed
     342             :         case MID_MARGIN_L_MARGIN:
     343           0 :             rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nLeftMargin) : nLeftMargin );
     344           0 :             break;
     345             :         case MID_MARGIN_R_MARGIN:
     346           0 :             rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nRightMargin) : nRightMargin );
     347           0 :             break;
     348             :         case MID_MARGIN_UP_MARGIN:
     349           0 :             rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nTopMargin) : nTopMargin );
     350           0 :             break;
     351             :         case MID_MARGIN_LO_MARGIN:
     352           0 :             rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nBottomMargin) : nBottomMargin );
     353           0 :             break;
     354             :         default:
     355             :             OSL_FAIL("unknown MemberId");
     356           0 :             return false;
     357             :     }
     358           0 :     return true;
     359             : }
     360             : 
     361             : //------------------------------------------------------------------------
     362             : 
     363          88 : bool SvxMarginItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
     364             : {
     365          88 :     sal_Bool bConvert = ( ( nMemberId & CONVERT_TWIPS ) != 0 );
     366          88 :     long nMaxVal = bConvert ? TWIP_TO_MM100(SHRT_MAX) : SHRT_MAX;   // Members sind sal_Int16
     367          88 :     sal_Int32 nVal = 0;
     368          88 :     if(!(rVal >>= nVal) || (nVal > nMaxVal))
     369           0 :         return sal_False;
     370             : 
     371          88 :     switch ( nMemberId & ~CONVERT_TWIPS )
     372             :     {
     373             :         case MID_MARGIN_L_MARGIN:
     374          22 :             nLeftMargin = (sal_Int16)( bConvert ? MM100_TO_TWIP(nVal) : nVal );
     375          22 :             break;
     376             :         case MID_MARGIN_R_MARGIN:
     377          22 :             nRightMargin = (sal_Int16)( bConvert ? MM100_TO_TWIP(nVal) : nVal );
     378          22 :             break;
     379             :         case MID_MARGIN_UP_MARGIN:
     380          22 :             nTopMargin = (sal_Int16)( bConvert ? MM100_TO_TWIP(nVal) : nVal );
     381          22 :             break;
     382             :         case MID_MARGIN_LO_MARGIN:
     383          22 :             nBottomMargin = (sal_Int16)( bConvert ? MM100_TO_TWIP(nVal) : nVal );
     384          22 :             break;
     385             :         default:
     386             :             OSL_FAIL("unknown MemberId");
     387           0 :             return false;
     388             :     }
     389          88 :     return true;
     390             : }
     391             : 
     392             : //------------------------------------------------------------------------
     393             : 
     394           0 : sal_Bool SvxMarginItem::SetLeftMargin( sal_Int16 nLeft )
     395             : {
     396           0 :     nLeftMargin = nLeft;
     397           0 :     return sal_True;
     398             : }
     399             : 
     400             : //------------------------------------------------------------------------
     401             : 
     402           0 : sal_Bool SvxMarginItem::SetTopMargin( sal_Int16 nTop )
     403             : {
     404           0 :     nTopMargin = nTop;
     405           0 :     return sal_True;
     406             : }
     407             : 
     408             : //------------------------------------------------------------------------
     409             : 
     410           0 : sal_Bool SvxMarginItem::SetRightMargin( sal_Int16 nRight )
     411             : {
     412           0 :     nRightMargin = nRight;
     413           0 :     return sal_True;
     414             : }
     415             : 
     416             : //------------------------------------------------------------------------
     417             : 
     418           0 : sal_Bool SvxMarginItem::SetBottomMargin( sal_Int16 nBottom )
     419             : {
     420           0 :     nBottomMargin = nBottom;
     421           0 :     return sal_True;
     422             : }
     423             : 
     424             : 
     425             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10