1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_XMLOFF_SHAPEIMPORT_HXX
21 #define INCLUDED_XMLOFF_SHAPEIMPORT_HXX
23 #include <sal/config.h>
24 #include <xmloff/dllapi.h>
25 #include <com/sun/star/drawing/HomogenMatrix.hpp>
26 #include <com/sun/star/drawing/ProjectionMode.hpp>
27 #include <com/sun/star/drawing/ShadeMode.hpp>
28 #include <salhelper/simplereferenceobject.hxx>
29 #include <xmloff/xmlictxt.hxx>
31 #include <basegfx/vector/b3dvector.hxx>
35 namespace com
{ namespace sun
{ namespace star
{ namespace beans
{ class XPropertySet
; } } } }
36 namespace com
{ namespace sun
{ namespace star
{ namespace drawing
{ class XShape
; } } } }
37 namespace com
{ namespace sun
{ namespace star
{ namespace drawing
{ class XShapes
; } } } }
38 namespace com
{ namespace sun
{ namespace star
{ namespace frame
{ class XModel
; } } } }
39 namespace com
{ namespace sun
{ namespace star
{ namespace xml
{ namespace sax
{ class XAttributeList
; } } } } }
43 class SvXMLStylesContext
;
44 class XMLSdPropHdlFactory
;
45 class SvXMLImportPropertyMapper
;
49 enum SdXMLGroupShapeElemTokenMap
55 XML_TOK_GROUP_ELLIPSE
,
56 XML_TOK_GROUP_POLYGON
,
57 XML_TOK_GROUP_POLYLINE
,
60 XML_TOK_GROUP_CONTROL
,
61 XML_TOK_GROUP_CONNECTOR
,
62 XML_TOK_GROUP_MEASURE
,
64 XML_TOK_GROUP_CAPTION
,
67 XML_TOK_GROUP_3DSCENE
,
71 XML_TOK_GROUP_CUSTOM_SHAPE
,
73 XML_TOK_GROUP_ANNOTATION
,
78 enum SdXMLFrameShapeElemTokenMap
80 XML_TOK_FRAME_TEXT_BOX
,
83 XML_TOK_FRAME_OBJECT_OLE
,
85 XML_TOK_FRAME_FLOATING_FRAME
,
90 enum SdXML3DSceneShapeElemTokenMap
92 XML_TOK_3DSCENE_3DSCENE
,
93 XML_TOK_3DSCENE_3DCUBE
,
94 XML_TOK_3DSCENE_3DSPHERE
,
95 XML_TOK_3DSCENE_3DLATHE
,
96 XML_TOK_3DSCENE_3DEXTRUDE
99 enum SdXML3DObjectAttrTokenMap
101 XML_TOK_3DOBJECT_DRAWSTYLE_NAME
,
102 XML_TOK_3DOBJECT_TRANSFORM
105 enum SdXML3DPolygonBasedAttrTokenMap
107 XML_TOK_3DPOLYGONBASED_VIEWBOX
,
108 XML_TOK_3DPOLYGONBASED_D
111 enum SdXML3DCubeObjectAttrTokenMap
113 XML_TOK_3DCUBEOBJ_MINEDGE
,
114 XML_TOK_3DCUBEOBJ_MAXEDGE
117 enum SdXML3DSphereObjectAttrTokenMap
119 XML_TOK_3DSPHEREOBJ_CENTER
,
120 XML_TOK_3DSPHEREOBJ_SIZE
123 enum SdXML3DLightAttrTokenMap
125 XML_TOK_3DLIGHT_DIFFUSE_COLOR
,
126 XML_TOK_3DLIGHT_DIRECTION
,
127 XML_TOK_3DLIGHT_ENABLED
,
128 XML_TOK_3DLIGHT_SPECULAR
132 // dr3d:3dlight context
134 class SdXML3DLightContext final
: public SvXMLImportContext
136 // local parameters which need to be read
137 sal_Int32 maDiffuseColor
;
138 ::basegfx::B3DVector maDirection
;
144 SvXMLImport
& rImport
,
146 const OUString
& rLName
,
147 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
);
148 virtual ~SdXML3DLightContext() override
;
150 sal_Int32
GetDiffuseColor() const { return maDiffuseColor
; }
151 const ::basegfx::B3DVector
& GetDirection() const { return maDirection
; }
152 bool GetEnabled() const { return mbEnabled
; }
156 class SdXML3DSceneAttributesHelper
159 SvXMLImport
& mrImport
;
161 // list for local light contexts
162 ::std::vector
< rtl::Reference
< SdXML3DLightContext
> >
165 // local parameters which need to be read
166 css::drawing::HomogenMatrix mxHomMat
;
169 css::drawing::ProjectionMode mxPrjMode
;
170 sal_Int32 mnDistance
;
171 sal_Int32 mnFocalLength
;
172 sal_Int32 mnShadowSlant
;
173 css::drawing::ShadeMode mxShadeMode
;
174 sal_Int32 maAmbientColor
;
177 ::basegfx::B3DVector maVRP
;
178 ::basegfx::B3DVector maVPN
;
179 ::basegfx::B3DVector maVUP
;
185 SdXML3DSceneAttributesHelper( SvXMLImport
& rImporter
);
187 /** creates a 3d light context and adds it to the internal list for later processing */
188 SvXMLImportContext
* create3DLightContext( sal_uInt16 nPrfx
, const OUString
& rLName
, const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
);
190 /** this should be called for each scene attribute */
191 void processSceneAttribute( sal_uInt16 nPrefix
, const OUString
& rLocalName
, const OUString
& rValue
);
193 /** this sets the scene attributes at this propertyset */
194 void setSceneAttributes( const css::uno::Reference
< css::beans::XPropertySet
>& xPropSet
);
198 class SvXMLShapeContext
: public SvXMLImportContext
201 css::uno::Reference
< css::drawing::XShape
> mxShape
;
202 bool const mbTemporaryShape
;
203 OUString msHyperlink
;
206 SvXMLShapeContext( SvXMLImport
& rImp
, sal_uInt16 nPrfx
,
207 const OUString
& rLName
, bool bTemporaryShape
) : SvXMLImportContext( rImp
, nPrfx
, rLName
), mbTemporaryShape(bTemporaryShape
) {}
210 const css::uno::Reference
< css::drawing::XShape
>& getShape() const { return mxShape
; }
212 void setHyperlink( const OUString
& rHyperlink
);
216 struct XMLShapeImportHelperImpl
;
217 struct XMLShapeImportPageContextImpl
;
218 struct SdXMLEventContextData
;
220 class XMLOFF_DLLPUBLIC XMLShapeImportHelper
: public salhelper::SimpleReferenceObject
222 std::unique_ptr
<XMLShapeImportHelperImpl
> mpImpl
;
224 std::shared_ptr
<XMLShapeImportPageContextImpl
> mpPageContext
;
226 // PropertySetMappers and factory
227 rtl::Reference
<XMLSdPropHdlFactory
> mpSdPropHdlFactory
;
228 rtl::Reference
<SvXMLImportPropertyMapper
> mpPropertySetMapper
;
229 rtl::Reference
<SvXMLImportPropertyMapper
> mpPresPagePropsMapper
;
231 // contexts for Style and AutoStyle import
232 rtl::Reference
<SvXMLStylesContext
> mxStylesContext
;
233 rtl::Reference
<SvXMLStylesContext
> mxAutoStylesContext
;
235 // contexts for xShape contents TokenMaps
236 std::unique_ptr
<SvXMLTokenMap
> mpGroupShapeElemTokenMap
;
237 std::unique_ptr
<SvXMLTokenMap
> mpFrameShapeElemTokenMap
;
238 std::unique_ptr
<SvXMLTokenMap
> mp3DSceneShapeElemTokenMap
;
239 std::unique_ptr
<SvXMLTokenMap
> mp3DObjectAttrTokenMap
;
240 std::unique_ptr
<SvXMLTokenMap
> mp3DPolygonBasedAttrTokenMap
;
241 std::unique_ptr
<SvXMLTokenMap
> mp3DCubeObjectAttrTokenMap
;
242 std::unique_ptr
<SvXMLTokenMap
> mp3DSphereObjectAttrTokenMap
;
243 std::unique_ptr
<SvXMLTokenMap
> mp3DLightAttrTokenMap
;
245 rtl::Reference
< XMLTableImport
> mxShapeTableImport
;
248 SvXMLImport
& mrImporter
;
251 XMLShapeImportHelper( SvXMLImport
& rImporter
,
252 const css::uno::Reference
< css::frame::XModel
>& rModel
,
253 SvXMLImportPropertyMapper
*pExtMapper
=nullptr );
255 virtual ~XMLShapeImportHelper() override
;
257 SvXMLShapeContext
* CreateGroupChildContext(
258 SvXMLImport
& rImport
, sal_uInt16 nPrefix
, const OUString
& rLocalName
,
259 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
,
260 css::uno::Reference
< css::drawing::XShapes
> const & rShapes
,
261 bool bTemporaryShape
= false);
263 SvXMLShapeContext
* CreateFrameChildContext(
264 SvXMLImport
& rImport
, sal_uInt16 nPrefix
, const OUString
& rLocalName
,
265 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
,
266 css::uno::Reference
< css::drawing::XShapes
> const & rShapes
,
267 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xFrameAttrList
);
268 static SvXMLImportContextRef
CreateFrameChildContext(
269 SvXMLImportContext
*pThisContext
, sal_uInt16 nPrefix
, const OUString
& rLocalName
,
270 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
);
272 SvXMLShapeContext
* Create3DSceneChildContext(
273 SvXMLImport
& rImport
, sal_uInt16 nPrefix
, const OUString
& rLocalName
,
274 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
,
275 css::uno::Reference
< css::drawing::XShapes
> const & rShapes
);
277 const SvXMLTokenMap
& GetGroupShapeElemTokenMap();
278 const SvXMLTokenMap
& GetFrameShapeElemTokenMap();
279 const SvXMLTokenMap
& Get3DSceneShapeElemTokenMap();
280 const SvXMLTokenMap
& Get3DObjectAttrTokenMap();
281 const SvXMLTokenMap
& Get3DPolygonBasedAttrTokenMap();
282 const SvXMLTokenMap
& Get3DCubeObjectAttrTokenMap();
283 const SvXMLTokenMap
& Get3DSphereObjectAttrTokenMap();
284 const SvXMLTokenMap
& Get3DLightAttrTokenMap();
286 // Styles and AutoStyles contexts
287 SvXMLStylesContext
* GetStylesContext() const { return mxStylesContext
.get(); }
288 void SetStylesContext(SvXMLStylesContext
* pNew
);
289 SvXMLStylesContext
* GetAutoStylesContext() const { return mxAutoStylesContext
.get(); }
290 void SetAutoStylesContext(SvXMLStylesContext
* pNew
);
292 // get factories and mappers
293 SvXMLImportPropertyMapper
* GetPropertySetMapper() const { return mpPropertySetMapper
.get(); }
294 SvXMLImportPropertyMapper
* GetPresPagePropsMapper() const { return mpPresPagePropsMapper
.get(); }
296 // this function is called whenever the implementation classes like to add this new
297 // shape to the given XShapes.
298 virtual void addShape(
299 css::uno::Reference
< css::drawing::XShape
>& rShape
,
300 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
,
301 css::uno::Reference
< css::drawing::XShapes
>& rShapes
);
303 // this function is called whenever the implementation classes have finished importing
304 // a shape to the given XShapes. The shape is already inserted into its XShapes and
305 // all properties and styles are set.
306 virtual void finishShape(
307 css::uno::Reference
< css::drawing::XShape
>& rShape
,
308 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
,
309 css::uno::Reference
< css::drawing::XShapes
>& rShapes
);
311 // tdf#127791 help function for group shape events
312 void addShapeEvents(SdXMLEventContextData
& rData
);
314 // helper functions processing groups after their component shapes are collected
315 // e.g. for z-order sorting or adding events to the group
316 void pushGroupForPostProcessing( css::uno::Reference
< css::drawing::XShapes
>& rShapes
);
317 void popGroupAndPostProcess();
319 void shapeWithZIndexAdded( css::uno::Reference
< css::drawing::XShape
> const & rShape
,
321 /// Updates the z-order of other shapes to be consistent again, needed due
322 /// to the removal of rShape.
323 void shapeRemoved(const css::uno::Reference
<css::drawing::XShape
>& rShape
);
325 void addShapeConnection( css::uno::Reference
< css::drawing::XShape
> const & rConnectorShape
,
327 const OUString
& rDestShapeId
,
328 sal_Int32 nDestGlueId
);
330 /** adds a mapping for a glue point identifier from an xml file to the identifier created after inserting
331 the new glue point into the core. The saved mappings can be retrieved by getGluePointId() */
332 void addGluePointMapping( css::uno::Reference
< css::drawing::XShape
> const & xShape
,
333 sal_Int32 nSourceId
, sal_Int32 nDestinnationId
);
335 /** moves all current DestinationId's for rXShape by n */
336 void moveGluePointMapping( const css::uno::Reference
< css::drawing::XShape
>& xShape
, const sal_Int32 n
);
338 /** retrieves a mapping for a glue point identifier from the current xml file to the identifier created after
339 inserting the new glue point into the core. The mapping must be initialized first with addGluePointMapping() */
340 sal_Int32
getGluePointId( const css::uno::Reference
< css::drawing::XShape
>& xShape
, sal_Int32 nSourceId
);
342 /** this method must be calling before the first shape is imported for the given page.
343 Calls to this method can be nested */
344 void startPage( css::uno::Reference
< css::drawing::XShapes
> const & rShapes
);
346 /** this method must be calling after the last shape is imported for the given page
347 Calls to this method can be nested */
348 void endPage( css::uno::Reference
< css::drawing::XShapes
> const & rShapes
);
350 void restoreConnections();
352 /** creates a property mapper for external chaining */
353 static SvXMLImportPropertyMapper
* CreateShapePropMapper(
354 const css::uno::Reference
< css::frame::XModel
>& rModel
, SvXMLImport
& rImport
);
356 /** defines if the import should increment the progress bar or not */
357 void enableHandleProgressBar();
358 bool IsHandleProgressBarEnabled() const;
360 /** queries the capability of the current model to create presentation shapes */
361 bool IsPresentationShapesSupported() const;
363 XMLSdPropHdlFactory
* GetSdPropHdlFactory() const { return mpSdPropHdlFactory
.get(); }
365 const rtl::Reference
< XMLTableImport
>& GetShapeTableImport();
368 #endif // INCLUDED_XMLOFF_SHAPEIMPORT_HXX
370 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */