2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 21:27:55 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 21:27:55 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 21:27:55 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 21:27:55 +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
|
|
|
*
|
2008-04-10 21:27:55 +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
|
|
|
*
|
2008-04-10 21:27:55 +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
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "XMLClipPropertyHandler.hxx"
|
|
|
|
#include <com/sun/star/uno/Any.hxx>
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
#include <com/sun/star/text/GraphicCrop.hpp>
|
2007-06-27 14:31:38 +00:00
|
|
|
#include <xmloff/xmluconv.hxx>
|
|
|
|
#include <xmloff/xmltoken.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2008-03-12 09:45:53 +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;
|
2001-06-29 20:07:26 +00:00
|
|
|
using namespace ::xmloff::token;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// class XMLMeasurePropHdl
|
|
|
|
//
|
|
|
|
|
2008-07-07 08:54:49 +00:00
|
|
|
XMLClipPropertyHandler::XMLClipPropertyHandler( sal_Bool bODF11 ) :
|
|
|
|
m_bODF11( bODF11 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
XMLClipPropertyHandler::~XMLClipPropertyHandler()
|
|
|
|
{
|
|
|
|
// nothing to do
|
|
|
|
}
|
|
|
|
|
2006-10-12 13:46:41 +00:00
|
|
|
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 &&
|
2009-11-12 14:49:51 +01:00
|
|
|
0 == rStrImpValue.compareTo( GetXMLToken(XML_RECT), 4 ) &&
|
2000-09-18 16:07:07 +00:00
|
|
|
rStrImpValue[4] == '(' &&
|
|
|
|
rStrImpValue[nLen-1] == ')' )
|
|
|
|
{
|
|
|
|
GraphicCrop aCrop;
|
|
|
|
OUString sTmp( rStrImpValue.copy( 5, nLen-6 ) );
|
2008-07-07 08:54:49 +00:00
|
|
|
|
|
|
|
sal_Bool bHasComma = sTmp.indexOf( ',' ) != -1;
|
|
|
|
SvXMLTokenEnumerator aTokenEnum( sTmp, bHasComma ? ',' : ' ' );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
sal_uInt16 nPos = 0;
|
|
|
|
OUString aToken;
|
|
|
|
while( aTokenEnum.getNextToken( aToken ) )
|
|
|
|
{
|
|
|
|
sal_Int32 nVal = 0;
|
2001-06-29 20:07:26 +00:00
|
|
|
if( !IsXMLToken(aToken, XML_AUTO) &&
|
2011-10-11 14:19:09 +02:00
|
|
|
!rUnitConverter.convertMeasureToCore( nVal, aToken ) )
|
2000-09-18 16:07:07 +00:00
|
|
|
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 )
|
|
|
|
{
|
2001-06-29 20:07:26 +00:00
|
|
|
aOut.append( GetXMLToken(XML_RECT) );
|
2000-09-18 16:07:07 +00:00
|
|
|
aOut.append( (sal_Unicode)'(' );
|
2011-10-11 14:19:09 +02:00
|
|
|
rUnitConverter.convertMeasureToXML( aOut, aCrop.Top );
|
2008-07-07 08:54:49 +00:00
|
|
|
if( !m_bODF11 )
|
|
|
|
aOut.append( (sal_Unicode)',' );
|
2000-09-18 16:07:07 +00:00
|
|
|
aOut.append( (sal_Unicode)' ' );
|
2011-10-11 14:19:09 +02:00
|
|
|
rUnitConverter.convertMeasureToXML( aOut, aCrop.Right );
|
2008-07-07 08:54:49 +00:00
|
|
|
if( !m_bODF11 )
|
|
|
|
aOut.append( (sal_Unicode)',' );
|
2000-09-18 16:07:07 +00:00
|
|
|
aOut.append( (sal_Unicode)' ' );
|
2011-10-11 14:19:09 +02:00
|
|
|
rUnitConverter.convertMeasureToXML( aOut, aCrop.Bottom );
|
2008-07-07 08:54:49 +00:00
|
|
|
if( !m_bODF11 )
|
|
|
|
aOut.append( (sal_Unicode)',' );
|
2000-09-18 16:07:07 +00:00
|
|
|
aOut.append( (sal_Unicode)' ' );
|
2011-10-11 14:19:09 +02:00
|
|
|
rUnitConverter.convertMeasureToXML( aOut, aCrop.Left );
|
2000-09-18 16:07:07 +00:00
|
|
|
aOut.append( (sal_Unicode)')' );
|
|
|
|
rStrExpValue = aOut.makeStringAndClear();
|
|
|
|
|
|
|
|
bRet = sal_True;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
2010-10-12 15:53:47 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|