fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / oox / source / drawingml / shapegroupcontext.cxx
blob831d72b6c5e7f5601c5e4662c8db4c60bfcf2cfa
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <com/sun/star/xml/sax/FastToken.hpp>
21 #include <com/sun/star/beans/XMultiPropertySet.hpp>
22 #include <com/sun/star/container/XNamed.hpp>
24 #include "oox/helper/attributelist.hxx"
25 #include "oox/drawingml/shapegroupcontext.hxx"
26 #include "oox/drawingml/connectorshapecontext.hxx"
27 #include "oox/drawingml/graphicshapecontext.hxx"
28 #include "oox/drawingml/lineproperties.hxx"
29 #include "oox/drawingml/drawingmltypes.hxx"
30 #include "oox/drawingml/customshapegeometry.hxx"
31 #include "oox/drawingml/textbodycontext.hxx"
33 using namespace oox::core;
34 using namespace ::com::sun::star;
35 using namespace ::com::sun::star::uno;
36 using namespace ::com::sun::star::drawing;
37 using namespace ::com::sun::star::beans;
38 using namespace ::com::sun::star::text;
39 using namespace ::com::sun::star::xml::sax;
41 namespace oox { namespace drawingml {
43 ShapeGroupContext::ShapeGroupContext( ContextHandler& rParent, ShapePtr pMasterShapePtr, ShapePtr pGroupShapePtr )
44 : ContextHandler( rParent )
45 , mpGroupShapePtr( pGroupShapePtr )
46 , mpMasterShapePtr( pMasterShapePtr )
50 ShapeGroupContext::~ShapeGroupContext()
52 if ( mpMasterShapePtr.get() && mpGroupShapePtr.get() )
53 mpMasterShapePtr->addChild( mpGroupShapePtr );
56 Reference< XFastContextHandler > ShapeGroupContext::createFastChildContext( sal_Int32 aElementToken, const Reference< XFastAttributeList >& xAttribs ) throw (SAXException, RuntimeException)
58 Reference< XFastContextHandler > xRet;
60 switch( getBaseToken( aElementToken ) )
62 case XML_cNvPr:
64 AttributeList aAttribs( xAttribs );
65 mpGroupShapePtr->setHidden( aAttribs.getBool( XML_hidden, false ) );
66 mpGroupShapePtr->setId( xAttribs->getOptionalValue( XML_id ) );
67 mpGroupShapePtr->setName( xAttribs->getOptionalValue( XML_name ) );
68 break;
70 case XML_ph:
71 mpGroupShapePtr->setSubType( xAttribs->getOptionalValueToken( XML_type, FastToken::DONTKNOW ) );
72 if( xAttribs->hasAttribute( XML_idx ) )
73 mpGroupShapePtr->setSubTypeIndex( xAttribs->getOptionalValue( XML_idx ).toInt32() );
74 break;
75 // nvSpPr CT_ShapeNonVisual end
77 case XML_grpSpPr:
78 xRet = new ShapePropertiesContext( *this, *mpGroupShapePtr );
79 break;
80 case XML_spPr:
81 xRet = new ShapePropertiesContext( *this, *mpGroupShapePtr );
82 break;
84 case XML_style:
85 xRet = new ShapeStyleContext( getParser() );
86 break;
88 case XML_cxnSp: // connector shape
90 ShapePtr pShape(new Shape("com.sun.star.drawing.ConnectorShape"));
91 pShape->setLockedCanvas(mpGroupShapePtr->getLockedCanvas());
92 xRet.set( new ConnectorShapeContext( *this, mpGroupShapePtr, pShape ) );
94 break;
95 case XML_grpSp: // group shape
96 xRet.set( new ShapeGroupContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GroupShape" ) ) ) );
97 break;
98 case XML_sp: // shape
99 xRet.set( new ShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.CustomShape" ) ) ) );
100 break;
101 case XML_pic: // CT_Picture
102 xRet.set( new GraphicShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GraphicObjectShape" ) ) ) );
103 break;
104 case XML_graphicFrame: // CT_GraphicalObjectFrame
105 xRet.set( new GraphicalObjectFrameContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GraphicObjectShape" ) ), true ) );
106 break;
108 if( !xRet.is() )
109 xRet.set( this );
112 return xRet;
117 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */