merge the formfield patch from ooo-build
[ooovba.git] / xmloff / source / style / postuhdl.cxx
blob622ef189b6e5f15e58e0569069fa6112848b577d
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: postuhdl.cxx,v $
10 * $Revision: 1.10 $
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 <postuhdl.hxx>
34 #include <xmloff/xmltoken.hxx>
35 #include <xmloff/xmluconv.hxx>
36 #include <rtl/ustrbuf.hxx>
37 #include <com/sun/star/uno/Any.hxx>
38 #include <com/sun/star/awt/FontSlant.hpp>
39 #include <vcl/vclenum.hxx>
41 #ifndef _XMLOFF_XMLEMENT_HXX
42 #include <xmloff/xmlelement.hxx>
43 #endif
45 using ::rtl::OUString;
46 using ::rtl::OUStringBuffer;
48 using namespace ::com::sun::star;
49 using namespace ::xmloff::token;
51 SvXMLEnumMapEntry __READONLY_DATA aPostureGenericMapping[] =
53 { XML_POSTURE_NORMAL, ITALIC_NONE },
54 { XML_POSTURE_ITALIC, ITALIC_NORMAL },
55 { XML_POSTURE_OBLIQUE, ITALIC_OBLIQUE },
56 { XML_TOKEN_INVALID, 0 }
59 ///////////////////////////////////////////////////////////////////////////////
61 // class XMLPosturePropHdl
64 XMLPosturePropHdl::~XMLPosturePropHdl()
66 // nothing to do
69 sal_Bool XMLPosturePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
71 sal_uInt16 ePosture;
72 sal_Bool bRet = SvXMLUnitConverter::convertEnum( ePosture, rStrImpValue, aPostureGenericMapping );
73 if( bRet )
74 rValue <<= (awt::FontSlant)ePosture;
76 return bRet;
79 sal_Bool XMLPosturePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
81 awt::FontSlant eSlant;
83 if( !( rValue >>= eSlant ) )
85 sal_Int32 nValue = 0;
87 if( !( rValue >>= nValue ) )
88 return sal_False;
90 eSlant = (awt::FontSlant)nValue;
93 OUStringBuffer aOut;
94 sal_Bool bRet = SvXMLUnitConverter::convertEnum( aOut, (sal_Int32)eSlant, aPostureGenericMapping );
95 if( bRet )
96 rStrExpValue = aOut.makeStringAndClear();
98 return bRet;