LCOV - code coverage report
Current view: top level - include/svx - svdxcgv.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 1 100.0 %
Date: 2015-06-13 12:38:46 Functions: 1 2 50.0 %
Legend: Lines: hit not hit

          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 INCLUDED_SVX_SVDXCGV_HXX
      21             : #define INCLUDED_SVX_SVDXCGV_HXX
      22             : 
      23             : #include <svx/svdedxv.hxx>
      24             : 
      25             : #include <vcl/gdimtf.hxx>
      26             : #include <svx/svxdllapi.h>
      27             : 
      28        9438 : 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, SdrInsertFlags nOptions);
      36             :     bool                ImpGetPasteLayer(const SdrObjList* pObjList, SdrLayerID& rLayer) const;
      37             : 
      38             :     // liefert True, wenn rPt geaendert wurde
      39             :     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 bool Paste(
     107             :         const SdrModel& rMod, const Point& rPos, SdrObjList* pLst, SdrInsertFlags nOptions,
     108             :         const OUString& rSrcShellID, const OUString& rDestShellID );
     109             : 
     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);
     112             : 
     113             :     static bool     Cut( sal_uIntPtr nFormat = SDR_ANYFORMAT );
     114             : 
     115             :     static bool     Yank( sal_uIntPtr nFormat = SDR_ANYFORMAT );
     116             : 
     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 );
     119             : };
     120             : 
     121             : #endif // INCLUDED_SVX_SVDXCGV_HXX
     122             : 
     123             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11