Line data Source code
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 : #ifndef _SVDXCGV_HXX
21 : #define _SVDXCGV_HXX
22 :
23 : #include <svx/svdedxv.hxx>
24 :
25 : #include <vcl/gdimtf.hxx>
26 : #include "svx/svxdllapi.h"
27 :
28 2926 : class SVX_DLLPUBLIC SdrExchangeView: public SdrObjEditView
29 : {
30 : friend class SdrPageView;
31 :
32 : protected:
33 :
34 : void ImpGetPasteObjList(Point& rPos, SdrObjList*& rpLst);
35 : void ImpPasteObject(SdrObject* pObj, SdrObjList& rLst, const Point& rCenter, const Size& rSiz, const MapMode& rMap, sal_uInt32 nOptions);
36 : sal_Bool ImpGetPasteLayer(const SdrObjList* pObjList, SdrLayerID& rLayer) const;
37 :
38 : // liefert True, wenn rPt geaendert wurde
39 : sal_Bool ImpLimitToWorkArea(Point& rPt) const;
40 :
41 : protected:
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);
44 :
45 : public:
46 : // Alle markierten Objekte auf dem angegebenen OutputDevice ausgeben.
47 : ::std::vector< SdrObject* > GetMarkedObjects() const;
48 : virtual void DrawMarkedObj(OutputDevice& rOut) const;
49 :
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;
55 :
56 : // Alle markierten Objekte auf eine Bitmap malen. Diese hat die Farbtiefe
57 : // und Aufloesung des Bildschirms.
58 : BitmapEx GetMarkedObjBitmapEx(bool bNoVDevIfOneBmpMarked = false) const;
59 :
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;
71 :
72 : Graphic GetAllMarkedGraphic() const;
73 :
74 : /** Generate a Graphic for the given draw object in the given model
75 :
76 : @param pModel
77 : Must not be NULL. Denotes the draw model the object is a part
78 : of.
79 :
80 : @param pObj
81 : The object (can also be a group object) to retrieve a Graphic
82 : for. Must not be NULL.
83 :
84 : @return a graphical representation of the given object, as it
85 : appears on screen (e.g. with rotation, if any, applied).
86 : */
87 : static Graphic GetObjGraphic( const SdrModel* pModel, const SdrObject* pObj );
88 :
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).
106 : virtual sal_Bool Paste(const SdrModel& rMod, const Point& rPos, SdrObjList* pLst=NULL, sal_uInt32 nOptions=0);
107 : sal_Bool Paste(const String& rStr, const Point& rPos, SdrObjList* pLst=NULL, sal_uInt32 nOptions=0);
108 : sal_Bool Paste(SvStream& rInput, const String& rBaseURL, sal_uInt16 eFormat, const Point& rPos, SdrObjList* pLst=NULL, sal_uInt32 nOptions=0);
109 :
110 : sal_Bool Cut( sal_uIntPtr nFormat = SDR_ANYFORMAT );
111 :
112 : sal_Bool Yank( sal_uIntPtr nFormat = SDR_ANYFORMAT );
113 :
114 : sal_Bool Paste( Window* pWin = NULL, sal_uIntPtr nFormat = SDR_ANYFORMAT );
115 : sal_Bool PasteClipboard( OutputDevice* pOut = NULL, sal_uIntPtr nFormat = SDR_ANYFORMAT, sal_uInt32 nOptions = 0 );
116 : };
117 :
118 : #endif //_SVDXCGV_HXX
119 :
120 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|