fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / oox / source / shape / ShapeDrawingFragmentHandler.cxx
blob581bba0392872d3b997a792bdbc36148f04194ca
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #include "ShapeDrawingFragmentHandler.hxx"
12 using namespace com::sun::star;
14 namespace oox { namespace shape {
16 ShapeDrawingFragmentHandler::ShapeDrawingFragmentHandler(oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, oox::drawingml::ShapePtr pGroupShapePtr ) throw()
17 : FragmentHandler(rFilter, rFragmentPath),
18 mpGroupShapePtr(pGroupShapePtr)
22 ShapeDrawingFragmentHandler::~ShapeDrawingFragmentHandler() throw()
26 void SAL_CALL ShapeDrawingFragmentHandler::endDocument() throw (xml::sax::SAXException, uno::RuntimeException)
30 uno::Reference<xml::sax::XFastContextHandler> SAL_CALL ShapeDrawingFragmentHandler::createFastChildContext(sal_Int32 Element, const uno::Reference<xml::sax::XFastAttributeList>& /*Attribs*/ ) throw (xml::sax::SAXException, uno::RuntimeException)
32 uno::Reference< XFastContextHandler > xRet;
34 switch( Element )
36 case DSP_TOKEN( spTree ):
37 xRet.set( new oox::drawingml::ShapeGroupContext(*this, oox::drawingml::ShapePtr((oox::drawingml::Shape*)0), mpGroupShapePtr));
38 break;
39 default:
40 break;
43 if( !xRet.is() )
44 xRet = getFastContextHandler();
46 return xRet;
49 } }
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */