Files
loongoffice/svl/source/items/rectitem.cxx
Noel Grandin 7e018afaf7 simplify return argument of SfxPoolItem::GetPresentation
since all two of the actual call-sites only care about whether
it is a valid presentation or not, not what kind of presentation it is.

Change-Id: I75717c88878d37b2897741b0c833ff283b3fee59
2014-07-29 11:04:01 +02:00

166 lines
4.3 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 <svl/rectitem.hxx>
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/awt/Rectangle.hpp>
#include <tools/stream.hxx>
#include <svl/poolitem.hxx>
#include <svl/memberid.hrc>
TYPEINIT1_AUTOFACTORY(SfxRectangleItem, SfxPoolItem);
SfxRectangleItem::SfxRectangleItem()
{
}
SfxRectangleItem::SfxRectangleItem( sal_uInt16 nW, const Rectangle& rVal ) :
SfxPoolItem( nW ),
aVal( rVal )
{
}
SfxRectangleItem::SfxRectangleItem( const SfxRectangleItem& rItem ) :
SfxPoolItem( rItem ),
aVal( rItem.aVal )
{
}
bool SfxRectangleItem::GetPresentation
(
SfxItemPresentation /*ePresentation*/,
SfxMapUnit /*eCoreMetric*/,
SfxMapUnit /*ePresentationMetric*/,
OUString& rText,
const IntlWrapper *
) const
{
rText = OUString::number(aVal.Top()) + ", " +
OUString::number(aVal.Left()) + ", " +
OUString::number(aVal.Bottom()) + ", " +
OUString::number(aVal.Right());
return true;
}
bool SfxRectangleItem::operator==( const SfxPoolItem& rItem ) const
{
DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
return ((SfxRectangleItem&)rItem).aVal == aVal;
}
SfxPoolItem* SfxRectangleItem::Clone(SfxItemPool *) const
{
return new SfxRectangleItem( *this );
}
SfxPoolItem* SfxRectangleItem::Create(SvStream &rStream, sal_uInt16 ) const
{
Rectangle aStr;
ReadRectangle( rStream, aStr );
return new SfxRectangleItem(Which(), aStr);
}
SvStream& SfxRectangleItem::Store(SvStream &rStream, sal_uInt16 ) const
{
WriteRectangle( rStream, aVal );
return rStream;
}
bool SfxRectangleItem::QueryValue( com::sun::star::uno::Any& rVal,
sal_uInt8 nMemberId) const
{
nMemberId &= ~CONVERT_TWIPS;
switch ( nMemberId )
{
case 0:
{
rVal <<= com::sun::star::awt::Rectangle( aVal.getX(),
aVal.getY(),
aVal.getWidth(),
aVal.getHeight() );
break;
}
case MID_RECT_LEFT: rVal <<= aVal.getX(); break;
case MID_RECT_RIGHT: rVal <<= aVal.getY(); break;
case MID_WIDTH: rVal <<= aVal.getWidth(); break;
case MID_HEIGHT: rVal <<= aVal.getHeight(); break;
default: OSL_FAIL("Wrong MemberID!"); return false;
}
return true;
}
bool SfxRectangleItem::PutValue( const com::sun::star::uno::Any& rVal,
sal_uInt8 nMemberId )
{
bool bRet = false;
nMemberId &= ~CONVERT_TWIPS;
com::sun::star::awt::Rectangle aValue;
sal_Int32 nVal = 0;
if ( !nMemberId )
bRet = (rVal >>= aValue);
else
bRet = (rVal >>= nVal);
if ( bRet )
{
switch ( nMemberId )
{
case 0:
aVal.setX( aValue.X );
aVal.setY( aValue.Y );
aVal.setWidth( aValue.Width );
aVal.setHeight( aValue.Height );
break;
case MID_RECT_LEFT: aVal.setX( nVal ); break;
case MID_RECT_RIGHT: aVal.setY( nVal ); break;
case MID_WIDTH: aVal.setWidth( nVal ); break;
case MID_HEIGHT: aVal.setHeight( nVal ); break;
default: OSL_FAIL("Wrong MemberID!"); return false;
}
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */