lok: calc - send other views our selection in their co-ordinates.
[LibreOffice.git] / include / svx / svdoashp.hxx
blobff51e20ec9740bffedb94e45b9310e8a245e622e
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 #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>
26 #include <vector>
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>
33 namespace sdr
35 namespace properties
37 class CustomShapeProperties;
41 class SdrAShapeObjGeoData final : public SdrTextObjGeoData
43 public:
44 bool bMirroredX;
45 bool bMirroredY;
46 double fObjectRotation;
48 css::uno::Sequence< css::drawing::EnhancedCustomShapeAdjustmentValue > aAdjustmentSeq;
51 enum class CustomShapeHandleModes
53 NONE = 0,
54 RESIZE_FIXED = 1,
55 CREATE_FIXED = 2,
56 RESIZE_ABSOLUTE_X = 4,
57 RESIZE_ABSOLUTE_Y = 8,
58 MOVE_SHAPE = 16,
59 ORTHO4 = 32,
60 RESIZE_ABSOLUTE_NEGX = 64
63 namespace o3tl
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
77 private:
78 // fObjectRotation is containing the object rotation in degrees.
79 double fObjectRotation;
80 bool mbAdjustingTextFrameWidthAndHeight;
82 protected:
83 virtual std::unique_ptr<sdr::contact::ViewContact> CreateObjectSpecificViewContact() override;
84 virtual void impl_setUnoShape(const css::uno::Reference<css::uno::XInterface>& rxUnoShape) override;
86 public:
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();
110 // #i38892#
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 );
116 public:
117 // #i37011#
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;
124 protected:
125 // #115391# new method for SdrObjCustomShape and SdrTextObj to correctly handle and set
126 // SdrTextMinFrameWidthItem and SdrTextMinFrameHeightItem based on all settings, necessities
127 // and object sizes
128 virtual void AdaptTextMinSize() override;
130 Size m_aSuggestedTextFrameSize;
132 // protected destructor
133 virtual ~SdrObjCustomShape() override;
135 public:
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;
145 double GetCameraRotation() const;
147 SdrObjCustomShape(SdrModel& rSdrModel);
149 /* is merging default attributes from type-shape into the SdrCustomShapeGeometryItem. If pType
150 is NULL then the type is being taken from the "Type" property of the SdrCustomShapeGeometryItem.
151 MergeDefaultAttributes is called when creating CustomShapes via UI and after importing */
152 void MergeDefaultAttributes( const OUString* pType = nullptr );
154 /* the method is checking if the geometry data is unchanged/default, in this case the data might not be stored */
155 enum class DefaultType
157 Path,
158 Viewbox,
159 Segments,
160 Gluepoints,
161 StretchX,
162 StretchY,
163 Equations,
164 TextFrames
166 bool IsDefaultGeometry( const DefaultType eDefaultType ) const;
168 virtual sal_uInt16 GetObjIdentifier() const override;
169 virtual void TakeObjInfo(SdrObjTransformInfoRec& rInfo) const override;
171 virtual void Move(const Size& rSiz) override;
172 virtual void Shear(const Point& rRef, long nAngle, double tn, bool bVShear) override;
173 virtual void SetSnapRect(const tools::Rectangle& rRect) override;
174 virtual void SetLogicRect(const tools::Rectangle& rRect) override;
175 virtual void AdjustToMaxRect( const tools::Rectangle& rMaxRect, bool bShrinkOnly = false ) override;
177 virtual void NbcMove(const Size& rSiz) override;
178 virtual void NbcResize(const Point& rRef, const Fraction& xFact, const Fraction& yFact) override;
179 virtual void NbcRotate(const Point& rRef, long nAngle, double sn, double cs) override;
180 virtual void NbcMirror(const Point& rRef1, const Point& rRef2) override;
181 virtual void NbcShear(const Point& rRef, long nAngle, double tn, bool bVShear) override;
182 virtual void NbcSetSnapRect(const tools::Rectangle& rRect) override;
183 virtual void NbcSetLogicRect(const tools::Rectangle& rRect) override;
185 virtual SdrGluePoint GetVertexGluePoint(sal_uInt16 nNum) const override;
187 virtual void NbcSetStyleSheet( SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr ) override;
189 // special drag methods
190 virtual bool hasSpecialDrag() const override;
191 virtual bool beginSpecialDrag(SdrDragStat& rDrag) const override;
192 virtual bool applySpecialDrag(SdrDragStat& rDrag) override;
194 virtual bool MovCreate(SdrDragStat& rStat) override; // #i37448#
195 virtual bool EndCreate(SdrDragStat& rStat, SdrCreateCmd eCmd) override;
198 * Allows suggesting the text frame size: in case the application has its
199 * own text associated to the shape, instead of using the shape's editeng
200 * text.
202 void SuggestTextFrameSize(Size aSuggestedTextFrameSize);
203 virtual bool AdjustTextFrameWidthAndHeight(tools::Rectangle& rR, bool bHgt = true, bool bWdt = true) const override;
204 virtual bool NbcAdjustTextFrameWidthAndHeight(bool bHgt = true, bool bWdt = true) override;
205 virtual bool AdjustTextFrameWidthAndHeight() override;
206 virtual bool IsAutoGrowHeight() const override;
207 virtual bool IsAutoGrowWidth() const override;
208 virtual void SetVerticalWriting(bool bVertical) override;
209 virtual void TakeTextEditArea(Size* pPaperMin, Size* pPaperMax, tools::Rectangle* pViewInit, tools::Rectangle* pViewMin) const override;
210 virtual void EndTextEdit( SdrOutliner& rOutl ) override;
211 virtual void TakeTextAnchorRect( tools::Rectangle& rAnchorRect ) const override;
212 virtual void TakeTextRect( SdrOutliner& rOutliner, tools::Rectangle& rTextRect, bool bNoEditText,
213 tools::Rectangle* pAnchorRect, bool bLineWidth = true ) const override;
214 virtual SdrObjCustomShape* CloneSdrObject(SdrModel& rTargetModel) const override;
215 SdrObjCustomShape& operator=(const SdrObjCustomShape& rObj);
217 virtual OUString TakeObjNameSingul() const override;
218 virtual OUString TakeObjNamePlural() const override;
220 virtual basegfx::B2DPolyPolygon TakeCreatePoly( const SdrDragStat& rDrag) const override;
222 virtual basegfx::B2DPolyPolygon TakeXorPoly() const override;
223 virtual basegfx::B2DPolyPolygon TakeContour() const override;
225 virtual void NbcSetOutlinerParaObject(std::unique_ptr<OutlinerParaObject> pTextObject) override;
227 virtual SdrObjectUniquePtr DoConvertToPolyObj(bool bBezier, bool bAddText) const override;
229 // react on model/page change
230 virtual void handlePageChange(SdrPage* pOldPage, SdrPage* pNewPage) override;
232 virtual SdrObjGeoData *NewGeoData() const override;
233 virtual void SaveGeoData(SdrObjGeoData &rGeo) const override;
234 virtual void RestGeoData(const SdrObjGeoData &rGeo) override;
236 // need to take fObjectRotation instead of aGeo.nAngle, replace it temporary
237 virtual bool TRGetBaseGeometry(basegfx::B2DHomMatrix& rMatrix, basegfx::B2DPolyPolygon& rPolyPolygon) const override;
238 virtual void TRSetBaseGeometry(const basegfx::B2DHomMatrix& rMatrix, const basegfx::B2DPolyPolygon& rPolyPolygon) override;
240 virtual const SdrGluePointList* GetGluePointList() const override;
241 //virtual SdrGluePointList* GetGluePointList();
242 virtual SdrGluePointList* ForceGluePointList() override;
244 virtual sal_uInt32 GetHdlCount() const override;
245 virtual void AddToHdlList(SdrHdlList& rHdlList) const override;
247 // #i33136#
248 static bool doConstructOrthogonal(const OUString& rName);
250 using SdrTextObj::NbcSetOutlinerParaObject;
252 OUString GetCustomShapeName() const;
255 #endif // INCLUDED_SVX_SVDOASHP_HXX
257 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */