/* -*- 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 #include #include #include #include #include using namespace ::com::sun::star; // STATIC DATA ----------------------------------------------------------- DBG_NAME(SfxPointItem) #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) #define MM100_TO_TWIP(MM100) ((MM100) >= 0 ? (((MM100)*72L+63L)/127L) : (((MM100)*72L-63L)/127L)) // ----------------------------------------------------------------------- TYPEINIT1_AUTOFACTORY(SfxPointItem, SfxPoolItem); // ----------------------------------------------------------------------- SfxPointItem::SfxPointItem() { DBG_CTOR(SfxPointItem, 0); } // ----------------------------------------------------------------------- SfxPointItem::SfxPointItem( sal_uInt16 nW, const Point& rVal ) : SfxPoolItem( nW ), aVal( rVal ) { DBG_CTOR(SfxPointItem, 0); } // ----------------------------------------------------------------------- SfxPointItem::SfxPointItem( const SfxPointItem& rItem ) : SfxPoolItem( rItem ), aVal( rItem.aVal ) { DBG_CTOR(SfxPointItem, 0); } // ----------------------------------------------------------------------- SfxItemPresentation SfxPointItem::GetPresentation ( SfxItemPresentation /*ePresentation*/, SfxMapUnit /*eCoreMetric*/, SfxMapUnit /*ePresentationMetric*/, OUString& rText, const IntlWrapper * ) const { DBG_CHKTHIS(SfxPointItem, 0); rText = OUString::valueOf(aVal.X()) + ", " + OUString::valueOf(aVal.Y()) + ", "; return SFX_ITEM_PRESENTATION_NAMELESS; } // ----------------------------------------------------------------------- int SfxPointItem::operator==( const SfxPoolItem& rItem ) const { DBG_CHKTHIS(SfxPointItem, 0); DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" ); return ((SfxPointItem&)rItem).aVal == aVal; } // ----------------------------------------------------------------------- SfxPoolItem* SfxPointItem::Clone(SfxItemPool *) const { DBG_CHKTHIS(SfxPointItem, 0); return new SfxPointItem( *this ); } // ----------------------------------------------------------------------- SfxPoolItem* SfxPointItem::Create(SvStream &rStream, sal_uInt16 ) const { DBG_CHKTHIS(SfxPointItem, 0); Point aStr; rStream >> aStr; return new SfxPointItem(Which(), aStr); } // ----------------------------------------------------------------------- SvStream& SfxPointItem::Store(SvStream &rStream, sal_uInt16 ) const { DBG_CHKTHIS(SfxPointItem, 0); rStream << aVal; return rStream; } // ----------------------------------------------------------------------- bool SfxPointItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const { bool bConvert = 0!=(nMemberId&CONVERT_TWIPS); awt::Point aTmp(aVal.X(), aVal.Y()); if( bConvert ) { aTmp.X = TWIP_TO_MM100(aTmp.X); aTmp.Y = TWIP_TO_MM100(aTmp.Y); } nMemberId &= ~CONVERT_TWIPS; switch ( nMemberId ) { case 0: rVal <<= aTmp; break; case MID_X: rVal <<= aTmp.X; break; case MID_Y: rVal <<= aTmp.Y; break; default: OSL_FAIL("Wrong MemberId!"); return true; } return true; } // ----------------------------------------------------------------------- bool SfxPointItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) { bool bConvert = 0!=(nMemberId&CONVERT_TWIPS); nMemberId &= ~CONVERT_TWIPS; bool bRet = false; awt::Point aValue; sal_Int32 nVal = 0; if ( !nMemberId ) { bRet = ( rVal >>= aValue ); if( bConvert ) { aValue.X = MM100_TO_TWIP(aValue.X); aValue.Y = MM100_TO_TWIP(aValue.Y); } } else { bRet = ( rVal >>= nVal ); if( bConvert ) nVal = MM100_TO_TWIP( nVal ); } if ( bRet ) { switch ( nMemberId ) { case 0: aVal.setX( aValue.X ); aVal.setY( aValue.Y ); break; case MID_X: aVal.setX( nVal ); break; case MID_Y: aVal.setY( nVal ); break; default: OSL_FAIL("Wrong MemberId!"); return false; } } return bRet; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */