LibreOffice Module sc (master) 1
dragdata.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
10#pragma once
11
12#include <rtl/ustring.hxx>
13
14class ScTransferObj;
16class ScDocument;
17
19{
23
24 OUString aLinkDoc;
25 OUString aLinkTable;
26 OUString aLinkArea;
27 OUString aJumpTarget;
28 OUString aJumpText;
29
31 pCellTransfer(nullptr),
32 pDrawTransfer(nullptr),
33 pJumpLocalDoc(nullptr)
34 {
35 }
36};
37
38/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ScDocument * pJumpLocalDoc
Definition: dragdata.hxx:22
OUString aJumpTarget
Definition: dragdata.hxx:27
OUString aJumpText
Definition: dragdata.hxx:28
ScTransferObj * pCellTransfer
Definition: dragdata.hxx:20
OUString aLinkDoc
Definition: dragdata.hxx:24
OUString aLinkTable
Definition: dragdata.hxx:25
ScDrawTransferObj * pDrawTransfer
Definition: dragdata.hxx:21
OUString aLinkArea
Definition: dragdata.hxx:26