1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: postuhdl.cxx,v $
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>
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()
69 sal_Bool
XMLPosturePropHdl::importXML( const OUString
& rStrImpValue
, uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
72 sal_Bool bRet
= SvXMLUnitConverter::convertEnum( ePosture
, rStrImpValue
, aPostureGenericMapping
);
74 rValue
<<= (awt::FontSlant
)ePosture
;
79 sal_Bool
XMLPosturePropHdl::exportXML( OUString
& rStrExpValue
, const uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
81 awt::FontSlant eSlant
;
83 if( !( rValue
>>= eSlant
) )
87 if( !( rValue
>>= nValue
) )
90 eSlant
= (awt::FontSlant
)nValue
;
94 sal_Bool bRet
= SvXMLUnitConverter::convertEnum( aOut
, (sal_Int32
)eSlant
, aPostureGenericMapping
);
96 rStrExpValue
= aOut
.makeStringAndClear();