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/.
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 .
21 #include <com/sun/star/xml/sax/FastToken.hpp>
22 #include <com/sun/star/beans/XMultiPropertySet.hpp>
23 #include <com/sun/star/container/XNamed.hpp>
25 #include <oox/core/xmlfilterbase.hxx>
26 #include <oox/helper/attributelist.hxx>
27 #include <oox/ppt/pptshape.hxx>
28 #include <oox/ppt/pptgraphicshapecontext.hxx>
29 #include <oox/ppt/pptshapecontext.hxx>
30 #include <oox/ppt/pptshapegroupcontext.hxx>
31 #include <oox/drawingml/graphicshapecontext.hxx>
32 #include <drawingml/lineproperties.hxx>
33 #include <oox/drawingml/drawingmltypes.hxx>
34 #include <drawingml/customshapegeometry.hxx>
35 #include <drawingml/shapepropertiescontext.hxx>
36 #include <drawingml/textbodycontext.hxx>
37 #include <oox/drawingml/connectorshapecontext.hxx>
38 #include <drawingml/fillproperties.hxx>
39 #include "extdrawingfragmenthandler.hxx"
40 #include <oox/token/namespaces.hxx>
41 #include <oox/token/tokens.hxx>
43 using namespace oox::core
;
44 using namespace ::com::sun::star
;
45 using namespace ::com::sun::star::uno
;
46 using namespace ::com::sun::star::drawing
;
47 using namespace ::com::sun::star::beans
;
48 using namespace ::com::sun::star::text
;
49 using namespace ::com::sun::star::xml::sax
;
51 namespace oox
{ namespace ppt
{
53 PPTShapeGroupContext::PPTShapeGroupContext(
54 ContextHandler2Helper
const & rParent
,
55 const oox::ppt::SlidePersistPtr
& rSlidePersistPtr
,
56 const ShapeLocation eShapeLocation
,
57 const oox::drawingml::ShapePtr
& pMasterShapePtr
,
58 const oox::drawingml::ShapePtr
& pGroupShapePtr
)
59 : ShapeGroupContext( rParent
, pMasterShapePtr
, pGroupShapePtr
)
60 , mpSlidePersistPtr( rSlidePersistPtr
)
61 , meShapeLocation( eShapeLocation
)
65 ContextHandlerRef
PPTShapeGroupContext::onCreateContext( sal_Int32 aElementToken
, const AttributeList
& rAttribs
)
67 if( getNamespace( aElementToken
) == NMSP_dsp
)
68 aElementToken
= NMSP_ppt
| getBaseToken( aElementToken
);
70 switch( aElementToken
)
72 case PPT_TOKEN( cNvPr
):
74 // don't override SmartArt properties for embedded drawing's spTree
75 mpGroupShapePtr
->setHidden( rAttribs
.getBool( XML_hidden
, false ) );
76 if (mpGroupShapePtr
->getId().isEmpty())
77 mpGroupShapePtr
->setId(rAttribs
.getString(XML_id
).get());
78 if (mpGroupShapePtr
->getName().isEmpty())
79 mpGroupShapePtr
->setName( rAttribs
.getString( XML_name
).get() );
83 mpGroupShapePtr
->setSubType( rAttribs
.getToken( XML_type
, FastToken::DONTKNOW
) );
84 if( rAttribs
.hasAttribute( XML_idx
) )
85 mpGroupShapePtr
->setSubTypeIndex( rAttribs
.getString( XML_idx
).get().toInt32() );
87 // nvSpPr CT_ShapeNonVisual end
89 case PPT_TOKEN( grpSpPr
):
90 return new oox::drawingml::ShapePropertiesContext( *this, *mpGroupShapePtr
);
91 case PPT_TOKEN( spPr
):
92 return new oox::drawingml::ShapePropertiesContext( *this, *mpGroupShapePtr
);
94 case PPT_TOKEN( style ):
95 return new ShapeStyleContext( getParser() );
97 case PPT_TOKEN( cxnSp
): // connector shape
98 return new oox::drawingml::ConnectorShapeContext( *this, mpGroupShapePtr
, oox::drawingml::ShapePtr( new PPTShape( meShapeLocation
, "com.sun.star.drawing.ConnectorShape" ) ) );
99 case PPT_TOKEN( grpSp
): // group shape
100 return new PPTShapeGroupContext( *this, mpSlidePersistPtr
, meShapeLocation
, mpGroupShapePtr
, oox::drawingml::ShapePtr( new PPTShape( meShapeLocation
, "com.sun.star.drawing.GroupShape" ) ) );
101 case PPT_TOKEN( sp
): // Shape
103 std::shared_ptr
<PPTShape
> pShape( new PPTShape( meShapeLocation
, "com.sun.star.drawing.CustomShape" ) );
104 if( rAttribs
.getBool( XML_useBgFill
, false ) )
106 oox::drawingml::FillPropertiesPtr pBackgroundPropertiesPtr
= mpSlidePersistPtr
->getBackgroundProperties();
107 if (!pBackgroundPropertiesPtr
)
109 // The shape wants a background, but the slide doesn't have one.
110 SlidePersistPtr pMaster
= mpSlidePersistPtr
->getMasterPersist();
113 oox::drawingml::FillPropertiesPtr pMasterBackground
114 = pMaster
->getBackgroundProperties();
115 if (pMasterBackground
)
117 if (pMasterBackground
->moFillType
.has()
118 && pMasterBackground
->moFillType
.get() == XML_solidFill
)
120 // Master has a solid background, use that.
121 pBackgroundPropertiesPtr
= pMasterBackground
;
126 if (pBackgroundPropertiesPtr
)
128 pShape
->getFillProperties().assignUsed(*pBackgroundPropertiesPtr
);
131 pShape
->setModelId(rAttribs
.getString( XML_modelId
).get());
132 return new PPTShapeContext( *this, mpSlidePersistPtr
, mpGroupShapePtr
, pShape
);
134 case PPT_TOKEN( pic
): // CT_Picture
135 return new PPTGraphicShapeContext( *this, mpSlidePersistPtr
, mpGroupShapePtr
, oox::drawingml::ShapePtr( new PPTShape( meShapeLocation
, "com.sun.star.drawing.GraphicObjectShape" ) ) );
136 case PPT_TOKEN( graphicFrame
): // CT_GraphicalObjectFrame
138 pGraphicShape
= oox::drawingml::ShapePtr( new PPTShape( meShapeLocation
, "com.sun.star.drawing.OLE2Shape" ) );
139 return new oox::drawingml::GraphicalObjectFrameContext( *this, mpGroupShapePtr
, pGraphicShape
, true );
146 void PPTShapeGroupContext::importExtDrawings( )
150 for (auto const& extDrawing
: pGraphicShape
->getExtDrawings())
152 OUString aFragmentPath
= getFragmentPathFromRelId(extDrawing
);
153 getFilter().importFragment( new ExtDrawingFragmentHandler( getFilter(), aFragmentPath
,
158 pGraphicShape
->keepDiagramDrawing(getFilter(), aFragmentPath
);
160 // Apply font color imported from color fragment
161 if( pGraphicShape
->getFontRefColorForNodes().isUsed() )
162 applyFontRefColor(mpGroupShapePtr
, pGraphicShape
->getFontRefColorForNodes());
164 pGraphicShape
= oox::drawingml::ShapePtr( nullptr );
168 void PPTShapeGroupContext::applyFontRefColor(const oox::drawingml::ShapePtr
& pShape
, const oox::drawingml::Color
& rFontRefColor
)
170 pShape
->getShapeStyleRefs()[XML_fontRef
].maPhClr
= rFontRefColor
;
171 std::vector
< oox::drawingml::ShapePtr
>& vChildren
= pShape
->getChildren();
172 for (auto const& child
: vChildren
)
174 applyFontRefColor(child
, rFontRefColor
);
180 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */