228 lines
6.3 KiB
C++
228 lines
6.3 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: breakhdl.cxx,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: mib $ $Date: 2000-10-18 11:18:29 $
|
|
*
|
|
* The Contents of this file are made available subject to the terms of
|
|
* either of the following licenses
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
*
|
|
* Sun Microsystems Inc., October, 2000
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
*
|
|
* Sun Industry Standards Source License Version 1.1
|
|
* =================================================
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
* Source License Version 1.1 (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.openoffice.org/license.html.
|
|
*
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
* See the License for the specific provisions governing your rights and
|
|
* obligations concerning the Software.
|
|
*
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
*
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
*
|
|
* All Rights Reserved.
|
|
*
|
|
* Contributor(s): _______________________________________
|
|
*
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifndef _XMLOFF_PROPERTYHANDLER_BREAKTYPES_HXX
|
|
#include <breakhdl.hxx>
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_XMLKYWD_HXX
|
|
#include "xmlkywd.hxx"
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_XMLUCONV_HXX
|
|
#include "xmluconv.hxx"
|
|
#endif
|
|
|
|
#ifndef _RTL_USTRBUF_HXX_
|
|
#include <rtl/ustrbuf.hxx>
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_STYLE_BREAKTYPE_HPP_
|
|
#include <com/sun/star/style/BreakType.hpp>
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UNO_ANY_HXX_
|
|
#include <com/sun/star/uno/Any.hxx>
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_XMLEMENT_HXX
|
|
#include "xmlelement.hxx"
|
|
#endif
|
|
|
|
using namespace ::rtl;
|
|
using namespace ::com::sun::star;
|
|
|
|
SvXMLEnumMapEntry psXML_BreakTypes[] =
|
|
{
|
|
{ sXML_auto, 0 },
|
|
{ sXML_column, 1 },
|
|
{ sXML_page, 2 },
|
|
{ sXML_even_page, 2 },
|
|
{ sXML_odd_page, 2 },
|
|
{ 0, 0}
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// class XMLFmtBreakBeforePropHdl
|
|
//
|
|
|
|
XMLFmtBreakBeforePropHdl::~XMLFmtBreakBeforePropHdl()
|
|
{
|
|
// Nothing to do
|
|
}
|
|
|
|
sal_Bool XMLFmtBreakBeforePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const
|
|
{
|
|
sal_Bool bRet = sal_False;
|
|
style::BreakType eBreak = style::BreakType_NONE;
|
|
sal_uInt16 nEnum;
|
|
|
|
if( ( bRet = rUnitConverter.convertEnum( nEnum, rStrImpValue, psXML_BreakTypes ) ) )
|
|
{
|
|
if( nEnum != 0 )
|
|
eBreak = ( nEnum == 1 ) ? style::BreakType_COLUMN_BEFORE : style::BreakType_PAGE_BEFORE;
|
|
|
|
rValue <<= eBreak;
|
|
}
|
|
|
|
return bRet;
|
|
}
|
|
|
|
sal_Bool XMLFmtBreakBeforePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const
|
|
{
|
|
style::BreakType eBreak;
|
|
|
|
if( !( rValue >>= eBreak ) )
|
|
{
|
|
sal_Int32 nValue;
|
|
if( !( rValue >>= nValue ) )
|
|
return sal_False;
|
|
|
|
eBreak = (style::BreakType) nValue;
|
|
}
|
|
|
|
sal_uInt16 nEnum = 0;
|
|
switch( eBreak )
|
|
{
|
|
case style::BreakType_COLUMN_BEFORE:
|
|
nEnum = 1;
|
|
break;
|
|
case style::BreakType_PAGE_BEFORE:
|
|
nEnum = 2;
|
|
break;
|
|
case style::BreakType_NONE:
|
|
nEnum = 0;
|
|
break;
|
|
default:
|
|
return sal_False;
|
|
}
|
|
|
|
OUStringBuffer aOut;
|
|
sal_Bool bOk = rUnitConverter.convertEnum( aOut, nEnum, psXML_BreakTypes );
|
|
rStrExpValue = aOut.makeStringAndClear();
|
|
|
|
return sal_True;
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// class XMLFmtBreakBeforePropHdl
|
|
//
|
|
|
|
XMLFmtBreakAfterPropHdl::~XMLFmtBreakAfterPropHdl()
|
|
{
|
|
// Nothing to do
|
|
}
|
|
|
|
sal_Bool XMLFmtBreakAfterPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const
|
|
{
|
|
sal_Bool bRet = sal_False;
|
|
style::BreakType eBreak = style::BreakType_NONE;
|
|
sal_uInt16 nEnum;
|
|
|
|
if( ( bRet = rUnitConverter.convertEnum( nEnum, rStrImpValue, psXML_BreakTypes ) ) )
|
|
{
|
|
if( nEnum != 0 )
|
|
eBreak = ( nEnum == 1 ) ? style::BreakType_COLUMN_AFTER : style::BreakType_PAGE_AFTER;
|
|
|
|
rValue <<= eBreak;
|
|
}
|
|
|
|
return bRet;
|
|
}
|
|
|
|
sal_Bool XMLFmtBreakAfterPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const
|
|
{
|
|
style::BreakType eBreak;
|
|
|
|
if( !( rValue >>= eBreak ) )
|
|
{
|
|
sal_Int32 nValue;
|
|
if( !( rValue >>= nValue ) )
|
|
return sal_False;
|
|
|
|
eBreak = (style::BreakType) nValue;
|
|
}
|
|
|
|
sal_uInt16 nEnum = 0;
|
|
switch( eBreak )
|
|
{
|
|
case style::BreakType_COLUMN_AFTER:
|
|
nEnum = 1;
|
|
break;
|
|
case style::BreakType_PAGE_AFTER:
|
|
nEnum = 2;
|
|
break;
|
|
case style::BreakType_NONE:
|
|
nEnum = 0;
|
|
break;
|
|
default:
|
|
return sal_False;
|
|
}
|
|
|
|
OUStringBuffer aOut;
|
|
sal_Bool bOk = rUnitConverter.convertEnum( aOut, nEnum, psXML_BreakTypes );
|
|
rStrExpValue = aOut.makeStringAndClear();
|
|
|
|
return sal_True;
|
|
}
|