tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / inc / cliputil.hxx
blobdc0ee5b9b8d4d032a453ee9deaa85b172f8077d2
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #pragma once
12 #include <types.hxx>
13 #include <scdllapi.h>
15 class ScViewData;
16 class ScTabViewShell;
17 class ScDocument;
18 class ScMarkData;
19 class ScRangeList;
21 namespace ScClipUtil
24 SC_DLLPUBLIC void PasteFromClipboard( ScViewData& rViewData, ScTabViewShell* pTabViewShell, bool bShowDialog );
26 bool CheckDestRanges(
27 const ScDocument& rDoc, SCCOL nSrcCols, SCROW nSrcRows, const ScMarkData& rMark,
28 const ScRangeList& rDest);
31 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */