Bump version to 6.4-15
[LibreOffice.git] / include / svx / svdocirc.hxx
blob76500486b47f8ba50067b6e10ab367c627e2cca5
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_SVDOCIRC_HXX
21 #define INCLUDED_SVX_SVDOCIRC_HXX
23 #include <svx/svdorect.hxx>
24 #include <svx/svxdllapi.h>
26 namespace sdr { namespace properties {
27 class CircleProperties;
30 // Helper class SdrCircObjGeoData
32 class SdrCircObjGeoData final : public SdrTextObjGeoData
34 public:
35 long nStartAngle;
36 long nEndAngle;
39 enum class SdrCircKind { Full, Section, Cut, Arc };
41 extern SVX_DLLPUBLIC SdrCircKind ToSdrCircKind(SdrObjKind);
43 // class SdrCircObj
45 class SVX_DLLPUBLIC SdrCircObj final : public SdrRectObj
47 private:
48 // to allow sdr::properties::CircleProperties access to ImpSetAttrToCircInfo()
49 friend class sdr::properties::CircleProperties;
51 virtual std::unique_ptr<sdr::contact::ViewContact> CreateObjectSpecificViewContact() override;
52 virtual std::unique_ptr<sdr::properties::BaseProperties> CreateObjectSpecificProperties() override;
54 SdrCircKind meCircleKind;
55 long nStartAngle;
56 long nEndAngle;
58 SVX_DLLPRIVATE basegfx::B2DPolygon ImpCalcXPolyCirc(const SdrCircKind eKind, const tools::Rectangle& rRect1, long nStart, long nEnd) const;
59 SVX_DLLPRIVATE static void ImpSetCreateParams(SdrDragStat& rStat);
60 SVX_DLLPRIVATE void ImpSetAttrToCircInfo(); // copy values from pool
61 SVX_DLLPRIVATE void ImpSetCircInfoToAttr(); // copy values into pool
63 // returns sal_True if paint requires a XPolygon
64 SVX_DLLPRIVATE bool PaintNeedsXPolyCirc() const; // PaintNeedsXPoly-> PaintNeedsXPolyCirc
65 SVX_DLLPRIVATE virtual void RecalcXPoly() override;
67 virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) override;
69 private:
70 // protected destructor - due to final, make private
71 virtual ~SdrCircObj() override;
73 public:
74 SdrCircObj(
75 SdrModel& rSdrModel,
76 SdrCircKind eNewKind);
77 SdrCircObj(
78 SdrModel& rSdrModel,
79 SdrCircKind eNewKind,
80 const tools::Rectangle& rRect);
82 // 0=0.00Deg=3h 9000=90.00Deg=12h 18000=180.00Deg=9h 27000=270.00Deg=6h
83 // The circle is build up from StartAngle to EndWink anti-clockwise.
84 // If nNewStartAngle==nNewEndWink, then arc has an angle of 0 degrees.
85 // If nNewStartAngle+36000==nNewEndWink, then the arc has angle of 360 degrees.
86 SdrCircObj(
87 SdrModel& rSdrModel,
88 SdrCircKind eNewKind,
89 const tools::Rectangle& rRect,
90 long nNewStartAngle,
91 long nNewEndWink);
93 SdrCircKind GetCircleKind() const { return meCircleKind; }
95 virtual void TakeObjInfo(SdrObjTransformInfoRec& rInfo) const override;
96 virtual sal_uInt16 GetObjIdentifier() const override;
97 virtual void TakeUnrotatedSnapRect(tools::Rectangle& rRect) const override;
99 virtual OUString TakeObjNameSingul() const override;
100 virtual OUString TakeObjNamePlural() const override;
102 virtual SdrCircObj* CloneSdrObject(SdrModel& rTargetModel) const override;
104 // implemented mainly for the purposes of Clone()
105 SdrCircObj& operator=(const SdrCircObj& rObj);
107 virtual void RecalcSnapRect() override;
108 virtual void NbcSetSnapRect(const tools::Rectangle& rRect) override;
109 virtual basegfx::B2DPolyPolygon TakeXorPoly() const override;
111 virtual sal_uInt32 GetSnapPointCount() const override;
112 virtual Point GetSnapPoint(sal_uInt32 i) const override;
114 virtual sal_uInt32 GetHdlCount() const override;
115 virtual void AddToHdlList(SdrHdlList& rHdlList) const override;
117 // special drag methods
118 virtual bool hasSpecialDrag() const override;
119 virtual bool beginSpecialDrag(SdrDragStat& rDrag) const override;
120 virtual bool applySpecialDrag(SdrDragStat& rDrag) override;
121 virtual OUString getSpecialDragComment(const SdrDragStat& rDrag) const override;
123 virtual bool BegCreate(SdrDragStat& rStat) override;
124 virtual bool MovCreate(SdrDragStat& rStat) override;
125 virtual bool EndCreate(SdrDragStat& rStat, SdrCreateCmd eCmd) override;
126 virtual bool BckCreate(SdrDragStat& rStat) override;
127 virtual void BrkCreate(SdrDragStat& rStat) override;
128 virtual basegfx::B2DPolyPolygon TakeCreatePoly(const SdrDragStat& rDrag) const override;
129 virtual PointerStyle GetCreatePointer() const override;
130 virtual void NbcMove(const Size& aSiz) override;
131 virtual void NbcResize(const Point& rRef, const Fraction& xFact, const Fraction& yFact) override;
132 virtual void NbcMirror(const Point& rRef1, const Point& rRef2) override;
133 virtual void NbcShear (const Point& rRef, long nAngle, double tn, bool bVShear) override;
134 virtual SdrObjectUniquePtr DoConvertToPolyObj(bool bBezier, bool bAddText) const override;
136 private:
137 virtual SdrObjGeoData* NewGeoData() const override;
138 virtual void SaveGeoData(SdrObjGeoData& rGeo) const override;
139 virtual void RestGeoData(const SdrObjGeoData& rGeo) override;
140 public:
141 long GetStartAngle() const { return nStartAngle; }
142 long GetEndAngle() const { return nEndAngle; }
146 #endif // INCLUDED_SVX_SVDOCIRC_HXX
148 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */