summaryrefslogtreecommitdiffstats
path: root/include/oox/shape/ShapeContextHandler.hxx
blob: 2e108d8cd4f2a5076b83e056fccf0a9ac30101ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* -*- 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 <memory>
#include <stack>
#include <cppuhelper/implbase.hxx>
#include <oox/drawingml/graphicshapecontext.hxx>
#include <oox/core/fragmenthandler2.hxx>
#include <oox/core/xmlfilterbase.hxx>
#include <com/sun/star/document/XDocumentProperties.hpp>
#include <com/sun/star/graphic/XGraphicMapper.hpp>
#include <com/sun/star/drawing/XDrawPage.hpp>
#include <com/sun/star/frame/XModel.hpp>

namespace oox::shape {

class ShapeFilterBase;

class ShapeFragmentHandler final : public core::FragmentHandler2
{
public:
    typedef rtl::Reference<ShapeFragmentHandler> Pointer_t;

    explicit ShapeFragmentHandler(core::XmlFilterBase& rFilter,
                                  const OUString& rFragmentPath )
    : FragmentHandler2(rFilter, rFragmentPath)
    {
    }
};

class OOX_DLLPUBLIC ShapeContextHandler final :
    public ::cppu::WeakImplHelper< css::xml::sax::XFastContextHandler >
{
public:
    explicit ShapeContextHandler(const rtl::Reference<ShapeFilterBase>& xFilterBase);

    virtual ~ShapeContextHandler() override;

    // css::xml::sax::XFastContextHandler:
    virtual void SAL_CALL startFastElement
    (::sal_Int32 Element,
     const css::uno::Reference< css::xml::sax::XFastAttributeList > & Attribs) override;

    virtual void SAL_CALL startUnknownElement
    (const OUString & Namespace,
     const OUString & Name,
     const css::uno::Reference< css::xml::sax::XFastAttributeList > & Attribs) override;

    virtual void SAL_CALL endFastElement(::sal_Int32 Element) override;

    virtual void SAL_CALL endUnknownElement
    (const OUString & Namespace,
     const OUString & Name) override;

    virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL
    createFastChildContext
    (::sal_Int32 Element,
     const css::uno::Reference< css::xml::sax::XFastAttributeList > & Attribs) override;

    virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL
    createUnknownChildContext
    (const OUString & Namespace,
     const OUString & Name,
     const css::uno::Reference< css::xml::sax::XFastAttributeList > & Attribs) override;

    virtual void SAL_CALL characters(const OUString & aChars) override;

    css::uno::Reference< css::drawing::XShape > getShape();

    void setDrawPage(const css::uno::Reference< css::drawing::XDrawPage > & the_value);

    void setModel(const css::uno::Reference< css::frame::XModel > & the_value);

    void setRelationFragmentPath(const OUString & the_value);

    sal_Int32 getStartToken() const;
    void popStartToken();
    void pushStartToken( sal_Int32 _starttoken );

    void setPosition(const css::awt::Point& rPosition);

    const bool& getFullWPGSupport() { return m_bFullWPGSUpport; }
    void setFullWPGSupport(bool bUse) { m_bFullWPGSUpport = bUse; }

    bool isWordProcessingGroupShape() const { return mxWpgContext ? true : false; }

    void setDocumentProperties(const css::uno::Reference<css::document::XDocumentProperties>& xDocProps);
    void setMediaDescriptor(const css::uno::Sequence<css::beans::PropertyValue>& rMediaDescriptor);

    void setGraphicMapper(css::uno::Reference<css::graphic::XGraphicMapper> const & rGraphicMapper);

    void setTheme(const oox::drawingml::ThemePtr& pTheme) { mpThemePtr = pTheme; }
    const oox::drawingml::ThemePtr& getTheme() const { return mpThemePtr; }

private:
    ShapeContextHandler(ShapeContextHandler const &) = delete;
    void operator =(ShapeContextHandler const &) = delete;

    // Special stack which always has at least one element.
    // In case of group shapes with embedded content it will have more element than one.
    std::stack<sal_uInt32> mnStartTokenStack;

    css::awt::Point maPosition;
    bool m_bFullWPGSUpport; // Is this DrawingML shape supposed to be processed as WPG?

    drawingml::ShapePtr mpShape;
    std::shared_ptr< vml::Drawing > mpDrawing;

    typedef rtl::Reference<drawingml::GraphicShapeContext>
    GraphicShapeContextPtr;
    css::uno::Reference<XFastContextHandler> mxDrawingFragmentHandler;
    css::uno::Reference<XFastContextHandler> mxGraphicShapeContext;
    css::uno::Reference<XFastContextHandler> mxDiagramShapeContext;
    css::uno::Reference<XFastContextHandler> mxLockedCanvasContext;
    css::uno::Reference<XFastContextHandler> mxWpsContext;
    css::uno::Reference<css::drawing::XShape> mxSavedShape;
    css::uno::Reference<XFastContextHandler> mxWpgContext;
    css::uno::Reference<XFastContextHandler> mxChartShapeContext;
    css::uno::Reference<css::document::XDocumentProperties> mxDocumentProperties;
    css::uno::Sequence<css::beans::PropertyValue> maMediaDescriptor;

    ::rtl::Reference< ShapeFilterBase > mxShapeFilterBase;
    drawingml::ThemePtr mpThemePtr;
    css::uno::Reference<css::drawing::XDrawPage> mxDrawPage;
    OUString msRelationFragmentPath;

    css::uno::Reference<XFastContextHandler> const & getGraphicShapeContext(::sal_Int32 Element);
    css::uno::Reference<XFastContextHandler> const & getChartShapeContext(::sal_Int32 Element);
    css::uno::Reference<XFastContextHandler> const & getDrawingShapeContext();
    css::uno::Reference<XFastContextHandler> const & getDiagramShapeContext();
    css::uno::Reference<XFastContextHandler> const & getLockedCanvasContext(sal_Int32 nElement);
    css::uno::Reference<XFastContextHandler> const & getWpsContext(sal_Int32 nStartElement, sal_Int32 nElement);
    css::uno::Reference<XFastContextHandler> const & getWpgContext(sal_Int32 nElement);
    css::uno::Reference<XFastContextHandler> getContextHandler(sal_Int32 nElement = 0);
};

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */