LibreOffice Module oox (master) 1
shapecontext.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
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>
23
31#include "hyperlinkcontext.hxx"
32#include <oox/token/namespaces.hxx>
33#include <oox/token/tokens.hxx>
34#include <sal/log.hxx>
36#include <utility>
37
38using namespace oox::core;
39using namespace ::com::sun::star;
40using namespace ::com::sun::star::uno;
41using namespace ::com::sun::star::drawing;
42using namespace ::com::sun::star::beans;
43using namespace ::com::sun::star::text;
44using namespace ::com::sun::star::xml::sax;
45
46namespace oox::drawingml {
47
48// CT_Shape
49ShapeContext::ShapeContext( ContextHandler2Helper const & rParent, ShapePtr pMasterShapePtr, ShapePtr pShapePtr )
50: ContextHandler2( rParent )
51, mpMasterShapePtr(std::move( pMasterShapePtr ))
52, mpShapePtr(std::move( pShapePtr ))
53{
54 if( mpMasterShapePtr && mpShapePtr )
55 mpMasterShapePtr->addChild( mpShapePtr );
56}
57
58ShapeContext::~ShapeContext()
59{
60}
61
62ContextHandlerRef ShapeContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
63{
64 switch( getBaseToken( aElementToken ) )
65 {
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:
73 {
74 mpShapePtr->setDecorative(rAttribs.getBool(XML_val, false));
75 }
76 break;
77 case XML_cNvPr:
78 {
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;
84 }
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
94
95 case XML_spPr:
96 return new ShapePropertiesContext( *this, *mpShapePtr );
97
98 case XML_style:
99 return new ShapeStyleContext( *this, *mpShapePtr );
100
101 case XML_txBody:
102 case XML_txbxContent:
103 {
104 if (!mpShapePtr->getTextBody())
105 mpShapePtr->setTextBody( std::make_shared<TextBody>() );
106 return new TextBodyContext( *this, mpShapePtr );
107 }
108 case XML_txXfrm: // diagram shape. [MS-ODRAWXML]
109 {
110 const TextBodyPtr& rShapePtr = mpShapePtr->getTextBody();
111 if (rShapePtr)
112 return new oox::drawingml::Transform2DContext( *this, rAttribs, *mpShapePtr, true );
113 }
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_INFO("oox", "ShapeContext::onCreateContext: unhandled element: " << getBaseToken(aElementToken));
136 break;
137 }
138
139 return this;
140}
141
142}
143
144/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provides access to attribute values of an element.
OUString getStringDefaulted(sal_Int32 nAttrToken) const
Returns the string value of the specified attribute, returns an empty string if attribute not present...
bool hasAttribute(sal_Int32 nAttrToken) const
Returns true, if the specified attribute is present.
std::optional< sal_Int32 > getInteger(sal_Int32 nAttrToken) const
Returns the 32-bit signed integer value of the specified attribute (decimal).
std::optional< bool > getBool(sal_Int32 nAttrToken) const
Returns the boolean value of the specified attribute.
std::optional< sal_Int32 > getToken(sal_Int32 nAttrToken) const
Returns the token identifier of the value of the specified attribute.
ShapeContext(::oox::core::ContextHandler2Helper const &rParent, ShapePtr pMasterShapePtr, ShapePtr pShapePtr)
context to import a CT_Transform2D
#define SAL_INFO(area, stream)
std::shared_ptr< Shape > ShapePtr
std::shared_ptr< TextBody > TextBodyPtr