1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 // MARKER(update_precomp.py): autogen include statement, do not remove
23 #include "precompiled_xmloff.hxx"
24 #include "unointerfacetouniqueidentifiermapper.hxx"
25 #include <com/sun/star/text/XText.hpp>
26 #include <com/sun/star/container/XNamed.hpp>
27 #include <com/sun/star/container/XEnumerationAccess.hpp>
28 #include <com/sun/star/drawing/CircleKind.hpp>
29 #include <com/sun/star/drawing/ConnectorType.hpp>
30 #include <com/sun/star/drawing/XControlShape.hpp>
31 #include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
32 #include <com/sun/star/document/XEventsSupplier.hpp>
33 #include <com/sun/star/drawing/HomogenMatrix3.hpp>
34 #include <com/sun/star/media/ZoomLevel.hpp>
35 #include "anim.hxx"
36 #include <xmloff/shapeexport.hxx>
37 #include "sdpropls.hxx"
38 #include <tools/debug.hxx>
39 #include <tools/urlobj.hxx>
40 #include <rtl/ustrbuf.hxx>
41 #include <xmloff/xmlexp.hxx>
42 #include <xmloff/xmluconv.hxx>
43 #include "XMLImageMapExport.hxx"
44 #include "xexptran.hxx"
45 #include <tools/gen.hxx>		// FRound
46 #include <xmloff/xmltoken.hxx>
47 #include <xmloff/nmspmap.hxx>
48 #include "xmloff/xmlnmspe.hxx"
49 #include <basegfx/matrix/b2dhommatrix.hxx>
50 #include <basegfx/tuple/b2dtuple.hxx>
51 #include <basegfx/matrix/b2dhommatrixtools.hxx>
52 #include <basegfx/point/b2dpoint.hxx>
53 #include <basegfx/polygon/b2dpolypolygon.hxx>
54 #include <basegfx/polygon/b2dpolypolygontools.hxx>
55 #include <basegfx/polygon/b2dpolygontools.hxx>
56 
57 using ::rtl::OUString;
58 using ::rtl::OUStringBuffer;
59 
60 using namespace ::com::sun::star;
61 using namespace ::xmloff::token;
62 
63 
64 //////////////////////////////////////////////////////////////////////////////
65 
66 void XMLShapeExport::ImpExportNewTrans(const uno::Reference< beans::XPropertySet >& xPropSet,
67 	sal_Int32 nFeatures, awt::Point* pRefPoint)
68 {
69 	// get matrix
70 	::basegfx::B2DHomMatrix aMatrix;
71 	ImpExportNewTrans_GetB2DHomMatrix(aMatrix, xPropSet);
72 
73 	// decompose and correct abour pRefPoint
74 	::basegfx::B2DTuple aTRScale;
75 	double fTRShear(0.0);
76 	double fTRRotate(0.0);
77 	::basegfx::B2DTuple aTRTranslate;
78 	ImpExportNewTrans_DecomposeAndRefPoint(aMatrix, aTRScale, fTRShear, fTRRotate, aTRTranslate, pRefPoint);
79 
80 	// use features and write
81 	ImpExportNewTrans_FeaturesAndWrite(aTRScale, fTRShear, fTRRotate, aTRTranslate, nFeatures);
82 }
83 
84 void XMLShapeExport::ImpExportNewTrans_GetB2DHomMatrix(::basegfx::B2DHomMatrix& rMatrix,
85 	const uno::Reference< beans::XPropertySet >& xPropSet)
86 {
87     // --> OD 2004-08-09 #i28749# - Get <TransformationInHoriL2R>, if it exist
88     // and if the document is exported into the OpenOffice.org file format.
89     // This property only exists at service com::sun::star::text::Shape - the
90     // Writer UNO service for shapes.
91     // This code is needed, because the positioning attributes in the
92     // OpenOffice.org file format are given in horizontal left-to-right layout
93     // regardless the layout direction the shape is in. In the OASIS Open Office
94     // file format the positioning attributes are correctly given in the layout
95     // direction the shape is in. Thus, this code provides the conversion from
96     // the OASIS Open Office file format to the OpenOffice.org file format.
97     uno::Any aAny;
98     if ( ( GetExport().getExportFlags() & EXPORT_OASIS ) == 0 &&
99          xPropSet->getPropertySetInfo()->hasPropertyByName(
100             OUString(RTL_CONSTASCII_USTRINGPARAM("TransformationInHoriL2R"))) )
101     {
102         aAny = xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("TransformationInHoriL2R")));
103     }
104     else
105     {
106         aAny = xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("Transformation")));
107     }
108     // <--
109 	drawing::HomogenMatrix3 aMatrix;
110 	aAny >>= aMatrix;
111 
112 	rMatrix.set(0, 0, aMatrix.Line1.Column1);
113 	rMatrix.set(0, 1, aMatrix.Line1.Column2);
114 	rMatrix.set(0, 2, aMatrix.Line1.Column3);
115 	rMatrix.set(1, 0, aMatrix.Line2.Column1);
116 	rMatrix.set(1, 1, aMatrix.Line2.Column2);
117 	rMatrix.set(1, 2, aMatrix.Line2.Column3);
118 	rMatrix.set(2, 0, aMatrix.Line3.Column1);
119 	rMatrix.set(2, 1, aMatrix.Line3.Column2);
120 	rMatrix.set(2, 2, aMatrix.Line3.Column3);
121 }
122 
123 void XMLShapeExport::ImpExportNewTrans_DecomposeAndRefPoint(const ::basegfx::B2DHomMatrix& rMatrix, ::basegfx::B2DTuple& rTRScale,
124 	double& fTRShear, double& fTRRotate, ::basegfx::B2DTuple& rTRTranslate, com::sun::star::awt::Point* pRefPoint)
125 {
126 	// decompose matrix
127 	rMatrix.decompose(rTRScale, rTRTranslate, fTRRotate, fTRShear);
128 
129 	// correct translation about pRefPoint
130 	if(pRefPoint)
131 	{
132 		rTRTranslate -= ::basegfx::B2DTuple(pRefPoint->X, pRefPoint->Y);
133 	}
134 }
135 
136 void XMLShapeExport::ImpExportNewTrans_FeaturesAndWrite(::basegfx::B2DTuple& rTRScale, double fTRShear,
137 	double fTRRotate, ::basegfx::B2DTuple& rTRTranslate, const sal_Int32 nFeatures)
138 {
139 	// allways write Size (rTRScale) since this statement carries the union
140 	// of the object
141 	OUString aStr;
142 	OUStringBuffer sStringBuffer;
143 	::basegfx::B2DTuple aTRScale(rTRScale);
144 
145 	// svg: width
146 	if(!(nFeatures & SEF_EXPORT_WIDTH))
147 	{
148 		aTRScale.setX(1.0);
149 	}
150 	else
151 	{
152 		if( aTRScale.getX() > 0.0 )
153 			aTRScale.setX(aTRScale.getX() - 1.0);
154 		else if( aTRScale.getX() < 0.0 )
155 			aTRScale.setX(aTRScale.getX() + 1.0);
156 	}
157 
158 	mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, FRound(aTRScale.getX()));
159 	aStr = sStringBuffer.makeStringAndClear();
160 	mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_WIDTH, aStr);
161 
162 	// svg: height
163 	if(!(nFeatures & SEF_EXPORT_HEIGHT))
164 	{
165 		aTRScale.setY(1.0);
166 	}
167 	else
168 	{
169 		if( aTRScale.getY() > 0.0 )
170 			aTRScale.setY(aTRScale.getY() - 1.0);
171 		else if( aTRScale.getY() < 0.0 )
172 			aTRScale.setY(aTRScale.getY() + 1.0);
173 	}
174 
175 	mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, FRound(aTRScale.getY()));
176 	aStr = sStringBuffer.makeStringAndClear();
177 	mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_HEIGHT, aStr);
178 
179 	// decide if transformation is neccessary
180 	sal_Bool bTransformationIsNeccessary(fTRShear != 0.0 || fTRRotate != 0.0);
181 
182 	if(bTransformationIsNeccessary)
183 	{
184 		// write transformation, but WITHOUT scale which is exported as size above
185 		SdXMLImExTransform2D aTransform;
186 
187 		aTransform.AddSkewX(atan(fTRShear));
188 
189         // #i78696#
190         // fTRRotate is mathematically correct, but due to the error
191         // we export/import it mirrored. Since the API implementation is fixed and
192         // uses the correctly oriented angle, it is necessary for compatibility to
193         // mirror the angle here to stay at the old behaviour. There is a follow-up
194         // task (#i78698#) to fix this in the next ODF FileFormat version
195 		aTransform.AddRotate(-fTRRotate);
196 
197         aTransform.AddTranslate(rTRTranslate);
198 
199 		// does transformation need to be exported?
200 		if(aTransform.NeedsAction())
201 			mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_TRANSFORM, aTransform.GetExportString(mrExport.GetMM100UnitConverter()));
202 	}
203 	else
204 	{
205 		// no shear, no rotate; just add object position to export and we are done
206 		if(nFeatures & SEF_EXPORT_X)
207 		{
208 			// svg: x
209 			mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, FRound(rTRTranslate.getX()));
210 			aStr = sStringBuffer.makeStringAndClear();
211 			mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_X, aStr);
212 		}
213 
214 		if(nFeatures & SEF_EXPORT_Y)
215 		{
216 			// svg: y
217 			mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, FRound(rTRTranslate.getY()));
218 			aStr = sStringBuffer.makeStringAndClear();
219 			mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_Y, aStr);
220 		}
221 	}
222 }
223 
224 //////////////////////////////////////////////////////////////////////////////
225 
226 sal_Bool XMLShapeExport::ImpExportPresentationAttributes( const uno::Reference< beans::XPropertySet >& xPropSet, const rtl::OUString& rClass )
227 {
228 	sal_Bool bIsEmpty = sal_False;
229 
230 	OUStringBuffer sStringBuffer;
231 
232 	// write presentation class entry
233 	mrExport.AddAttribute(XML_NAMESPACE_PRESENTATION, XML_CLASS, rClass);
234 
235 	if( xPropSet.is() )
236 	{
237 		uno::Reference< beans::XPropertySetInfo > xPropSetInfo( xPropSet->getPropertySetInfo() );
238 
239 		sal_Bool bTemp = false;
240 
241 		// is empty pes shape?
242 		if( xPropSetInfo.is() && xPropSetInfo->hasPropertyByName(OUString(RTL_CONSTASCII_USTRINGPARAM("IsEmptyPresentationObject"))))
243 		{
244 			xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("IsEmptyPresentationObject"))) >>= bIsEmpty;
245 			if( bIsEmpty )
246 				mrExport.AddAttribute(XML_NAMESPACE_PRESENTATION, XML_PLACEHOLDER, XML_TRUE);
247 		}
248 
249 		// is user-transformed?
250 		if( xPropSetInfo.is() && xPropSetInfo->hasPropertyByName(OUString(RTL_CONSTASCII_USTRINGPARAM("IsPlaceholderDependent"))))
251 		{
252 			xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("IsPlaceholderDependent"))) >>= bTemp;
253 			if(!bTemp)
254 				mrExport.AddAttribute(XML_NAMESPACE_PRESENTATION, XML_USER_TRANSFORMED, XML_TRUE);
255 		}
256 	}
257 
258 	return bIsEmpty;
259 }
260 
261 //////////////////////////////////////////////////////////////////////////////
262 
263 void XMLShapeExport::ImpExportText( const uno::Reference< drawing::XShape >& xShape )
264 {
265 	uno::Reference< text::XText > xText( xShape, uno::UNO_QUERY );
266 	if( xText.is() )
267 	{
268 		uno::Reference< container::XEnumerationAccess > xEnumAccess( xShape, uno::UNO_QUERY );
269 		if( xEnumAccess.is() && xEnumAccess->hasElements() )
270 			mrExport.GetTextParagraphExport()->exportText( xText );
271 	}
272 }
273 
274 //////////////////////////////////////////////////////////////////////////////
275 #include <com/sun/star/presentation/ClickAction.hpp>
276 #include <com/sun/star/presentation/AnimationSpeed.hpp>
277 
278 namespace {
279 
280 const sal_Int32 FOUND_CLICKACTION       = 0x00000001;
281 const sal_Int32 FOUND_BOOKMARK          = 0x00000002;
282 const sal_Int32 FOUND_EFFECT            = 0x00000004;
283 const sal_Int32 FOUND_PLAYFULL          = 0x00000008;
284 const sal_Int32 FOUND_VERB              = 0x00000010;
285 const sal_Int32 FOUND_SOUNDURL          = 0x00000020;
286 const sal_Int32 FOUND_SPEED             = 0x00000040;
287 const sal_Int32 FOUND_CLICKEVENTTYPE    = 0x00000080;
288 const sal_Int32 FOUND_MACRO             = 0x00000100;
289 const sal_Int32 FOUND_LIBRARY           = 0x00000200;
290 const sal_Int32 FOUND_ACTIONEVENTTYPE   = 0x00000400;
291 #ifdef ISSUE66550_HLINK_FOR_SHAPES
292 const sal_Int32 FOUND_URL               = 0x00000800;
293 #endif
294 
295 } // namespace
296 
297 void XMLShapeExport::ImpExportEvents( const uno::Reference< drawing::XShape >& xShape )
298 {
299     uno::Reference< document::XEventsSupplier > xEventsSupplier( xShape, uno::UNO_QUERY );
300     if( !xEventsSupplier.is() )
301         return;
302 
303     uno::Reference< container::XNameAccess > xEvents( xEventsSupplier->getEvents(), uno::UNO_QUERY );
304     DBG_ASSERT( xEvents.is(), "XEventsSupplier::getEvents() returned NULL" );
305     if( !xEvents.is() )
306         return;
307 
308     sal_Int32 nFound = 0;
309 
310     // extract properties from "OnClick" event --------------------------------
311 
312     OUString aClickEventType;
313     presentation::ClickAction eClickAction = presentation::ClickAction_NONE;
314     presentation::AnimationEffect eEffect = presentation::AnimationEffect_NONE;
315     presentation::AnimationSpeed eSpeed = presentation::AnimationSpeed_SLOW;
316     OUString aStrSoundURL;
317     sal_Bool bPlayFull = false;
318     sal_Int32 nVerb = 0;
319     OUString aStrMacro;
320     OUString aStrLibrary;
321     OUString aStrBookmark;
322 
323     uno::Sequence< beans::PropertyValue > aClickProperties;
324     if( xEvents->hasByName( msOnClick ) && (xEvents->getByName( msOnClick ) >>= aClickProperties) )
325     {
326         const beans::PropertyValue* pProperty = aClickProperties.getConstArray();
327         const beans::PropertyValue* pPropertyEnd = pProperty + aClickProperties.getLength();
328         for( ; pProperty != pPropertyEnd; ++pProperty )
329         {
330             if( ( ( nFound & FOUND_CLICKEVENTTYPE ) == 0 ) && pProperty->Name == msEventType )
331             {
332                 if( pProperty->Value >>= aClickEventType )
333                     nFound |= FOUND_CLICKEVENTTYPE;
334             }
335             else if( ( ( nFound & FOUND_CLICKACTION ) == 0 ) && pProperty->Name == msClickAction )
336             {
337                 if( pProperty->Value >>= eClickAction )
338                     nFound |= FOUND_CLICKACTION;
339             }
340             else if( ( ( nFound & FOUND_MACRO ) == 0 ) && ( pProperty->Name == msMacroName || pProperty->Name == msScript ) )
341             {
342                 if( pProperty->Value >>= aStrMacro )
343                     nFound |= FOUND_MACRO;
344             }
345             else if( ( ( nFound & FOUND_LIBRARY ) == 0 ) && pProperty->Name == msLibrary )
346             {
347                 if( pProperty->Value >>= aStrLibrary )
348                     nFound |= FOUND_LIBRARY;
349             }
350             else if( ( ( nFound & FOUND_EFFECT ) == 0 ) && pProperty->Name == msEffect )
351             {
352                 if( pProperty->Value >>= eEffect )
353                     nFound |= FOUND_EFFECT;
354             }
355             else if( ( ( nFound & FOUND_BOOKMARK ) == 0 ) && pProperty->Name == msBookmark )
356             {
357                 if( pProperty->Value >>= aStrBookmark )
358                     nFound |= FOUND_BOOKMARK;
359             }
360             else if( ( ( nFound & FOUND_SPEED ) == 0 ) && pProperty->Name == msSpeed )
361             {
362                 if( pProperty->Value >>= eSpeed )
363                     nFound |= FOUND_SPEED;
364             }
365             else if( ( ( nFound & FOUND_SOUNDURL ) == 0 ) && pProperty->Name == msSoundURL )
366             {
367                 if( pProperty->Value >>= aStrSoundURL )
368                     nFound |= FOUND_SOUNDURL;
369             }
370             else if( ( ( nFound & FOUND_PLAYFULL ) == 0 ) && pProperty->Name == msPlayFull )
371             {
372                 if( pProperty->Value >>= bPlayFull )
373                     nFound |= FOUND_PLAYFULL;
374             }
375             else if( ( ( nFound & FOUND_VERB ) == 0 ) && pProperty->Name == msVerb )
376             {
377                 if( pProperty->Value >>= nVerb )
378                     nFound |= FOUND_VERB;
379             }
380         }
381     }
382 
383 #ifdef ISSUE66550_HLINK_FOR_SHAPES
384     // extract properties from "OnAction" event -------------------------------
385 
386     OUString aActionEventType;
387     OUString aHyperURL;
388 
389     uno::Sequence< beans::PropertyValue > aActionProperties;
390     if( xEvents->hasByName( msOnAction ) && (xEvents->getByName( msOnAction ) >>= aActionProperties) )
391     {
392         const beans::PropertyValue* pProperty = aActionProperties.getConstArray();
393         const beans::PropertyValue* pPropertyEnd = pProperty + aActionProperties.getLength();
394         for( ; pProperty != pPropertyEnd; ++pProperty )
395         {
396             if( ( ( nFound & FOUND_ACTIONEVENTTYPE ) == 0 ) && pProperty->Name == msEventType )
397             {
398                 if( pProperty->Value >>= aActionEventType )
399                     nFound |= FOUND_ACTIONEVENTTYPE;
400             }
401             else if( ( ( nFound & FOUND_URL ) == 0 ) && ( pProperty->Name == msURL  ) )
402             {
403                 if( pProperty->Value >>= aHyperURL )
404                     nFound |= FOUND_URL;
405             }
406         }
407     }
408 #endif
409 
410     // create the XML elements
411 
412     if( aClickEventType == msPresentation )
413     {
414         if( ((nFound & FOUND_CLICKACTION) == 0) || (eClickAction == presentation::ClickAction_NONE) )
415             return;
416 
417         SvXMLElementExport aEventsElemt(mrExport, XML_NAMESPACE_OFFICE, XML_EVENT_LISTENERS, sal_True, sal_True);
418 
419         enum XMLTokenEnum eStrAction;
420 
421         switch( eClickAction )
422         {
423             case presentation::ClickAction_PREVPAGE:        eStrAction = XML_PREVIOUS_PAGE; break;
424             case presentation::ClickAction_NEXTPAGE:        eStrAction = XML_NEXT_PAGE; break;
425             case presentation::ClickAction_FIRSTPAGE:       eStrAction = XML_FIRST_PAGE; break;
426             case presentation::ClickAction_LASTPAGE:        eStrAction = XML_LAST_PAGE; break;
427             case presentation::ClickAction_INVISIBLE:       eStrAction = XML_HIDE; break;
428             case presentation::ClickAction_STOPPRESENTATION:eStrAction = XML_STOP; break;
429             case presentation::ClickAction_PROGRAM:         eStrAction = XML_EXECUTE; break;
430             case presentation::ClickAction_BOOKMARK:        eStrAction = XML_SHOW; break;
431             case presentation::ClickAction_DOCUMENT:        eStrAction = XML_SHOW; break;
432             case presentation::ClickAction_MACRO:           eStrAction = XML_EXECUTE_MACRO; break;
433             case presentation::ClickAction_VERB:            eStrAction = XML_VERB; break;
434             case presentation::ClickAction_VANISH:          eStrAction = XML_FADE_OUT; break;
435             case presentation::ClickAction_SOUND:           eStrAction = XML_SOUND; break;
436             default:
437                 DBG_ERROR( "unknown presentation::ClickAction found!" );
438                 eStrAction = XML_UNKNOWN;
439         }
440 
441         OUString aEventQName(
442             mrExport.GetNamespaceMap().GetQNameByKey(
443                     XML_NAMESPACE_DOM, OUString( RTL_CONSTASCII_USTRINGPARAM( "click" ) ) ) );
444         mrExport.AddAttribute( XML_NAMESPACE_SCRIPT, XML_EVENT_NAME, aEventQName );
445         mrExport.AddAttribute( XML_NAMESPACE_PRESENTATION, XML_ACTION, eStrAction );
446 
447         if( eClickAction == presentation::ClickAction_VANISH )
448         {
449             if( nFound & FOUND_EFFECT )
450             {
451                 XMLEffect eKind;
452                 XMLEffectDirection eDirection;
453                 sal_Int16 nStartScale;
454                 sal_Bool bIn;
455 
456                 SdXMLImplSetEffect( eEffect, eKind, eDirection, nStartScale, bIn );
457 
458                 if( eKind != EK_none )
459                 {
460                     SvXMLUnitConverter::convertEnum( msBuffer, eKind, aXML_AnimationEffect_EnumMap );
461                     mrExport.AddAttribute( XML_NAMESPACE_PRESENTATION, XML_EFFECT, msBuffer.makeStringAndClear() );
462                 }
463 
464                 if( eDirection != ED_none )
465                 {
466                     SvXMLUnitConverter::convertEnum( msBuffer, eDirection, aXML_AnimationDirection_EnumMap );
467                     mrExport.AddAttribute( XML_NAMESPACE_PRESENTATION, XML_DIRECTION, msBuffer.makeStringAndClear() );
468                 }
469 
470                 if( nStartScale != -1 )
471                 {
472                     SvXMLUnitConverter::convertPercent( msBuffer, nStartScale );
473                     mrExport.AddAttribute( XML_NAMESPACE_PRESENTATION, XML_START_SCALE, msBuffer.makeStringAndClear() );
474                 }
475             }
476 
477             if( nFound & FOUND_SPEED && eEffect != presentation::AnimationEffect_NONE )
478             {
479                  if( eSpeed != presentation::AnimationSpeed_MEDIUM )
480                     {
481                     SvXMLUnitConverter::convertEnum( msBuffer, eSpeed, aXML_AnimationSpeed_EnumMap );
482                     mrExport.AddAttribute( XML_NAMESPACE_PRESENTATION, XML_SPEED, msBuffer.makeStringAndClear() );
483                 }
484             }
485         }
486 
487         if( eClickAction == presentation::ClickAction_PROGRAM ||
488             eClickAction == presentation::ClickAction_BOOKMARK ||
489             eClickAction == presentation::ClickAction_DOCUMENT )
490         {
491             if( eClickAction == presentation::ClickAction_BOOKMARK )
492                 msBuffer.append( sal_Unicode('#') );
493 
494             msBuffer.append( aStrBookmark );
495             mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, GetExport().GetRelativeReference(msBuffer.makeStringAndClear()) );
496             mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
497             mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
498             mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONREQUEST );
499         }
500 
501         if( ( nFound & FOUND_VERB ) && eClickAction == presentation::ClickAction_VERB )
502         {
503             msBuffer.append( nVerb );
504             mrExport.AddAttribute(XML_NAMESPACE_PRESENTATION, XML_VERB, msBuffer.makeStringAndClear());
505         }
506 
507         SvXMLElementExport aEventElemt(mrExport, XML_NAMESPACE_PRESENTATION, XML_EVENT_LISTENER, sal_True, sal_True);
508 
509         if( eClickAction == presentation::ClickAction_VANISH || eClickAction == presentation::ClickAction_SOUND )
510         {
511             if( ( nFound & FOUND_SOUNDURL ) && aStrSoundURL.getLength() != 0 )
512             {
513                 mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, GetExport().GetRelativeReference(aStrSoundURL) );
514                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
515                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_SHOW, XML_NEW );
516                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONREQUEST );
517                 if( nFound & FOUND_PLAYFULL && bPlayFull )
518                     mrExport.AddAttribute( XML_NAMESPACE_PRESENTATION, XML_PLAY_FULL, XML_TRUE );
519 
520                 SvXMLElementExport aElem( mrExport, XML_NAMESPACE_PRESENTATION, XML_SOUND, sal_True, sal_True );
521             }
522        }
523     }
524     else if( aClickEventType == msStarBasic )
525     {
526         if( nFound & FOUND_MACRO )
527         {
528             SvXMLElementExport aEventsElemt(mrExport, XML_NAMESPACE_OFFICE, XML_EVENT_LISTENERS, sal_True, sal_True);
529 
530             mrExport.AddAttribute( XML_NAMESPACE_SCRIPT, XML_LANGUAGE,
531                         mrExport.GetNamespaceMap().GetQNameByKey(
532                             XML_NAMESPACE_OOO,
533                             OUString( RTL_CONSTASCII_USTRINGPARAM(
534                                             "starbasic" ) ) ) );
535             OUString aEventQName(
536                 mrExport.GetNamespaceMap().GetQNameByKey(
537                         XML_NAMESPACE_DOM, OUString( RTL_CONSTASCII_USTRINGPARAM( "click" ) ) ) );
538             mrExport.AddAttribute( XML_NAMESPACE_SCRIPT, XML_EVENT_NAME, aEventQName );
539 
540             if( nFound & FOUND_LIBRARY )
541             {
542                 OUString sLocation( GetXMLToken(
543                     (aStrLibrary.equalsIgnoreAsciiCaseAscii("StarOffice") ||
544                      aStrLibrary.equalsIgnoreAsciiCaseAscii("application") ) ? XML_APPLICATION
545                                                                        : XML_DOCUMENT ) );
546                 OUStringBuffer sTmp( sLocation.getLength() + aStrMacro.getLength() + 1 );
547                 sTmp = sLocation;
548                 sTmp.append( sal_Unicode( ':' ) );
549                 sTmp.append( aStrMacro );
550                 mrExport.AddAttribute(XML_NAMESPACE_SCRIPT, XML_MACRO_NAME,
551                                      sTmp.makeStringAndClear());
552             }
553             else
554             {
555                 mrExport.AddAttribute( XML_NAMESPACE_SCRIPT, XML_MACRO_NAME, aStrMacro );
556             }
557 
558             SvXMLElementExport aEventElemt(mrExport, XML_NAMESPACE_SCRIPT, XML_EVENT_LISTENER, sal_True, sal_True);
559         }
560     }
561 #ifdef ISSUE66550_HLINK_FOR_SHAPES
562     else if( aClickEventType == msScript || aActionEventType == msAction )
563     {
564         if( nFound & ( FOUND_MACRO | FOUND_URL ) )
565 #else
566     else if( aClickEventType == msScript )
567     {
568         if( nFound & FOUND_MACRO )
569 #endif
570         {
571             SvXMLElementExport aEventsElemt(mrExport, XML_NAMESPACE_OFFICE, XML_EVENT_LISTENERS, sal_True, sal_True);
572             if ( nFound & FOUND_MACRO )
573             {
574                 mrExport.AddAttribute( XML_NAMESPACE_SCRIPT, XML_LANGUAGE, mrExport.GetNamespaceMap().GetQNameByKey(
575                          XML_NAMESPACE_OOO, GetXMLToken(XML_SCRIPT) ) );
576                 OUString aEventQName(
577                     mrExport.GetNamespaceMap().GetQNameByKey(
578                             XML_NAMESPACE_DOM, OUString( RTL_CONSTASCII_USTRINGPARAM( "click" ) ) ) );
579                 mrExport.AddAttribute( XML_NAMESPACE_SCRIPT, XML_EVENT_NAME, aEventQName );
580                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_HREF, aStrMacro );
581 
582                 SvXMLElementExport aEventElemt(mrExport, XML_NAMESPACE_SCRIPT, XML_EVENT_LISTENER, sal_True, sal_True);
583             }
584 #ifdef ISSUE66550_HLINK_FOR_SHAPES
585             if ( nFound & FOUND_URL )
586             {
587                 OUString aEventQName(
588                     mrExport.GetNamespaceMap().GetQNameByKey(
589                             XML_NAMESPACE_DOM, OUString( RTL_CONSTASCII_USTRINGPARAM( "action" ) ) ) );
590                 mrExport.AddAttribute( XML_NAMESPACE_SCRIPT, XML_EVENT_NAME, aEventQName );
591                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_HREF, aHyperURL );
592 
593                 SvXMLElementExport aEventElemt(mrExport, XML_NAMESPACE_PRESENTATION, XML_EVENT_LISTENER, sal_True, sal_True);
594             }
595 #endif
596         }
597     }
598 }
599 
600 //////////////////////////////////////////////////////////////////////////////
601 
602 /** #i68101# export shape Title and Description */
603 void XMLShapeExport::ImpExportDescription( const uno::Reference< drawing::XShape >& xShape )
604 {
605 	try
606 	{
607 		OUString aTitle;
608 		OUString aDescription;
609 
610 		uno::Reference< beans::XPropertySet > xProps( xShape, uno::UNO_QUERY_THROW );
611 		xProps->getPropertyValue( OUString::createFromAscii( "Title" ) ) >>= aTitle;
612 		xProps->getPropertyValue( OUString::createFromAscii( "Description" ) ) >>= aDescription;
613 
614 		if(aTitle.getLength())
615 		{
616 			SvXMLElementExport aEventElemt(mrExport, XML_NAMESPACE_SVG, XML_TITLE, sal_True, sal_False);
617 			mrExport.Characters( aTitle );
618 		}
619 
620 		if(aDescription.getLength())
621 		{
622 			SvXMLElementExport aEventElemt(mrExport, XML_NAMESPACE_SVG, XML_DESC, sal_True, sal_False );
623 			mrExport.Characters( aDescription );
624 		}
625 	}
626 	catch( uno::Exception& )
627 	{
628 		DBG_ERROR( "could not export Title and/or Description for shape!" );
629 	}
630 }
631 
632 //////////////////////////////////////////////////////////////////////////////
633 
634 void XMLShapeExport::ImpExportGroupShape( const uno::Reference< drawing::XShape >& xShape, XmlShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
635 {
636 	uno::Reference< drawing::XShapes > xShapes(xShape, uno::UNO_QUERY);
637 	if(xShapes.is() && xShapes->getCount())
638 	{
639 		// write group shape
640 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
641 		SvXMLElementExport aPGR(mrExport, XML_NAMESPACE_DRAW, XML_G, bCreateNewline, sal_True);
642 
643 		ImpExportDescription( xShape ); // #i68101#
644 		ImpExportEvents( xShape );
645 		ImpExportGluePoints( xShape );
646 
647 		// #89764# if export of position is supressed for group shape,
648 		// positions of contained objects should be written relative to
649 		// the upper left edge of the group.
650 		awt::Point aUpperLeft;
651 
652 		if(!(nFeatures & SEF_EXPORT_POSITION))
653 		{
654 			nFeatures |= SEF_EXPORT_POSITION;
655 			aUpperLeft = xShape->getPosition();
656 			pRefPoint = &aUpperLeft;
657 		}
658 
659 		// write members
660 		exportShapes( xShapes, nFeatures, pRefPoint );
661 	}
662 }
663 
664 //////////////////////////////////////////////////////////////////////////////
665 
666 void XMLShapeExport::ImpExportTextBoxShape(
667 	const uno::Reference< drawing::XShape >& xShape,
668 	XmlShapeType eShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
669 {
670 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
671 	if(xPropSet.is())
672 	{
673 		uno::Reference< beans::XPropertySetInfo > xPropSetInfo( xPropSet->getPropertySetInfo() );
674 
675 		// presentation attribute (if presentation)
676 		sal_Bool bIsPresShape(sal_False);
677 		sal_Bool bIsEmptyPresObj(sal_False);
678 		OUString aStr;
679 
680 		switch(eShapeType)
681 		{
682 			case XmlShapeTypePresSubtitleShape:
683 			{
684 				aStr = GetXMLToken(XML_PRESENTATION_SUBTITLE);
685 				bIsPresShape = sal_True;
686 				break;
687 			}
688 			case XmlShapeTypePresTitleTextShape:
689 			{
690 				aStr = GetXMLToken(XML_PRESENTATION_TITLE);
691 				bIsPresShape = sal_True;
692 				break;
693 			}
694 			case XmlShapeTypePresOutlinerShape:
695 			{
696 				aStr = GetXMLToken(XML_PRESENTATION_OUTLINE);
697 				bIsPresShape = sal_True;
698 				break;
699 			}
700 			case XmlShapeTypePresNotesShape:
701 			{
702 				aStr = GetXMLToken(XML_PRESENTATION_NOTES);
703 				bIsPresShape = sal_True;
704 				break;
705 			}
706 			case XmlShapeTypePresHeaderShape:
707 			{
708 				aStr = GetXMLToken(XML_HEADER);
709 				bIsPresShape = sal_True;
710 				break;
711 			}
712 			case XmlShapeTypePresFooterShape:
713 			{
714 				aStr = GetXMLToken(XML_FOOTER);
715 				bIsPresShape = sal_True;
716 				break;
717 			}
718 			case XmlShapeTypePresSlideNumberShape:
719 			{
720 				aStr = GetXMLToken(XML_PAGE_NUMBER);
721 				bIsPresShape = sal_True;
722 				break;
723 			}
724 			case XmlShapeTypePresDateTimeShape:
725 			{
726 				aStr = GetXMLToken(XML_DATE_TIME);
727 				bIsPresShape = sal_True;
728 				break;
729 			}
730 			default:
731 				break;
732 		}
733 
734 		// Transformation
735 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
736 
737 		if(bIsPresShape)
738 			bIsEmptyPresObj = ImpExportPresentationAttributes( xPropSet, aStr );
739 
740 
741 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
742 		SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW,
743 								  XML_FRAME, bCreateNewline, sal_True );
744 
745 		// evtl. corner radius?
746 		sal_Int32 nCornerRadius(0L);
747 		xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("CornerRadius"))) >>= nCornerRadius;
748 		if(nCornerRadius)
749 		{
750 			OUStringBuffer sStringBuffer;
751 			mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, nCornerRadius);
752 			mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_CORNER_RADIUS, sStringBuffer.makeStringAndClear());
753 		}
754 
755 		{
756 			// write text-box
757 			SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_TEXT_BOX, sal_True, sal_True);
758 			if(!bIsEmptyPresObj)
759 				ImpExportText( xShape );
760 		}
761 
762 		ImpExportDescription( xShape ); // #i68101#
763 		ImpExportEvents( xShape );
764 		ImpExportGluePoints( xShape );
765 	}
766 }
767 
768 //////////////////////////////////////////////////////////////////////////////
769 
770 void XMLShapeExport::ImpExportRectangleShape(
771 	const uno::Reference< drawing::XShape >& xShape,
772 	XmlShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
773 {
774 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
775 	if(xPropSet.is())
776 	{
777 		// Transformation
778 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
779 
780 		// evtl. corner radius?
781 		sal_Int32 nCornerRadius(0L);
782 		xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("CornerRadius"))) >>= nCornerRadius;
783 		if(nCornerRadius)
784 		{
785 			OUStringBuffer sStringBuffer;
786 			mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, nCornerRadius);
787 			mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_CORNER_RADIUS, sStringBuffer.makeStringAndClear());
788 		}
789 
790 		// write rectangle
791 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
792 		SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_RECT, bCreateNewline, sal_True);
793 
794 		ImpExportDescription( xShape ); // #i68101#
795 		ImpExportEvents( xShape );
796 		ImpExportGluePoints( xShape );
797 		ImpExportText( xShape );
798 	}
799 }
800 
801 //////////////////////////////////////////////////////////////////////////////
802 
803 void XMLShapeExport::ImpExportLineShape(
804 	const uno::Reference< drawing::XShape >& xShape,
805 	XmlShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
806 {
807 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
808 	if(xPropSet.is())
809 	{
810 		OUString aStr;
811 		OUStringBuffer sStringBuffer;
812 		awt::Point aStart(0,0);
813 		awt::Point aEnd(1,1);
814 
815 		// #85920# use 'Geometry' to get the points of the line
816 		// since this slot take anchor pos into account.
817 
818 		// get matrix
819 		::basegfx::B2DHomMatrix aMatrix;
820 		ImpExportNewTrans_GetB2DHomMatrix(aMatrix, xPropSet);
821 
822 		// decompose and correct about pRefPoint
823 		::basegfx::B2DTuple aTRScale;
824 		double fTRShear(0.0);
825 		double fTRRotate(0.0);
826 		::basegfx::B2DTuple aTRTranslate;
827 		ImpExportNewTrans_DecomposeAndRefPoint(aMatrix, aTRScale, fTRShear, fTRRotate, aTRTranslate, pRefPoint);
828 
829 		// create base position
830 		awt::Point aBasePosition(FRound(aTRTranslate.getX()), FRound(aTRTranslate.getY()));
831 
832 		// get the two points
833 		uno::Any aAny(xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("Geometry"))));
834 		drawing::PointSequenceSequence* pSourcePolyPolygon = (drawing::PointSequenceSequence*)aAny.getValue();
835 
836 		if(pSourcePolyPolygon)
837 		{
838 		    drawing::PointSequence* pOuterSequence = pSourcePolyPolygon->getArray();
839 			if(pOuterSequence)
840 			{
841 		        drawing::PointSequence* pInnerSequence = pOuterSequence++;
842 				if(pInnerSequence)
843 				{
844 				    awt::Point* pArray = pInnerSequence->getArray();
845 					if(pArray)
846 					{
847 						if(pInnerSequence->getLength() > 0)
848 						{
849 							aStart = awt::Point(
850 								pArray->X + aBasePosition.X,
851 								pArray->Y + aBasePosition.Y);
852 							pArray++;
853 						}
854 
855 						if(pInnerSequence->getLength() > 1)
856 						{
857 							aEnd = awt::Point(
858 								pArray->X + aBasePosition.X,
859 								pArray->Y + aBasePosition.Y);
860 						}
861 					}
862 				}
863 			}
864 		}
865 
866 		if( nFeatures & SEF_EXPORT_X )
867 		{
868 			// svg: x1
869 			mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aStart.X);
870 			aStr = sStringBuffer.makeStringAndClear();
871 			mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_X1, aStr);
872 		}
873 		else
874 		{
875 			aEnd.X -= aStart.X;
876 		}
877 
878 		if( nFeatures & SEF_EXPORT_Y )
879 		{
880 			// svg: y1
881 			mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aStart.Y);
882 			aStr = sStringBuffer.makeStringAndClear();
883 			mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_Y1, aStr);
884 		}
885 		else
886 		{
887 			aEnd.Y -= aStart.Y;
888 		}
889 
890 		// svg: x2
891 		mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aEnd.X);
892 		aStr = sStringBuffer.makeStringAndClear();
893 		mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_X2, aStr);
894 
895 		// svg: y2
896 		mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aEnd.Y);
897 		aStr = sStringBuffer.makeStringAndClear();
898 		mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_Y2, aStr);
899 
900 		// write line
901 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
902 		SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_LINE, bCreateNewline, sal_True);
903 
904 		ImpExportDescription( xShape ); // #i68101#
905 		ImpExportEvents( xShape );
906 		ImpExportGluePoints( xShape );
907 		ImpExportText( xShape );
908 	}
909 }
910 
911 //////////////////////////////////////////////////////////////////////////////
912 
913 void XMLShapeExport::ImpExportEllipseShape(
914 	const uno::Reference< drawing::XShape >& xShape,
915 	XmlShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
916 {
917 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
918 	if(xPropSet.is())
919 	{
920 		// get size to decide between Circle and Ellipse
921 		awt::Size aSize = xShape->getSize();
922 		sal_Int32 nRx((aSize.Width + 1) / 2);
923 		sal_Int32 nRy((aSize.Height + 1) / 2);
924 		sal_Bool bCircle(nRx == nRy);
925 
926 		// Transformation
927 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
928 
929 		drawing::CircleKind eKind = drawing::CircleKind_FULL;
930 		xPropSet->getPropertyValue( OUString(RTL_CONSTASCII_USTRINGPARAM("CircleKind")) ) >>= eKind;
931 		if( eKind != drawing::CircleKind_FULL )
932 		{
933 			OUStringBuffer sStringBuffer;
934 			sal_Int32 nStartAngle = 0;
935 			sal_Int32 nEndAngle = 0;
936 			xPropSet->getPropertyValue( OUString(RTL_CONSTASCII_USTRINGPARAM("CircleStartAngle")) ) >>= nStartAngle;
937 			xPropSet->getPropertyValue( OUString(RTL_CONSTASCII_USTRINGPARAM("CircleEndAngle")) ) >>= nEndAngle;
938 
939 			const double dStartAngle = nStartAngle / 100.0;
940 			const double dEndAngle = nEndAngle / 100.0;
941 
942 			// export circle kind
943 			SvXMLUnitConverter::convertEnum( sStringBuffer, (sal_uInt16)eKind, aXML_CircleKind_EnumMap );
944 			mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_KIND, sStringBuffer.makeStringAndClear() );
945 
946 			// export start angle
947 			SvXMLUnitConverter::convertDouble( sStringBuffer, dStartAngle );
948 			mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_START_ANGLE, sStringBuffer.makeStringAndClear() );
949 
950 			// export end angle
951 			SvXMLUnitConverter::convertDouble( sStringBuffer, dEndAngle );
952 			mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_END_ANGLE, sStringBuffer.makeStringAndClear() );
953 		}
954 
955 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
956 
957         // prepare name (with most used)
958         enum ::xmloff::token::XMLTokenEnum eName(XML_CIRCLE);
959 
960         if(bCircle)
961         {
962             // name already set
963         }
964         else
965         {
966             // set name
967             eName = XML_ELLIPSE;
968         }
969 
970         // write ellipse or circle
971         SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, eName, bCreateNewline, sal_True);
972 
973         ImpExportDescription( xShape ); // #i68101#
974         ImpExportEvents( xShape );
975         ImpExportGluePoints( xShape );
976         ImpExportText( xShape );
977     }
978 }
979 
980 //////////////////////////////////////////////////////////////////////////////
981 
982 void XMLShapeExport::ImpExportPolygonShape(
983 	const uno::Reference< drawing::XShape >& xShape,
984 	XmlShapeType eShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
985 {
986 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
987 	if(xPropSet.is())
988 	{
989 		sal_Bool bBezier(eShapeType == XmlShapeTypeDrawClosedBezierShape
990 			|| eShapeType == XmlShapeTypeDrawOpenBezierShape);
991 
992 		// get matrix
993 		::basegfx::B2DHomMatrix aMatrix;
994 		ImpExportNewTrans_GetB2DHomMatrix(aMatrix, xPropSet);
995 
996 		// decompose and correct abour pRefPoint
997 		::basegfx::B2DTuple aTRScale;
998 		double fTRShear(0.0);
999 		double fTRRotate(0.0);
1000 		::basegfx::B2DTuple aTRTranslate;
1001 		ImpExportNewTrans_DecomposeAndRefPoint(aMatrix, aTRScale, fTRShear, fTRRotate, aTRTranslate, pRefPoint);
1002 
1003 		// use features and write
1004 		ImpExportNewTrans_FeaturesAndWrite(aTRScale, fTRShear, fTRRotate, aTRTranslate, nFeatures);
1005 
1006 		// create and export ViewBox
1007 		awt::Point aPoint(0, 0);
1008 		awt::Size aSize(FRound(aTRScale.getX()), FRound(aTRScale.getY()));
1009 		SdXMLImExViewBox aViewBox(0, 0, aSize.Width, aSize.Height);
1010 		mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_VIEWBOX, aViewBox.GetExportString());
1011 
1012 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1013 
1014         // prepare name (with most used)
1015         enum ::xmloff::token::XMLTokenEnum eName(XML_PATH);
1016 
1017         if(bBezier)
1018         {
1019             // get PolygonBezier
1020             uno::Any aAny( xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("Geometry"))) );
1021             const basegfx::B2DPolyPolygon aPolyPolygon(
1022                 basegfx::tools::UnoPolyPolygonBezierCoordsToB2DPolyPolygon(*(drawing::PolyPolygonBezierCoords*)aAny.getValue()));
1023 
1024             if(aPolyPolygon.count())
1025             {
1026                 // complex polygon shape, write as svg:d
1027                 const ::rtl::OUString aPolygonString(
1028                     basegfx::tools::exportToSvgD(
1029                         aPolyPolygon,
1030                         true,       // bUseRelativeCoordinates
1031                         false,      // bDetectQuadraticBeziers: not used in old, but maybe activated now
1032                         true));     // bHandleRelativeNextPointCompatible
1033 
1034                 // write point array
1035                 mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_D, aPolygonString);
1036             }
1037         }
1038         else
1039         {
1040             // get non-bezier polygon
1041             uno::Any aAny( xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("Geometry"))) );
1042             const basegfx::B2DPolyPolygon aPolyPolygon(
1043                 basegfx::tools::UnoPointSequenceSequenceToB2DPolyPolygon(*(drawing::PointSequenceSequence*)aAny.getValue()));
1044 
1045             if(!aPolyPolygon.areControlPointsUsed() && 1 == aPolyPolygon.count())
1046             {
1047                 // simple polygon shape, can be written as svg:points sequence
1048                 const basegfx::B2DPolygon aPolygon(aPolyPolygon.getB2DPolygon(0));
1049                 const ::rtl::OUString aPointString(basegfx::tools::exportToSvgPoints(aPolygon));
1050 
1051                 // write point array
1052                 mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_POINTS, aPointString);
1053 
1054                 // set name
1055                 eName = aPolygon.isClosed() ? XML_POLYGON : XML_POLYLINE;
1056             }
1057             else
1058             {
1059                 // complex polygon shape, write as svg:d
1060                 const ::rtl::OUString aPolygonString(
1061                     basegfx::tools::exportToSvgD(
1062                         aPolyPolygon,
1063                         true,       // bUseRelativeCoordinates
1064                         false,      // bDetectQuadraticBeziers: not used in old, but maybe activated now
1065                         true));     // bHandleRelativeNextPointCompatible
1066 
1067                 // write point array
1068                 mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_D, aPolygonString);
1069             }
1070         }
1071 
1072         // write object, but after attributes are added since this call will
1073         // consume all of these added attributes and the destructor will close the
1074         // scope. Also before text is added; this may add sub-scopes as needed
1075         SvXMLElementExport aOBJ(
1076             mrExport,
1077             XML_NAMESPACE_DRAW,
1078             eName,
1079             bCreateNewline,
1080             sal_True);
1081 
1082         ImpExportDescription( xShape ); // #i68101#
1083         ImpExportEvents( xShape );
1084         ImpExportGluePoints( xShape );
1085         ImpExportText( xShape );
1086     }
1087 }
1088 
1089 //////////////////////////////////////////////////////////////////////////////
1090 
1091 void XMLShapeExport::ImpExportGraphicObjectShape(
1092     const uno::Reference< drawing::XShape >& xShape,
1093     XmlShapeType eShapeType,
1094     sal_Int32 nFeatures,
1095     awt::Point* pRefPoint )
1096 {
1097     const uno::Reference< beans::XPropertySet > xPropSet( xShape, uno::UNO_QUERY );
1098     if ( xPropSet.is() )
1099     {
1100         sal_Bool bIsEmptyPresObj = sal_False;
1101         uno::Reference< beans::XPropertySetInfo > xPropSetInfo( xPropSet->getPropertySetInfo() );
1102 
1103         // Transformation
1104         ImpExportNewTrans( xPropSet, nFeatures, pRefPoint );
1105 
1106         OUString sImageURL;
1107 
1108         if ( eShapeType == XmlShapeTypePresGraphicObjectShape )
1109             bIsEmptyPresObj = ImpExportPresentationAttributes( xPropSet, GetXMLToken( XML_PRESENTATION_GRAPHIC ) );
1110 
1111         sal_Bool bCreateNewline( ( nFeatures & SEF_EXPORT_NO_WS ) == 0 ); // #86116#/#92210#
1112         SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW, XML_FRAME, bCreateNewline, sal_True );
1113 
1114         const bool bSaveBackwardsCompatible = ( mrExport.getExportFlags() & EXPORT_SAVEBACKWARDCOMPATIBLE );
1115 
1116         if ( !bIsEmptyPresObj || bSaveBackwardsCompatible )
1117         {
1118             if ( !bIsEmptyPresObj )
1119             {
1120                 OUString aReplacementUrl;
1121                 xPropSet->getPropertyValue( OUString(RTL_CONSTASCII_USTRINGPARAM("ReplacementGraphicURL"))) >>= aReplacementUrl;
1122 
1123                 // If there is no url, then then graphic is empty
1124                 if ( aReplacementUrl.getLength() )
1125                 {
1126                     const OUString aStr = mrExport.AddEmbeddedGraphicObject(aReplacementUrl);
1127 
1128                     if(aStr.getLength())
1129                     {
1130                         mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, aStr);
1131                         mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1132                         mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1133                         mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1134 
1135                         // xlink:href for replacement, only written for Svg content
1136                         SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_IMAGE, sal_True, sal_True);
1137 
1138                         // optional office:binary-data
1139                         mrExport.AddEmbeddedGraphicObjectAsBase64(aReplacementUrl);
1140                     }
1141                 }
1142 
1143                 OUString aStreamURL;
1144                 xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "GraphicStreamURL" ) ) ) >>= aStreamURL;
1145                 xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "GraphicURL" ) ) ) >>= sImageURL;
1146 
1147                 OUString aResolveURL( sImageURL );
1148                 const rtl::OUString sPackageURL( RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.Package:" ) );
1149 
1150                 // sj: trying to preserve the filename
1151                 if ( aStreamURL.match( sPackageURL, 0 ) )
1152                 {
1153                     rtl::OUString sRequestedName( aStreamURL.copy( sPackageURL.getLength(), aStreamURL.getLength() - sPackageURL.getLength() ) );
1154                     sal_Int32 nLastIndex = sRequestedName.lastIndexOf( '/' ) + 1;
1155                     if ( ( nLastIndex > 0 ) && ( nLastIndex < sRequestedName.getLength() ) )
1156                         sRequestedName = sRequestedName.copy( nLastIndex, sRequestedName.getLength() - nLastIndex );
1157                     nLastIndex = sRequestedName.lastIndexOf( '.' );
1158                     if ( nLastIndex >= 0 )
1159                         sRequestedName = sRequestedName.copy( 0, nLastIndex );
1160                     if ( sRequestedName.getLength() )
1161                     {
1162                         aResolveURL = aResolveURL.concat( OUString( RTL_CONSTASCII_USTRINGPARAM( "?requestedName=" ) ) );
1163                         aResolveURL = aResolveURL.concat( sRequestedName );
1164                     }
1165                 }
1166 
1167                 const OUString aStr = mrExport.AddEmbeddedGraphicObject( aResolveURL );
1168                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_HREF, aStr );
1169 
1170                 if ( !aStr.isEmpty() )
1171                 {
1172                     aStreamURL = sPackageURL;
1173                     if ( aStr[0] == '#' )
1174                     {
1175                         aStreamURL = aStreamURL.concat( aStr.copy( 1, aStr.getLength() - 1 ) );
1176                     }
1177                     else
1178                     {
1179                         aStreamURL = aStreamURL.concat( aStr );
1180                     }
1181 
1182                     // update stream URL for load on demand
1183                     uno::Any aAny;
1184                     aAny <<= aStreamURL;
1185                     xPropSet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "GraphicStreamURL" ) ), aAny );
1186 
1187                     mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1188                     mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1189                     mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1190                 }
1191             }
1192             else
1193             {
1194                 OUString aStr;
1195                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_HREF, aStr );
1196                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1197                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1198                 mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1199             }
1200 
1201             {
1202                 SvXMLElementExport aOBJ( mrExport, XML_NAMESPACE_DRAW, XML_IMAGE, sal_True, sal_True );
1203 
1204                 if ( sImageURL.getLength() )
1205                 {
1206                     // optional office:binary-data
1207                     mrExport.AddEmbeddedGraphicObjectAsBase64( sImageURL );
1208                 }
1209                 if ( !bIsEmptyPresObj )
1210                     ImpExportText( xShape );
1211             }
1212         }
1213 
1214         ImpExportEvents( xShape );
1215         ImpExportGluePoints( xShape );
1216 
1217         // image map
1218         GetExport().GetImageMapExport().Export( xPropSet );
1219         ImpExportDescription( xShape ); // #i68101#
1220     }
1221 }
1222 
1223 //////////////////////////////////////////////////////////////////////////////
1224 
1225 void XMLShapeExport::ImpExportChartShape(
1226 	const uno::Reference< drawing::XShape >& xShape,
1227 	XmlShapeType eShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint,
1228     SvXMLAttributeList* pAttrList )
1229 {
1230 	ImpExportOLE2Shape( xShape, eShapeType, nFeatures, pRefPoint, pAttrList );
1231 }
1232 
1233 //////////////////////////////////////////////////////////////////////////////
1234 
1235 void XMLShapeExport::ImpExportControlShape(
1236 	const uno::Reference< drawing::XShape >& xShape,
1237 	XmlShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
1238 {
1239 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
1240 	if(xPropSet.is())
1241 	{
1242 		// Transformation
1243 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
1244 	}
1245 
1246 	uno::Reference< drawing::XControlShape > xControl( xShape, uno::UNO_QUERY );
1247 	DBG_ASSERT( xControl.is(), "Control shape is not supporting XControlShape" );
1248 	if( xControl.is() )
1249 	{
1250 		uno::Reference< beans::XPropertySet > xControlModel( xControl->getControl(), uno::UNO_QUERY );
1251 		DBG_ASSERT( xControlModel.is(), "Control shape has not XControlModel" );
1252 		if( xControlModel.is() )
1253 		{
1254 			mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_CONTROL, mrExport.GetFormExport()->getControlId( xControlModel ) );
1255 		}
1256 	}
1257 
1258 	sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1259 	SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_CONTROL, bCreateNewline, sal_True);
1260 
1261 	ImpExportDescription( xShape ); // #i68101#
1262 }
1263 
1264 //////////////////////////////////////////////////////////////////////////////
1265 
1266 void XMLShapeExport::ImpExportConnectorShape(
1267 	const uno::Reference< drawing::XShape >& xShape,
1268 	XmlShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */)
1269 {
1270 	uno::Reference< beans::XPropertySet > xProps( xShape, uno::UNO_QUERY );
1271 
1272 	OUString aStr;
1273 	OUStringBuffer sStringBuffer;
1274 
1275 	// export connection kind
1276 	drawing::ConnectorType eType = drawing::ConnectorType_STANDARD;
1277 	uno::Any aAny = xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EdgeKind")));
1278 	aAny >>= eType;
1279 
1280 	if( eType != drawing::ConnectorType_STANDARD )
1281 	{
1282 		SvXMLUnitConverter::convertEnum( sStringBuffer, (sal_uInt16)eType, aXML_ConnectionKind_EnumMap );
1283 		aStr = sStringBuffer.makeStringAndClear();
1284 		mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_TYPE, aStr);
1285 	}
1286 
1287 	// export line skew
1288 	sal_Int32 nDelta1 = 0, nDelta2 = 0, nDelta3 = 0;
1289 
1290 	aAny = xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EdgeLine1Delta")));
1291 	aAny >>= nDelta1;
1292 	aAny = xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EdgeLine2Delta")));
1293 	aAny >>= nDelta2;
1294 	aAny = xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EdgeLine3Delta")));
1295 	aAny >>= nDelta3;
1296 
1297 	if( nDelta1 != 0 || nDelta2 != 0 || nDelta3 != 0 )
1298 	{
1299 		mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, nDelta1);
1300 		if( nDelta2 != 0 || nDelta3 != 0 )
1301 		{
1302 			const char aSpace = ' ';
1303 			sStringBuffer.appendAscii( &aSpace, 1 );
1304 			mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, nDelta2);
1305 			if( nDelta3 != 0 )
1306 			{
1307 				sStringBuffer.appendAscii( &aSpace, 1 );
1308 				mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, nDelta3);
1309 			}
1310 		}
1311 
1312 		aStr = sStringBuffer.makeStringAndClear();
1313 		mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_LINE_SKEW, aStr);
1314 	}
1315 
1316 	// export start and end point
1317 	awt::Point aStart(0,0);
1318 	awt::Point aEnd(1,1);
1319 
1320     // --> OD 2004-08-09 #i36248# - Get <StartPositionInHoriL2R> and
1321     // <EndPositionInHoriL2R>, if they exist and if the document is exported
1322     // into the OpenOffice.org file format.
1323     // These properties only exist at service com::sun::star::text::Shape - the
1324     // Writer UNO service for shapes.
1325     // This code is needed, because the positioning attributes in the
1326     // OpenOffice.org file format are given in horizontal left-to-right layout
1327     // regardless the layout direction the shape is in. In the OASIS Open Office
1328     // file format the positioning attributes are correctly given in the layout
1329     // direction the shape is in. Thus, this code provides the conversion from
1330     // the OASIS Open Office file format to the OpenOffice.org file format.
1331     if ( ( GetExport().getExportFlags() & EXPORT_OASIS ) == 0 &&
1332          xProps->getPropertySetInfo()->hasPropertyByName(
1333             OUString(RTL_CONSTASCII_USTRINGPARAM("StartPositionInHoriL2R"))) &&
1334          xProps->getPropertySetInfo()->hasPropertyByName(
1335             OUString(RTL_CONSTASCII_USTRINGPARAM("EndPositionInHoriL2R"))) )
1336     {
1337         xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("StartPositionInHoriL2R"))) >>= aStart;
1338         xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EndPositionInHoriL2R"))) >>= aEnd;
1339     }
1340     else
1341     {
1342         xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("StartPosition"))) >>= aStart;
1343         xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EndPosition"))) >>= aEnd;
1344     }
1345     // <--
1346 
1347 	if( pRefPoint )
1348 	{
1349 		aStart.X -= pRefPoint->X;
1350 		aStart.Y -= pRefPoint->Y;
1351 		aEnd.X -= pRefPoint->X;
1352 		aEnd.Y -= pRefPoint->Y;
1353 	}
1354 
1355 	if( nFeatures & SEF_EXPORT_X )
1356 	{
1357 		// svg: x1
1358 		mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aStart.X);
1359 		aStr = sStringBuffer.makeStringAndClear();
1360 		mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_X1, aStr);
1361 	}
1362 	else
1363 	{
1364 		aEnd.X -= aStart.X;
1365 	}
1366 
1367 	if( nFeatures & SEF_EXPORT_Y )
1368 	{
1369 		// svg: y1
1370 		mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aStart.Y);
1371 		aStr = sStringBuffer.makeStringAndClear();
1372 		mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_Y1, aStr);
1373 	}
1374 	else
1375 	{
1376 		aEnd.Y -= aStart.Y;
1377 	}
1378 
1379 	// svg: x2
1380 	mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aEnd.X);
1381 	aStr = sStringBuffer.makeStringAndClear();
1382 	mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_X2, aStr);
1383 
1384 	// svg: y2
1385 	mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aEnd.Y);
1386 	aStr = sStringBuffer.makeStringAndClear();
1387 	mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_Y2, aStr);
1388 
1389 	// #i39320#
1390 	uno::Reference< uno::XInterface > xRefS;
1391 	uno::Reference< uno::XInterface > xRefE;
1392 
1393 	// export start connection
1394 	xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("StartShape") ) ) >>= xRefS;
1395 	if( xRefS.is() )
1396 	{
1397 		const OUString& rShapeId = mrExport.getInterfaceToIdentifierMapper().getIdentifier( xRefS );
1398 		mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_START_SHAPE, rShapeId);
1399 
1400 		aAny = xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("StartGluePointIndex")) );
1401 		sal_Int32 nGluePointId = 0;
1402 		if( aAny >>= nGluePointId )
1403 		{
1404 			if( nGluePointId != -1 )
1405 			{
1406 				mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_START_GLUE_POINT, OUString::valueOf( nGluePointId ));
1407 			}
1408 		}
1409 	}
1410 
1411 	// export end connection
1412 	xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EndShape")) ) >>= xRefE;
1413 	if( xRefE.is() )
1414 	{
1415 		const OUString& rShapeId = mrExport.getInterfaceToIdentifierMapper().getIdentifier( xRefE );
1416 		mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_END_SHAPE, rShapeId);
1417 
1418 		aAny = xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EndGluePointIndex")) );
1419 		sal_Int32 nGluePointId = 0;
1420 		if( aAny >>= nGluePointId )
1421 		{
1422 			if( nGluePointId != -1 )
1423 			{
1424 				mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_END_GLUE_POINT, OUString::valueOf( nGluePointId ));
1425 			}
1426 		}
1427 	}
1428 
1429     if( xProps->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM("PolyPolygonBezier") ) ) >>= aAny )
1430     {
1431         // get PolygonBezier
1432         drawing::PolyPolygonBezierCoords* pSourcePolyPolygon = (drawing::PolyPolygonBezierCoords*)aAny.getValue();
1433 
1434         if(pSourcePolyPolygon && pSourcePolyPolygon->Coordinates.getLength())
1435         {
1436             const basegfx::B2DPolyPolygon aPolyPolygon(
1437                 basegfx::tools::UnoPolyPolygonBezierCoordsToB2DPolyPolygon(
1438                     *pSourcePolyPolygon));
1439             const ::rtl::OUString aPolygonString(
1440                 basegfx::tools::exportToSvgD(
1441                     aPolyPolygon,
1442                     true,           // bUseRelativeCoordinates
1443                     false,          // bDetectQuadraticBeziers: not used in old, but maybe activated now
1444                     true));         // bHandleRelativeNextPointCompatible
1445 
1446             // write point array
1447             mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_D, aPolygonString);
1448         }
1449     }
1450 
1451 	// write connector shape. Add Export later.
1452 	sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1453 	SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_CONNECTOR, bCreateNewline, sal_True);
1454 
1455 	ImpExportDescription( xShape ); // #i68101#
1456 	ImpExportEvents( xShape );
1457 	ImpExportGluePoints( xShape );
1458 	ImpExportText( xShape );
1459 }
1460 
1461 //////////////////////////////////////////////////////////////////////////////
1462 
1463 void XMLShapeExport::ImpExportMeasureShape(
1464 	const uno::Reference< drawing::XShape >& xShape,
1465 	XmlShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */)
1466 {
1467 	uno::Reference< beans::XPropertySet > xProps( xShape, uno::UNO_QUERY );
1468 
1469 	OUString aStr;
1470 	OUStringBuffer sStringBuffer;
1471 
1472 	// export start and end point
1473 	awt::Point aStart(0,0);
1474 	awt::Point aEnd(1,1);
1475 
1476     // --> OD 2004-08-09 #i36248# - Get <StartPositionInHoriL2R> and
1477     // <EndPositionInHoriL2R>, if they exist and if the document is exported
1478     // into the OpenOffice.org file format.
1479     // These properties only exist at service com::sun::star::text::Shape - the
1480     // Writer UNO service for shapes.
1481     // This code is needed, because the positioning attributes in the
1482     // OpenOffice.org file format are given in horizontal left-to-right layout
1483     // regardless the layout direction the shape is in. In the OASIS Open Office
1484     // file format the positioning attributes are correctly given in the layout
1485     // direction the shape is in. Thus, this code provides the conversion from
1486     // the OASIS Open Office file format to the OpenOffice.org file format.
1487     if ( ( GetExport().getExportFlags() & EXPORT_OASIS ) == 0 &&
1488          xProps->getPropertySetInfo()->hasPropertyByName(
1489             OUString(RTL_CONSTASCII_USTRINGPARAM("StartPositionInHoriL2R"))) &&
1490          xProps->getPropertySetInfo()->hasPropertyByName(
1491             OUString(RTL_CONSTASCII_USTRINGPARAM("EndPositionInHoriL2R"))) )
1492     {
1493         xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("StartPositionInHoriL2R"))) >>= aStart;
1494         xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EndPositionInHoriL2R"))) >>= aEnd;
1495     }
1496     else
1497     {
1498         xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("StartPosition"))) >>= aStart;
1499         xProps->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("EndPosition"))) >>= aEnd;
1500     }
1501     // <--
1502 
1503 	if( pRefPoint )
1504 	{
1505 		aStart.X -= pRefPoint->X;
1506 		aStart.Y -= pRefPoint->Y;
1507 		aEnd.X -= pRefPoint->X;
1508 		aEnd.Y -= pRefPoint->Y;
1509 	}
1510 
1511 	if( nFeatures & SEF_EXPORT_X )
1512 	{
1513 		// svg: x1
1514 		mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aStart.X);
1515 		aStr = sStringBuffer.makeStringAndClear();
1516 		mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_X1, aStr);
1517 	}
1518 	else
1519 	{
1520 		aEnd.X -= aStart.X;
1521 	}
1522 
1523 	if( nFeatures & SEF_EXPORT_Y )
1524 	{
1525 		// svg: y1
1526 		mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aStart.Y);
1527 		aStr = sStringBuffer.makeStringAndClear();
1528 		mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_Y1, aStr);
1529 	}
1530 	else
1531 	{
1532 		aEnd.Y -= aStart.Y;
1533 	}
1534 
1535 	// svg: x2
1536 	mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aEnd.X);
1537 	aStr = sStringBuffer.makeStringAndClear();
1538 	mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_X2, aStr);
1539 
1540 	// svg: y2
1541 	mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, aEnd.Y);
1542 	aStr = sStringBuffer.makeStringAndClear();
1543 	mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_Y2, aStr);
1544 
1545 	// write measure shape
1546 	sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1547 	SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_MEASURE, bCreateNewline, sal_True);
1548 
1549 	ImpExportDescription( xShape ); // #i68101#
1550 	ImpExportEvents( xShape );
1551 	ImpExportGluePoints( xShape );
1552 
1553 	uno::Reference< text::XText > xText( xShape, uno::UNO_QUERY );
1554 	if( xText.is() )
1555 		mrExport.GetTextParagraphExport()->exportText( xText );
1556 }
1557 
1558 //////////////////////////////////////////////////////////////////////////////
1559 
1560 void XMLShapeExport::ImpExportOLE2Shape(
1561 	const uno::Reference< drawing::XShape >& xShape,
1562 	XmlShapeType eShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */,
1563     SvXMLAttributeList* pAttrList /* = NULL */ )
1564 {
1565 	uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
1566 	uno::Reference< container::XNamed > xNamed(xShape, uno::UNO_QUERY);
1567 
1568 	DBG_ASSERT( xPropSet.is() && xNamed.is(), "ole shape is not implementing needed interfaces");
1569 	if(xPropSet.is() && xNamed.is())
1570 	{
1571 		// Transformation
1572 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
1573 
1574 		sal_Bool bIsEmptyPresObj = sal_False;
1575 
1576 		// presentation settings
1577 		if(eShapeType == XmlShapeTypePresOLE2Shape)
1578 			bIsEmptyPresObj = ImpExportPresentationAttributes( xPropSet, GetXMLToken(XML_PRESENTATION_OBJECT) );
1579 		else if(eShapeType == XmlShapeTypePresChartShape)
1580 			bIsEmptyPresObj = ImpExportPresentationAttributes( xPropSet, GetXMLToken(XML_PRESENTATION_CHART) );
1581 		else if(eShapeType == XmlShapeTypePresSheetShape)
1582 			bIsEmptyPresObj = ImpExportPresentationAttributes( xPropSet, GetXMLToken(XML_PRESENTATION_TABLE) );
1583 
1584 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1585 		sal_Bool bExportEmbedded(0 != (mrExport.getExportFlags() & EXPORT_EMBEDDED));
1586 		OUString sPersistName;
1587 		SvXMLElementExport aElement( mrExport, XML_NAMESPACE_DRAW,
1588 								  XML_FRAME, bCreateNewline, sal_True );
1589 
1590 		const bool bSaveBackwardsCompatible = ( mrExport.getExportFlags() & EXPORT_SAVEBACKWARDCOMPATIBLE );
1591 
1592 		if( !bIsEmptyPresObj || bSaveBackwardsCompatible )
1593 		{
1594             if (pAttrList)
1595             {
1596                 mrExport.AddAttributeList(pAttrList);
1597             }
1598 
1599 			OUString sClassId;
1600 			OUString sURL;
1601 			sal_Bool bInternal = false;
1602 			xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("IsInternal"))) >>= bInternal;
1603 
1604 			if( !bIsEmptyPresObj )
1605 			{
1606 
1607 				if ( bInternal )
1608 				{
1609 					// OOo internal links have no storage persistance, URL is stored in the XML file
1610 					// the result LinkURL is empty in case the object is not a link
1611 					xPropSet->getPropertyValue( OUString::createFromAscii( "LinkURL" ) ) >>= sURL;
1612 				}
1613 
1614 				xPropSet->getPropertyValue( OUString(RTL_CONSTASCII_USTRINGPARAM( "PersistName" ) ) ) >>= sPersistName;
1615 				if ( !sURL.getLength() )
1616 				{
1617 					if( sPersistName.getLength() )
1618 					{
1619 						sURL = OUString( RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.EmbeddedObject:" ) );
1620 						sURL += sPersistName;
1621 					}
1622 				}
1623 
1624 				if( !bInternal )
1625 					xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("CLSID"))) >>= sClassId;
1626 
1627 				if( sClassId.getLength() )
1628 					mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_CLASS_ID, sClassId );
1629 				if(!bExportEmbedded)
1630 				{
1631 					// xlink:href
1632 					if( sURL.getLength() )
1633 					{
1634 						// #96717# in theorie, if we don't have a url we shouldn't even
1635 						// export this ole shape. But practical its to risky right now
1636 						// to change this so we better dispose this on load
1637 						sURL = mrExport.AddEmbeddedObject( sURL );
1638 
1639 						mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, sURL );
1640 						mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1641 						mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1642 						mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1643 					}
1644 				}
1645 			}
1646 			else
1647 			{
1648 				// export empty href for empty placeholders to be valid odf
1649 				OUString sEmptyURL;
1650 
1651 				mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, sEmptyURL );
1652 				mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1653 				mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1654 				mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1655 			}
1656 
1657 			enum XMLTokenEnum eElem = sClassId.getLength() ? XML_OBJECT_OLE : XML_OBJECT;
1658 			SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW, eElem, sal_True, sal_True );
1659 
1660             // #i118485# Add text export, the draw OLE shape allows text now
1661             ImpExportText( xShape );
1662 
1663 			if(bExportEmbedded && !bIsEmptyPresObj)
1664 			{
1665 				// #100592#
1666 				if(bInternal)
1667 				{
1668 					// embedded XML
1669 					uno::Reference< lang::XComponent > xComp;
1670 					xPropSet->getPropertyValue( OUString(RTL_CONSTASCII_USTRINGPARAM("Model") ) ) >>= xComp;
1671 					DBG_ASSERT( xComp.is(), "no xModel for own OLE format" );
1672 					mrExport.ExportEmbeddedOwnObject( xComp );
1673 				}
1674 				else
1675 				{
1676 					// embed as Base64
1677 					// this is an alien object ( currently MSOLE is the only supported type of such objects )
1678 					// in case it is not an OASIS format the object should be asked to store replacement image if possible
1679 
1680 					::rtl::OUString sURLRequest( sURL );
1681     				if ( ( mrExport.getExportFlags() & EXPORT_OASIS ) == 0 )
1682 						sURLRequest += ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "?oasis=false" ) );
1683 					mrExport.AddEmbeddedObjectAsBase64( sURLRequest );
1684 				}
1685 			}
1686 		}
1687 		if( !bIsEmptyPresObj )
1688 		{
1689 			OUString sURL( RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.GraphicObject:" ) );
1690 			sURL += sPersistName;
1691 			if( !bExportEmbedded )
1692 			{
1693 				sURL = GetExport().AddEmbeddedObject( sURL );
1694 				mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, sURL );
1695 				mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1696 				mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1697 				mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1698 			}
1699 
1700 			SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_DRAW,
1701 									  XML_IMAGE, sal_False, sal_True );
1702 
1703 			if( bExportEmbedded )
1704 				GetExport().AddEmbeddedObjectAsBase64( sURL );
1705 		}
1706 
1707         ImpExportEvents( xShape );
1708 		ImpExportGluePoints( xShape );
1709 		ImpExportDescription( xShape ); // #i68101#
1710 	}
1711 }
1712 
1713 //////////////////////////////////////////////////////////////////////////////
1714 
1715 void XMLShapeExport::ImpExportPageShape(
1716 	const uno::Reference< drawing::XShape >& xShape,
1717 	XmlShapeType eShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */)
1718 {
1719 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
1720 	if(xPropSet.is())
1721 	{
1722 		// #86163# Transformation
1723 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
1724 
1725 		// export page number used for this page
1726 		uno::Reference< beans::XPropertySetInfo > xPropSetInfo( xPropSet->getPropertySetInfo() );
1727 		const OUString aPageNumberStr(RTL_CONSTASCII_USTRINGPARAM("PageNumber"));
1728 		if( xPropSetInfo.is() && xPropSetInfo->hasPropertyByName(aPageNumberStr))
1729 		{
1730 			sal_Int32 nPageNumber = 0;
1731 			xPropSet->getPropertyValue(aPageNumberStr) >>= nPageNumber;
1732 			if( nPageNumber )
1733 				mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_PAGE_NUMBER, OUString::valueOf(nPageNumber));
1734 		}
1735 
1736 		// a presentation page shape, normally used on notes pages only. If
1737 		// it is used not as presentation shape, it may have been created with
1738 		// copy-paste exchange between draw and impress (this IS possible...)
1739 		if(eShapeType == XmlShapeTypePresPageShape)
1740 		{
1741 			mrExport.AddAttribute(XML_NAMESPACE_PRESENTATION, XML_CLASS,
1742                                  XML_PRESENTATION_PAGE);
1743 		}
1744 
1745 		// write Page shape
1746 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1747 		SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_PAGE_THUMBNAIL, bCreateNewline, sal_True);
1748 	}
1749 }
1750 
1751 //////////////////////////////////////////////////////////////////////////////
1752 
1753 void XMLShapeExport::ImpExportCaptionShape(
1754 	const uno::Reference< drawing::XShape >& xShape,
1755 	XmlShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */)
1756 {
1757 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
1758 	if(xPropSet.is())
1759 	{
1760 		// Transformation
1761 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
1762 
1763 		// evtl. corner radius?
1764 		sal_Int32 nCornerRadius(0L);
1765 		xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("CornerRadius"))) >>= nCornerRadius;
1766 		if(nCornerRadius)
1767 		{
1768 			OUStringBuffer sStringBuffer;
1769 			mrExport.GetMM100UnitConverter().convertMeasure(sStringBuffer, nCornerRadius);
1770 			mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_CORNER_RADIUS, sStringBuffer.makeStringAndClear());
1771 		}
1772 
1773 		awt::Point aCaptionPoint;
1774 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "CaptionPoint" ) ) ) >>= aCaptionPoint;
1775 
1776 		mrExport.GetMM100UnitConverter().convertMeasure(msBuffer, aCaptionPoint.X);
1777 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_CAPTION_POINT_X, msBuffer.makeStringAndClear() );
1778 		mrExport.GetMM100UnitConverter().convertMeasure(msBuffer, aCaptionPoint.Y);
1779 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_CAPTION_POINT_Y, msBuffer.makeStringAndClear() );
1780 
1781 		// write Caption shape. Add export later.
1782 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1783 		sal_Bool bAnnotation( (nFeatures & SEF_EXPORT_ANNOTATION) == SEF_EXPORT_ANNOTATION );
1784 
1785         SvXMLElementExport aObj( mrExport,
1786 								 (bAnnotation ? XML_NAMESPACE_OFFICE
1787 								 			  : XML_NAMESPACE_DRAW),
1788 								 (bAnnotation ?	XML_ANNOTATION : XML_CAPTION),
1789 								 bCreateNewline, sal_True );
1790 
1791 		ImpExportDescription( xShape ); // #i68101#
1792 		ImpExportEvents( xShape );
1793 		ImpExportGluePoints( xShape );
1794 		if( bAnnotation )
1795 			mrExport.exportAnnotationMeta( xShape );
1796 		ImpExportText( xShape );
1797 	}
1798 }
1799 
1800 //////////////////////////////////////////////////////////////////////////////
1801 
1802 void XMLShapeExport::ImpExportFrameShape(
1803 	const uno::Reference< drawing::XShape >& xShape,
1804 	XmlShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
1805 {
1806 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
1807 	if(xPropSet.is())
1808 	{
1809 		// Transformation
1810 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
1811 
1812 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1813 		SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW,
1814 								  XML_FRAME, bCreateNewline, sal_True );
1815 
1816 		// export frame url
1817 		OUString aStr;
1818 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "FrameURL" ) ) ) >>= aStr;
1819         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_HREF, GetExport().GetRelativeReference(aStr) );
1820         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1821         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1822         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1823 
1824 		// export name
1825 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "FrameName" ) ) ) >>= aStr;
1826 		if( aStr.getLength() )
1827 			mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_FRAME_NAME, aStr );
1828 
1829 		// write floating frame
1830 		{
1831 			SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_FLOATING_FRAME, sal_True, sal_True);
1832 		}
1833 	}
1834 }
1835 
1836 //////////////////////////////////////////////////////////////////////////////
1837 
1838 void XMLShapeExport::ImpExportAppletShape(
1839 	const uno::Reference< drawing::XShape >& xShape,
1840 	XmlShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
1841 {
1842 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
1843 	if(xPropSet.is())
1844 	{
1845 		// Transformation
1846 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
1847 
1848 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1849 		SvXMLElementExport aElement( mrExport, XML_NAMESPACE_DRAW,
1850 								  XML_FRAME, bCreateNewline, sal_True );
1851 
1852 		// export frame url
1853 		OUString aStr;
1854 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "AppletCodeBase" ) ) ) >>= aStr;
1855         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_HREF, GetExport().GetRelativeReference(aStr) );
1856         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1857         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1858         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1859 
1860 		// export draw:applet-name
1861 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "AppletName" ) ) ) >>= aStr;
1862 		if( aStr.getLength() )
1863 			mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_APPLET_NAME, aStr );
1864 
1865 		// export draw:code
1866 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "AppletCode" ) ) ) >>= aStr;
1867 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_CODE, aStr );
1868 
1869 		// export draw:may-script
1870 		sal_Bool bIsScript = false;
1871 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "AppletIsScript" ) ) ) >>= bIsScript;
1872 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_MAY_SCRIPT, bIsScript ? XML_TRUE : XML_FALSE );
1873 
1874 		{
1875 			// write applet
1876 			SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_APPLET, sal_True, sal_True);
1877 
1878 			// export parameters
1879 			uno::Sequence< beans::PropertyValue > aCommands;
1880 			xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "AppletCommands" ) ) ) >>= aCommands;
1881 			const sal_Int32 nCount = aCommands.getLength();
1882 			for( sal_Int32 nIndex = 0; nIndex < nCount; nIndex++ )
1883 			{
1884 				aCommands[nIndex].Value >>= aStr;
1885 				mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME, aCommands[nIndex].Name );
1886 				mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_VALUE, aStr );
1887 				SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW, XML_PARAM, sal_False, sal_True );
1888 			}
1889 		}
1890 	}
1891 }
1892 
1893 //////////////////////////////////////////////////////////////////////////////
1894 
1895 void XMLShapeExport::ImpExportPluginShape(
1896 	const uno::Reference< drawing::XShape >& xShape,
1897 	XmlShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
1898 {
1899 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
1900 	if(xPropSet.is())
1901 	{
1902 		// Transformation
1903 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
1904 
1905 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1906 		SvXMLElementExport aElement( mrExport, XML_NAMESPACE_DRAW,
1907 								  XML_FRAME, bCreateNewline, sal_True );
1908 
1909 		// export plugin url
1910 		OUString aStr;
1911 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "PluginURL" ) ) ) >>= aStr;
1912         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_HREF, GetExport().GetRelativeReference(aStr) );
1913         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1914         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1915         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1916 
1917 
1918 		// export mime-type
1919 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "PluginMimeType" ) ) ) >>= aStr;
1920 		if(aStr.getLength())
1921 			mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_MIME_TYPE, aStr );
1922 
1923 		{
1924 			// write plugin
1925 			SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_PLUGIN, sal_True, sal_True);
1926 
1927 			// export parameters
1928 			uno::Sequence< beans::PropertyValue > aCommands;
1929 			xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "PluginCommands" ) ) ) >>= aCommands;
1930 			const sal_Int32 nCount = aCommands.getLength();
1931 			for( sal_Int32 nIndex = 0; nIndex < nCount; nIndex++ )
1932 			{
1933 				aCommands[nIndex].Value >>= aStr;
1934 				mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME, aCommands[nIndex].Name );
1935 				mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_VALUE, aStr );
1936 				SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW, XML_PARAM, sal_False, sal_True );
1937 			}
1938 		}
1939 	}
1940 }
1941 
1942 //////////////////////////////////////////////////////////////////////////////
1943 
1944 void XMLShapeExport::ImpExportMediaShape(
1945 	const uno::Reference< drawing::XShape >& xShape,
1946 	XmlShapeType eShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
1947 {
1948 	const uno::Reference< beans::XPropertySet > xPropSet(xShape, uno::UNO_QUERY);
1949 	if(xPropSet.is())
1950 	{
1951 		// Transformation
1952 		ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
1953 
1954 		if(eShapeType == XmlShapeTypePresMediaShape)
1955 			ImpExportPresentationAttributes( xPropSet, GetXMLToken(XML_PRESENTATION_OBJECT) );
1956 
1957 		sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
1958 		SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW,
1959 								  XML_FRAME, bCreateNewline, sal_True );
1960 
1961 		// export media url
1962 		OUString aMediaURL;
1963 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "MediaURL" ) ) ) >>= aMediaURL;
1964         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_HREF, GetExport().GetRelativeReference( aMediaURL ) );
1965         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE );
1966         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
1967         mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
1968 
1969 		// export mime-type
1970 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_MIME_TYPE, OUString( RTL_CONSTASCII_USTRINGPARAM( "application/vnd.sun.star.media" ) ) );
1971 
1972 		// write plugin
1973 		SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_PLUGIN, !( nFeatures & SEF_EXPORT_NO_WS ), sal_True);
1974 
1975 		// export parameters
1976 		const OUString aFalseStr( RTL_CONSTASCII_USTRINGPARAM( "false" ) ), aTrueStr( RTL_CONSTASCII_USTRINGPARAM( "true" ) );
1977 
1978 		sal_Bool bLoop = false;
1979 		const OUString aLoopStr( RTL_CONSTASCII_USTRINGPARAM( "Loop" ) );
1980 		xPropSet->getPropertyValue( aLoopStr ) >>= bLoop;
1981 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME, aLoopStr );
1982 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_VALUE, bLoop ? aTrueStr : aFalseStr );
1983 		delete( new SvXMLElementExport( mrExport, XML_NAMESPACE_DRAW, XML_PARAM, sal_False, sal_True ) );
1984 
1985 		sal_Bool bMute = false;
1986 		const OUString aMuteStr( RTL_CONSTASCII_USTRINGPARAM( "Mute" ) );
1987 		xPropSet->getPropertyValue( aMuteStr ) >>= bMute;
1988 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME, aMuteStr );
1989 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_VALUE, bMute ? aTrueStr : aFalseStr );
1990 		delete( new SvXMLElementExport( mrExport, XML_NAMESPACE_DRAW, XML_PARAM, sal_False, sal_True ) );
1991 
1992 		sal_Int16 nVolumeDB = 0;
1993 		const OUString aVolumeDBStr( RTL_CONSTASCII_USTRINGPARAM( "VolumeDB" ) );
1994 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "VolumeDB" ) ) ) >>= nVolumeDB;
1995 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME, aVolumeDBStr );
1996 		mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_VALUE, OUString::valueOf( static_cast< sal_Int32 >( nVolumeDB ) ) );
1997 		delete( new SvXMLElementExport( mrExport, XML_NAMESPACE_DRAW, XML_PARAM, sal_False, sal_True ) );
1998 
1999 		media::ZoomLevel eZoom;
2000 		const OUString aZoomStr( RTL_CONSTASCII_USTRINGPARAM( "Zoom" ) );
2001 		OUString aZoomValue;
2002 		xPropSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Zoom" ) ) ) >>= eZoom;
2003 		switch( eZoom )
2004 		{
2005 			case( media::ZoomLevel_ZOOM_1_TO_4 ): aZoomValue = OUString( RTL_CONSTASCII_USTRINGPARAM( "25%" ) ); break;
2006 			case( media::ZoomLevel_ZOOM_1_TO_2 ): aZoomValue = OUString( RTL_CONSTASCII_USTRINGPARAM( "50%" ) ); break;
2007 			case( media::ZoomLevel_ORIGINAL ): aZoomValue = OUString( RTL_CONSTASCII_USTRINGPARAM( "100%" ) ); break;
2008 			case( media::ZoomLevel_ZOOM_2_TO_1 ): aZoomValue = OUString( RTL_CONSTASCII_USTRINGPARAM( "200%" ) ); break;
2009 			case( media::ZoomLevel_ZOOM_4_TO_1 ): aZoomValue = OUString( RTL_CONSTASCII_USTRINGPARAM( "400%" ) ); break;
2010 		    case( media::ZoomLevel_FIT_TO_WINDOW ): aZoomValue = OUString( RTL_CONSTASCII_USTRINGPARAM( "fit" ) ); break;
2011 		    case( media::ZoomLevel_FIT_TO_WINDOW_FIXED_ASPECT ): aZoomValue = OUString( RTL_CONSTASCII_USTRINGPARAM( "fixedfit" ) ); break;
2012 		    case( media::ZoomLevel_FULLSCREEN ): aZoomValue = OUString( RTL_CONSTASCII_USTRINGPARAM( "fullscreen" ) ); break;
2013 
2014 			default:
2015 			break;
2016 		}
2017 
2018 		if( aZoomValue.getLength() )
2019 		{
2020 			mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME, aZoomStr );
2021 			mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_VALUE, aZoomValue );
2022 			delete( new SvXMLElementExport( mrExport, XML_NAMESPACE_DRAW, XML_PARAM, sal_False, sal_True ) );
2023 		}
2024 	}
2025 }
2026