1*b1cdbd2cSJim Jagielski /**************************************************************
2*b1cdbd2cSJim Jagielski  *
3*b1cdbd2cSJim Jagielski  * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski  * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski  * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski  * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski  * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski  * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski  * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski  *
11*b1cdbd2cSJim Jagielski  *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski  *
13*b1cdbd2cSJim Jagielski  * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski  * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski  * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski  * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski  * under the License.
19*b1cdbd2cSJim Jagielski  *
20*b1cdbd2cSJim Jagielski  *************************************************************/
21*b1cdbd2cSJim Jagielski 
22*b1cdbd2cSJim Jagielski 
23*b1cdbd2cSJim Jagielski 
24*b1cdbd2cSJim Jagielski #include <com/sun/star/xml/sax/FastToken.hpp>
25*b1cdbd2cSJim Jagielski #include <com/sun/star/beans/XMultiPropertySet.hpp>
26*b1cdbd2cSJim Jagielski #include <com/sun/star/container/XNamed.hpp>
27*b1cdbd2cSJim Jagielski 
28*b1cdbd2cSJim Jagielski #include "oox/helper/attributelist.hxx"
29*b1cdbd2cSJim Jagielski #include "oox/drawingml/shapegroupcontext.hxx"
30*b1cdbd2cSJim Jagielski #include "oox/drawingml/connectorshapecontext.hxx"
31*b1cdbd2cSJim Jagielski #include "oox/drawingml/graphicshapecontext.hxx"
32*b1cdbd2cSJim Jagielski #include "oox/drawingml/lineproperties.hxx"
33*b1cdbd2cSJim Jagielski #include "oox/drawingml/drawingmltypes.hxx"
34*b1cdbd2cSJim Jagielski #include "oox/drawingml/customshapegeometry.hxx"
35*b1cdbd2cSJim Jagielski #include "oox/drawingml/textbodycontext.hxx"
36*b1cdbd2cSJim Jagielski 
37*b1cdbd2cSJim Jagielski using rtl::OUString;
38*b1cdbd2cSJim Jagielski using namespace oox::core;
39*b1cdbd2cSJim Jagielski using namespace ::com::sun::star;
40*b1cdbd2cSJim Jagielski using namespace ::com::sun::star::uno;
41*b1cdbd2cSJim Jagielski using namespace ::com::sun::star::drawing;
42*b1cdbd2cSJim Jagielski using namespace ::com::sun::star::beans;
43*b1cdbd2cSJim Jagielski using namespace ::com::sun::star::text;
44*b1cdbd2cSJim Jagielski using namespace ::com::sun::star::xml::sax;
45*b1cdbd2cSJim Jagielski 
46*b1cdbd2cSJim Jagielski namespace oox { namespace drawingml {
47*b1cdbd2cSJim Jagielski 
ShapeGroupContext(ContextHandler & rParent,ShapePtr pMasterShapePtr,ShapePtr pGroupShapePtr)48*b1cdbd2cSJim Jagielski ShapeGroupContext::ShapeGroupContext( ContextHandler& rParent, ShapePtr pMasterShapePtr, ShapePtr pGroupShapePtr )
49*b1cdbd2cSJim Jagielski : ContextHandler( rParent )
50*b1cdbd2cSJim Jagielski , mpGroupShapePtr( pGroupShapePtr )
51*b1cdbd2cSJim Jagielski , mpMasterShapePtr( pMasterShapePtr )
52*b1cdbd2cSJim Jagielski {
53*b1cdbd2cSJim Jagielski }
54*b1cdbd2cSJim Jagielski 
~ShapeGroupContext()55*b1cdbd2cSJim Jagielski ShapeGroupContext::~ShapeGroupContext()
56*b1cdbd2cSJim Jagielski {
57*b1cdbd2cSJim Jagielski 	if ( mpMasterShapePtr.get() && mpGroupShapePtr.get() )
58*b1cdbd2cSJim Jagielski 		mpMasterShapePtr->addChild( mpGroupShapePtr );
59*b1cdbd2cSJim Jagielski }
60*b1cdbd2cSJim Jagielski 
createFastChildContext(sal_Int32 aElementToken,const Reference<XFastAttributeList> & xAttribs)61*b1cdbd2cSJim Jagielski Reference< XFastContextHandler > ShapeGroupContext::createFastChildContext( sal_Int32 aElementToken, const Reference< XFastAttributeList >& xAttribs ) throw (SAXException, RuntimeException)
62*b1cdbd2cSJim Jagielski {
63*b1cdbd2cSJim Jagielski 	Reference< XFastContextHandler > xRet;
64*b1cdbd2cSJim Jagielski 
65*b1cdbd2cSJim Jagielski     switch( getBaseToken( aElementToken ) )
66*b1cdbd2cSJim Jagielski 	{
67*b1cdbd2cSJim Jagielski 	case XML_cNvPr:
68*b1cdbd2cSJim Jagielski 	{
69*b1cdbd2cSJim Jagielski 		AttributeList aAttribs( xAttribs );
70*b1cdbd2cSJim Jagielski 		mpGroupShapePtr->setHidden( aAttribs.getBool( XML_hidden, false ) );
71*b1cdbd2cSJim Jagielski 		mpGroupShapePtr->setId( xAttribs->getOptionalValue( XML_id ) );
72*b1cdbd2cSJim Jagielski 		mpGroupShapePtr->setName( xAttribs->getOptionalValue( XML_name ) );
73*b1cdbd2cSJim Jagielski 		break;
74*b1cdbd2cSJim Jagielski 	}
75*b1cdbd2cSJim Jagielski 	case XML_ph:
76*b1cdbd2cSJim Jagielski 		mpGroupShapePtr->setSubType( xAttribs->getOptionalValueToken( XML_type, FastToken::DONTKNOW ) );
77*b1cdbd2cSJim Jagielski 		mpGroupShapePtr->setSubTypeIndex( xAttribs->getOptionalValue( XML_idx ).toInt32() );
78*b1cdbd2cSJim Jagielski 		break;
79*b1cdbd2cSJim Jagielski 	// nvSpPr CT_ShapeNonVisual end
80*b1cdbd2cSJim Jagielski 
81*b1cdbd2cSJim Jagielski 	case XML_grpSpPr:
82*b1cdbd2cSJim Jagielski         xRet = new ShapePropertiesContext( *this, *mpGroupShapePtr );
83*b1cdbd2cSJim Jagielski 		break;
84*b1cdbd2cSJim Jagielski 	case XML_spPr:
85*b1cdbd2cSJim Jagielski         xRet = new ShapePropertiesContext( *this, *mpGroupShapePtr );
86*b1cdbd2cSJim Jagielski 		break;
87*b1cdbd2cSJim Jagielski /*
88*b1cdbd2cSJim Jagielski 	case XML_style:
89*b1cdbd2cSJim Jagielski 		xRet = new ShapeStyleContext( getParser() );
90*b1cdbd2cSJim Jagielski 		break;
91*b1cdbd2cSJim Jagielski */
92*b1cdbd2cSJim Jagielski 	case XML_cxnSp:			// connector shape
93*b1cdbd2cSJim Jagielski         xRet.set( new ConnectorShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.ConnectorShape" ) ) ) );
94*b1cdbd2cSJim Jagielski 		break;
95*b1cdbd2cSJim Jagielski 	case XML_grpSp:			// group shape
96*b1cdbd2cSJim Jagielski         xRet.set( new ShapeGroupContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GroupShape" ) ) ) );
97*b1cdbd2cSJim Jagielski 		break;
98*b1cdbd2cSJim Jagielski 	case XML_sp:			// shape
99*b1cdbd2cSJim Jagielski         xRet.set( new ShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.CustomShape" ) ) ) );
100*b1cdbd2cSJim Jagielski 		break;
101*b1cdbd2cSJim Jagielski 	case XML_pic:			// CT_Picture
102*b1cdbd2cSJim Jagielski         xRet.set( new GraphicShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GraphicObjectShape" ) ) ) );
103*b1cdbd2cSJim Jagielski 		break;
104*b1cdbd2cSJim Jagielski 	case XML_graphicFrame:	// CT_GraphicalObjectFrame
105*b1cdbd2cSJim Jagielski         xRet.set( new GraphicalObjectFrameContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GraphicObjectShape" ) ), true ) );
106*b1cdbd2cSJim Jagielski 		break;
107*b1cdbd2cSJim Jagielski 	}
108*b1cdbd2cSJim Jagielski 	if( !xRet.is() )
109*b1cdbd2cSJim Jagielski 		xRet.set( this );
110*b1cdbd2cSJim Jagielski 
111*b1cdbd2cSJim Jagielski 
112*b1cdbd2cSJim Jagielski 	return xRet;
113*b1cdbd2cSJim Jagielski }
114*b1cdbd2cSJim Jagielski 
115*b1cdbd2cSJim Jagielski } }
116