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 <rtl/ustrbuf.hxx>
21 : #include "propimp0.hxx"
22 : #include <com/sun/star/drawing/LineDash.hpp>
23 : #include <com/sun/star/util/Duration.hpp>
24 : #include <com/sun/star/uno/Any.hxx>
25 :
26 : #include <sax/tools/converter.hxx>
27 :
28 : #include <xmloff/xmluconv.hxx>
29 : #include <xmloff/xmlimp.hxx>
30 :
31 : #include <tools/time.hxx>
32 :
33 : using namespace ::com::sun::star;
34 :
35 : // implementation of graphic property Stroke
36 :
37 : // implementation of presentation page property Change
38 :
39 : // implementation of an effect duration property handler
40 :
41 2742 : XMLDurationPropertyHdl::~XMLDurationPropertyHdl()
42 : {
43 2742 : }
44 :
45 0 : bool XMLDurationPropertyHdl::importXML(
46 : const OUString& rStrImpValue,
47 : ::com::sun::star::uno::Any& rValue,
48 : const SvXMLUnitConverter& ) const
49 : {
50 0 : util::Duration aDuration;
51 :
52 0 : if (::sax::Converter::convertDuration(aDuration, rStrImpValue))
53 : {
54 0 : const double fSeconds = ((aDuration.Days * 24 + aDuration.Hours) * 60
55 0 : + aDuration.Minutes) * 60
56 0 : + aDuration.Seconds
57 0 : + aDuration.NanoSeconds / static_cast<double>(::tools::Time::nanoSecPerSec);
58 0 : rValue <<= fSeconds;
59 :
60 0 : return true;
61 : }
62 :
63 : SAL_WARN_IF(!rStrImpValue.isEmpty(), "xmloff", "Invalid duration: " << rStrImpValue);
64 :
65 0 : return false;
66 : }
67 :
68 0 : bool XMLDurationPropertyHdl::exportXML(
69 : OUString& rStrExpValue,
70 : const ::com::sun::star::uno::Any& rValue,
71 : const SvXMLUnitConverter& ) const
72 : {
73 0 : double nVal = 0;
74 :
75 0 : if(rValue >>= nVal)
76 : {
77 0 : util::Duration aDuration;
78 0 : aDuration.Seconds = static_cast<sal_uInt16>(nVal);
79 0 : aDuration.NanoSeconds = static_cast<sal_uInt32>((nVal - aDuration.Seconds) * ::tools::Time::nanoSecPerSec);
80 :
81 0 : OUStringBuffer aOut;
82 0 : ::sax::Converter::convertDuration(aOut, aDuration);
83 0 : rStrExpValue = aOut.makeStringAndClear();
84 0 : return true;
85 : }
86 :
87 0 : return false;
88 : }
89 :
90 : // implementation of an opacity property handler
91 :
92 4435 : XMLOpacityPropertyHdl::XMLOpacityPropertyHdl( SvXMLImport* pImport )
93 4435 : : mpImport( pImport )
94 : {
95 4435 : }
96 :
97 8860 : XMLOpacityPropertyHdl::~XMLOpacityPropertyHdl()
98 : {
99 8860 : }
100 :
101 22 : bool XMLOpacityPropertyHdl::importXML(
102 : const OUString& rStrImpValue,
103 : ::com::sun::star::uno::Any& rValue,
104 : const SvXMLUnitConverter& ) const
105 : {
106 22 : bool bRet = false;
107 22 : sal_Int32 nValue = 0;
108 :
109 22 : if( rStrImpValue.indexOf( '%' ) != -1 )
110 : {
111 22 : if (::sax::Converter::convertPercent( nValue, rStrImpValue ))
112 22 : bRet = true;
113 : }
114 : else
115 : {
116 0 : nValue = sal_Int32( rStrImpValue.toDouble() * 100.0 );
117 0 : bRet = true;
118 : }
119 :
120 22 : if( bRet )
121 : {
122 : // check ranges
123 22 : if( nValue < 0 )
124 0 : nValue = 0;
125 22 : if( nValue > 100 )
126 0 : nValue = 100;
127 :
128 : // convert xml opacity to api transparency
129 22 : nValue = 100 - nValue;
130 :
131 : // #i42959#
132 22 : if( mpImport )
133 : {
134 : sal_Int32 nUPD, nBuild;
135 22 : if( mpImport->getBuildIds( nUPD, nBuild ) )
136 : {
137 : // correct import of documents written prior to StarOffice 8/OOO 2.0 final
138 0 : if( (nUPD == 680) && (nBuild < 8951) )
139 0 : nValue = 100 - nValue;
140 : }
141 : }
142 :
143 22 : rValue <<= sal_uInt16(nValue);
144 : }
145 :
146 22 : return bRet;
147 : }
148 :
149 4 : bool XMLOpacityPropertyHdl::exportXML(
150 : OUString& rStrExpValue,
151 : const ::com::sun::star::uno::Any& rValue,
152 : const SvXMLUnitConverter& ) const
153 : {
154 4 : bool bRet = false;
155 4 : sal_uInt16 nVal = sal_uInt16();
156 :
157 4 : if( rValue >>= nVal )
158 : {
159 2 : OUStringBuffer aOut;
160 :
161 2 : nVal = 100 - nVal;
162 2 : ::sax::Converter::convertPercent( aOut, nVal );
163 2 : rStrExpValue = aOut.makeStringAndClear();
164 2 : bRet = true;
165 : }
166 :
167 4 : return bRet;
168 : }
169 :
170 : // implementation of an text animation step amount
171 :
172 7062 : XMLTextAnimationStepPropertyHdl::~XMLTextAnimationStepPropertyHdl()
173 : {
174 7062 : }
175 :
176 0 : bool XMLTextAnimationStepPropertyHdl::importXML(
177 : const OUString& rStrImpValue,
178 : ::com::sun::star::uno::Any& rValue,
179 : const SvXMLUnitConverter& rUnitConverter ) const
180 : {
181 0 : bool bRet = false;
182 0 : sal_Int32 nValue = 0;
183 :
184 0 : const OUString aPX( "px" );
185 0 : sal_Int32 nPos = rStrImpValue.indexOf( aPX );
186 0 : if( nPos != -1 )
187 : {
188 0 : if (::sax::Converter::convertNumber(nValue, rStrImpValue.copy(0, nPos)))
189 : {
190 0 : rValue <<= sal_Int16( -nValue );
191 0 : bRet = true;
192 : }
193 : }
194 : else
195 : {
196 0 : if (rUnitConverter.convertMeasureToCore( nValue, rStrImpValue ))
197 : {
198 0 : rValue <<= sal_Int16( nValue );
199 0 : bRet = true;
200 : }
201 : }
202 :
203 0 : return bRet;
204 : }
205 :
206 0 : bool XMLTextAnimationStepPropertyHdl::exportXML(
207 : OUString& rStrExpValue,
208 : const ::com::sun::star::uno::Any& rValue,
209 : const SvXMLUnitConverter& rUnitConverter ) const
210 : {
211 0 : bool bRet = false;
212 0 : sal_Int16 nVal = sal_Int16();
213 :
214 0 : if( rValue >>= nVal )
215 : {
216 0 : OUStringBuffer aOut;
217 :
218 0 : if( nVal < 0 )
219 : {
220 0 : const OUString aPX( "px" );
221 0 : ::sax::Converter::convertNumber( aOut, (sal_Int32)-nVal );
222 0 : aOut.append( aPX );
223 : }
224 : else
225 : {
226 0 : rUnitConverter.convertMeasureToXML( aOut, nVal );
227 : }
228 :
229 0 : rStrExpValue = aOut.makeStringAndClear();
230 0 : bRet = true;
231 : }
232 :
233 0 : return bRet;
234 : }
235 :
236 : #include "sdxmlexp_impl.hxx"
237 :
238 0 : XMLDateTimeFormatHdl::XMLDateTimeFormatHdl( SvXMLExport* pExport )
239 0 : : mpExport( pExport )
240 : {
241 0 : }
242 :
243 0 : XMLDateTimeFormatHdl::~XMLDateTimeFormatHdl()
244 : {
245 0 : }
246 :
247 0 : bool XMLDateTimeFormatHdl::importXML( const OUString& rStrImpValue, ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& ) const
248 : {
249 0 : rValue <<= rStrImpValue;
250 0 : return true;
251 : }
252 :
253 0 : bool XMLDateTimeFormatHdl::exportXML( OUString& rStrExpValue, const ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& ) const
254 : {
255 0 : sal_Int32 nNumberFormat = 0;
256 0 : if( mpExport && (rValue >>= nNumberFormat) )
257 : {
258 0 : mpExport->addDataStyle( nNumberFormat );
259 0 : rStrExpValue = mpExport->getDataStyleName( nNumberFormat );
260 0 : return true;
261 : }
262 :
263 0 : return false;
264 : }
265 :
266 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|