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_SC_SOURCE_UI_INC_DRWTRANS_HXX
21 #define INCLUDED_SC_SOURCE_UI_INC_DRWTRANS_HXX
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <vcl/transfer.hxx>
26 #include <sfx2/objsh.hxx>
27 #include <charthelper.hxx>
38 class ScDrawTransferObj
: public TransferableHelper
41 std::unique_ptr
<SdrModel
> m_pModel
;
42 TransferableDataHelper m_aOleData
;
43 TransferableObjectDescriptor m_aObjDesc
;
44 SfxObjectShellRef m_aDocShellRef
;
45 SfxObjectShellRef m_aDrawPersistRef
;
47 // extracted from model in ctor:
49 std::unique_ptr
<INetBookmark
> m_pBookmark
;
53 // source information for drag&drop:
54 // (view is needed to handle drawing obejcts)
55 std::unique_ptr
<SdrView
> m_pDragSourceView
;
56 ScDragSrc m_nDragSourceFlags
;
57 bool m_bDragWasInternal
;
59 ScRangeListVector m_aProtectedChartRangesVector
;
61 OUString
const maShellID
;
64 SdrOle2Obj
* GetSingleObject();
69 ScDrawTransferObj( std::unique_ptr
<SdrModel
> pClipModel
, ScDocShell
* pContainerShell
,
70 const TransferableObjectDescriptor
& rDesc
);
71 virtual ~ScDrawTransferObj() override
;
73 virtual void AddSupportedFormats() override
;
74 virtual bool GetData( const css::datatransfer::DataFlavor
& rFlavor
, const OUString
& rDestDoc
) override
;
75 virtual bool WriteObject( tools::SvRef
<SotStorageStream
>& rxOStm
, void* pUserObject
, sal_uInt32 nUserObjectId
,
76 const css::datatransfer::DataFlavor
& rFlavor
) override
;
77 virtual void DragFinished( sal_Int8 nDropAction
) override
;
79 SdrModel
* GetModel() const { return m_pModel
.get(); }
81 void SetDrawPersist( const SfxObjectShellRef
& rRef
);
82 void SetDragSource( const ScDrawView
* pView
);
83 void SetDragSourceObj( SdrObject
& rObj
, SCTAB nTab
);
84 void SetDragSourceFlags( ScDragSrc nFlags
);
85 void SetDragWasInternal();
87 const OUString
& GetShellID() const;
89 SdrView
* GetDragSourceView() { return m_pDragSourceView
.get(); }
90 ScDragSrc
GetDragSourceFlags() const { return m_nDragSourceFlags
; }
92 static ScDrawTransferObj
* GetOwnClipboard(const css::uno::Reference
<css::datatransfer::XTransferable2
>&);
94 virtual sal_Int64 SAL_CALL
getSomething( const css::uno::Sequence
< sal_Int8
>& rId
) override
;
95 static const css::uno::Sequence
< sal_Int8
>& getUnoTunnelId();
97 const ScRangeListVector
& GetProtectedChartRangesVector() const { return m_aProtectedChartRangesVector
; }
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */