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 "PageMasterPropHdl.hxx"
22 :
23 : #include <sax/tools/converter.hxx>
24 :
25 : #include <xmloff/xmltoken.hxx>
26 : #include <xmloff/xmluconv.hxx>
27 : #include <xmloff/xmlnumi.hxx>
28 : #include <xmloff/xmlnume.hxx>
29 : #include <rtl/ustrbuf.hxx>
30 : #include <com/sun/star/uno/Any.hxx>
31 : #include <com/sun/star/style/PageStyleLayout.hpp>
32 : #include <comphelper/types.hxx>
33 : #include <comphelper/extract.hxx>
34 :
35 : using ::rtl::OUString;
36 : using ::rtl::OUStringBuffer;
37 :
38 : using namespace ::com::sun::star;
39 : using namespace ::com::sun::star::uno;
40 : using namespace ::com::sun::star::style;
41 : using namespace ::comphelper;
42 : using namespace ::xmloff::token;
43 :
44 :
45 : //______________________________________________________________________________
46 :
47 : #define DEFAULT_PAPERTRAY (sal_Int32(-1))
48 :
49 :
50 : //______________________________________________________________________________
51 : // property handler for style:page-usage (style::PageStyleLayout)
52 :
53 99 : XMLPMPropHdl_PageStyleLayout::~XMLPMPropHdl_PageStyleLayout()
54 : {
55 99 : }
56 :
57 4 : bool XMLPMPropHdl_PageStyleLayout::equals( const Any& rAny1, const Any& rAny2 ) const
58 : {
59 : style::PageStyleLayout eLayout1, eLayout2;
60 4 : return ((rAny1 >>= eLayout1) && (rAny2 >>= eLayout2)) ? (eLayout1 == eLayout2) : sal_False;
61 : }
62 :
63 13 : sal_Bool XMLPMPropHdl_PageStyleLayout::importXML(
64 : const OUString& rStrImpValue,
65 : Any& rValue,
66 : const SvXMLUnitConverter& ) const
67 : {
68 13 : sal_Bool bRet = sal_True;
69 :
70 13 : if( IsXMLToken( rStrImpValue, XML_ALL ) )
71 0 : rValue <<= PageStyleLayout_ALL;
72 13 : else if( IsXMLToken( rStrImpValue, XML_LEFT ) )
73 0 : rValue <<= PageStyleLayout_LEFT;
74 13 : else if( IsXMLToken( rStrImpValue, XML_RIGHT ) )
75 0 : rValue <<= PageStyleLayout_RIGHT;
76 13 : else if( IsXMLToken( rStrImpValue, XML_MIRRORED ) )
77 13 : rValue <<= PageStyleLayout_MIRRORED;
78 : else
79 0 : bRet = sal_False;
80 :
81 13 : return bRet;
82 : }
83 :
84 4 : sal_Bool XMLPMPropHdl_PageStyleLayout::exportXML(
85 : OUString& rStrExpValue,
86 : const Any& rValue,
87 : const SvXMLUnitConverter& ) const
88 : {
89 4 : sal_Bool bRet = sal_False;
90 : PageStyleLayout eLayout;
91 :
92 4 : if( rValue >>= eLayout )
93 : {
94 4 : bRet = sal_True;
95 4 : switch( eLayout )
96 : {
97 : case PageStyleLayout_ALL:
98 0 : rStrExpValue = GetXMLToken( XML_ALL );
99 0 : break;
100 : case PageStyleLayout_LEFT:
101 0 : rStrExpValue = GetXMLToken( XML_LEFT );
102 0 : break;
103 : case PageStyleLayout_RIGHT:
104 0 : rStrExpValue = GetXMLToken( XML_RIGHT );
105 0 : break;
106 : case PageStyleLayout_MIRRORED:
107 4 : rStrExpValue = GetXMLToken( XML_MIRRORED );
108 4 : break;
109 : default:
110 0 : bRet = sal_False;
111 : }
112 : }
113 :
114 4 : return bRet;
115 : }
116 :
117 :
118 : //______________________________________________________________________________
119 : // property handler for style:num-format (style::NumberingType)
120 :
121 86 : XMLPMPropHdl_NumFormat::~XMLPMPropHdl_NumFormat()
122 : {
123 86 : }
124 :
125 24 : sal_Bool XMLPMPropHdl_NumFormat::importXML(
126 : const OUString& rStrImpValue,
127 : Any& rValue,
128 : const SvXMLUnitConverter& rUnitConverter ) const
129 : {
130 24 : sal_Int16 nSync = sal_Int16();
131 24 : sal_Int16 nNumType = NumberingType::NUMBER_NONE;
132 : rUnitConverter.convertNumFormat( nNumType, rStrImpValue, OUString(),
133 24 : sal_True );
134 :
135 24 : if( !(rValue >>= nSync) )
136 24 : nSync = NumberingType::NUMBER_NONE;
137 :
138 : // if num-letter-sync appears before num-format, the function
139 : // XMLPMPropHdl_NumLetterSync::importXML() sets the value
140 : // NumberingType::CHARS_LOWER_LETTER_N
141 24 : if( nSync == NumberingType::CHARS_LOWER_LETTER_N )
142 : {
143 0 : switch( nNumType )
144 : {
145 : case NumberingType::CHARS_LOWER_LETTER:
146 0 : nNumType = NumberingType::CHARS_LOWER_LETTER_N;
147 0 : break;
148 : case NumberingType::CHARS_UPPER_LETTER:
149 0 : nNumType = NumberingType::CHARS_UPPER_LETTER_N;
150 0 : break;
151 : }
152 : }
153 24 : rValue <<= nNumType;
154 :
155 24 : return sal_True;
156 : }
157 :
158 4 : sal_Bool XMLPMPropHdl_NumFormat::exportXML(
159 : OUString& rStrExpValue,
160 : const Any& rValue,
161 : const SvXMLUnitConverter& rUnitConverter ) const
162 : {
163 4 : sal_Bool bRet = sal_False;
164 4 : sal_Int16 nNumType = sal_Int16();
165 :
166 4 : if( rValue >>= nNumType )
167 : {
168 4 : OUStringBuffer aBuffer( 10 );
169 4 : rUnitConverter.convertNumFormat( aBuffer, nNumType );
170 4 : rStrExpValue = aBuffer.makeStringAndClear();
171 4 : bRet = sal_True;
172 : }
173 4 : return bRet;
174 : }
175 :
176 :
177 : //______________________________________________________________________________
178 : // property handler for style:num-letter-sync (style::NumberingType)
179 :
180 86 : XMLPMPropHdl_NumLetterSync::~XMLPMPropHdl_NumLetterSync()
181 : {
182 86 : }
183 :
184 0 : sal_Bool XMLPMPropHdl_NumLetterSync::importXML(
185 : const OUString& rStrImpValue,
186 : Any& rValue,
187 : const SvXMLUnitConverter& rUnitConverter ) const
188 : {
189 : sal_Int16 nNumType;
190 0 : sal_Int16 nSync = NumberingType::NUMBER_NONE;
191 : rUnitConverter.convertNumFormat( nSync, rStrImpValue,
192 0 : GetXMLToken( XML_A ), sal_True );
193 :
194 0 : if( !(rValue >>= nNumType) )
195 0 : nNumType = NumberingType::NUMBER_NONE;
196 :
197 0 : if( nSync == NumberingType::CHARS_LOWER_LETTER_N )
198 : {
199 0 : switch( nNumType )
200 : {
201 : case NumberingType::CHARS_LOWER_LETTER:
202 0 : nNumType = NumberingType::CHARS_LOWER_LETTER_N;
203 0 : break;
204 : case NumberingType::CHARS_UPPER_LETTER:
205 0 : nNumType = NumberingType::CHARS_UPPER_LETTER_N;
206 0 : break;
207 : }
208 : }
209 0 : rValue <<= nNumType;
210 :
211 0 : return sal_True;
212 : }
213 :
214 4 : sal_Bool XMLPMPropHdl_NumLetterSync::exportXML(
215 : OUString& rStrExpValue,
216 : const Any& rValue,
217 : const SvXMLUnitConverter& rUnitConverter ) const
218 : {
219 4 : sal_Bool bRet = sal_False;
220 4 : sal_Int16 nNumType = sal_Int16();
221 :
222 4 : if( rValue >>= nNumType )
223 : {
224 4 : OUStringBuffer aBuffer( 5 );
225 4 : rUnitConverter.convertNumLetterSync( aBuffer, nNumType );
226 4 : rStrExpValue = aBuffer.makeStringAndClear();
227 4 : bRet = !rStrExpValue.isEmpty();
228 : }
229 4 : return bRet;
230 : }
231 :
232 :
233 : //______________________________________________________________________________
234 : // property handler for style:paper-tray-number
235 :
236 0 : XMLPMPropHdl_PaperTrayNumber::~XMLPMPropHdl_PaperTrayNumber()
237 : {
238 0 : }
239 :
240 0 : sal_Bool XMLPMPropHdl_PaperTrayNumber::importXML(
241 : const OUString& rStrImpValue,
242 : Any& rValue,
243 : const SvXMLUnitConverter& ) const
244 : {
245 0 : sal_Bool bRet = sal_False;
246 :
247 0 : if( IsXMLToken( rStrImpValue, XML_DEFAULT ) )
248 : {
249 0 : rValue <<= DEFAULT_PAPERTRAY;
250 0 : bRet = sal_True;
251 : }
252 : else
253 : {
254 : sal_Int32 nPaperTray;
255 0 : if (::sax::Converter::convertNumber( nPaperTray, rStrImpValue, 0 ))
256 : {
257 0 : rValue <<= nPaperTray;
258 0 : bRet = sal_True;
259 : }
260 : }
261 :
262 0 : return bRet;
263 : }
264 :
265 0 : sal_Bool XMLPMPropHdl_PaperTrayNumber::exportXML(
266 : OUString& rStrExpValue,
267 : const Any& rValue,
268 : const SvXMLUnitConverter& ) const
269 : {
270 0 : sal_Bool bRet = sal_False;
271 0 : sal_Int32 nPaperTray = 0;
272 :
273 0 : if( rValue >>= nPaperTray )
274 : {
275 0 : if( nPaperTray == DEFAULT_PAPERTRAY )
276 0 : rStrExpValue = GetXMLToken( XML_DEFAULT );
277 : else
278 : {
279 0 : OUStringBuffer aBuffer;
280 0 : ::sax::Converter::convertNumber( aBuffer, nPaperTray );
281 0 : rStrExpValue = aBuffer.makeStringAndClear();
282 : }
283 0 : bRet = sal_True;
284 : }
285 0 : return bRet;
286 : }
287 :
288 :
289 : //______________________________________________________________________________
290 : // property handler for style:print
291 :
292 344 : XMLPMPropHdl_Print::XMLPMPropHdl_Print( enum XMLTokenEnum eValue ) :
293 344 : sAttrValue( GetXMLToken( eValue ) )
294 : {
295 344 : }
296 :
297 688 : XMLPMPropHdl_Print::~XMLPMPropHdl_Print()
298 : {
299 688 : }
300 :
301 0 : sal_Bool XMLPMPropHdl_Print::importXML(
302 : const OUString& rStrImpValue,
303 : Any& rValue,
304 : const SvXMLUnitConverter& ) const
305 : {
306 0 : sal_Unicode cToken = ' ';
307 0 : sal_Int32 nTokenIndex = 0;
308 0 : sal_Bool bFound = sal_False;
309 :
310 0 : do
311 : {
312 0 : bFound = (sAttrValue == rStrImpValue.getToken( 0, cToken, nTokenIndex ));
313 : }
314 : while ( (nTokenIndex >= 0) && !bFound );
315 :
316 0 : setBOOL( rValue, bFound );
317 0 : return sal_True;
318 : }
319 :
320 0 : sal_Bool XMLPMPropHdl_Print::exportXML(
321 : OUString& rStrExpValue,
322 : const Any& rValue,
323 : const SvXMLUnitConverter& ) const
324 : {
325 0 : if( getBOOL( rValue ) )
326 : {
327 0 : if( !rStrExpValue.isEmpty() )
328 0 : rStrExpValue += OUString( RTL_CONSTASCII_USTRINGPARAM( " " ) );
329 0 : rStrExpValue += sAttrValue;
330 : }
331 :
332 0 : return sal_True;
333 : }
334 :
335 : //______________________________________________________________________________
336 : // property handler for style:table-centering
337 :
338 86 : XMLPMPropHdl_CenterHorizontal::~XMLPMPropHdl_CenterHorizontal()
339 : {
340 86 : }
341 :
342 0 : sal_Bool XMLPMPropHdl_CenterHorizontal::importXML(
343 : const OUString& rStrImpValue,
344 : Any& rValue,
345 : const SvXMLUnitConverter& ) const
346 : {
347 0 : sal_Bool bRet = sal_False;
348 :
349 0 : if (!rStrImpValue.isEmpty())
350 0 : if (IsXMLToken( rStrImpValue, XML_BOTH) ||
351 0 : IsXMLToken( rStrImpValue, XML_HORIZONTAL))
352 : {
353 0 : rValue = ::cppu::bool2any(sal_True);
354 0 : bRet = sal_True;
355 : }
356 :
357 :
358 0 : return bRet;
359 : }
360 :
361 0 : sal_Bool XMLPMPropHdl_CenterHorizontal::exportXML(
362 : OUString& rStrExpValue,
363 : const Any& rValue,
364 : const SvXMLUnitConverter& ) const
365 : {
366 0 : sal_Bool bRet = sal_False;
367 :
368 0 : if ( ::cppu::any2bool( rValue ) )
369 : {
370 0 : bRet = sal_True;
371 0 : if (!rStrExpValue.isEmpty())
372 0 : rStrExpValue = GetXMLToken(XML_BOTH);
373 : else
374 0 : rStrExpValue = GetXMLToken(XML_HORIZONTAL);
375 : }
376 :
377 0 : return bRet;
378 : }
379 :
380 86 : XMLPMPropHdl_CenterVertical::~XMLPMPropHdl_CenterVertical()
381 : {
382 86 : }
383 :
384 0 : sal_Bool XMLPMPropHdl_CenterVertical::importXML(
385 : const OUString& rStrImpValue,
386 : Any& rValue,
387 : const SvXMLUnitConverter& ) const
388 : {
389 0 : sal_Bool bRet = sal_False;
390 :
391 0 : if (!rStrImpValue.isEmpty())
392 0 : if (IsXMLToken(rStrImpValue, XML_BOTH) ||
393 0 : IsXMLToken(rStrImpValue, XML_VERTICAL) )
394 : {
395 0 : rValue = ::cppu::bool2any(sal_True);
396 0 : bRet = sal_True;
397 : }
398 :
399 0 : return bRet;
400 : }
401 :
402 0 : sal_Bool XMLPMPropHdl_CenterVertical::exportXML(
403 : OUString& rStrExpValue,
404 : const Any& rValue,
405 : const SvXMLUnitConverter& ) const
406 : {
407 0 : sal_Bool bRet = sal_False;
408 :
409 0 : if ( ::cppu::any2bool( rValue ) )
410 : {
411 0 : bRet = sal_True;
412 0 : if (!rStrExpValue.isEmpty())
413 0 : rStrExpValue = GetXMLToken(XML_BOTH);
414 : else
415 0 : rStrExpValue = GetXMLToken(XML_VERTICAL);
416 : }
417 :
418 0 : return bRet;
419 : }
420 :
421 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|