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 .
23 #include <svx/svdorect.hxx>
24 #include <svx/svxdllapi.h>
25 #include <sfx2/lnkbase.hxx>
27 #include <com/sun/star/uno/Reference.h>
29 namespace com::sun::star
{
31 namespace awt
{ class XWindow
; }
33 namespace datatransfer
{ class XTransferable
; }
35 namespace embed
{ class XEmbeddedObject
; }
37 namespace frame
{ class XModel
; }
39 namespace io
{ class XInputStream
; }
42 namespace svt
{ class EmbeddedObjectRef
; }
47 class SVXCORE_DLLPUBLIC SdrOle2Obj
: public SdrRectObj
50 std::unique_ptr
<SdrOle2ObjImpl
> mpImpl
;
53 SVX_DLLPRIVATE
void Connect_Impl(SvxOle2Shape
* pCreator
= nullptr);
54 SVX_DLLPRIVATE
void Disconnect_Impl();
55 SVX_DLLPRIVATE
void AddListeners_Impl();
56 SVX_DLLPRIVATE
void RemoveListeners_Impl();
57 SVX_DLLPRIVATE
void GetObjRef_Impl();
59 // #i118485# helper added
60 SVX_DLLPRIVATE
rtl::Reference
<SdrObject
> createSdrGrafObjReplacement(bool bAddText
) const;
61 SVX_DLLPRIVATE
void ImpSetVisAreaSize();
63 SVX_DLLPRIVATE
void Init();
66 virtual std::unique_ptr
<sdr::contact::ViewContact
> CreateObjectSpecificViewContact() override
;
67 virtual std::unique_ptr
<sdr::properties::BaseProperties
> CreateObjectSpecificProperties() override
;
69 // protected destructor
70 virtual ~SdrOle2Obj() override
;
73 OUString
GetStyleString();
77 bool bFrame_
= false);
79 SdrOle2Obj(SdrModel
& rSdrModel
, SdrOle2Obj
const & rSource
);
82 const svt::EmbeddedObjectRef
& rNewObjRef
,
83 const OUString
& rNewObjName
,
84 const tools::Rectangle
& rNewRect
);
86 const svt::EmbeddedObjectRef
& getEmbeddedObjectRef() const;
88 sal_Int64
GetAspect() const;
89 bool isInplaceActive() const;
90 bool isUiActive() const;
91 void SetAspect( sal_Int64 nAspect
);
93 // An OLE graphic object can contain a StarView graphic,
94 // which will be displayed if the OLE object is empty.
95 void SetGraphic(const Graphic
& rGrf
);
97 const Graphic
* GetGraphic() const;
98 void GetNewReplacement();
100 // The original size of the object (size of the icon for iconified object)
101 // no conversion is done if no target mode is provided
102 Size
GetOrigObjSize( MapMode
const * pTargetMapMode
= nullptr ) const;
104 // #i118524# Allow suppress SetVisAreaSize in changing methods when call
105 // comes from OLE client
106 void setSuppressSetVisAreaSize( bool bNew
);
108 // OLE object has got a separate PersistName member now;
109 // !!! use ::SetPersistName( ... ) only, if you know what you do !!!
110 const OUString
& GetPersistName() const;
111 void SetPersistName( const OUString
& rPersistName
, SvxOle2Shape
* pCreator
= nullptr );
113 // One can add an application name to a SdrOle2Obj, which can be queried for
114 // later on (SD needs this for presentation objects).
115 void SetProgName( const OUString
& rName
);
116 const OUString
& GetProgName() const;
117 bool IsEmpty() const;
119 void SetObjRef(const css::uno::Reference
< css::embed::XEmbeddedObject
>& rNewObjRef
);
120 css::uno::Reference
< css::embed::XEmbeddedObject
> const & GetObjRef() const;
122 SVX_DLLPRIVATE
css::uno::Reference
< css::embed::XEmbeddedObject
> const & GetObjRef_NoInit() const;
124 void AbandonObject();
126 // react on model/page change
127 virtual void handlePageChange(SdrPage
* pOldPage
, SdrPage
* pNewPage
) override
;
129 /** Change the IsClosedObj attribute
132 Whether the OLE object is closed, i.e. has opaque background
134 void SetClosedObj( bool bIsClosed
);
137 virtual rtl::Reference
<SdrObject
> getFullDragClone() const override
;
139 virtual void TakeObjInfo(SdrObjTransformInfoRec
& rInfo
) const override
;
140 virtual SdrObjKind
GetObjIdentifier() const override
;
141 virtual OUString
TakeObjNameSingul() const override
;
142 virtual OUString
TakeObjNamePlural() const override
;
144 virtual rtl::Reference
<SdrObject
> CloneSdrObject(SdrModel
& rTargetModel
) const override
;
146 virtual void NbcMove(const Size
& rSize
) override
;
147 virtual void NbcResize(const Point
& rRef
, const Fraction
& xFact
, const Fraction
& yFact
) override
;
148 virtual void NbcSetSnapRect(const tools::Rectangle
& rRect
) override
;
149 virtual void NbcSetLogicRect(const tools::Rectangle
& rRect
, bool bAdaptTextMinSize
= true) override
;
150 virtual void SetGeoData(const SdrObjGeoData
& rGeo
) override
;
152 static bool CanUnloadRunningObj( const css::uno::Reference
< css::embed::XEmbeddedObject
>& xObj
,
154 static bool Unload( const css::uno::Reference
< css::embed::XEmbeddedObject
>& xObj
, sal_Int64 nAspect
);
156 void Connect(SvxOle2Shape
* pCreator
= nullptr);
160 css::uno::Reference
< css::frame::XModel
> getXModel() const;
162 bool IsChart() const;
165 bool UpdateLinkURL_Impl();
166 void BreakFileLink_Impl();
167 void DisconnectFileLink_Impl();
168 void CheckFileLink_Impl();
170 // allows to transfer the graphics to the object helper
171 void SetGraphicToObj( const Graphic
& aGraphic
);
172 void SetGraphicToObj( const css::uno::Reference
< css::io::XInputStream
>& xGrStream
,
173 const OUString
& aMediaType
);
175 const css::uno::Reference
< css::frame::XModel
> & GetParentXModel() const;
176 bool CalculateNewScaling( Fraction
& aScaleWidth
, Fraction
& aScaleHeight
, Size
& aObjAreaSize
);
177 bool AddOwnLightClient();
179 // handy to get the empty replacement graphic without accessing all the old stuff
180 static Graphic
GetEmptyOLEReplacementGraphic();
182 void SetWindow(const css::uno::Reference
< css::awt::XWindow
>& _xWindow
);
184 // #i118485# missing converter added
185 virtual rtl::Reference
<SdrObject
> DoConvertToPolyObj(bool bBezier
, bool bAddText
) const override
;
187 virtual bool IsSdrOle2Obj() const final
{ return true; }
189 void SetIgnoreOLEObjectScale(bool val
);
192 class SVXCORE_DLLPUBLIC SdrEmbedObjectLink final
: public sfx2::SvBaseLink
197 SAL_DLLPRIVATE
explicit SdrEmbedObjectLink(SdrOle2Obj
* pObj
);
198 SAL_DLLPRIVATE
virtual ~SdrEmbedObjectLink() override
;
200 SAL_DLLPRIVATE
virtual void Closed() override
;
201 SAL_DLLPRIVATE
virtual ::sfx2::SvBaseLink::UpdateResult
DataChanged(
202 const OUString
& rMimeType
, const css::uno::Any
& rValue
) override
;
204 void Connect() { GetRealObject(); }
207 class SVXCORE_DLLPUBLIC SdrIFrameLink final
: public sfx2::SvBaseLink
209 SdrOle2Obj
* m_pObject
;
212 explicit SdrIFrameLink(SdrOle2Obj
* pObject
);
213 virtual ::sfx2::SvBaseLink::UpdateResult
DataChanged(
214 const OUString
& rMimeType
, const css::uno::Any
& rValue
) override
;
217 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */