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 #ifndef INCLUDED_SVX_SVDOASHP_HXX
21 #define INCLUDED_SVX_SVDOASHP_HXX
23 #include <svx/svdobj.hxx>
24 #include <svx/svdotext.hxx>
25 #include <svx/svdhdl.hxx>
27 #include <com/sun/star/uno/Reference.h>
28 #include <com/sun/star/drawing/XCustomShapeEngine.hpp>
29 #include <com/sun/star/drawing/EnhancedCustomShapeAdjustmentValue.hpp>
30 #include <svx/svxdllapi.h>
31 #include <o3tl/typed_flags_set.hxx>
37 class CustomShapeProperties
;
41 class SdrAShapeObjGeoData
: public SdrTextObjGeoData
46 double fObjectRotation
;
48 css::uno::Sequence
< css::drawing::EnhancedCustomShapeAdjustmentValue
> aAdjustmentSeq
;
51 enum class CustomShapeHandleModes
56 RESIZE_ABSOLUTE_X
= 4,
57 RESIZE_ABSOLUTE_Y
= 8,
60 RESIZE_ABSOLUTE_NEGX
= 64
65 template<> struct typed_flags
<CustomShapeHandleModes
> : is_typed_flags
<CustomShapeHandleModes
, 127> {};
68 struct SdrCustomShapeInteraction
70 css::uno::Reference
< css::drawing::XCustomShapeHandle
> xInteraction
;
71 css::awt::Point aPosition
;
72 CustomShapeHandleModes nMode
;
75 class SVX_DLLPUBLIC SdrObjCustomShape
: public SdrTextObj
78 // fObjectRotation is containing the object rotation in degrees.
79 double fObjectRotation
;
80 bool mbAdjustingTextFrameWidthAndHeight
;
83 virtual std::unique_ptr
<sdr::contact::ViewContact
> CreateObjectSpecificViewContact() override
;
84 virtual void impl_setUnoShape(const css::uno::Reference
<css::uno::XInterface
>& rxUnoShape
) override
;
87 virtual std::unique_ptr
<sdr::properties::BaseProperties
> CreateObjectSpecificProperties() override
;
89 // to allow sdr::properties::CustomShapeProperties access
90 friend class sdr::properties::CustomShapeProperties
;
92 css::uno::Reference
< css::drawing::XShape
> mXRenderedCustomShape
;
94 mutable css::uno::Reference
< css::drawing::XCustomShapeEngine
> mxCustomShapeEngine
;
96 // #i37011# render geometry shadow
97 SdrObject
* mpLastShadowGeometry
;
99 css::uno::Reference
< css::drawing::XCustomShapeEngine
> const & GetCustomShapeEngine() const;
101 std::vector
< SdrCustomShapeInteraction
> GetInteractionHandles() const; // needed in unit test
102 SVX_DLLPRIVATE
void DragCreateObject( SdrDragStat
& rDrag
);
103 SVX_DLLPRIVATE
void DragResizeCustomShape( const tools::Rectangle
& rNewRect
);
104 void DragMoveCustomShapeHdl( const Point
& rDestination
,
105 const sal_uInt16 nCustomShapeHdlNum
, bool bMoveCalloutRectangle
); // needed in unit test
107 // #i37011# centralize throw-away of render geometry
108 void InvalidateRenderGeometry();
111 void ImpCheckCustomGluePointsAreAdded();
113 // returns the new text rect that corresponds to the current logic rect, the return value can be empty if nothing changed.
114 tools::Rectangle
ImpCalculateTextFrame( const bool bHgt
, const bool bWdt
);
118 const SdrObject
* GetSdrObjectFromCustomShape() const;
119 const SdrObject
* GetSdrObjectShadowFromCustomShape() const;
120 bool GetTextBounds( tools::Rectangle
& rTextBound
) const;
121 bool IsTextPath() const;
122 basegfx::B2DPolyPolygon
GetLineGeometry( const bool bBezierAllowed
) const;
125 // #115391# new method for SdrObjCustomShape and SdrTextObj to correctly handle and set
126 // SdrTextMinFrameWidthItem and SdrTextMinFrameHeightItem based on all settings, necessities
128 virtual void AdaptTextMinSize() override
;
130 Size m_aSuggestedTextFrameSize
;
132 // protected destructor
133 virtual ~SdrObjCustomShape() override
;
136 bool UseNoFillStyle() const;
138 bool IsMirroredX() const;
139 bool IsMirroredY() const;
140 void SetMirroredX( const bool bMirroredX
);
141 void SetMirroredY( const bool bMirroredY
);
143 double GetObjectRotation() const { return fObjectRotation
;}
144 double GetExtraTextRotation( const bool bPreRotation
= false ) const;
146 SdrObjCustomShape(SdrModel
& rSdrModel
);
148 /* is merging default attributes from type-shape into the SdrCustomShapeGeometryItem. If pType
149 is NULL then the type is being taken from the "Type" property of the SdrCustomShapeGeometryItem.
150 MergeDefaultAttributes is called when creating CustomShapes via UI and after importing */
151 void MergeDefaultAttributes( const OUString
* pType
= nullptr );
153 /* the method is checking if the geometry data is unchanged/default, in this case the data might not be stored */
154 enum class DefaultType
165 bool IsDefaultGeometry( const DefaultType eDefaultType
) const;
167 virtual sal_uInt16
GetObjIdentifier() const override
;
168 virtual void TakeObjInfo(SdrObjTransformInfoRec
& rInfo
) const override
;
170 virtual void Move(const Size
& rSiz
) override
;
171 virtual void Shear(const Point
& rRef
, long nAngle
, double tn
, bool bVShear
) override
;
172 virtual void SetSnapRect(const tools::Rectangle
& rRect
) override
;
173 virtual void SetLogicRect(const tools::Rectangle
& rRect
) override
;
175 virtual void NbcMove(const Size
& rSiz
) override
;
176 virtual void NbcResize(const Point
& rRef
, const Fraction
& xFact
, const Fraction
& yFact
) override
;
177 virtual void NbcRotate(const Point
& rRef
, long nAngle
, double sn
, double cs
) override
;
178 virtual void NbcMirror(const Point
& rRef1
, const Point
& rRef2
) override
;
179 virtual void NbcShear(const Point
& rRef
, long nAngle
, double tn
, bool bVShear
) override
;
180 virtual void NbcSetSnapRect(const tools::Rectangle
& rRect
) override
;
181 virtual void NbcSetLogicRect(const tools::Rectangle
& rRect
) override
;
183 virtual SdrGluePoint
GetVertexGluePoint(sal_uInt16 nNum
) const override
;
185 virtual void NbcSetStyleSheet( SfxStyleSheet
* pNewStyleSheet
, bool bDontRemoveHardAttr
) override
;
187 // special drag methods
188 virtual bool hasSpecialDrag() const override
;
189 virtual bool beginSpecialDrag(SdrDragStat
& rDrag
) const override
;
190 virtual bool applySpecialDrag(SdrDragStat
& rDrag
) override
;
192 virtual bool MovCreate(SdrDragStat
& rStat
) override
; // #i37448#
193 virtual bool EndCreate(SdrDragStat
& rStat
, SdrCreateCmd eCmd
) override
;
196 * Allows suggesting the text frame size: in case the application has its
197 * own text associated to the shape, instead of using the shape's editeng
200 void SuggestTextFrameSize(Size aSuggestedTextFrameSize
);
201 virtual bool AdjustTextFrameWidthAndHeight(tools::Rectangle
& rR
, bool bHgt
= true, bool bWdt
= true) const override
;
202 virtual bool NbcAdjustTextFrameWidthAndHeight(bool bHgt
= true, bool bWdt
= true) override
;
203 virtual bool AdjustTextFrameWidthAndHeight() override
;
204 virtual bool IsAutoGrowHeight() const override
;
205 virtual bool IsAutoGrowWidth() const override
;
206 virtual void SetVerticalWriting(bool bVertical
) override
;
207 virtual void TakeTextEditArea(Size
* pPaperMin
, Size
* pPaperMax
, tools::Rectangle
* pViewInit
, tools::Rectangle
* pViewMin
) const override
;
208 virtual void EndTextEdit( SdrOutliner
& rOutl
) override
;
209 virtual void TakeTextAnchorRect( tools::Rectangle
& rAnchorRect
) const override
;
210 virtual void TakeTextRect( SdrOutliner
& rOutliner
, tools::Rectangle
& rTextRect
, bool bNoEditText
,
211 tools::Rectangle
* pAnchorRect
, bool bLineWidth
= true ) const override
;
212 virtual SdrObjCustomShape
* CloneSdrObject(SdrModel
& rTargetModel
) const override
;
213 SdrObjCustomShape
& operator=(const SdrObjCustomShape
& rObj
);
215 virtual OUString
TakeObjNameSingul() const override
;
216 virtual OUString
TakeObjNamePlural() const override
;
218 virtual basegfx::B2DPolyPolygon
TakeCreatePoly( const SdrDragStat
& rDrag
) const override
;
220 virtual basegfx::B2DPolyPolygon
TakeXorPoly() const override
;
221 virtual basegfx::B2DPolyPolygon
TakeContour() const override
;
223 virtual void NbcSetOutlinerParaObject(std::unique_ptr
<OutlinerParaObject
> pTextObject
) override
;
225 virtual SdrObject
* DoConvertToPolyObj(bool bBezier
, bool bAddText
) const override
;
227 // react on model/page change
228 virtual void handlePageChange(SdrPage
* pOldPage
, SdrPage
* pNewPage
) override
;
230 virtual SdrObjGeoData
*NewGeoData() const override
;
231 virtual void SaveGeoData(SdrObjGeoData
&rGeo
) const override
;
232 virtual void RestGeoData(const SdrObjGeoData
&rGeo
) override
;
234 // need to take fObjectRotation instead of aGeo.nAngle, replace it temporary
235 virtual bool TRGetBaseGeometry(basegfx::B2DHomMatrix
& rMatrix
, basegfx::B2DPolyPolygon
& rPolyPolygon
) const override
;
236 virtual void TRSetBaseGeometry(const basegfx::B2DHomMatrix
& rMatrix
, const basegfx::B2DPolyPolygon
& rPolyPolygon
) override
;
238 virtual const SdrGluePointList
* GetGluePointList() const override
;
239 //virtual SdrGluePointList* GetGluePointList();
240 virtual SdrGluePointList
* ForceGluePointList() override
;
242 virtual sal_uInt32
GetHdlCount() const override
;
243 virtual void AddToHdlList(SdrHdlList
& rHdlList
) const override
;
246 static bool doConstructOrthogonal(const OUString
& rName
);
248 using SdrTextObj::NbcSetOutlinerParaObject
;
250 OUString
GetCustomShapeName();
253 #endif // INCLUDED_SVX_SVDOASHP_HXX
255 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */