Files
libreoffice/xmloff/source/style/XMLClipPropertyHandler.cxx

138 lines
4.2 KiB
C++
Raw Normal View History

2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 16:07:07 +00:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:07:07 +00:00
*
* $RCSfile: XMLClipPropertyHandler.cxx,v $
* $Revision: 1.8 $
2000-09-18 16:07:07 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 16:07:07 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 16:07:07 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_xmloff.hxx"
2000-09-18 16:07:07 +00:00
#include "XMLClipPropertyHandler.hxx"
#include <com/sun/star/uno/Any.hxx>
#include <rtl/ustrbuf.hxx>
#include <com/sun/star/text/GraphicCrop.hpp>
#include <xmloff/xmluconv.hxx>
2000-09-18 16:07:07 +00:00
#include <xmlkywd.hxx>
#include <xmloff/xmltoken.hxx>
2000-09-18 16:07:07 +00:00
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
2000-09-18 16:07:07 +00:00
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::text;
using namespace ::xmloff::token;
2000-09-18 16:07:07 +00:00
///////////////////////////////////////////////////////////////////////////////
//
// class XMLMeasurePropHdl
//
XMLClipPropertyHandler::~XMLClipPropertyHandler()
{
// nothing to do
}
bool XMLClipPropertyHandler::equals(
2000-09-18 16:07:07 +00:00
const Any& r1,
const Any& r2 ) const
{
GraphicCrop aCrop1, aCrop2;
r1 >>= aCrop1;
r2 >>= aCrop2;
return aCrop1.Top == aCrop2.Top &&
aCrop1.Bottom == aCrop2.Bottom &&
aCrop1.Left == aCrop2.Left &&
aCrop1.Right == aCrop2.Right;
}
sal_Bool XMLClipPropertyHandler::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const
{
sal_Bool bRet = sal_False;
sal_Int32 nLen = rStrImpValue.getLength();
if( nLen > 6 &&
0 == rStrImpValue.compareToAscii( sXML_rect, 4 ) &&
rStrImpValue[4] == '(' &&
rStrImpValue[nLen-1] == ')' )
{
GraphicCrop aCrop;
OUString sTmp( rStrImpValue.copy( 5, nLen-6 ) );
SvXMLTokenEnumerator aTokenEnum( sTmp );
sal_uInt16 nPos = 0;
OUString aToken;
while( aTokenEnum.getNextToken( aToken ) )
{
sal_Int32 nVal = 0;
if( !IsXMLToken(aToken, XML_AUTO) &&
2000-09-18 16:07:07 +00:00
!rUnitConverter.convertMeasure( nVal, aToken ) )
break;
switch( nPos )
{
case 0: aCrop.Top = nVal; break;
case 1: aCrop.Right = nVal; break;
case 2: aCrop.Bottom = nVal; break;
case 3: aCrop.Left = nVal; break;
}
nPos++;
}
bRet = (4 == nPos );
if( bRet )
rValue <<= aCrop;
}
return bRet;
}
sal_Bool XMLClipPropertyHandler::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const
{
sal_Bool bRet = sal_False;
OUStringBuffer aOut(30);
GraphicCrop aCrop;
if( rValue >>= aCrop )
{
aOut.append( GetXMLToken(XML_RECT) );
2000-09-18 16:07:07 +00:00
aOut.append( (sal_Unicode)'(' );
rUnitConverter.convertMeasure( aOut, aCrop.Top );
aOut.append( (sal_Unicode)' ' );
rUnitConverter.convertMeasure( aOut, aCrop.Right );
aOut.append( (sal_Unicode)' ' );
rUnitConverter.convertMeasure( aOut, aCrop.Bottom );
aOut.append( (sal_Unicode)' ' );
rUnitConverter.convertMeasure( aOut, aCrop.Left );
aOut.append( (sal_Unicode)')' );
rStrExpValue = aOut.makeStringAndClear();
bRet = sal_True;
}
return bRet;
}