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 .
22 #include <svx/svdobj.hxx>
23 #include <svx/svxdllapi.h>
26 * FIXME: The virtual object is not yet fully implemented and tested.
27 * At the moment we only use it in a derived class in Writer.
29 class SVXCORE_DLLPUBLIC SdrVirtObj
: public SdrObject
31 SdrVirtObj(const SdrVirtObj
&) = delete;
34 virtual sdr::properties::BaseProperties
& GetProperties() const override
;
37 virtual std::unique_ptr
<sdr::contact::ViewContact
> CreateObjectSpecificViewContact() override
;
39 rtl::Reference
<SdrObject
> mxRefObj
; // Referenced drawing object
40 tools::Rectangle aSnapRect
;
43 virtual void Notify(SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
45 virtual std::unique_ptr
<SdrObjGeoData
> NewGeoData() const override
;
46 virtual void SaveGeoData(SdrObjGeoData
& rGeo
) const override
;
47 virtual void RestoreGeoData(const SdrObjGeoData
& rGeo
) override
;
49 // protected destructor
50 virtual ~SdrVirtObj() override
;
53 SdrVirtObj(SdrModel
& rSdrModel
, SdrObject
& rNewObj
);
55 SdrVirtObj(SdrModel
& rSdrModel
, SdrVirtObj
const& rSource
);
57 SdrObject
& ReferencedObj();
58 const SdrObject
& GetReferencedObj() const;
59 virtual void NbcSetAnchorPos(const Point
& rAnchorPos
) override
;
61 virtual void TakeObjInfo(SdrObjTransformInfoRec
& rInfo
) const override
;
62 virtual SdrInventor
GetObjInventor() const override
;
63 virtual SdrObjKind
GetObjIdentifier() const override
;
64 virtual SdrObjList
* GetSubList() const override
;
65 virtual void SetName(const OUString
& rStr
, const bool bSetChanged
= true) override
;
66 virtual const OUString
& GetName() const override
;
67 virtual void SetTitle(const OUString
& rStr
) override
;
68 virtual OUString
GetTitle() const override
;
69 virtual void SetDescription(const OUString
& rStr
) override
;
70 virtual OUString
GetDescription() const override
;
71 virtual void SetDecorative(bool isDecorative
) override
;
72 virtual bool IsDecorative() const override
;
74 virtual const tools::Rectangle
& GetCurrentBoundRect() const override
;
75 virtual const tools::Rectangle
& GetLastBoundRect() const override
;
76 virtual void RecalcBoundRect() override
;
77 virtual rtl::Reference
<SdrObject
> CloneSdrObject(SdrModel
& rTargetModel
) const override
;
79 virtual OUString
TakeObjNameSingul() const override
;
80 virtual OUString
TakeObjNamePlural() const override
;
82 // RotGrfFlyFrame: If true, this SdrObject supports only limited rotation
83 virtual bool HasLimitedRotation() const override
;
85 virtual basegfx::B2DPolyPolygon
TakeXorPoly() const override
;
86 virtual sal_uInt32
GetHdlCount() const override
;
87 virtual void AddToPlusHdlList(SdrHdlList
& rHdlList
, SdrHdl
& rHdl
) const override
;
88 virtual void AddToHdlList(SdrHdlList
& rHdlList
) const override
;
90 // special drag methods
91 virtual bool hasSpecialDrag() const override
;
92 virtual bool beginSpecialDrag(SdrDragStat
& rDrag
) const override
;
93 virtual bool applySpecialDrag(SdrDragStat
& rDrag
) override
;
94 virtual OUString
getSpecialDragComment(const SdrDragStat
& rDrag
) const override
;
95 virtual basegfx::B2DPolyPolygon
getSpecialDragPoly(const SdrDragStat
& rDrag
) const override
;
98 virtual bool supportsFullDrag() const override
;
99 virtual rtl::Reference
<SdrObject
> getFullDragClone() const override
;
101 virtual bool BegCreate(SdrDragStat
& rStat
) override
;
102 virtual bool MovCreate(SdrDragStat
& rStat
) override
;
103 virtual bool EndCreate(SdrDragStat
& rStat
, SdrCreateCmd eCmd
) override
;
104 virtual bool BckCreate(SdrDragStat
& rStat
) override
;
105 virtual void BrkCreate(SdrDragStat
& rStat
) override
;
106 virtual basegfx::B2DPolyPolygon
TakeCreatePoly(const SdrDragStat
& rDrag
) const override
;
108 virtual void NbcMove(const Size
& rSiz
) override
;
109 virtual void NbcResize(const Point
& rRef
, const Fraction
& xFact
,
110 const Fraction
& yFact
) override
;
111 virtual void NbcRotate(const Point
& rRef
, Degree100 nAngle
, double sn
, double cs
) override
;
112 virtual void NbcMirror(const Point
& rRef1
, const Point
& rRef2
) override
;
113 virtual void NbcShear(const Point
& rRef
, Degree100 nAngle
, double tn
, bool bVShear
) override
;
115 virtual void Move(const Size
& rSiz
) override
;
116 virtual void Resize(const Point
& rRef
, const Fraction
& xFact
, const Fraction
& yFact
,
117 bool bUnsetRelative
= true) override
;
118 virtual void Rotate(const Point
& rRef
, Degree100 nAngle
, double sn
, double cs
) override
;
119 virtual void Mirror(const Point
& rRef1
, const Point
& rRef2
) override
;
120 virtual void Shear(const Point
& rRef
, Degree100 nAngle
, double tn
, bool bVShear
) override
;
122 virtual void RecalcSnapRect() override
;
123 virtual const tools::Rectangle
& GetSnapRect() const override
;
124 virtual void SetSnapRect(const tools::Rectangle
& rRect
) override
;
125 virtual void NbcSetSnapRect(const tools::Rectangle
& rRect
) override
;
127 virtual const tools::Rectangle
& GetLogicRect() const override
;
128 virtual void SetLogicRect(const tools::Rectangle
& rRect
) override
;
129 virtual void NbcSetLogicRect(const tools::Rectangle
& rRect
) override
;
131 virtual Degree100
GetRotateAngle() const override
;
132 virtual Degree100
GetShearAngle(bool bVertical
= false) const override
;
134 virtual sal_uInt32
GetSnapPointCount() const override
;
135 virtual Point
GetSnapPoint(sal_uInt32 i
) const override
;
137 virtual bool IsPolyObj() const override
;
138 virtual sal_uInt32
GetPointCount() const override
;
139 virtual Point
GetPoint(sal_uInt32 i
) const override
;
140 virtual void NbcSetPoint(const Point
& rPnt
, sal_uInt32 i
) override
;
142 virtual std::unique_ptr
<SdrObjGeoData
> GetGeoData() const override
;
143 virtual void SetGeoData(const SdrObjGeoData
& rGeo
) override
;
145 virtual void NbcReformatText() override
;
147 virtual bool HasMacro() const override
;
148 virtual SdrObject
* CheckMacroHit(const SdrObjMacroHitRec
& rRec
) const override
;
149 virtual PointerStyle
GetMacroPointer(const SdrObjMacroHitRec
& rRec
) const override
;
150 virtual void PaintMacro(OutputDevice
& rOut
, const tools::Rectangle
& rDirtyRect
,
151 const SdrObjMacroHitRec
& rRec
) const override
;
152 virtual bool DoMacro(const SdrObjMacroHitRec
& rRec
) override
;
154 // #i73248# for default SdrVirtObj, offset is aAnchor, not (0,0)
155 virtual Point
GetOffset() const;
158 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */