GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / oox / source / ppt / pptshapegroupcontext.cxx
blobe25bf6561d0b503713d963219635529a987836a3
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/ppt/pptshape.hxx"
26 #include "oox/ppt/pptgraphicshapecontext.hxx"
27 #include "oox/ppt/pptshapecontext.hxx"
28 #include "oox/ppt/pptshapegroupcontext.hxx"
29 #include "oox/drawingml/graphicshapecontext.hxx"
30 #include "oox/drawingml/lineproperties.hxx"
31 #include "oox/drawingml/drawingmltypes.hxx"
32 #include "oox/drawingml/customshapegeometry.hxx"
33 #include "oox/drawingml/textbodycontext.hxx"
34 #include "oox/drawingml/connectorshapecontext.hxx"
35 #include "oox/drawingml/fillproperties.hxx"
36 #include "extdrawingfragmenthandler.hxx"
38 using namespace oox::core;
39 using namespace ::com::sun::star;
40 using namespace ::com::sun::star::uno;
41 using namespace ::com::sun::star::drawing;
42 using namespace ::com::sun::star::beans;
43 using namespace ::com::sun::star::text;
44 using namespace ::com::sun::star::xml::sax;
46 namespace oox { namespace ppt {
48 PPTShapeGroupContext::PPTShapeGroupContext(
49 ContextHandler2Helper& rParent,
50 const oox::ppt::SlidePersistPtr pSlidePersistPtr,
51 const ShapeLocation eShapeLocation,
52 oox::drawingml::ShapePtr pMasterShapePtr,
53 oox::drawingml::ShapePtr pGroupShapePtr )
54 : ShapeGroupContext( rParent, pMasterShapePtr, pGroupShapePtr )
55 , mpSlidePersistPtr( pSlidePersistPtr )
56 , meShapeLocation( eShapeLocation )
57 , pGraphicShape( (PPTShape *)NULL )
61 ContextHandlerRef PPTShapeGroupContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
63 if( getNamespace( aElementToken ) == NMSP_dsp )
64 aElementToken = NMSP_ppt | getBaseToken( aElementToken );
66 switch( aElementToken )
68 case PPT_TOKEN( cNvPr ):
70 mpGroupShapePtr->setHidden( rAttribs.getBool( XML_hidden, false ) );
71 mpGroupShapePtr->setId( rAttribs.getString( XML_id ).get() );
72 mpGroupShapePtr->setName( rAttribs.getString( XML_name ).get() );
73 break;
75 case PPT_TOKEN( ph ):
76 mpGroupShapePtr->setSubType( rAttribs.getToken( XML_type, FastToken::DONTKNOW ) );
77 if( rAttribs.hasAttribute( XML_idx ) )
78 mpGroupShapePtr->setSubTypeIndex( rAttribs.getString( XML_idx ).get().toInt32() );
79 break;
80 // nvSpPr CT_ShapeNonVisual end
82 case PPT_TOKEN( grpSpPr ):
83 return new oox::drawingml::ShapePropertiesContext( *this, *mpGroupShapePtr );
84 case PPT_TOKEN( spPr ):
85 return new oox::drawingml::ShapePropertiesContext( *this, *mpGroupShapePtr );
87 case PPT_TOKEN( style ):
88 return new ShapeStyleContext( getParser() );
90 case PPT_TOKEN( cxnSp ): // connector shape
91 return new oox::drawingml::ConnectorShapeContext( *this, mpGroupShapePtr, oox::drawingml::ShapePtr( new PPTShape( meShapeLocation, "com.sun.star.drawing.ConnectorShape" ) ) );
92 case PPT_TOKEN( grpSp ): // group shape
93 return new PPTShapeGroupContext( *this, mpSlidePersistPtr, meShapeLocation, mpGroupShapePtr, oox::drawingml::ShapePtr( new PPTShape( meShapeLocation, "com.sun.star.drawing.GroupShape" ) ) );
94 case PPT_TOKEN( sp ): // Shape
96 boost::shared_ptr<PPTShape> pShape( new PPTShape( meShapeLocation, "com.sun.star.drawing.CustomShape" ) );
97 if( rAttribs.getBool( XML_useBgFill, false ) )
99 ::oox::drawingml::FillProperties &aFill = pShape->getFillProperties();
100 aFill.moFillType = XML_solidFill;
101 // This is supposed to fill with slide (background) color, but
102 // TODO: We are using white here, because thats the closest we can assume (?)
103 aFill.maFillColor.setSrgbClr( API_RGB_WHITE );
105 pShape->setModelId(rAttribs.getString( XML_modelId ).get());
106 return new PPTShapeContext( *this, mpSlidePersistPtr, mpGroupShapePtr, pShape );
108 case PPT_TOKEN( pic ): // CT_Picture
109 return new PPTGraphicShapeContext( *this, mpSlidePersistPtr, mpGroupShapePtr, oox::drawingml::ShapePtr( new PPTShape( meShapeLocation, "com.sun.star.drawing.GraphicObjectShape" ) ) );
110 case PPT_TOKEN( graphicFrame ): // CT_GraphicalObjectFrame
112 if( pGraphicShape )
113 importExtDrawings();
114 pGraphicShape = oox::drawingml::ShapePtr( new PPTShape( meShapeLocation, "com.sun.star.drawing.OLE2Shape" ) );
115 return new oox::drawingml::GraphicalObjectFrameContext( *this, mpGroupShapePtr, pGraphicShape, true );
119 return this;
122 void PPTShapeGroupContext::importExtDrawings( )
124 if( pGraphicShape )
126 for( ::std::vector<OUString>::const_iterator aIt = pGraphicShape->getExtDrawings().begin(), aEnd = pGraphicShape->getExtDrawings().end();
127 aIt != aEnd; ++aIt )
129 getFilter().importFragment( new ExtDrawingFragmentHandler( getFilter(), getFragmentPathFromRelId( *aIt ),
130 mpSlidePersistPtr,
131 meShapeLocation,
132 mpMasterShapePtr,
133 mpGroupShapePtr,
134 pGraphicShape ) );
136 pGraphicShape = oox::drawingml::ShapePtr( (PPTShape *)NULL );
140 void PPTShapeGroupContext::onEndElement()
142 importExtDrawings();
147 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */