/* -*- 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 #include #include #include #include #include #include #include #include #include namespace oox::shape { class ShapeFilterBase; class ShapeFragmentHandler final : public core::FragmentHandler2 { public: typedef rtl::Reference 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& 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& xDocProps); void setMediaDescriptor(const css::uno::Sequence& rMediaDescriptor); void setGraphicMapper(css::uno::Reference 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 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 GraphicShapeContextPtr; css::uno::Reference mxDrawingFragmentHandler; css::uno::Reference mxGraphicShapeContext; css::uno::Reference mxDiagramShapeContext; css::uno::Reference mxLockedCanvasContext; css::uno::Reference mxWpsContext; css::uno::Reference mxSavedShape; css::uno::Reference mxWpgContext; css::uno::Reference mxChartShapeContext; css::uno::Reference mxDocumentProperties; css::uno::Sequence maMediaDescriptor; ::rtl::Reference< ShapeFilterBase > mxShapeFilterBase; drawingml::ThemePtr mpThemePtr; css::uno::Reference mxDrawPage; OUString msRelationFragmentPath; css::uno::Reference const & getGraphicShapeContext(::sal_Int32 Element); css::uno::Reference const & getChartShapeContext(::sal_Int32 Element); css::uno::Reference const & getDrawingShapeContext(); css::uno::Reference const & getDiagramShapeContext(); css::uno::Reference const & getLockedCanvasContext(sal_Int32 nElement); css::uno::Reference const & getWpsContext(sal_Int32 nStartElement, sal_Int32 nElement); css::uno::Reference const & getWpgContext(sal_Int32 nElement); css::uno::Reference getContextHandler(sal_Int32 nElement = 0); }; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */