LibreOffice Module sd (master) 1
ViewClipboard.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 <sal/types.h>
23
24class SdPage;
25class SdTransferable;
26
27namespace sd
28{
29class View;
30
34{
36
37public:
39 virtual ~ViewClipboard();
40
44 void HandlePageDrop(const SdTransferable& rTransferable);
45
46protected:
51 static SdPage* GetFirstMasterPage(const SdTransferable& rTransferable);
52
56 void AssignMasterPage(const SdTransferable& rTransferable, SdPage const* pMasterPage);
57
61 virtual sal_uInt16 DetermineInsertPosition();
62
73 sal_uInt16 InsertSlides(const SdTransferable& rTransferable, sal_uInt16 nInsertPosition);
74};
75
76} // end of namespace ::sd
77
78/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Handle clipboard related tasks for the draw view.
sal_uInt16 InsertSlides(const SdTransferable &rTransferable, sal_uInt16 nInsertPosition)
Insert the slides in the given transferable behind the last selected slide or, when the selection is ...
virtual ~ViewClipboard()
::sd::View & mrView
virtual sal_uInt16 DetermineInsertPosition()
Return an index of a page after which the pages of the transferable are to be inserted into the targe...
static SdPage * GetFirstMasterPage(const SdTransferable &rTransferable)
Return the first master page of the given transferable.
void AssignMasterPage(const SdTransferable &rTransferable, SdPage const *pMasterPage)
Assign the (first) master page of the given transferable to the (...) slide.
ViewClipboard(::sd::View &rView)
void HandlePageDrop(const SdTransferable &rTransferable)
Handle the drop of a drag-and-drop action where the transferable contains a set of pages.