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 : #include <cdouthdl.hxx>
21 : #include <xmloff/xmltoken.hxx>
22 : #include <xmloff/xmluconv.hxx>
23 : #include <rtl/ustrbuf.hxx>
24 :
25 : #include <com/sun/star/awt/FontStrikeout.hpp>
26 : #include <com/sun/star/uno/Any.hxx>
27 :
28 : using namespace ::com::sun::star;
29 : using namespace ::com::sun::star::awt;
30 : using namespace ::xmloff::token;
31 :
32 : SvXMLEnumMapEntry pXML_CrossedoutType_Enum[] =
33 : {
34 : { XML_NONE, awt::FontStrikeout::NONE },
35 : { XML_SINGLE, awt::FontStrikeout::SINGLE },
36 : { XML_DOUBLE, awt::FontStrikeout::DOUBLE },
37 : { XML_SINGLE, awt::FontStrikeout::BOLD },
38 : { XML_SINGLE, awt::FontStrikeout::SLASH },
39 : { XML_SINGLE, awt::FontStrikeout::X },
40 : { XML_TOKEN_INVALID, 0 }
41 : };
42 :
43 : SvXMLEnumMapEntry pXML_CrossedoutStyle_Enum[] =
44 : {
45 : { XML_NONE, awt::FontStrikeout::NONE },
46 : { XML_SOLID, awt::FontStrikeout::SINGLE },
47 : { XML_SOLID, awt::FontStrikeout::DOUBLE },
48 : { XML_SOLID, awt::FontStrikeout::BOLD },
49 : { XML_SOLID, awt::FontStrikeout::SLASH },
50 : { XML_SOLID, awt::FontStrikeout::X },
51 : { XML_DOTTED, awt::FontStrikeout::SINGLE },
52 : { XML_DASH, awt::FontStrikeout::SINGLE },
53 : { XML_LONG_DASH, awt::FontStrikeout::SINGLE },
54 : { XML_DOT_DASH, awt::FontStrikeout::SINGLE },
55 : { XML_DOT_DOT_DASH, awt::FontStrikeout::SINGLE },
56 : { XML_WAVE, awt::FontStrikeout::SINGLE },
57 : { XML_TOKEN_INVALID, 0 }
58 : };
59 :
60 : SvXMLEnumMapEntry pXML_CrossedoutWidth_Enum[] =
61 : {
62 : { XML_AUTO, awt::FontStrikeout::NONE },
63 : { XML_AUTO, awt::FontStrikeout::SINGLE },
64 : { XML_AUTO, awt::FontStrikeout::DOUBLE },
65 : { XML_BOLD, awt::FontStrikeout::BOLD },
66 : { XML_AUTO, awt::FontStrikeout::SLASH },
67 : { XML_AUTO, awt::FontStrikeout::X },
68 : { XML_THIN, awt::FontStrikeout::NONE },
69 : { XML_MEDIUM, awt::FontStrikeout::NONE },
70 : { XML_THICK, awt::FontStrikeout::NONE },
71 : { XML_TOKEN_INVALID, 0 }
72 : };
73 :
74 : // class XMLCrossedOutTypePropHdl
75 :
76 0 : XMLCrossedOutTypePropHdl::~XMLCrossedOutTypePropHdl()
77 : {
78 : // nothing to do
79 0 : }
80 :
81 0 : bool XMLCrossedOutTypePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
82 : {
83 : sal_uInt16 eNewStrikeout;
84 : bool bRet = SvXMLUnitConverter::convertEnum(
85 0 : eNewStrikeout, rStrImpValue, pXML_CrossedoutType_Enum );
86 0 : if( bRet )
87 : {
88 : // multi property: style and width might be set already.
89 : // If the old value is NONE, the new is used unchanged.
90 0 : sal_Int16 eStrikeout = sal_Int16();
91 0 : if( (rValue >>= eStrikeout) && awt::FontStrikeout::NONE!=eStrikeout )
92 : {
93 0 : switch( eNewStrikeout )
94 : {
95 : case awt::FontStrikeout::NONE:
96 : case awt::FontStrikeout::SINGLE:
97 : // keep existing line style
98 0 : eNewStrikeout = eStrikeout;
99 0 : break;
100 : case awt::FontStrikeout::DOUBLE:
101 : // A double line style has priority over a solid or a bold
102 : // line style,
103 : // but not about any other line style
104 0 : switch( eStrikeout )
105 : {
106 : case awt::FontStrikeout::SINGLE:
107 : case awt::FontStrikeout::BOLD:
108 0 : break;
109 : default:
110 : // If a double line style is not supported for the existing
111 : // value, keep the new one
112 0 : eNewStrikeout = eStrikeout;
113 0 : break;
114 : }
115 0 : break;
116 : default:
117 : OSL_ENSURE( bRet, "unexpected line type value" );
118 0 : break;
119 : }
120 0 : if( eNewStrikeout != eStrikeout )
121 0 : rValue <<= (sal_Int16)eNewStrikeout;
122 : }
123 : else
124 : {
125 0 : rValue <<= (sal_Int16)eNewStrikeout;
126 : }
127 : }
128 :
129 0 : return bRet;
130 : }
131 :
132 0 : bool XMLCrossedOutTypePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
133 : {
134 0 : bool bRet = false;
135 0 : sal_Int16 nValue = sal_Int16();
136 0 : OUStringBuffer aOut;
137 :
138 0 : if (rValue >>= nValue)
139 : {
140 : bRet = SvXMLUnitConverter::convertEnum(
141 0 : aOut, (sal_uInt16)nValue, pXML_CrossedoutType_Enum );
142 0 : if( bRet )
143 0 : rStrExpValue = aOut.makeStringAndClear();
144 : }
145 :
146 0 : return bRet;
147 : }
148 :
149 : // class XMLCrossedOutStylePropHdl
150 :
151 0 : XMLCrossedOutStylePropHdl::~XMLCrossedOutStylePropHdl()
152 : {
153 : // nothing to do
154 0 : }
155 :
156 0 : bool XMLCrossedOutStylePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
157 : {
158 : sal_uInt16 eNewStrikeout;
159 : bool bRet = SvXMLUnitConverter::convertEnum(
160 0 : eNewStrikeout, rStrImpValue, pXML_CrossedoutStyle_Enum );
161 0 : if( bRet )
162 : {
163 : // multi property: style and width might be set already.
164 : // If the old value is NONE, the new is used unchanged.
165 0 : sal_Int16 eStrikeout = sal_Int16();
166 0 : if( (rValue >>= eStrikeout) && awt::FontStrikeout::NONE!=eStrikeout )
167 : {
168 : // one NONE a SINGLE are possible new values. For both, the
169 : // existing value is kept.
170 : }
171 : else
172 : {
173 0 : rValue <<= (sal_Int16)eNewStrikeout;
174 : }
175 : }
176 :
177 0 : return bRet;
178 : }
179 :
180 0 : bool XMLCrossedOutStylePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
181 : {
182 0 : bool bRet = false;
183 0 : sal_Int16 nValue = sal_Int16();
184 0 : OUStringBuffer aOut;
185 :
186 0 : if( rValue >>= nValue )
187 : {
188 : bRet = SvXMLUnitConverter::convertEnum(
189 0 : aOut, (sal_uInt16)nValue, pXML_CrossedoutStyle_Enum );
190 0 : if( bRet )
191 0 : rStrExpValue = aOut.makeStringAndClear();
192 : }
193 :
194 0 : return bRet;
195 : }
196 :
197 : // class XMLCrossedOutWidthPropHdl
198 :
199 0 : XMLCrossedOutWidthPropHdl::~XMLCrossedOutWidthPropHdl()
200 : {
201 : // nothing to do
202 0 : }
203 :
204 0 : bool XMLCrossedOutWidthPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
205 : {
206 : sal_uInt16 eNewStrikeout;
207 : bool bRet = SvXMLUnitConverter::convertEnum(
208 0 : eNewStrikeout, rStrImpValue, pXML_CrossedoutWidth_Enum );
209 0 : if( bRet )
210 : {
211 : // multi property: style and width might be set already.
212 : // If the old value is NONE, the new is used unchanged.
213 0 : sal_Int16 eStrikeout = sal_Int16();
214 0 : if( (rValue >>= eStrikeout) && awt::FontStrikeout::NONE!=eStrikeout )
215 : {
216 0 : switch( eNewStrikeout )
217 : {
218 : case awt::FontStrikeout::NONE:
219 : // keep existing line style
220 0 : eNewStrikeout = eStrikeout;
221 0 : break;
222 : case awt::FontStrikeout::BOLD:
223 0 : switch( eStrikeout )
224 : {
225 : case awt::FontStrikeout::SINGLE:
226 0 : break;
227 : default:
228 : // If a double line style is not supported for the existing
229 : // value, keep the new one
230 0 : eNewStrikeout = eStrikeout;
231 0 : break;
232 : }
233 0 : break;
234 : default:
235 : OSL_ENSURE( bRet, "unexpected line type value" );
236 0 : break;
237 : }
238 0 : if( eNewStrikeout != eStrikeout )
239 0 : rValue <<= (sal_Int16)eNewStrikeout;
240 : }
241 : else
242 : {
243 0 : rValue <<= (sal_Int16)eNewStrikeout;
244 : }
245 : }
246 :
247 0 : return bRet;
248 : }
249 :
250 0 : bool XMLCrossedOutWidthPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
251 : {
252 0 : bool bRet = false;
253 0 : sal_Int16 nValue = sal_Int16();
254 0 : OUStringBuffer aOut;
255 :
256 0 : if( (rValue >>= nValue) && (awt::FontStrikeout::BOLD == nValue) )
257 : {
258 : bRet = SvXMLUnitConverter::convertEnum(
259 0 : aOut, (sal_uInt16)nValue, pXML_CrossedoutWidth_Enum );
260 0 : if( bRet )
261 0 : rStrExpValue = aOut.makeStringAndClear();
262 : }
263 :
264 0 : return bRet;
265 : }
266 :
267 : // class XMLCrossedOutTextPropHdl
268 :
269 0 : XMLCrossedOutTextPropHdl::~XMLCrossedOutTextPropHdl()
270 : {
271 : // nothing to do
272 0 : }
273 :
274 0 : bool XMLCrossedOutTextPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
275 : {
276 0 : bool bRet = false;
277 :
278 0 : if( !rStrImpValue.isEmpty() )
279 : {
280 0 : sal_Int16 eStrikeout = ('/' == rStrImpValue[0]
281 : ? awt::FontStrikeout::SLASH
282 0 : : awt::FontStrikeout::X);
283 0 : rValue <<= (sal_Int16)eStrikeout;
284 0 : bRet = true;
285 : }
286 :
287 0 : return bRet;
288 : }
289 :
290 0 : bool XMLCrossedOutTextPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
291 : {
292 0 : bool bRet = false;
293 0 : sal_Int16 nValue = sal_Int16();
294 :
295 0 : if( (rValue >>= nValue) &&
296 0 : (awt::FontStrikeout::SLASH == nValue || awt::FontStrikeout::X == nValue) )
297 : {
298 0 : rStrExpValue = OUString(
299 0 : static_cast< sal_Unicode>( awt::FontStrikeout::SLASH == nValue ? '/'
300 0 : : 'X' ) );
301 0 : bRet = true;
302 : }
303 :
304 0 : return bRet;
305 : }
306 :
307 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|