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 .
20 #include <com/sun/star/xml/sax/FastToken.hpp>
21 #include <com/sun/star/drawing/LineStyle.hpp>
22 #include <com/sun/star/beans/XMultiPropertySet.hpp>
24 #include <oox/helper/attributelist.hxx>
25 #include <oox/drawingml/shapecontext.hxx>
26 #include <drawingml/shapepropertiescontext.hxx>
27 #include <drawingml/shapestylecontext.hxx>
28 #include <oox/drawingml/drawingmltypes.hxx>
29 #include <drawingml/textbodycontext.hxx>
30 #include <drawingml/textbodypropertiescontext.hxx>
31 #include "hyperlinkcontext.hxx"
32 #include <oox/token/namespaces.hxx>
33 #include <oox/token/tokens.hxx>
34 #include <sal/log.hxx>
35 #include <drawingml/transform2dcontext.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::drawingml
{
49 ShapeContext::ShapeContext( ContextHandler2Helper
const & rParent
, ShapePtr pMasterShapePtr
, ShapePtr pShapePtr
)
50 : ContextHandler2( rParent
)
51 , mpMasterShapePtr(std::move( pMasterShapePtr
))
52 , mpShapePtr(std::move( pShapePtr
))
54 if( mpMasterShapePtr
&& mpShapePtr
)
55 mpMasterShapePtr
->addChild( mpShapePtr
);
58 ShapeContext::~ShapeContext()
62 ContextHandlerRef
ShapeContext::onCreateContext( sal_Int32 aElementToken
, const AttributeList
& rAttribs
)
64 switch( getBaseToken( aElementToken
) )
66 // nvSpPr CT_ShapeNonVisual begin
74 mpShapePtr
->setDecorative(rAttribs
.getBool(XML_val
, false));
79 mpShapePtr
->setHidden( rAttribs
.getBool( XML_hidden
, false ) );
80 mpShapePtr
->setId( rAttribs
.getStringDefaulted( XML_id
) );
81 mpShapePtr
->setName( rAttribs
.getStringDefaulted( XML_name
) );
82 mpShapePtr
->setDescription( rAttribs
.getStringDefaulted( XML_descr
) );
85 case XML_hlinkMouseOver
:
87 return new HyperLinkContext( *this, rAttribs
, getShape()->getShapeProperties() );
89 mpShapePtr
->setSubType( rAttribs
.getToken( XML_type
, XML_obj
) );
90 if( rAttribs
.hasAttribute( XML_idx
) )
91 mpShapePtr
->setSubTypeIndex( rAttribs
.getInteger( XML_idx
, 0 ) );
93 // nvSpPr CT_ShapeNonVisual end
96 return new ShapePropertiesContext( *this, *mpShapePtr
);
99 return new ShapeStyleContext( *this, *mpShapePtr
);
102 case XML_txbxContent
:
104 if (!mpShapePtr
->getTextBody())
105 mpShapePtr
->setTextBody( std::make_shared
<TextBody
>() );
106 return new TextBodyContext( *this, mpShapePtr
);
108 case XML_txXfrm
: // diagram shape. [MS-ODRAWXML]
110 const TextBodyPtr
& rShapePtr
= mpShapePtr
->getTextBody();
112 return new oox::drawingml::Transform2DContext( *this, rAttribs
, *mpShapePtr
, true );
120 if (!mpShapePtr
->getTextBody())
121 mpShapePtr
->setTextBody( std::make_shared
<TextBody
>() );
122 return new TextBodyPropertiesContext( *this, rAttribs
, mpShapePtr
);
135 SAL_WARN("oox", "ShapeContext::onCreateContext: unhandled element: " << getBaseToken(aElementToken
));
144 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */