9051ceb9f2
SfxPoolItem has a copy constructor and its copy assignment operator is deleted. Derived classes have a implicit defined copy constructor too, if all members are copy constructible. This patch removes default-able copy constructors and destructors on such items. Also removing copy constructors of pool item members SvxClipboardFormatItem_Impl and SvxColumnItem. Change-Id: Ic0f39c992d1fd7b667cb56134fd7c953681a3131 Reviewed-on: https://gerrit.libreoffice.org/43143 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
360 lines
11 KiB
C++
360 lines
11 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include <svx/svxitems.hrc>
|
|
#include <svx/strings.hrc>
|
|
#include <osl/diagnose.h>
|
|
#include <tools/stream.hxx>
|
|
#include <tools/mapunit.hxx>
|
|
#include <com/sun/star/table/BorderLine.hpp>
|
|
#include <com/sun/star/table/ShadowLocation.hpp>
|
|
#include <com/sun/star/table/TableBorder.hpp>
|
|
#include <com/sun/star/table/ShadowFormat.hpp>
|
|
#include <com/sun/star/table/CellRangeAddress.hpp>
|
|
#include <com/sun/star/table/CellContentType.hpp>
|
|
#include <com/sun/star/table/TableOrientation.hpp>
|
|
#include <com/sun/star/util/SortField.hpp>
|
|
#include <com/sun/star/util/SortFieldType.hpp>
|
|
#include <com/sun/star/table/CellOrientation.hpp>
|
|
#include <com/sun/star/table/CellAddress.hpp>
|
|
|
|
#include <svx/algitem.hxx>
|
|
#include <svx/dialmgr.hxx>
|
|
#include <editeng/itemtype.hxx>
|
|
#include <svx/unomid.hxx>
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
|
SfxPoolItem* SvxMarginItem::CreateDefault() { return new SvxMarginItem(0) ;}
|
|
|
|
SvxOrientationItem::SvxOrientationItem( const SvxCellOrientation eOrientation,
|
|
const sal_uInt16 nId):
|
|
SfxEnumItem( nId, eOrientation )
|
|
{
|
|
}
|
|
|
|
SvxOrientationItem::SvxOrientationItem( sal_Int32 nRotation, bool bStacked, const sal_uInt16 nId ) :
|
|
SfxEnumItem( nId, SvxCellOrientation::Standard )
|
|
{
|
|
if( bStacked )
|
|
{
|
|
SetValue( SvxCellOrientation::Stacked );
|
|
}
|
|
else switch( nRotation )
|
|
{
|
|
case 9000: SetValue( SvxCellOrientation::BottomUp ); break;
|
|
case 27000: SetValue( SvxCellOrientation::TopBottom ); break;
|
|
default: SetValue( SvxCellOrientation::Standard );
|
|
}
|
|
}
|
|
|
|
|
|
bool SvxOrientationItem::GetPresentation
|
|
(
|
|
SfxItemPresentation /*ePres*/,
|
|
MapUnit /*eCoreUnit*/,
|
|
MapUnit /*ePresUnit*/,
|
|
OUString& rText,
|
|
const IntlWrapper& ) const
|
|
{
|
|
rText = GetValueText( GetValue() );
|
|
return true;
|
|
}
|
|
|
|
|
|
bool SvxOrientationItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
|
|
{
|
|
table::CellOrientation eUno = table::CellOrientation_STANDARD;
|
|
switch ( GetValue() )
|
|
{
|
|
case SvxCellOrientation::Standard: eUno = table::CellOrientation_STANDARD; break;
|
|
case SvxCellOrientation::TopBottom: eUno = table::CellOrientation_TOPBOTTOM; break;
|
|
case SvxCellOrientation::BottomUp: eUno = table::CellOrientation_BOTTOMTOP; break;
|
|
case SvxCellOrientation::Stacked: eUno = table::CellOrientation_STACKED; break;
|
|
}
|
|
rVal <<= eUno;
|
|
return true;
|
|
}
|
|
|
|
bool SvxOrientationItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
|
|
{
|
|
table::CellOrientation eOrient;
|
|
if(!(rVal >>= eOrient))
|
|
{
|
|
sal_Int32 nValue = 0;
|
|
if(!(rVal >>= nValue))
|
|
return false;
|
|
eOrient = (table::CellOrientation)nValue;
|
|
}
|
|
SvxCellOrientation eSvx = SvxCellOrientation::Standard;
|
|
switch (eOrient)
|
|
{
|
|
case table::CellOrientation_STANDARD: eSvx = SvxCellOrientation::Standard; break;
|
|
case table::CellOrientation_TOPBOTTOM: eSvx = SvxCellOrientation::TopBottom; break;
|
|
case table::CellOrientation_BOTTOMTOP: eSvx = SvxCellOrientation::BottomUp; break;
|
|
case table::CellOrientation_STACKED: eSvx = SvxCellOrientation::Stacked; break;
|
|
default: ; //prevent warning
|
|
}
|
|
SetValue( eSvx );
|
|
return true;
|
|
}
|
|
|
|
|
|
OUString SvxOrientationItem::GetValueText( SvxCellOrientation nVal )
|
|
{
|
|
return SvxResId(RID_SVXITEMS_ORI_STANDARD + static_cast<int>(nVal));
|
|
}
|
|
|
|
|
|
SfxPoolItem* SvxOrientationItem::Clone( SfxItemPool* ) const
|
|
{
|
|
return new SvxOrientationItem( *this );
|
|
}
|
|
|
|
|
|
SfxPoolItem* SvxOrientationItem::Create( SvStream& rStream, sal_uInt16 ) const
|
|
{
|
|
sal_uInt16 nVal;
|
|
rStream.ReadUInt16( nVal );
|
|
return new SvxOrientationItem( (SvxCellOrientation)nVal, Which() );
|
|
}
|
|
|
|
|
|
sal_uInt16 SvxOrientationItem::GetValueCount() const
|
|
{
|
|
return static_cast<sal_uInt16>(SvxCellOrientation::Stacked) + 1; // last enum value + 1
|
|
}
|
|
|
|
|
|
bool SvxOrientationItem::IsStacked() const
|
|
{
|
|
return GetValue() == SvxCellOrientation::Stacked;
|
|
}
|
|
|
|
sal_Int32 SvxOrientationItem::GetRotation( sal_Int32 nStdAngle ) const
|
|
{
|
|
sal_Int32 nAngle = nStdAngle;
|
|
switch( GetValue() )
|
|
{
|
|
case SvxCellOrientation::BottomUp: nAngle = 9000;break;
|
|
case SvxCellOrientation::TopBottom: nAngle = 27000;break;
|
|
default: ; //prevent warning
|
|
}
|
|
return nAngle;
|
|
}
|
|
|
|
SvxMarginItem::SvxMarginItem( const sal_uInt16 nId ) :
|
|
|
|
SfxPoolItem( nId ),
|
|
|
|
nLeftMargin ( 20 ),
|
|
nTopMargin ( 20 ),
|
|
nRightMargin ( 20 ),
|
|
nBottomMargin( 20 )
|
|
{
|
|
}
|
|
|
|
|
|
SvxMarginItem::SvxMarginItem( sal_Int16 nLeft,
|
|
sal_Int16 nTop,
|
|
sal_Int16 nRight,
|
|
sal_Int16 nBottom,
|
|
const sal_uInt16 nId ) :
|
|
SfxPoolItem( nId ),
|
|
|
|
nLeftMargin ( nLeft ),
|
|
nTopMargin ( nTop ),
|
|
nRightMargin ( nRight ),
|
|
nBottomMargin( nBottom )
|
|
{
|
|
}
|
|
|
|
|
|
bool SvxMarginItem::GetPresentation
|
|
(
|
|
SfxItemPresentation ePres,
|
|
MapUnit eCoreUnit,
|
|
MapUnit ePresUnit,
|
|
OUString& rText, const IntlWrapper& rIntl
|
|
) const
|
|
{
|
|
OUString cpDelimTmp = OUString(cpDelim);
|
|
|
|
switch ( ePres )
|
|
{
|
|
case SfxItemPresentation::Nameless:
|
|
{
|
|
rText = GetMetricText( (long)nLeftMargin, eCoreUnit, ePresUnit, &rIntl ) +
|
|
cpDelimTmp +
|
|
GetMetricText( (long)nTopMargin, eCoreUnit, ePresUnit, &rIntl ) +
|
|
cpDelimTmp +
|
|
GetMetricText( (long)nRightMargin, eCoreUnit, ePresUnit, &rIntl ) +
|
|
cpDelimTmp +
|
|
GetMetricText( (long)nBottomMargin, eCoreUnit, ePresUnit, &rIntl );
|
|
return true;
|
|
}
|
|
case SfxItemPresentation::Complete:
|
|
{
|
|
rText = SvxResId(RID_SVXITEMS_MARGIN_LEFT) +
|
|
GetMetricText( (long)nLeftMargin, eCoreUnit, ePresUnit, &rIntl ) +
|
|
" " + EditResId(GetMetricId(ePresUnit)) +
|
|
cpDelimTmp +
|
|
SvxResId(RID_SVXITEMS_MARGIN_TOP) +
|
|
GetMetricText( (long)nTopMargin, eCoreUnit, ePresUnit, &rIntl ) +
|
|
" " + EditResId(GetMetricId(ePresUnit)) +
|
|
cpDelimTmp +
|
|
SvxResId(RID_SVXITEMS_MARGIN_RIGHT) +
|
|
GetMetricText( (long)nRightMargin, eCoreUnit, ePresUnit, &rIntl ) +
|
|
" " + EditResId(GetMetricId(ePresUnit)) +
|
|
cpDelimTmp +
|
|
SvxResId(RID_SVXITEMS_MARGIN_BOTTOM) +
|
|
GetMetricText( (long)nBottomMargin, eCoreUnit, ePresUnit, &rIntl ) +
|
|
" " + EditResId(GetMetricId(ePresUnit));
|
|
return true;
|
|
}
|
|
default: ; //prevent warning
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
bool SvxMarginItem::operator==( const SfxPoolItem& rItem ) const
|
|
{
|
|
assert(SfxPoolItem::operator==(rItem));
|
|
|
|
return ( ( nLeftMargin == static_cast<const SvxMarginItem&>(rItem).nLeftMargin ) &&
|
|
( nTopMargin == static_cast<const SvxMarginItem&>(rItem).nTopMargin ) &&
|
|
( nRightMargin == static_cast<const SvxMarginItem&>(rItem).nRightMargin ) &&
|
|
( nBottomMargin == static_cast<const SvxMarginItem&>(rItem).nBottomMargin ) );
|
|
}
|
|
|
|
|
|
SfxPoolItem* SvxMarginItem::Clone( SfxItemPool* ) const
|
|
{
|
|
return new SvxMarginItem(*this);
|
|
}
|
|
|
|
|
|
SfxPoolItem* SvxMarginItem::Create( SvStream& rStream, sal_uInt16 ) const
|
|
{
|
|
sal_Int16 nLeft;
|
|
sal_Int16 nTop;
|
|
sal_Int16 nRight;
|
|
sal_Int16 nBottom;
|
|
rStream.ReadInt16( nLeft );
|
|
rStream.ReadInt16( nTop );
|
|
rStream.ReadInt16( nRight );
|
|
rStream.ReadInt16( nBottom );
|
|
return new SvxMarginItem( nLeft, nTop, nRight, nBottom, Which() );
|
|
}
|
|
|
|
|
|
SvStream& SvxMarginItem::Store( SvStream &rStream, sal_uInt16 /*nItemVersion*/) const
|
|
{
|
|
rStream.WriteInt16( nLeftMargin );
|
|
rStream.WriteInt16( nTopMargin );
|
|
rStream.WriteInt16( nRightMargin );
|
|
rStream.WriteInt16( nBottomMargin );
|
|
return rStream;
|
|
}
|
|
|
|
|
|
bool SvxMarginItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
|
|
{
|
|
bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
|
|
nMemberId &= ~CONVERT_TWIPS;
|
|
switch ( nMemberId )
|
|
{
|
|
// now sign everything
|
|
case MID_MARGIN_L_MARGIN:
|
|
rVal <<= (sal_Int32)( bConvert ? convertTwipToMm100(nLeftMargin) : nLeftMargin );
|
|
break;
|
|
case MID_MARGIN_R_MARGIN:
|
|
rVal <<= (sal_Int32)( bConvert ? convertTwipToMm100(nRightMargin) : nRightMargin );
|
|
break;
|
|
case MID_MARGIN_UP_MARGIN:
|
|
rVal <<= (sal_Int32)( bConvert ? convertTwipToMm100(nTopMargin) : nTopMargin );
|
|
break;
|
|
case MID_MARGIN_LO_MARGIN:
|
|
rVal <<= (sal_Int32)( bConvert ? convertTwipToMm100(nBottomMargin) : nBottomMargin );
|
|
break;
|
|
default:
|
|
OSL_FAIL("unknown MemberId");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
bool SvxMarginItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
|
|
{
|
|
bool bConvert = ( ( nMemberId & CONVERT_TWIPS ) != 0 );
|
|
long nMaxVal = bConvert ? convertTwipToMm100(SHRT_MAX) : SHRT_MAX; // members are sal_Int16
|
|
sal_Int32 nVal = 0;
|
|
if(!(rVal >>= nVal) || (nVal > nMaxVal))
|
|
return false;
|
|
|
|
switch ( nMemberId & ~CONVERT_TWIPS )
|
|
{
|
|
case MID_MARGIN_L_MARGIN:
|
|
nLeftMargin = (sal_Int16)( bConvert ? convertMm100ToTwip(nVal) : nVal );
|
|
break;
|
|
case MID_MARGIN_R_MARGIN:
|
|
nRightMargin = (sal_Int16)( bConvert ? convertMm100ToTwip(nVal) : nVal );
|
|
break;
|
|
case MID_MARGIN_UP_MARGIN:
|
|
nTopMargin = (sal_Int16)( bConvert ? convertMm100ToTwip(nVal) : nVal );
|
|
break;
|
|
case MID_MARGIN_LO_MARGIN:
|
|
nBottomMargin = (sal_Int16)( bConvert ? convertMm100ToTwip(nVal) : nVal );
|
|
break;
|
|
default:
|
|
OSL_FAIL("unknown MemberId");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
void SvxMarginItem::SetLeftMargin( sal_Int16 nLeft )
|
|
{
|
|
nLeftMargin = nLeft;
|
|
}
|
|
|
|
|
|
void SvxMarginItem::SetTopMargin( sal_Int16 nTop )
|
|
{
|
|
nTopMargin = nTop;
|
|
}
|
|
|
|
|
|
void SvxMarginItem::SetRightMargin( sal_Int16 nRight )
|
|
{
|
|
nRightMargin = nRight;
|
|
}
|
|
|
|
|
|
void SvxMarginItem::SetBottomMargin( sal_Int16 nBottom )
|
|
{
|
|
nBottomMargin = nBottom;
|
|
}
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|