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_SVX_SVDXCGV_HXX
21 #define INCLUDED_SVX_SVDXCGV_HXX
23 #include <svx/svdedxv.hxx>
25 #include <vcl/gdimtf.hxx>
26 #include <svx/svxdllapi.h>
28 class SVX_DLLPUBLIC SdrExchangeView
: public SdrObjEditView
30 friend class SdrPageView
;
34 void ImpGetPasteObjList(Point
& rPos
, SdrObjList
*& rpLst
);
35 void ImpPasteObject(SdrObject
* pObj
, SdrObjList
& rLst
, const Point
& rCenter
, const Size
& rSiz
, const MapMode
& rMap
, SdrInsertFlags nOptions
);
36 bool ImpGetPasteLayer(const SdrObjList
* pObjList
, SdrLayerID
& rLayer
) const;
38 // liefert True, wenn rPt geaendert wurde
39 bool ImpLimitToWorkArea(Point
& rPt
) const;
42 // #i71538# make constructors of SdrView sub-components protected to avoid incomplete incarnations which may get casted to SdrView
43 SdrExchangeView(SdrModel
* pModel1
, OutputDevice
* pOut
= 0L);
46 // Alle markierten Objekte auf dem angegebenen OutputDevice ausgeben.
47 ::std::vector
< SdrObject
* > GetMarkedObjects() const;
48 virtual void DrawMarkedObj(OutputDevice
& rOut
) const;
50 // Z.B. fuer's Clipboard, Drag&Drop, ...
51 // Alle markierten Objekte in ein Metafile stecken. Z.Zt. noch etwas
52 // buggee (Offset..., Fremdgrafikobjekte (SdrGrafObj), Virtuelle
53 // Objektkopien (SdrVirtObj) mit Ankerpos<>(0,0)).
54 GDIMetaFile
GetMarkedObjMetaFile(bool bNoVDevIfOneMtfMarked
= false) const;
56 // Alle markierten Objekte auf eine Bitmap malen. Diese hat die Farbtiefe
57 // und Aufloesung des Bildschirms.
58 BitmapEx
GetMarkedObjBitmapEx(bool bNoVDevIfOneBmpMarked
= false) const;
60 // Alle markierten Objekte in ein neues Model kopieren. Dieses neue Model
61 // hat dann genau eine Page. Das Flag PageNotValid an diesem Model ist
62 // gesetzt. Daran ist zu erkennen, dass nur die Objekte der Page Gueltikeit
63 // haben, die Page sebst jedoch nicht (Seitengroesse, Raender). Das neue
64 // Model wird auf dem Heap erzeugt und wird an den Aufrufer dieser Methode
65 // uebergeben. Dieser hat es dann spaeter zu entsorgen.
66 // Beim einfuegen der markierten Objekte in die eine Page des neuen Model
67 // findet ein Merging der seitenlokalen Layer statt. Sollte kein Platz mehr
68 // fuer weitere seitenlokale Layer sein, wird den entsprechenden Objekten
69 // der Default-Layer zugewiesen (Layer 0, (dokumentglobaler Standardlayer).
70 virtual SdrModel
* GetMarkedObjModel() const;
72 Graphic
GetAllMarkedGraphic() const;
74 /** Generate a Graphic for the given draw object in the given model
77 Must not be NULL. Denotes the draw model the object is a part
81 The object (can also be a group object) to retrieve a Graphic
82 for. Must not be NULL.
84 @return a graphical representation of the given object, as it
85 appears on screen (e.g. with rotation, if any, applied).
87 static Graphic
GetObjGraphic( const SdrModel
* pModel
, const SdrObject
* pObj
);
89 // Bei allen Paste-Methoden werden die neuen Draw-Objekte markiert.
90 // Wird der Parameter bAddMark auf sal_True gesetzt, so werden die neuen
91 // DrawObjekte zu einer bereits bestehenden Selektion "hinzumarkiert".
92 // Dieser Fall ist fuer Drag&Drop mit mehreren Items gedacht.
93 // Die Methoden mit Point-Parameter fuegen neue Objekte zentriert an
94 // dieser Position ein, die anderen zentriert am 1.OutputDevice der View.
95 // Ist der Parameter pPg gesetzt, werden die Objekte and dieser Seite
96 // eingefuegt. Die Positionierung (rPos bzw. Zentrierung) bezieht sich
97 // dann nichtmehr auf die View sondern auf die Page.
98 // Hinweis: SdrObjList ist Basisklasse von SdrPage.
99 // Die Methoden liefern sal_True, wenn die Objekte erfolgreich erzeugt und
100 // eingefuegt wurden. Bei pLst=sal_False und kein TextEdit aktiv kann man
101 // sich dann auch darauf verlassen, dass diese an der View markiert sind.
102 // Andernfalls erfolgt die Markierung nur, wenn pLst z.Zt. auch an der
103 // View angezeigt wird.
104 // Gueltige Werte fuer nOptions sind SDRINSERT_DONTMARK und
105 // SDRINSERT_ADDMARK (siehe svdedtv.hxx).
107 const SdrModel
& rMod
, const Point
& rPos
, SdrObjList
* pLst
, SdrInsertFlags nOptions
,
108 const OUString
& rSrcShellID
, const OUString
& rDestShellID
);
110 bool Paste(const OUString
& rStr
, const Point
& rPos
, SdrObjList
* pLst
=NULL
, SdrInsertFlags nOptions
=SdrInsertFlags::NONE
);
111 bool Paste(SvStream
& rInput
, const OUString
& rBaseURL
, sal_uInt16 eFormat
, const Point
& rPos
, SdrObjList
* pLst
=NULL
, SdrInsertFlags nOptions
=SdrInsertFlags::NONE
);
113 static bool Cut( sal_uIntPtr nFormat
= SDR_ANYFORMAT
);
115 static bool Yank( sal_uIntPtr nFormat
= SDR_ANYFORMAT
);
117 static bool Paste( vcl::Window
* pWin
= NULL
, sal_uIntPtr nFormat
= SDR_ANYFORMAT
);
118 bool PasteClipboard( OutputDevice
* pOut
= NULL
, sal_uIntPtr nFormat
= SDR_ANYFORMAT
, sal_uInt32 nOptions
= 0 );
121 #endif // INCLUDED_SVX_SVDXCGV_HXX
123 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */