648 lines
25 KiB
C++
648 lines
25 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <com/sun/star/io/XOutputStream.hpp>
|
|
#include <com/sun/star/document/XActionLockable.hpp>
|
|
#include <com/sun/star/drawing/Alignment.hpp>
|
|
#include <com/sun/star/drawing/CircleKind.hpp>
|
|
#include <com/sun/star/drawing/ConnectorType.hpp>
|
|
#include <com/sun/star/drawing/EscapeDirection.hpp>
|
|
#include <com/sun/star/container/XIdentifierContainer.hpp>
|
|
#include <xmloff/xmlictxt.hxx>
|
|
#include <com/sun/star/drawing/XShapes.hpp>
|
|
#include <com/sun/star/text/XTextCursor.hpp>
|
|
#include <com/sun/star/awt/Point.hpp>
|
|
#include <xexptran.hxx>
|
|
#include <vector>
|
|
#include <xmloff/shapeimport.hxx>
|
|
#include <xmlmultiimagehelper.hxx>
|
|
#include <basegfx/matrix/b2dhommatrix.hxx>
|
|
|
|
template<typename EnumT> struct SvXMLEnumMapEntry;
|
|
|
|
// common shape context
|
|
|
|
class SdXMLShapeContext : public SvXMLShapeContext
|
|
{
|
|
protected:
|
|
// the shape group this object should be created inside
|
|
css::uno::Reference< css::drawing::XShapes > mxShapes;
|
|
css::uno::Reference< css::text::XTextCursor > mxCursor;
|
|
css::uno::Reference< css::text::XTextCursor > mxOldCursor;
|
|
css::uno::Reference< css::xml::sax::XFastAttributeList> mxAttrList;
|
|
css::uno::Reference< css::container::XIdentifierContainer > mxGluePoints;
|
|
css::uno::Reference< css::document::XActionLockable > mxLockable;
|
|
|
|
OUString maDrawStyleName;
|
|
OUString maTextStyleName;
|
|
OUString maPresentationClass;
|
|
OUString maShapeName;
|
|
OUString maThumbnailURL;
|
|
|
|
/// whether to restore list context (#91964#)
|
|
bool mbListContextPushed;
|
|
|
|
XmlStyleFamily mnStyleFamily;
|
|
bool mbIsPlaceholder;
|
|
bool mbClearDefaultAttributes;
|
|
bool mbIsUserTransformed;
|
|
sal_Int32 mnZOrder;
|
|
OUString maShapeId;
|
|
OUString maLayerName;
|
|
|
|
SdXMLImExTransform2D mnTransform;
|
|
css::awt::Size maSize;
|
|
sal_Int16 mnRelWidth;
|
|
sal_Int16 mnRelHeight;
|
|
css::awt::Point maPosition;
|
|
basegfx::B2DHomMatrix maUsedTransformation;
|
|
|
|
bool mbVisible;
|
|
bool mbPrintable;
|
|
bool mbHaveXmlId;
|
|
bool mbTextBox; ///< If the text of this shape is handled by a Writer TextFrame.
|
|
|
|
/** if bSupportsStyle is false, auto styles will be set but not a style */
|
|
void SetStyle( bool bSupportsStyle = true );
|
|
void SetLayer();
|
|
void SetThumbnail();
|
|
|
|
void AddShape(css::uno::Reference< css::drawing::XShape >& xShape);
|
|
void AddShape(OUString const & serviceName);
|
|
void SetTransformation();
|
|
|
|
using SvXMLImportContext::GetImport;
|
|
|
|
void addGluePoint( const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList );
|
|
|
|
bool isPresentationShape() const;
|
|
|
|
public:
|
|
|
|
SdXMLShapeContext( SvXMLImport& rImport,
|
|
css::uno::Reference< css::xml::sax::XFastAttributeList> xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > xShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLShapeContext() override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& AttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & );
|
|
|
|
};
|
|
|
|
// draw:rect context
|
|
|
|
class SdXMLRectShapeContext : public SdXMLShapeContext
|
|
{
|
|
sal_Int32 mnRadius;
|
|
|
|
public:
|
|
|
|
SdXMLRectShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLRectShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:line context
|
|
|
|
class SdXMLLineShapeContext : public SdXMLShapeContext
|
|
{
|
|
sal_Int32 mnX1;
|
|
sal_Int32 mnY1;
|
|
sal_Int32 mnX2;
|
|
sal_Int32 mnY2;
|
|
|
|
public:
|
|
|
|
SdXMLLineShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLLineShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:ellipse and draw:circle context
|
|
|
|
class SdXMLEllipseShapeContext : public SdXMLShapeContext
|
|
{
|
|
sal_Int32 mnCX;
|
|
sal_Int32 mnCY;
|
|
sal_Int32 mnRX;
|
|
sal_Int32 mnRY;
|
|
|
|
css::drawing::CircleKind meKind;
|
|
sal_Int32 mnStartAngle;
|
|
sal_Int32 mnEndAngle;
|
|
public:
|
|
|
|
SdXMLEllipseShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLEllipseShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:polyline and draw:polygon context
|
|
|
|
class SdXMLPolygonShapeContext : public SdXMLShapeContext
|
|
{
|
|
OUString maPoints;
|
|
OUString maViewBox;
|
|
bool mbClosed;
|
|
|
|
public:
|
|
|
|
SdXMLPolygonShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes, bool bClosed, bool bTemporaryShape);
|
|
virtual ~SdXMLPolygonShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:path context
|
|
|
|
class SdXMLPathShapeContext : public SdXMLShapeContext
|
|
{
|
|
OUString maD;
|
|
OUString maViewBox;
|
|
|
|
public:
|
|
|
|
SdXMLPathShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLPathShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:text-box context
|
|
|
|
class SdXMLTextBoxShapeContext : public SdXMLShapeContext
|
|
{
|
|
sal_Int32 mnRadius;
|
|
OUString maChainNextName;
|
|
|
|
public:
|
|
|
|
SdXMLTextBoxShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes);
|
|
virtual ~SdXMLTextBoxShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:control context
|
|
|
|
class SdXMLControlShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
OUString maFormId;
|
|
|
|
public:
|
|
|
|
SdXMLControlShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLControlShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:connector context
|
|
|
|
class SdXMLConnectorShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
css::awt::Point maStart;
|
|
css::awt::Point maEnd;
|
|
|
|
css::drawing::ConnectorType
|
|
mnType;
|
|
|
|
OUString maStartShapeId;
|
|
sal_Int32 mnStartGlueId;
|
|
OUString maEndShapeId;
|
|
sal_Int32 mnEndGlueId;
|
|
|
|
sal_Int32 mnDelta1;
|
|
sal_Int32 mnDelta2;
|
|
sal_Int32 mnDelta3;
|
|
|
|
css::uno::Any maPath;
|
|
|
|
// Guess from the svg:d attribute whether the shape was rendered using OOXML definition. The
|
|
// default value is true to cover files exported to ODF by MS Office, which does not write a
|
|
// svg:d attribute. LibreOffice has always written a svg:d attribute.
|
|
bool mbLikelyOOXMLCurve;
|
|
|
|
public:
|
|
|
|
SdXMLConnectorShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLConnectorShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:measure context
|
|
|
|
class SdXMLMeasureShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
css::awt::Point maStart;
|
|
css::awt::Point maEnd;
|
|
|
|
public:
|
|
|
|
SdXMLMeasureShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLMeasureShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:page context
|
|
|
|
class SdXMLPageShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
sal_Int32 mnPageNumber;
|
|
public:
|
|
|
|
SdXMLPageShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLPageShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:caption context
|
|
|
|
class SdXMLCaptionShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
css::awt::Point maCaptionPoint;
|
|
sal_Int32 mnRadius;
|
|
|
|
public:
|
|
|
|
SdXMLCaptionShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLCaptionShapeContext() override;
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// office:image context
|
|
|
|
class SdXMLGraphicObjectShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
OUString maURL;
|
|
OUString msMimeType;
|
|
css::uno::Reference < css::io::XOutputStream > mxBase64Stream;
|
|
|
|
public:
|
|
OUString const& getMimeType() const { return msMimeType; }
|
|
|
|
SdXMLGraphicObjectShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes);
|
|
virtual ~SdXMLGraphicObjectShapeContext() override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// chart:chart context
|
|
|
|
class SdXMLChartShapeContext : public SdXMLShapeContext
|
|
{
|
|
SvXMLImportContextRef mxChartContext;
|
|
|
|
public:
|
|
|
|
SdXMLChartShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
virtual void SAL_CALL characters( const OUString& rChars ) override;
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& AttrList ) override;
|
|
};
|
|
|
|
// draw:object and draw:object_ole context
|
|
|
|
class SdXMLObjectShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
OUString maCLSID;
|
|
OUString maHref;
|
|
|
|
css::uno::Reference < css::io::XOutputStream > mxBase64Stream;
|
|
|
|
public:
|
|
|
|
SdXMLObjectShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes);
|
|
virtual ~SdXMLObjectShapeContext() override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& AttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:applet
|
|
|
|
class SdXMLAppletShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
OUString maAppletName;
|
|
OUString maAppletCode;
|
|
OUString maHref;
|
|
bool mbIsScript;
|
|
|
|
css::uno::Sequence< css::beans::PropertyValue > maParams;
|
|
|
|
public:
|
|
|
|
SdXMLAppletShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes);
|
|
virtual ~SdXMLAppletShapeContext() override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:plugin
|
|
|
|
class SdXMLPluginShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
OUString maMimeType;
|
|
OUString maHref;
|
|
bool mbMedia;
|
|
|
|
css::uno::Sequence< css::beans::PropertyValue > maParams;
|
|
|
|
public:
|
|
|
|
SdXMLPluginShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes);
|
|
virtual ~SdXMLPluginShapeContext() override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
|
|
const OUString& getMimeType() const { return maMimeType; }
|
|
};
|
|
|
|
// draw:floating-frame
|
|
|
|
class SdXMLFloatingFrameShapeContext : public SdXMLShapeContext
|
|
{
|
|
private:
|
|
OUString maFrameName;
|
|
OUString maHref;
|
|
|
|
css::uno::Reference<css::drawing::XShape> CreateFloatingFrameShape() const;
|
|
|
|
public:
|
|
|
|
SdXMLFloatingFrameShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes);
|
|
virtual ~SdXMLFloatingFrameShapeContext() override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:-frame
|
|
|
|
class SdXMLFrameShapeContext : public SdXMLShapeContext, public MultiImageImportHelper
|
|
{
|
|
private:
|
|
bool mbSupportsReplacement;
|
|
SvXMLImportContextRef mxImplContext;
|
|
SvXMLImportContextRef mxReplImplContext;
|
|
|
|
protected:
|
|
/// helper to get the created xShape instance, needs to be overridden
|
|
void removeGraphicFromImportContext(const SvXMLImportContext& rContext) override;
|
|
OUString getGraphicPackageURLFromImportContext(const SvXMLImportContext& rContext) const override;
|
|
OUString getMimeTypeFromImportContext(const SvXMLImportContext& rContext) const override;
|
|
css::uno::Reference<css::graphic::XGraphic> getGraphicFromImportContext(const SvXMLImportContext& rContext) const override;
|
|
|
|
public:
|
|
|
|
SdXMLFrameShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes,
|
|
bool bTemporaryShape);
|
|
virtual ~SdXMLFrameShapeContext() override;
|
|
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& AttrList ) override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
class SdXMLCustomShapeContext : public SdXMLShapeContext
|
|
{
|
|
OUString maCustomShapeEngine;
|
|
OUString maCustomShapeData;
|
|
|
|
std::vector< css::beans::PropertyValue > maCustomShapeGeometry;
|
|
|
|
public:
|
|
|
|
|
|
SdXMLCustomShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes);
|
|
virtual ~SdXMLCustomShapeContext() override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& AttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
};
|
|
|
|
// draw:table
|
|
|
|
class SdXMLTableShapeContext : public SdXMLShapeContext
|
|
{
|
|
public:
|
|
|
|
SdXMLTableShapeContext( SvXMLImport& rImport,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
|
|
css::uno::Reference< css::drawing::XShapes > const & rShapes );
|
|
virtual ~SdXMLTableShapeContext() override;
|
|
|
|
virtual void SAL_CALL startFastElement(
|
|
sal_Int32 nElement,
|
|
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
|
|
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
|
|
|
|
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
|
|
sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& AttrList ) override;
|
|
|
|
// this is called from the parent group for each unparsed attribute in the attribute list
|
|
virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override;
|
|
|
|
private:
|
|
SvXMLImportContextRef mxTableImportContext;
|
|
OUString msTemplateStyleName;
|
|
bool maTemplateStylesUsed[6] = {};
|
|
};
|
|
|
|
extern SvXMLEnumMapEntry<css::drawing::Alignment> const aXML_GlueAlignment_EnumMap[];
|
|
extern SvXMLEnumMapEntry<css::drawing::EscapeDirection> const aXML_GlueEscapeDirection_EnumMap[];
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|