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
;
42 namespace oox::drawingml
{
45 ShapeContext::ShapeContext( ContextHandler2Helper
const & rParent
, ShapePtr pMasterShapePtr
, ShapePtr pShapePtr
)
46 : ContextHandler2( rParent
)
47 , mpMasterShapePtr(std::move( pMasterShapePtr
))
48 , mpShapePtr(std::move( pShapePtr
))
50 if( mpMasterShapePtr
&& mpShapePtr
)
51 mpMasterShapePtr
->addChild( mpShapePtr
);
54 ShapeContext::~ShapeContext()
58 ContextHandlerRef
ShapeContext::onCreateContext( sal_Int32 aElementToken
, const AttributeList
& rAttribs
)
60 switch( getBaseToken( aElementToken
) )
62 // nvSpPr CT_ShapeNonVisual begin
70 mpShapePtr
->setDecorative(rAttribs
.getBool(XML_val
, false));
75 mpShapePtr
->setHidden( rAttribs
.getBool( XML_hidden
, false ) );
76 mpShapePtr
->setId( rAttribs
.getStringDefaulted( XML_id
) );
77 mpShapePtr
->setName( rAttribs
.getStringDefaulted( XML_name
) );
78 mpShapePtr
->setDescription( rAttribs
.getStringDefaulted( XML_descr
) );
79 mpShapePtr
->setTitle(rAttribs
.getStringDefaulted(XML_title
));
82 case XML_hlinkMouseOver
:
84 return new HyperLinkContext( *this, rAttribs
, getShape()->getShapeProperties() );
86 mpShapePtr
->setSubType( rAttribs
.getToken( XML_type
, XML_obj
) );
87 if( rAttribs
.hasAttribute( XML_idx
) )
88 mpShapePtr
->setSubTypeIndex( rAttribs
.getInteger( XML_idx
, 0 ) );
90 // nvSpPr CT_ShapeNonVisual end
93 return new ShapePropertiesContext( *this, *mpShapePtr
);
96 return new ShapeStyleContext( *this, *mpShapePtr
);
101 if (!mpShapePtr
->getTextBody())
102 mpShapePtr
->setTextBody( std::make_shared
<TextBody
>() );
103 return new TextBodyContext( *this, mpShapePtr
);
105 case XML_txXfrm
: // diagram shape. [MS-ODRAWXML]
107 const TextBodyPtr
& rShapePtr
= mpShapePtr
->getTextBody();
109 return new oox::drawingml::Transform2DContext( *this, rAttribs
, *mpShapePtr
, true );
117 if (!mpShapePtr
->getTextBody())
118 mpShapePtr
->setTextBody( std::make_shared
<TextBody
>() );
119 return new TextBodyPropertiesContext( *this, rAttribs
, mpShapePtr
);
132 SAL_INFO("oox", "ShapeContext::onCreateContext: unhandled element: " << getBaseToken(aElementToken
));
141 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */