bump product version to 5.0.4.1
[LibreOffice.git] / xmloff / source / style / csmaphdl.cxx
blobb701f68714c7ab466bdb54b500344b294ab8614e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <csmaphdl.hxx>
21 #include <xmloff/xmltoken.hxx>
22 #include <xmloff/xmluconv.hxx>
23 #include <rtl/ustrbuf.hxx>
24 #include <com/sun/star/style/CaseMap.hpp>
25 #include <com/sun/star/uno/Any.hxx>
27 using namespace ::com::sun::star;
28 using namespace ::xmloff::token;
30 static SvXMLEnumMapEntry pXML_Casemap_Enum[] =
32 { XML_NONE, style::CaseMap::NONE },
33 { XML_CASEMAP_LOWERCASE, style::CaseMap::LOWERCASE },
34 { XML_CASEMAP_UPPERCASE, style::CaseMap::UPPERCASE },
35 { XML_CASEMAP_CAPITALIZE, style::CaseMap::TITLE },
36 { XML_TOKEN_INVALID, 0 }
39 // class XMLPosturePropHdl
41 XMLCaseMapPropHdl::~XMLCaseMapPropHdl()
43 // nothing to do
46 bool XMLCaseMapPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
48 sal_uInt16 nVal;
49 bool bRet = SvXMLUnitConverter::convertEnum(
50 nVal, rStrImpValue, pXML_Casemap_Enum );
51 if( ( bRet ) )
52 rValue <<= nVal;
54 return bRet;
57 bool XMLCaseMapPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
59 bool bRet = false;
60 sal_uInt16 nValue = sal_uInt16();
61 OUStringBuffer aOut;
63 if( rValue >>= nValue )
65 bRet = SvXMLUnitConverter::convertEnum(
66 aOut, nValue, pXML_Casemap_Enum );
67 if( bRet )
68 rStrExpValue = aOut.makeStringAndClear();
71 return bRet;
74 // class XMLCaseMapVariantHdl
76 XMLCaseMapVariantHdl::~XMLCaseMapVariantHdl()
78 // nothing to do
81 bool XMLCaseMapVariantHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
83 bool bRet = false;
85 if( IsXMLToken( rStrImpValue, XML_CASEMAP_SMALL_CAPS ) )
87 rValue <<= (sal_Int16)style::CaseMap::SMALLCAPS;
88 bRet = true;
90 else if( IsXMLToken( rStrImpValue, XML_CASEMAP_NORMAL ) )
92 rValue <<= (sal_Int16)style::CaseMap::NONE;
93 bRet = true;
96 return bRet;
99 bool XMLCaseMapVariantHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
101 sal_uInt16 nValue = sal_uInt16();
102 OUStringBuffer aOut;
104 if( rValue >>= nValue )
106 switch( nValue )
108 case style::CaseMap::NONE:
109 aOut.append( GetXMLToken(XML_CASEMAP_NORMAL) );
110 break;
111 case style::CaseMap::SMALLCAPS:
112 aOut.append( GetXMLToken(XML_CASEMAP_SMALL_CAPS) );
113 break;
117 rStrExpValue = aOut.makeStringAndClear();
118 return !rStrExpValue.isEmpty();
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */