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/.
10 #ifndef INCLUDED_OOX_SOURCE_PPT_EXTDRAWINGFRAGMENTHANDLER_HXX
11 #define INCLUDED_OOX_SOURCE_PPT_EXTDRAWINGFRAGMENTHANDLER_HXX
13 #include <oox/core/fragmenthandler2.hxx>
14 #include <oox/ppt/slidepersist.hxx>
18 class ExtDrawingFragmentHandler
: public ::oox::core::FragmentHandler2
21 ExtDrawingFragmentHandler( oox::core::XmlFilterBase
& rFilter
, const OUString
& rFragmentPath
,
22 oox::ppt::SlidePersistPtr pSlidePersistPtr
,
23 const oox::ppt::ShapeLocation eShapeLocation
,
24 oox::drawingml::ShapePtr pGroupShapePtr
,
25 oox::drawingml::ShapePtr pShapePtr
);
26 virtual ~ExtDrawingFragmentHandler() noexcept override
;
28 virtual ::oox::core::ContextHandlerRef
onCreateContext( ::sal_Int32 Element
, const AttributeList
& rAttribs
) override
;
31 const oox::ppt::SlidePersistPtr mpSlidePersistPtr
;
32 const oox::ppt::ShapeLocation meShapeLocation
;
33 oox::drawingml::ShapePtr mpGroupShapePtr
;
34 oox::drawingml::ShapePtr mpShapePtr
;
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */