Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / oox / source / drawingml / shapecontext.cxx
blob289cda8dfd6629998ca546c3a984df1775900c99
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/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>
36 #include <utility>
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 {
48 // CT_Shape
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
67 // case XML_drElemPr:
68 // break;
69 case XML_extLst:
70 case XML_ext:
71 break;
72 case XML_decorative:
74 mpShapePtr->setDecorative(rAttribs.getBool(XML_val, false));
76 break;
77 case XML_cNvPr:
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 ) );
83 break;
85 case XML_hlinkMouseOver:
86 case XML_hlinkClick:
87 return new HyperLinkContext( *this, rAttribs, getShape()->getShapeProperties() );
88 case XML_ph:
89 mpShapePtr->setSubType( rAttribs.getToken( XML_type, XML_obj ) );
90 if( rAttribs.hasAttribute( XML_idx ) )
91 mpShapePtr->setSubTypeIndex( rAttribs.getInteger( XML_idx, 0 ) );
92 break;
93 // nvSpPr CT_ShapeNonVisual end
95 case XML_spPr:
96 return new ShapePropertiesContext( *this, *mpShapePtr );
98 case XML_style:
99 return new ShapeStyleContext( *this, *mpShapePtr );
101 case XML_txBody:
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();
111 if (rShapePtr)
112 return new oox::drawingml::Transform2DContext( *this, rAttribs, *mpShapePtr, true );
114 break;
115 case XML_cNvSpPr:
116 break;
117 case XML_spLocks:
118 break;
119 case XML_bodyPr:
120 if (!mpShapePtr->getTextBody())
121 mpShapePtr->setTextBody( std::make_shared<TextBody>() );
122 return new TextBodyPropertiesContext( *this, rAttribs, mpShapePtr );
123 case XML_txbx:
124 break;
125 case XML_cNvPicPr:
126 break;
127 case XML_nvPicPr:
128 case XML_picLocks:
129 break;
130 case XML_relIds:
131 break;
132 case XML_nvSpPr:
133 break;
134 default:
135 SAL_WARN("oox", "ShapeContext::onCreateContext: unhandled element: " << getBaseToken(aElementToken));
136 break;
139 return this;
144 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */