LibreOffice Module oox (master) 1
pptshape.hxx
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#ifndef INCLUDED_OOX_PPT_PPTSHAPE_HXX
21#define INCLUDED_OOX_PPT_PPTSHAPE_HXX
22
23#include <vector>
24
25#include <com/sun/star/uno/Reference.hxx>
29#include <rtl/ustring.hxx>
30#include <sal/types.h>
31
32namespace basegfx { class B2DHomMatrix; }
33
34namespace com::sun::star {
35 namespace awt { struct Rectangle; }
36 namespace drawing { class XShapes; }
37}
38
39namespace oox {
40 namespace core { class XmlFilterBase; }
41 namespace drawingml { class Theme; }
42}
43
44namespace oox::ppt {
45
46class PPTShape final : public oox::drawingml::Shape
47{
48 OUString msModelId; // fallback dgs smartart shape reference
49 ShapeLocation meShapeLocation; // placeholdershapes (mnSubType != 0) on Master are never displayed
50 bool mbReferenced; // placeholdershapes on Layout are displayed only, if they are not referenced
51 // placeholdershapes on Slide are displayed always
55
56 bool IsPlaceHolderCandidate(const SlidePersist& rSlidePersist) const;
57
58public:
59
60 PPTShape( const oox::ppt::ShapeLocation eShapeLocation,
61 const char* pServiceType );
62 virtual ~PPTShape() override;
63
65 // addShape is creating and inserting the corresponding XShape.
66 void addShape(
67 oox::core::XmlFilterBase& rFilterBase,
68 const SlidePersist& rPersist,
69 const oox::drawingml::Theme* pTheme,
70 const css::uno::Reference< css::drawing::XShapes >& rxShapes,
71 basegfx::B2DHomMatrix& aTransformation,
73
75 void setReferenced( bool bReferenced ){ mbReferenced = bReferenced; };
76 void setPlaceholder( oox::drawingml::ShapePtr pPlaceholder ) { mpPlaceholder = pPlaceholder; }
77 void setModelId( const OUString& rId ) { msModelId = rId; }
78
83
84 static oox::drawingml::ShapePtr findPlaceholder( const sal_Int32 nFirstSubType,
85 const sal_Int32 nSecondSubType, const std::optional< sal_Int32 >& oSubTypeIndex,
86 std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly = false );
87 static oox::drawingml::ShapePtr findPlaceholderByIndex( const sal_Int32 nIdx,
88 std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly = false );
89
90 static oox::drawingml::TextListStylePtr getSubTypeTextListStyle( const SlidePersist& rSlidePersist, sal_Int32 nSubType );
91};
92
93}
94
95#endif // INCLUDED_OOX_PPT_PPTSHAPE_HXX
96
97/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void addShape(::oox::core::XmlFilterBase &rFilterBase, const Theme *pTheme, const css::uno::Reference< css::drawing::XShapes > &rxShapes, const basegfx::B2DHomMatrix &aTransformation, const FillProperties &rShapeOrParentShapeFillProps, ShapeIdMap *pShapeMap=nullptr, oox::drawingml::ShapePtr pParentGroupShape=nullptr)
Definition: shape.cxx:348
void setModelId(const OUString &rId)
Definition: pptshape.hxx:77
static oox::drawingml::ShapePtr findPlaceholder(const sal_Int32 nFirstSubType, const sal_Int32 nSecondSubType, const std::optional< sal_Int32 > &oSubTypeIndex, std::vector< oox::drawingml::ShapePtr > &rShapes, bool bMasterOnly=false)
Definition: pptshape.cxx:642
bool hasNonInheritedShapeProperties() const
Returns whether or not the shape had a non-empty spPr tag.
Definition: pptshape.hxx:82
void addShape(oox::core::XmlFilterBase &rFilterBase, const SlidePersist &rPersist, const oox::drawingml::Theme *pTheme, const css::uno::Reference< css::drawing::XShapes > &rxShapes, basegfx::B2DHomMatrix &aTransformation, ::oox::drawingml::ShapeIdMap *pShapeMap)
Definition: pptshape.cxx:160
OUString msModelId
Definition: pptshape.hxx:48
void setHasNoninheritedShapeProperties()
Flags shape as having a non-empty spPr tag.
Definition: pptshape.hxx:80
PPTShape(const oox::ppt::ShapeLocation eShapeLocation, const char *pServiceType)
Definition: pptshape.cxx:61
ShapeLocation getShapeLocation() const
Definition: pptshape.hxx:74
static oox::drawingml::TextListStylePtr getSubTypeTextListStyle(const SlidePersist &rSlidePersist, sal_Int32 nSubType)
Definition: pptshape.cxx:114
virtual ~PPTShape() override
Definition: pptshape.cxx:69
void setReferenced(bool bReferenced)
Definition: pptshape.hxx:75
bool mbHasNoninheritedShapeProperties
Set if spPr tag is non empty for the shape.
Definition: pptshape.hxx:54
void setPlaceholder(oox::drawingml::ShapePtr pPlaceholder)
Definition: pptshape.hxx:76
static oox::drawingml::ShapePtr findPlaceholderByIndex(const sal_Int32 nIdx, std::vector< oox::drawingml::ShapePtr > &rShapes, bool bMasterOnly=false)
Definition: pptshape.cxx:742
bool IsPlaceHolderCandidate(const SlidePersist &rSlidePersist) const
Definition: pptshape.cxx:139
ShapeLocation meShapeLocation
Definition: pptshape.hxx:49
oox::drawingml::ShapePtr mpPlaceholder
Definition: pptshape.hxx:52
std::shared_ptr< Shape > ShapePtr
::std::map< OUString, ShapePtr > ShapeIdMap
Definition: shape.hxx:77
std::shared_ptr< TextListStyle > TextListStylePtr