1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 <xmloff/xmlement.hxx>
24 #include <rtl/ustrbuf.hxx>
25 #include <com/sun/star/style/CaseMap.hpp>
26 #include <com/sun/star/uno/Any.hxx>
28 using namespace ::com::sun::star
;
29 using namespace ::xmloff::token
;
31 const SvXMLEnumMapEntry
<sal_uInt16
> pXML_Casemap_Enum
[] =
33 { XML_NONE
, style::CaseMap::NONE
},
34 { XML_CASEMAP_LOWERCASE
, style::CaseMap::LOWERCASE
},
35 { XML_CASEMAP_UPPERCASE
, style::CaseMap::UPPERCASE
},
36 { XML_CASEMAP_CAPITALIZE
, style::CaseMap::TITLE
},
37 { XML_TOKEN_INVALID
, 0 }
41 XMLCaseMapPropHdl::~XMLCaseMapPropHdl()
46 bool XMLCaseMapPropHdl::importXML( const OUString
& rStrImpValue
, uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
49 bool bRet
= SvXMLUnitConverter::convertEnum(
50 nVal
, rStrImpValue
, pXML_Casemap_Enum
);
57 bool XMLCaseMapPropHdl::exportXML( OUString
& rStrExpValue
, const uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
60 sal_uInt16 nValue
= sal_uInt16();
62 if( rValue
>>= nValue
)
65 bRet
= SvXMLUnitConverter::convertEnum(
66 aOut
, nValue
, pXML_Casemap_Enum
);
68 rStrExpValue
= aOut
.makeStringAndClear();
75 XMLCaseMapVariantHdl::~XMLCaseMapVariantHdl()
80 bool XMLCaseMapVariantHdl::importXML( const OUString
& rStrImpValue
, uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
84 if( IsXMLToken( rStrImpValue
, XML_CASEMAP_SMALL_CAPS
) )
86 rValue
<<= sal_Int16(style::CaseMap::SMALLCAPS
);
89 else if( IsXMLToken( rStrImpValue
, XML_NORMAL
) )
91 rValue
<<= sal_Int16(style::CaseMap::NONE
);
98 bool XMLCaseMapVariantHdl::exportXML( OUString
& rStrExpValue
, const uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
100 sal_uInt16 nValue
= sal_uInt16();
103 if( rValue
>>= nValue
)
107 case style::CaseMap::NONE
:
108 aOut
.append( GetXMLToken(XML_NORMAL
) );
110 case style::CaseMap::SMALLCAPS
:
111 aOut
.append( GetXMLToken(XML_CASEMAP_SMALL_CAPS
) );
116 rStrExpValue
= aOut
.makeStringAndClear();
117 return !rStrExpValue
.isEmpty();
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */