LibreOffice Module svx (master) 1
EnhancedCustomShape2d.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_SVX_ENHANCEDCUSTOMSHAPE2D_HXX
21#define INCLUDED_SVX_ENHANCEDCUSTOMSHAPE2D_HXX
22
23#include <svx/msdffdef.hxx>
24#include <svx/sdasitm.hxx>
25#include <svx/svdotext.hxx>
26#include <tools/degree.hxx>
27#include <com/sun/star/awt/Size.hpp>
28#include <com/sun/star/uno/Sequence.h>
29#include <com/sun/star/beans/PropertyValues.hpp>
30#include <svl/itemset.hxx>
31#include <com/sun/star/drawing/EnhancedCustomShapeParameterPair.hpp>
32#include <com/sun/star/drawing/EnhancedCustomShapeSegment.hpp>
33#include <com/sun/star/drawing/EnhancedCustomShapeParameter.hpp>
34#include <com/sun/star/drawing/EnhancedCustomShapeTextFrame.hpp>
35#include <com/sun/star/drawing/EnhancedCustomShapeAdjustmentValue.hpp>
36
38#include <tools/gen.hxx>
41
42#include <memory>
43#include <vector>
44
45namespace com::sun::star::awt { struct Point; }
46
47class Color;
48class SdrObject;
49class SdrPathObj;
51
52enum class HandleFlags
53{
54 NONE = 0x0000,
55 MIRRORED_X = 0x0001,
56 MIRRORED_Y = 0x0002,
57 SWITCHED = 0x0004,
58 POLAR = 0x0008,
59 RANGE_X_MINIMUM = 0x0020,
60 RANGE_X_MAXIMUM = 0x0040,
61 RANGE_Y_MINIMUM = 0x0080,
62 RANGE_Y_MAXIMUM = 0x0100,
63 RADIUS_RANGE_MINIMUM = 0x0200,
64 RADIUS_RANGE_MAXIMUM = 0x0400,
65 REFX = 0x0800,
66 REFY = 0x1000,
67 REFANGLE = 0x2000,
68 REFR = 0x4000,
69};
70namespace o3tl
71{
72 template<> struct typed_flags<HandleFlags> : is_typed_flags<HandleFlags, 0x7fef> {};
73}
74
75// MSDFF_HANDLE_FLAGS_RANGE_Y seems to be not defined in
76// escher, but we are using it internally in to differentiate
77// between X_RANGE and Y_RANGE
78
80{
83
84 sal_Int32 m_nCoordLeft;
85 sal_Int32 m_nCoordTop;
86 sal_Int32 m_nCoordWidthG;
87 sal_Int32 m_nCoordHeightG;
88 sal_Int32 m_nCoordWidth;
89 sal_Int32 m_nCoordHeight;
91
92 double m_fXScale;
93 double m_fYScale;
94 double m_fXRatio;
95 double m_fYRatio;
96
98
99 sal_Int32 m_nXRef;
100 sal_Int32 m_nYRef;
101 sal_uInt32 m_nColorData;
102
103 /*
104
105 */
106 struct SAL_DLLPRIVATE EquationResult {
107 bool bReady;
108 double fValue;
109 };
110 css::uno::Sequence< OUString > m_seqEquations;
111 std::vector< std::shared_ptr< EnhancedCustomShape::ExpressionNode > > m_vNodesSharedPtr;
112 std::vector< EquationResult > m_vEquationResults;
113
114 css::uno::Sequence< css::drawing::EnhancedCustomShapeSegment > m_seqSegments;
115 css::uno::Sequence< css::drawing::EnhancedCustomShapeParameterPair> m_seqCoordinates;
116 css::uno::Sequence< css::drawing::EnhancedCustomShapeTextFrame > m_seqTextFrames;
117 css::uno::Sequence< css::drawing::EnhancedCustomShapeParameterPair> m_seqGluePoints;
118 css::uno::Sequence< css::drawing::EnhancedCustomShapeAdjustmentValue > m_seqAdjustmentValues;
119 css::uno::Sequence< css::beans::PropertyValues > m_seqHandles;
120 css::uno::Sequence< css::awt::Size > m_seqSubViewSize;
121
122 bool m_bFilled : 1;
123 bool m_bStroked : 1;
124
128
129 SAL_DLLPRIVATE bool SetAdjustValueAsDouble( const double& rValue, const sal_Int32 nIndex );
130 SAL_DLLPRIVATE Color GetColorData( const Color& rFillColor, sal_uInt32 nIndex, double dBrightness ) const;
131 SAL_DLLPRIVATE void AdaptObjColor(
132 SdrPathObj& rObj,
133 double dBrightness,
134 const SfxItemSet& rCustomShapeSet,
135 sal_uInt32& nColorIndex,
136 sal_uInt32 nColorCount);
137 SAL_DLLPRIVATE Point GetPoint( const css::drawing::EnhancedCustomShapeParameterPair&,
138 const bool bScale = true, const bool bReplaceGeoSize = false ) const;
139 SAL_DLLPRIVATE basegfx::B2DPoint GetPointAsB2DPoint(const css::drawing::EnhancedCustomShapeParameterPair&,
140 const bool bScale = true, const bool bReplaceGeoSize = false ) const;
141
142 SAL_DLLPRIVATE void CreateSubPath(
143 sal_Int32& rSrcPt,
144 sal_Int32& rSegmentInd,
145 std::vector< std::pair< rtl::Reference<SdrPathObj>, double> >& rObjectList,
146 bool bLineGeometryNeededOnly,
147 bool bSortFilledObjectsToBack,
148 sal_Int32 nIndex);
149 SAL_DLLPRIVATE rtl::Reference<SdrObject> CreatePathObj( bool bLineGeometryNeededOnly );
150 SAL_DLLPRIVATE void ApplyShapeAttributes( const SdrCustomShapeGeometryItem& rItem );
151
152 SAL_DLLPRIVATE void SetPathSize( sal_Int32 nIndex = 0 );
153
154 public:
155
156 struct SAL_DLLPRIVATE Handle
157 {
159
160 css::drawing::EnhancedCustomShapeParameterPair aPosition;
161 css::drawing::EnhancedCustomShapeParameterPair aPolar;
162
163 sal_Int32 nRefX;
164 sal_Int32 nRefY;
165 sal_Int32 nRefAngle;
166 sal_Int32 nRefR;
167
168 css::drawing::EnhancedCustomShapeParameter aRadiusRangeMinimum;
169 css::drawing::EnhancedCustomShapeParameter aRadiusRangeMaximum;
170 css::drawing::EnhancedCustomShapeParameter aXRangeMinimum;
171 css::drawing::EnhancedCustomShapeParameter aXRangeMaximum;
172 css::drawing::EnhancedCustomShapeParameter aYRangeMinimum;
173 css::drawing::EnhancedCustomShapeParameter aYRangeMaximum;
174
176 : nFlags(HandleFlags::NONE)
177 , nRefX( -1 )
178 , nRefY( -1 )
179 , nRefAngle( -1 )
180 , nRefR( -1 )
181 {
182 }
183 };
184
185 sal_Int32 GetLuminanceChange( sal_uInt32 nIndex ) const;
186 SAL_DLLPRIVATE bool IsFlipVert() const { return m_bFlipV; };
187 SAL_DLLPRIVATE bool IsFlipHorz() const { return m_bFlipH; };
188 SAL_DLLPRIVATE Degree100 GetRotateAngle() const { return m_nRotateAngle; };
189
190 rtl::Reference<SdrObject> CreateLineGeometry();
191 rtl::Reference<SdrObject> CreateObject( bool bLineGeometryNeededOnly );
192 void ApplyGluePoints( SdrObject* pObj );
193 tools::Rectangle GetTextRect() const;
194 const tools::Rectangle& GetLogicRect() const { return m_aLogicRect; }
195
196 sal_uInt32 GetHdlCount() const;
197 bool GetHandlePosition( const sal_uInt32 nIndex, Point& rReturnPosition ) const;
198 bool SetHandleControllerPosition( const sal_uInt32 nIndex, const css::awt::Point& rPosition );
199
200 EnhancedCustomShape2d(SdrObjCustomShape& rSdrObjCustomShape);
201 virtual ~EnhancedCustomShape2d() override;
202
203 SAL_DLLPRIVATE double GetEnumFunc( const EnhancedCustomShape::ExpressionFunct eVal ) const;
204
205 void GetParameter( double& rParameterReturnValue, const css::drawing::EnhancedCustomShapeParameter&,
206 const bool bReplaceGeoWidth, const bool bReplaceGeoHeight ) const;
207 SAL_DLLPRIVATE double GetAdjustValueAsDouble( const sal_Int32 nIndex ) const;
208 SAL_DLLPRIVATE double GetEquationValueAsDouble( const sal_Int32 nIndex ) const;
209
210 static OUString GetEquation( const sal_uInt16 nFlags, sal_Int32 nPara1, sal_Int32 nPara2, sal_Int32 nPara3 );
211
212 SAL_DLLPRIVATE static void AppendEnhancedCustomShapeEquationParameter( OUString& rParameter, const sal_Int32 nPara, const bool bIsSpecialValue );
213
214 static void SetEnhancedCustomShapeParameter( css::drawing::EnhancedCustomShapeParameter&
215 rParameter, const sal_Int32 nValue );
216 static void SetEnhancedCustomShapeHandleParameter( css::drawing::EnhancedCustomShapeParameter&
217 rParameter, const sal_Int32 nPara, const bool bIsSpecialValue, bool bHorz );
218 SAL_DLLPRIVATE static bool ConvertSequenceToEnhancedCustomShape2dHandle( const css::beans::PropertyValues& rHandleProperties,
219 EnhancedCustomShape2d::Handle& rDestinationHandle );
220 SAL_DLLPRIVATE static void SwapStartAndEndArrow( SdrObject* pObj );
221};
222#endif
223
224/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
@ RADIUS_RANGE_MAXIMUM
@ RADIUS_RANGE_MINIMUM
static void GetPoint(const tools::Polygon &rPoly, const std::vector< double > &rDistances, const double &fX, double &fx1, double &fy1)
SAL_DLLPRIVATE bool IsFlipHorz() const
SAL_DLLPRIVATE Degree100 GetRotateAngle() const
std::vector< EquationResult > m_vEquationResults
css::uno::Sequence< css::drawing::EnhancedCustomShapeTextFrame > m_seqTextFrames
css::uno::Sequence< OUString > m_seqEquations
const tools::Rectangle & GetLogicRect() const
css::uno::Sequence< css::drawing::EnhancedCustomShapeParameterPair > m_seqCoordinates
css::uno::Sequence< css::drawing::EnhancedCustomShapeAdjustmentValue > m_seqAdjustmentValues
css::uno::Sequence< css::drawing::EnhancedCustomShapeParameterPair > m_seqGluePoints
css::uno::Sequence< css::drawing::EnhancedCustomShapeSegment > m_seqSegments
css::uno::Sequence< css::beans::PropertyValues > m_seqHandles
std::vector< std::shared_ptr< EnhancedCustomShape::ExpressionNode > > m_vNodesSharedPtr
SAL_DLLPRIVATE bool IsFlipVert() const
css::uno::Sequence< css::awt::Size > m_seqSubViewSize
SdrObjCustomShape & mrSdrObjCustomShape
Abstract DrawObject.
Definition: svdobj.hxx:260
sal_Int16 nValue
Definition: fmsrccfg.cxx:81
MSO_SPT
Definition: msdffdef.hxx:274
NONE
css::drawing::EnhancedCustomShapeParameter aXRangeMinimum
css::drawing::EnhancedCustomShapeParameter aYRangeMaximum
css::drawing::EnhancedCustomShapeParameter aXRangeMaximum
css::drawing::EnhancedCustomShapeParameterPair aPosition
css::drawing::EnhancedCustomShapeParameter aRadiusRangeMinimum
css::drawing::EnhancedCustomShapeParameter aRadiusRangeMaximum
css::drawing::EnhancedCustomShapeParameter aYRangeMinimum
css::drawing::EnhancedCustomShapeParameterPair aPolar
#define SVXCORE_DLLPUBLIC
Definition: svxdllapi.h:35