update dev300-m58
[ooovba.git] / xmloff / source / style / WordWrapPropertyHdl.cxx
blobeec884771f12f6203a76dc125412f49068aec329
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: WordWrapPropertyHdl.cxx,v $
10 * $Revision: 1.1.2.1 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_xmloff.hxx"
33 #include <xmloff/xmlimp.hxx>
34 #include <xmloff/WordWrapPropertyHdl.hxx>
35 #include "xmlkywd.hxx"
36 #include <xmloff/xmltoken.hxx>
37 #include <xmloff/xmluconv.hxx>
38 #include <comphelper/extract.hxx>
39 #include <rtl/ustring.hxx>
40 #include <rtl/ustrbuf.hxx>
41 #include <com/sun/star/uno/Any.hxx>
43 using ::rtl::OUString;
44 using ::rtl::OUStringBuffer;
46 using namespace ::com::sun::star::uno;
48 ///////////////////////////////////////////////////////////////////////////////
50 // class XMLWordWrapPropertyHdl
53 XMLWordWrapPropertyHdl::XMLWordWrapPropertyHdl( SvXMLImport* pImport )
54 : mpImport( pImport )
58 XMLWordWrapPropertyHdl::~XMLWordWrapPropertyHdl()
60 // Nothing to do
63 sal_Bool XMLWordWrapPropertyHdl::importXML( const OUString& rStrImpValue, Any& rValue, const SvXMLUnitConverter& ) const
65 sal_Bool bValue = sal_False, bRetValue = sal_False;
66 if( rStrImpValue == GetXMLToken( xmloff::token::XML_WRAP ) )
68 bValue = sal_True;
69 bRetValue = sal_True;
71 if( rStrImpValue == GetXMLToken( xmloff::token::XML_NO_WRAP ) )
73 bValue = sal_False;
74 bRetValue = sal_True;
76 if ( bRetValue && mpImport )
78 sal_Int32 nUPD, nBuildId;
79 if( mpImport->getBuildIds( nUPD, nBuildId ) )
81 if( nUPD == 300 )
83 if( ( nBuildId > 0 ) && (nBuildId < 9316 ) )
84 bValue = bValue ? sal_False : sal_True; // treat OOo 3.0 beta1 as OOo 2.x
86 else if( ( nUPD == 680 ) || ( nUPD >= 640 && nUPD <= 645 ) )
87 bValue = bValue ? sal_False : sal_True;
89 rValue <<= bValue;
91 return bRetValue;
94 sal_Bool XMLWordWrapPropertyHdl::exportXML( OUString& rStrExpValue, const Any& rValue, const SvXMLUnitConverter& ) const
96 if( ::cppu::any2bool( rValue ) )
98 rStrExpValue = GetXMLToken( xmloff::token::XML_WRAP );
100 else
102 rStrExpValue = GetXMLToken( xmloff::token::XML_NO_WRAP );
104 return sal_True;