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 <chrhghdl.hxx>
22 :
23 : #include <rtl/ustrbuf.hxx>
24 :
25 : #include <com/sun/star/uno/Any.hxx>
26 :
27 : #include <sax/tools/converter.hxx>
28 :
29 : #include <xmloff/xmluconv.hxx>
30 :
31 : using ::rtl::OUString;
32 : using ::rtl::OUStringBuffer;
33 :
34 : using namespace ::com::sun::star;
35 :
36 : // this is a copy of defines in svx/inc/escpitem.hxx
37 : #define DFLT_ESC_PROP 58
38 : #define DFLT_ESC_AUTO_SUPER 101
39 : #define DFLT_ESC_AUTO_SUB -101
40 :
41 : ///////////////////////////////////////////////////////////////////////////////
42 : //
43 : // class XMLEscapementPropHdl
44 : //
45 :
46 970 : XMLCharHeightHdl::~XMLCharHeightHdl()
47 : {
48 : // nothing to do
49 970 : }
50 :
51 546 : sal_Bool XMLCharHeightHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
52 : {
53 546 : if( rStrImpValue.indexOf( sal_Unicode('%') ) == -1 )
54 : {
55 : double fSize;
56 : sal_Int16 const eSrcUnit = ::sax::Converter::GetUnitFromString(
57 546 : rStrImpValue, util::MeasureUnit::POINT );
58 546 : if (::sax::Converter::convertDouble(fSize, rStrImpValue,
59 546 : eSrcUnit, util::MeasureUnit::POINT))
60 : {
61 546 : fSize = ::std::max<double>(fSize, 1.0); // fdo#49876: 0pt is invalid
62 546 : rValue <<= (float)fSize;
63 546 : return sal_True;
64 : }
65 : }
66 :
67 0 : return sal_False;
68 : }
69 :
70 45 : sal_Bool XMLCharHeightHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
71 : {
72 45 : OUStringBuffer aOut;
73 :
74 45 : float fSize = 0;
75 45 : if( rValue >>= fSize )
76 : {
77 45 : fSize = ::std::max<float>(fSize, 1.0f); // fdo#49876: 0pt is invalid
78 : ::sax::Converter::convertDouble(aOut, (double)fSize, true,
79 45 : util::MeasureUnit::POINT, util::MeasureUnit::POINT);
80 45 : aOut.append( sal_Unicode('p'));
81 45 : aOut.append( sal_Unicode('t'));
82 : }
83 :
84 45 : rStrExpValue = aOut.makeStringAndClear();
85 45 : return !rStrExpValue.isEmpty();
86 : }
87 :
88 : ///////////////////////////////////////////////////////////////////////////////
89 : //
90 : // class XMLEscapementHeightPropHdl
91 : //
92 :
93 962 : XMLCharHeightPropHdl::~XMLCharHeightPropHdl()
94 : {
95 : // nothing to do
96 962 : }
97 :
98 546 : sal_Bool XMLCharHeightPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
99 : {
100 546 : if( rStrImpValue.indexOf( sal_Unicode('%') ) != -1 )
101 : {
102 0 : sal_Int32 nPrc = 100;
103 0 : if (::sax::Converter::convertPercent( nPrc, rStrImpValue ))
104 : {
105 0 : rValue <<= (sal_Int16)nPrc;
106 0 : return sal_True;
107 : }
108 : }
109 :
110 546 : return sal_False;
111 : }
112 :
113 0 : sal_Bool XMLCharHeightPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
114 : {
115 0 : OUStringBuffer aOut( rStrExpValue );
116 :
117 0 : sal_Int16 nValue = sal_Int16();
118 0 : if( rValue >>= nValue )
119 : {
120 0 : ::sax::Converter::convertPercent( aOut, nValue );
121 : }
122 :
123 0 : rStrExpValue = aOut.makeStringAndClear();
124 0 : return !rStrExpValue.isEmpty();
125 : }
126 :
127 : ///////////////////////////////////////////////////////////////////////////////
128 : //
129 : // class XMLEscapementPropHdl
130 : //
131 :
132 962 : XMLCharHeightDiffHdl::~XMLCharHeightDiffHdl()
133 : {
134 : // nothing to do
135 962 : }
136 :
137 0 : sal_Bool XMLCharHeightDiffHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
138 : {
139 0 : sal_Int32 nRel = 0;
140 :
141 0 : if (::sax::Converter::convertMeasure( nRel, rStrImpValue,
142 : util::MeasureUnit::POINT ))
143 : {
144 0 : rValue <<= (float)nRel;
145 0 : return sal_True;
146 : }
147 :
148 0 : return sal_False;
149 : }
150 :
151 0 : sal_Bool XMLCharHeightDiffHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
152 : {
153 0 : OUStringBuffer aOut;
154 :
155 0 : float nRel = 0;
156 0 : if( (rValue >>= nRel) && (nRel != 0) )
157 : {
158 : ::sax::Converter::convertMeasure( aOut, static_cast<sal_Int32>(nRel),
159 0 : util::MeasureUnit::POINT, util::MeasureUnit::POINT );
160 0 : rStrExpValue = aOut.makeStringAndClear();
161 : }
162 :
163 0 : return !rStrExpValue.isEmpty();
164 : }
165 :
166 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|