LibreOffice Module sc (master) 1
drwtrans.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <com/sun/star/uno/Reference.hxx>
23#include <vcl/transfer.hxx>
24
25#include <sfx2/objsh.hxx>
26#include <svl/urlbmk.hxx>
27#include <charthelper.hxx>
28
29class SdrModel;
30class ScDocShell;
31class SdrObject;
32class SdrView;
33class ScDrawView;
34class SdrOle2Obj;
35enum class ScDragSrc;
36
38{
39private:
40 std::unique_ptr<SdrModel> m_pModel;
45
46 // extracted from model in ctor:
48 std::optional<INetBookmark> m_oBookmark;
52 // source information for drag&drop:
53 // (view is needed to handle drawing objects)
54 std::unique_ptr<SdrView> m_pDragSourceView;
57
59
60 OUString maShellID;
61
62 void InitDocShell();
64
65 void CreateOLEData();
66
67public:
68 ScDrawTransferObj( std::unique_ptr<SdrModel> pClipModel, ScDocShell* pContainerShell,
70 virtual ~ScDrawTransferObj() override;
71
72 virtual void AddSupportedFormats() override;
73 virtual bool GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& rDestDoc ) override;
74 virtual bool WriteObject( tools::SvRef<SotTempStream>& rxOStm, void* pUserObject, sal_uInt32 nUserObjectId,
75 const css::datatransfer::DataFlavor& rFlavor ) override;
76 virtual void DragFinished( sal_Int8 nDropAction ) override;
77
78 SdrModel* GetModel() const { return m_pModel.get(); }
79
80 void SetDrawPersist( const SfxObjectShellRef& rRef );
81 void SetDragSource( const ScDrawView* pView );
82 void SetDragSourceObj( SdrObject& rObj, SCTAB nTab );
83 void SetDragSourceFlags( ScDragSrc nFlags );
84 void SetDragWasInternal();
85
86 const OUString& GetShellID() const;
87
90
91 static ScDrawTransferObj* GetOwnClipboard(const css::uno::Reference<css::datatransfer::XTransferable2>&);
92
94};
95
96/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
::std::vector< ScRangeList > ScRangeListVector
Definition: charthelper.hxx:29
virtual bool WriteObject(tools::SvRef< SotTempStream > &rxOStm, void *pUserObject, sal_uInt32 nUserObjectId, const css::datatransfer::DataFlavor &rFlavor) override
Definition: drwtrans.cxx:428
virtual ~ScDrawTransferObj() override
Definition: drwtrans.cxx:214
ScDragSrc GetDragSourceFlags() const
Definition: drwtrans.hxx:89
ScDragSrc m_nDragSourceFlags
Definition: drwtrans.hxx:55
void SetDrawPersist(const SfxObjectShellRef &rRef)
Definition: drwtrans.cxx:580
virtual void AddSupportedFormats() override
Definition: drwtrans.cxx:270
ScRangeListVector m_aProtectedChartRangesVector
Definition: drwtrans.hxx:58
OUString maShellID
Definition: drwtrans.hxx:60
void SetDragSource(const ScDrawView *pView)
Definition: drwtrans.cxx:602
static ScDrawTransferObj * GetOwnClipboard(const css::uno::Reference< css::datatransfer::XTransferable2 > &)
Definition: drwtrans.cxx:235
SdrModel * GetModel() const
Definition: drwtrans.hxx:78
void SetDragWasInternal()
Definition: drwtrans.cxx:625
void CreateOLEData()
Definition: drwtrans.cxx:653
ScDrawTransferObj(std::unique_ptr< SdrModel > pClipModel, ScDocShell *pContainerShell, TransferableObjectDescriptor aDesc)
Definition: drwtrans.cxx:72
SdrOle2Obj * GetSingleObject()
Definition: drwtrans.cxx:635
TransferableDataHelper m_aOleData
Definition: drwtrans.hxx:41
virtual void DragFinished(sal_Int8 nDropAction) override
Definition: drwtrans.cxx:561
void SetDragSourceFlags(ScDragSrc nFlags)
Definition: drwtrans.cxx:620
SfxObjectShellRef m_aDocShellRef
Definition: drwtrans.hxx:43
std::unique_ptr< SdrModel > m_pModel
Definition: drwtrans.hxx:40
const ScRangeListVector & GetProtectedChartRangesVector() const
Definition: drwtrans.hxx:93
virtual bool GetData(const css::datatransfer::DataFlavor &rFlavor, const OUString &rDestDoc) override
Definition: drwtrans.cxx:339
SdrView * GetDragSourceView()
Definition: drwtrans.hxx:88
void SetDragSourceObj(SdrObject &rObj, SCTAB nTab)
Definition: drwtrans.cxx:610
TransferableObjectDescriptor m_aObjDesc
Definition: drwtrans.hxx:42
std::unique_ptr< SdrView > m_pDragSourceView
Definition: drwtrans.hxx:54
bool m_bDragWasInternal
Definition: drwtrans.hxx:56
SfxObjectShellRef m_aDrawPersistRef
Definition: drwtrans.hxx:44
const OUString & GetShellID() const
Definition: drwtrans.cxx:630
std::optional< INetBookmark > m_oBookmark
Definition: drwtrans.hxx:48
signed char sal_Int8
sal_Int16 SCTAB
Definition: types.hxx:22
ScDragSrc
Definition: viewdata.hxx:91