LCOV - code coverage report
Current view: top level - include/svx - svdetc.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 14 22 63.6 %
Date: 2015-06-13 12:38:46 Functions: 10 18 55.6 %
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_SVDETC_HXX
      21             : #define INCLUDED_SVX_SVDETC_HXX
      22             : 
      23             : #include <rtl/ustring.hxx>
      24             : #include <editeng/outliner.hxx>
      25             : #include <svx/svxdllapi.h>
      26             : #include <tools/link.hxx>
      27             : #include <tools/shl.hxx>
      28             : #include <tools/fract.hxx>
      29             : #include <vcl/outdev.hxx>
      30             : 
      31             : 
      32             : 
      33             : // ExchangeFormat-Id der DrawingEngine holen. Daten koennen dann per
      34             : //   static bool CopyData(pData,nLen,nFormat);
      35             : // bereitgestellt werden, wobei pData/nLen einen SvMemoryStream beschreiben in
      36             : // dem ein SdrModel gestreamt wird an dem fuer die Zeitdauer des Streamens das
      37             : // Flag SdrModel::SetStreamingSdrModel(sal_True) gesetzt wird.
      38             : // sal_uIntPtr SdrGetExchangeFormat(); -- JP 18.01.99 - dafuer gibt es ein define
      39             : 
      40             : class SdrOutliner;
      41             : class SdrModel;
      42             : class SvtSysLocale;
      43             : class LocaleDataWrapper;
      44             : 
      45             : namespace com { namespace sun { namespace star { namespace lang {
      46             :     struct Locale;
      47             : }}}}
      48             : 
      49             : // Einen Outliner mit den engineglobalen
      50             : // Defaulteinstellungen auf dem Heap erzeugen.
      51             : // Ist pMod<>NULL, dann wird der MapMode des uebergebenen
      52             : // Models verwendet. Die resultierende Default-Fonthoehe bleibt
      53             : // jedoch dieselbe (die logische Fonthoehe wird umgerechnet).
      54             : SVX_DLLPUBLIC SdrOutliner* SdrMakeOutliner(sal_uInt16 nOutlinerMode, SdrModel& rMod);
      55             : 
      56             : // Globale Defaulteinstellungen fuer die DrawingEngine.
      57             : // Diese Einstellungen sollte man direkt beim Applikationsstart
      58             : // vornehmen, noch bevor andere Methoden der Engine gerufen werden.
      59             : class SVX_DLLPUBLIC SdrEngineDefaults
      60             : {
      61             : friend class SdrAttrObj;
      62             :     OUString   aFontName;
      63             :     FontFamily eFontFamily;
      64             :     Color      aFontColor;
      65             :     sal_uIntPtr      nFontHeight;
      66             :     MapUnit    eMapUnit;
      67             :     Fraction   aMapFraction;
      68             : 
      69             : private:
      70             :     static SdrEngineDefaults& GetDefaults();
      71             : 
      72             : public:
      73             :     SdrEngineDefaults();
      74             :     // Default Fontname ist "Times New Roman"
      75             :     static void       SetFontName(const OUString& rFontName) { GetDefaults().aFontName=rFontName; }
      76             :     static OUString   GetFontName()                        { return GetDefaults().aFontName; }
      77             :     // Default FontFamily ist FAMILY_ROMAN
      78             :     static void       SetFontFamily(FontFamily eFam)       { GetDefaults().eFontFamily=eFam; }
      79             :     static FontFamily GetFontFamily()                      { return GetDefaults().eFontFamily; }
      80             :     // Default FontColor ist COL_BLACK
      81             :     static void       SetFontColor(const Color& rColor)    { GetDefaults().aFontColor=rColor; }
      82        4666 :     static Color      GetFontColor()                       { return GetDefaults().aFontColor; }
      83             :     // Default FontHeight ist 847. Die Fonthoehe wird in logischen Einheiten
      84             :     // (MapUnit/MapFraction (siehe unten)) angegeben. Die Defaulteinstellung
      85             :     // 847/100mm entspricht also ca. 24 Point. Verwendet man stattdessen
      86             :     // beispielsweise Twips (SetMapUnit(MAP_TWIP)) (20 Twip = 1 Point) muss
      87             :     // man als Fonthoehe 480 angeben um 24 Point als default zu erhalten.
      88             :     static void       SetFontHeight(sal_uIntPtr nHeight)         { GetDefaults().nFontHeight=nHeight; }
      89        1708 :     static sal_uIntPtr      GetFontHeight()                      { return GetDefaults().nFontHeight; }
      90             :     // Der MapMode wird fuer den globalen Outliner benoetigt.
      91             :     // Gleichzeitig bekommt auch jedes neu instanziierte SdrModel
      92             :     // diesen MapMode default zugewiesen.
      93             :     // Default MapUnit ist MAP_100TH_MM
      94             :     static void       SetMapUnit(MapUnit eMap)             { GetDefaults().eMapUnit=eMap; }
      95        4755 :     static MapUnit    GetMapUnit()                         { return GetDefaults().eMapUnit; }
      96             :     // Default MapFraction ist 1/1.
      97             :     static void       SetMapFraction(const Fraction& rMap) { GetDefaults().aMapFraction=rMap; }
      98        4148 :     static Fraction   GetMapFraction()                     { return GetDefaults().aMapFraction; }
      99             : 
     100             :     // Einen Outliner mit den engineglobalen
     101             :     // Defaulteinstellungen auf dem Heap erzeugen.
     102             :     // Ist pMod<>NULL, dann wird der MapMode des uebergebenen
     103             :     // Models verwendet. Die resultierende Default-Fonthoehe bleibt
     104             :     // jedoch dieselbe (die logische Fonthoehe wird umgerechnet).
     105             :     friend SVX_DLLPUBLIC SdrOutliner* SdrMakeOutliner(sal_uInt16 nOutlinerMode, SdrModel& rMod);
     106             : };
     107             : 
     108             : class SfxItemSet;
     109             : // Liefert eine Ersatzdarstellung fuer einen XFillStyle
     110             : // Bei XFILL_NONE gibt's sal_False und rCol bleibt unveraendert.
     111             : SVX_DLLPUBLIC bool GetDraftFillColor(const SfxItemSet& rSet, Color& rCol);
     112             : 
     113             : 
     114             : 
     115             : // Ein ItemSet auf Outliner- bzw. EditEngine-Items durchsuchen
     116             : // Liefert sal_True, wenn der Set solchen Items enthaelt.
     117             : bool SearchOutlinerItems(const SfxItemSet& rSet, bool bInklDefaults, bool* pbOnlyEE=NULL);
     118             : 
     119             : // zurueck erhaelt man einen neuen WhichTable den
     120             : // man dann irgendwann mit delete platthauen muss.
     121             : sal_uInt16* RemoveWhichRange(const sal_uInt16* pOldWhichTable, sal_uInt16 nRangeBeg, sal_uInt16 nRangeEnd);
     122             : 
     123             : // Hilfsklasse zur kommunikation zwischen dem Dialog
     124             : // zum aufbrechen von Metafiles (sd/source/ui/dlg/brkdlg.cxx),
     125             : // SdrEditView::DoImportMarkedMtf() und
     126             : // ImpSdrGDIMetaFileImport::DoImport()
     127             : class SVX_DLLPUBLIC SvdProgressInfo
     128             : {
     129             : private:
     130             :     sal_uIntPtr nSumActionCount;    // Summe aller Actions
     131             :     sal_uIntPtr nSumCurAction;  // Summe aller bearbeiteten Actions
     132             : 
     133             :     sal_uIntPtr nActionCount;       // Anzahl der Actions im akt. Obj.
     134             :     sal_uIntPtr nCurAction;     // Anzahl bearbeiteter Act. im akt. Obj.
     135             : 
     136             :     sal_uIntPtr nInsertCount;       // Anzahl einzufuegender Act. im akt. Obj.
     137             :     sal_uIntPtr nCurInsert;     // Anzahl bereits eingefuegter Actions
     138             : 
     139             :     sal_uIntPtr nObjCount;      // Anzahl der selektierten Objekte
     140             :     sal_uIntPtr nCurObj;            // Aktuelles Objekt
     141             : 
     142             :     Link<> *pLink;
     143             : 
     144             : public:
     145             :     SvdProgressInfo( Link<> *_pLink );
     146             : 
     147             :     void Init( sal_uIntPtr _nSumActionCount, sal_uIntPtr _nObjCount );
     148             : 
     149             :     bool SetNextObject();
     150             : 
     151             :     void SetActionCount( sal_uIntPtr _nActionCount );
     152             :     void SetInsertCount( sal_uIntPtr _nInsertCount );
     153             : 
     154             :     bool ReportActions( sal_uIntPtr nActionCount );
     155             :     bool ReportInserts( sal_uIntPtr nInsertCount );
     156             : 
     157             :     sal_uIntPtr GetSumActionCount() const { return nSumActionCount; };
     158           0 :     sal_uIntPtr GetSumCurAction() const { return nSumCurAction; };
     159           0 :     sal_uIntPtr GetObjCount() const { return nObjCount; };
     160           0 :     sal_uIntPtr GetCurObj() const { return nCurObj; };
     161             : 
     162           0 :     sal_uIntPtr GetActionCount() const { return nActionCount; };
     163           0 :     sal_uIntPtr GetCurAction() const { return nCurAction; };
     164             : 
     165           0 :     sal_uIntPtr GetInsertCount() const { return nInsertCount; };
     166           0 :     sal_uIntPtr GetCurInsert() const { return nCurInsert; };
     167             : 
     168             :     bool ReportRescales( sal_uIntPtr nRescaleCount );
     169             : };
     170             : 
     171             : 
     172             : 
     173             : class SdrLinkList
     174             : {
     175             :     std::vector<Link<>*> aList;
     176             : protected:
     177             :     unsigned FindEntry(const Link<>& rLink) const;
     178             : public:
     179         228 :     SdrLinkList(): aList()                   {}
     180           0 :     ~SdrLinkList()                           { Clear(); }
     181             :     SVX_DLLPUBLIC void Clear();
     182        7403 :     unsigned GetLinkCount() const            { return (unsigned)aList.size(); }
     183        6167 :     Link<>& GetLink(unsigned nNum)           { return *aList[nNum]; }
     184         905 :     const Link<>& GetLink(unsigned nNum) const { return *aList[nNum]; }
     185             :     void InsertLink(const Link<>& rLink, unsigned nPos=0xFFFF);
     186             :     void RemoveLink(const Link<>& rLink);
     187             :     bool HasLink(const Link<>& rLink) const { return FindEntry(rLink)!=0xFFFF; }
     188             : };
     189             : 
     190             : SdrLinkList& ImpGetUserMakeObjHdl();
     191             : SdrLinkList& ImpGetUserMakeObjUserDataHdl();
     192             : 
     193             : class SdrOle2Obj;
     194             : class AutoTimer;
     195             : 
     196             : class OLEObjCache
     197             : {
     198             :     std::vector<SdrOle2Obj*> maObjs;
     199             : 
     200             :     size_t         nSize;
     201             :     AutoTimer*          pTimer;
     202             : 
     203             :     void UnloadOnDemand();
     204             :     static bool UnloadObj( SdrOle2Obj* pObj );
     205             :     DECL_LINK_TYPED( UnloadCheckHdl, Timer*, void );
     206             : 
     207             : public:
     208             :     OLEObjCache();
     209             :     SVX_DLLPUBLIC ~OLEObjCache();
     210             : 
     211             :     void InsertObj(SdrOle2Obj* pObj);
     212             :     void RemoveObj(SdrOle2Obj* pObj);
     213             : 
     214             :     SVX_DLLPUBLIC size_t size() const;
     215             :     SVX_DLLPUBLIC SdrOle2Obj* operator[](size_t nPos);
     216             :     SVX_DLLPUBLIC const SdrOle2Obj* operator[](size_t nPos) const;
     217             : };
     218             : 
     219             : 
     220             : class SVX_DLLPUBLIC SdrGlobalData
     221             : {
     222             :     const SvtSysLocale*         pSysLocale;     // follows always locale settings
     223             :     const LocaleDataWrapper*    pLocaleData;    // follows always SysLocale
     224             : public:
     225             :     SdrLinkList         aUserMakeObjHdl;
     226             :     SdrLinkList         aUserMakeObjUserDataHdl;
     227             :     SdrOutliner*        pOutliner;
     228             :     SdrEngineDefaults*  pDefaults;
     229             :     ResMgr*             pResMgr;
     230             :     sal_uIntPtr                 nExchangeFormat;
     231             :     OLEObjCache         aOLEObjCache;
     232             : 
     233             : 
     234             :     const SvtSysLocale*         GetSysLocale();     // follows always locale settings
     235             :     const LocaleDataWrapper*    GetLocaleData();    // follows always SysLocale
     236             : public:
     237             :     SdrGlobalData();
     238             : 
     239        4978 :     OLEObjCache&        GetOLEObjCache() { return aOLEObjCache; }
     240             : };
     241             : 
     242       35925 : inline SdrGlobalData& GetSdrGlobalData()
     243             : {
     244       35925 :     void** ppAppData=GetAppData(SHL_SVD);
     245       35925 :     if (*ppAppData==NULL) {
     246         114 :         *ppAppData=new SdrGlobalData;
     247             :     }
     248       35925 :     return *static_cast<SdrGlobalData*>(*ppAppData);
     249             : }
     250             : 
     251             : namespace sdr
     252             : {
     253             :     SVX_DLLPUBLIC OUString GetResourceString(sal_uInt16 nResID);
     254             : }
     255             : 
     256             : 
     257             : // #i101872# isolated GetTextEditBackgroundColor for tooling
     258             : class SdrObjEditView;
     259             : 
     260             : SVX_DLLPUBLIC Color GetTextEditBackgroundColor(const SdrObjEditView& rView);
     261             : 
     262             : 
     263             : 
     264             : #endif // INCLUDED_SVX_SVDETC_HXX
     265             : 
     266             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11