Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 :
21 : #include <escphdl.hxx>
22 :
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>
28 :
29 : using ::rtl::OUString;
30 : using ::rtl::OUStringBuffer;
31 :
32 : using namespace ::com::sun::star;
33 : using namespace ::xmloff::token;
34 :
35 : // this is a copy of defines in svx/inc/escpitem.hxx
36 : #define DFLT_ESC_PROP 58
37 : #define DFLT_ESC_AUTO_SUPER 101
38 : #define DFLT_ESC_AUTO_SUB -101
39 :
40 : ///////////////////////////////////////////////////////////////////////////////
41 : //
42 : // class XMLEscapementPropHdl
43 : //
44 :
45 962 : XMLEscapementPropHdl::~XMLEscapementPropHdl()
46 : {
47 : // nothing to do
48 962 : }
49 :
50 23 : sal_Bool XMLEscapementPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
51 : {
52 : sal_Int16 nVal;
53 :
54 23 : SvXMLTokenEnumerator aTokens( rStrImpValue );
55 :
56 23 : OUString aToken;
57 23 : if( ! aTokens.getNextToken( aToken ) )
58 0 : return sal_False;
59 :
60 23 : if( IsXMLToken( aToken, XML_ESCAPEMENT_SUB ) )
61 : {
62 0 : nVal = DFLT_ESC_AUTO_SUB;
63 : }
64 23 : else if( IsXMLToken( aToken, XML_ESCAPEMENT_SUPER ) )
65 : {
66 2 : nVal = DFLT_ESC_AUTO_SUPER;
67 : }
68 : else
69 : {
70 : sal_Int32 nNewEsc;
71 21 : if (!::sax::Converter::convertPercent( nNewEsc, aToken ))
72 0 : return sal_False;
73 :
74 21 : nVal = (sal_Int16) nNewEsc;
75 : }
76 :
77 23 : rValue <<= nVal;
78 23 : return sal_True;
79 : }
80 :
81 0 : sal_Bool XMLEscapementPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
82 : {
83 0 : sal_Int32 nValue = 0;
84 0 : OUStringBuffer aOut;
85 :
86 0 : if( rValue >>= nValue )
87 : {
88 0 : if( nValue == DFLT_ESC_AUTO_SUPER )
89 : {
90 0 : aOut.append( GetXMLToken(XML_ESCAPEMENT_SUPER) );
91 : }
92 0 : else if( nValue == DFLT_ESC_AUTO_SUB )
93 : {
94 0 : aOut.append( GetXMLToken(XML_ESCAPEMENT_SUB) );
95 : }
96 : else
97 : {
98 0 : ::sax::Converter::convertPercent( aOut, nValue );
99 : }
100 : }
101 :
102 0 : rStrExpValue = aOut.makeStringAndClear();
103 0 : return sal_True;
104 : }
105 :
106 : ///////////////////////////////////////////////////////////////////////////////
107 : //
108 : // class XMLEscapementHeightPropHdl
109 : //
110 :
111 962 : XMLEscapementHeightPropHdl::~XMLEscapementHeightPropHdl()
112 : {
113 : // nothing to do
114 962 : }
115 :
116 23 : sal_Bool XMLEscapementHeightPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
117 : {
118 23 : if( IsXMLToken( rStrImpValue, XML_CASEMAP_SMALL_CAPS ) )
119 0 : return sal_False;
120 :
121 23 : SvXMLTokenEnumerator aTokens( rStrImpValue );
122 :
123 23 : OUString aToken;
124 23 : if( ! aTokens.getNextToken( aToken ) )
125 0 : return sal_False;
126 :
127 : sal_Int8 nProp;
128 23 : if( aTokens.getNextToken( aToken ) )
129 : {
130 : sal_Int32 nNewProp;
131 2 : if (!::sax::Converter::convertPercent( nNewProp, aToken ))
132 0 : return sal_False;
133 2 : nProp = (sal_Int8)nNewProp;
134 : }
135 : else
136 : {
137 21 : sal_Int32 nEscapementPosition=0;
138 21 : if (::sax::Converter::convertPercent( nEscapementPosition, aToken )
139 : && (nEscapementPosition == 0))
140 : {
141 21 : nProp = 100; //if escapement position is zero and no escapement height is given the default height should be 100percent and not something smaller (#i91800#)
142 : }
143 : else
144 0 : nProp = (sal_Int8) DFLT_ESC_PROP;
145 : }
146 :
147 23 : rValue <<= nProp;
148 23 : return sal_True;
149 : }
150 :
151 0 : sal_Bool XMLEscapementHeightPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
152 : {
153 0 : OUStringBuffer aOut( rStrExpValue );
154 :
155 0 : sal_Int32 nValue = 0;
156 0 : if( rValue >>= nValue )
157 : {
158 0 : if( !rStrExpValue.isEmpty() )
159 0 : aOut.append( sal_Unicode(' '));
160 :
161 0 : ::sax::Converter::convertPercent( aOut, nValue );
162 : }
163 :
164 0 : rStrExpValue = aOut.makeStringAndClear();
165 0 : return !rStrExpValue.isEmpty();
166 : }
167 :
168 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|