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 "escphdl.hxx"
22 #include <editeng/escapementitem.hxx>
23 #include <sax/tools/converter.hxx>
24 #include <xmloff/xmltoken.hxx>
25 #include <xmloff/xmluconv.hxx>
26 #include <rtl/ustrbuf.hxx>
27 #include <com/sun/star/uno/Any.hxx>
29 using namespace ::com::sun::star
;
30 using namespace ::xmloff::token
;
35 XMLEscapementPropHdl::~XMLEscapementPropHdl()
40 bool XMLEscapementPropHdl::importXML( const OUString
& rStrImpValue
, uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
44 SvXMLTokenEnumerator
aTokens( rStrImpValue
);
46 std::u16string_view aToken
;
47 if( ! aTokens
.getNextToken( aToken
) )
50 if( IsXMLToken( aToken
, XML_ESCAPEMENT_SUB
) )
52 nVal
= DFLT_ESC_AUTO_SUB
;
54 else if( IsXMLToken( aToken
, XML_ESCAPEMENT_SUPER
) )
56 nVal
= DFLT_ESC_AUTO_SUPER
;
61 if (!::sax::Converter::convertPercent( nNewEsc
, aToken
))
64 nVal
= static_cast<sal_Int16
>(nNewEsc
);
71 bool XMLEscapementPropHdl::exportXML( OUString
& rStrExpValue
, const uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
76 if( rValue
>>= nValue
)
78 if( nValue
== DFLT_ESC_AUTO_SUPER
)
80 aOut
.append( GetXMLToken(XML_ESCAPEMENT_SUPER
) );
82 else if( nValue
== DFLT_ESC_AUTO_SUB
)
84 aOut
.append( GetXMLToken(XML_ESCAPEMENT_SUB
) );
88 ::sax::Converter::convertPercent( aOut
, nValue
);
92 rStrExpValue
= aOut
.makeStringAndClear();
93 return !rStrExpValue
.isEmpty();
99 XMLEscapementHeightPropHdl::~XMLEscapementHeightPropHdl()
104 bool XMLEscapementHeightPropHdl::importXML( const OUString
& rStrImpValue
, uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
106 if( IsXMLToken( rStrImpValue
, XML_CASEMAP_SMALL_CAPS
) )
109 SvXMLTokenEnumerator
aTokens( rStrImpValue
);
111 std::u16string_view aToken
;
112 if( ! aTokens
.getNextToken( aToken
) )
116 if( aTokens
.getNextToken( aToken
) )
119 if (!::sax::Converter::convertPercent( nNewProp
, aToken
))
121 nProp
= static_cast<sal_Int8
>(nNewProp
);
125 sal_Int32 nEscapementPosition
=0;
126 if (::sax::Converter::convertPercent( nEscapementPosition
, aToken
)
127 && (nEscapementPosition
== 0))
129 nProp
= 100; //if escapement position is zero and no escapement height is given the default height should be 100percent and not something smaller (#i91800#)
132 nProp
= sal_Int8(DFLT_ESC_PROP
);
139 bool XMLEscapementHeightPropHdl::exportXML( OUString
& rStrExpValue
, const uno::Any
& rValue
, const SvXMLUnitConverter
& ) const
141 OUStringBuffer
aOut( rStrExpValue
);
143 sal_Int32 nValue
= 0;
144 if( rValue
>>= nValue
)
146 if( !rStrExpValue
.isEmpty() )
149 ::sax::Converter::convertPercent( aOut
, nValue
);
152 rStrExpValue
= aOut
.makeStringAndClear();
153 return !rStrExpValue
.isEmpty();
156 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */