Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / include / svx / svdetc.hxx
blob918205e36fc60a4cbdd891fa9c534e5156deef2e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_SVDETC_HXX
21 #define INCLUDED_SVX_SVDETC_HXX
23 #include <rtl/ustring.hxx>
24 #include <editeng/outliner.hxx>
25 #include <svx/svxdllapi.h>
26 #include <tools/shl.hxx>
27 #include <vcl/outdev.hxx>
31 // ExchangeFormat-Id der DrawingEngine holen. Daten koennen dann per
32 // static bool CopyData(pData,nLen,nFormat);
33 // bereitgestellt werden, wobei pData/nLen einen SvMemoryStream beschreiben in
34 // dem ein SdrModel gestreamt wird an dem fuer die Zeitdauer des Streamens das
35 // Flag SdrModel::SetStreamingSdrModel(sal_True) gesetzt wird.
36 // sal_uIntPtr SdrGetExchangeFormat(); -- JP 18.01.99 - dafuer gibt es ein define
38 class SdrOutliner;
39 class SdrModel;
40 class SvtSysLocale;
41 class LocaleDataWrapper;
43 namespace com { namespace sun { namespace star { namespace lang {
44 struct Locale;
45 }}}}
47 // Einen Outliner mit den engineglobalen
48 // Defaulteinstellungen auf dem Heap erzeugen.
49 // Ist pMod<>NULL, dann wird der MapMode des uebergebenen
50 // Models verwendet. Die resultierende Default-Fonthoehe bleibt
51 // jedoch dieselbe (die logische Fonthoehe wird umgerechnet).
52 SVX_DLLPUBLIC SdrOutliner* SdrMakeOutliner( sal_uInt16 nOutlinerMode, SdrModel* pMod );
54 // Globale Defaulteinstellungen fuer die DrawingEngine.
55 // Diese Einstellungen sollte man direkt beim Applikationsstart
56 // vornehmen, noch bevor andere Methoden der Engine gerufen werden.
57 class SVX_DLLPUBLIC SdrEngineDefaults
59 friend class SdrAttrObj;
60 OUString aFontName;
61 FontFamily eFontFamily;
62 Color aFontColor;
63 sal_uIntPtr nFontHeight;
64 MapUnit eMapUnit;
65 Fraction aMapFraction;
67 private:
68 static SdrEngineDefaults& GetDefaults();
70 public:
71 SdrEngineDefaults();
72 // Default Fontname ist "Times New Roman"
73 static void SetFontName(const OUString& rFontName) { GetDefaults().aFontName=rFontName; }
74 static OUString GetFontName() { return GetDefaults().aFontName; }
75 // Default FontFamily ist FAMILY_ROMAN
76 static void SetFontFamily(FontFamily eFam) { GetDefaults().eFontFamily=eFam; }
77 static FontFamily GetFontFamily() { return GetDefaults().eFontFamily; }
78 // Default FontColor ist COL_BLACK
79 static void SetFontColor(const Color& rColor) { GetDefaults().aFontColor=rColor; }
80 static Color GetFontColor() { return GetDefaults().aFontColor; }
81 // Default FontHeight ist 847. Die Fonthoehe wird in logischen Einheiten
82 // (MapUnit/MapFraction (siehe unten)) angegeben. Die Defaulteinstellung
83 // 847/100mm entspricht also ca. 24 Point. Verwendet man stattdessen
84 // beispielsweise Twips (SetMapUnit(MAP_TWIP)) (20 Twip = 1 Point) muss
85 // man als Fonthoehe 480 angeben um 24 Point als default zu erhalten.
86 static void SetFontHeight(sal_uIntPtr nHeight) { GetDefaults().nFontHeight=nHeight; }
87 static sal_uIntPtr GetFontHeight() { return GetDefaults().nFontHeight; }
88 // Der MapMode wird fuer den globalen Outliner benoetigt.
89 // Gleichzeitig bekommt auch jedes neu instanziierte SdrModel
90 // diesen MapMode default zugewiesen.
91 // Default MapUnit ist MAP_100TH_MM
92 static void SetMapUnit(MapUnit eMap) { GetDefaults().eMapUnit=eMap; }
93 static MapUnit GetMapUnit() { return GetDefaults().eMapUnit; }
94 // Default MapFraction ist 1/1.
95 static void SetMapFraction(const Fraction& rMap) { GetDefaults().aMapFraction=rMap; }
96 static Fraction GetMapFraction() { return GetDefaults().aMapFraction; }
98 // Einen Outliner mit den engineglobalen
99 // Defaulteinstellungen auf dem Heap erzeugen.
100 // Ist pMod<>NULL, dann wird der MapMode des uebergebenen
101 // Models verwendet. Die resultierende Default-Fonthoehe bleibt
102 // jedoch dieselbe (die logische Fonthoehe wird umgerechnet).
103 friend SVX_DLLPUBLIC SdrOutliner* SdrMakeOutliner( sal_uInt16 nOutlinerMode, SdrModel* pMod );
106 class SfxItemSet;
107 // Liefert eine Ersatzdarstellung fuer einen XFillStyle
108 // Bei XFILL_NONE gibt's sal_False und rCol bleibt unveraendert.
109 SVX_DLLPUBLIC bool GetDraftFillColor(const SfxItemSet& rSet, Color& rCol);
113 // Ein ItemSet auf Outliner- bzw. EditEngine-Items durchsuchen
114 // Liefert sal_True, wenn der Set solchen Items enthaelt.
115 bool SearchOutlinerItems(const SfxItemSet& rSet, bool bInklDefaults, bool* pbOnlyEE=NULL);
117 // zurueck erhaelt man einen neuen WhichTable den
118 // man dann irgendwann mit delete platthauen muss.
119 sal_uInt16* RemoveWhichRange(const sal_uInt16* pOldWhichTable, sal_uInt16 nRangeBeg, sal_uInt16 nRangeEnd);
123 class Link;
125 // Hilfsklasse zur kommunikation zwischen dem Dialog
126 // zum aufbrechen von Metafiles (sd/source/ui/dlg/brkdlg.cxx),
127 // SdrEditView::DoImportMarkedMtf() und
128 // ImpSdrGDIMetaFileImport::DoImport()
129 class SVX_DLLPUBLIC SvdProgressInfo
131 private:
132 sal_uIntPtr nSumActionCount; // Summe aller Actions
133 sal_uIntPtr nSumCurAction; // Summe aller bearbeiteten Actions
135 sal_uIntPtr nActionCount; // Anzahl der Actions im akt. Obj.
136 sal_uIntPtr nCurAction; // Anzahl bearbeiteter Act. im akt. Obj.
138 sal_uIntPtr nInsertCount; // Anzahl einzufuegender Act. im akt. Obj.
139 sal_uIntPtr nCurInsert; // Anzahl bereits eingefuegter Actions
141 sal_uIntPtr nObjCount; // Anzahl der selektierten Objekte
142 sal_uIntPtr nCurObj; // Aktuelles Objekt
144 Link *pLink;
146 public:
147 SvdProgressInfo( Link *_pLink );
149 void Init( sal_uIntPtr _nSumActionCount, sal_uIntPtr _nObjCount );
151 bool SetNextObject();
153 void SetActionCount( sal_uIntPtr _nActionCount );
154 void SetInsertCount( sal_uIntPtr _nInsertCount );
156 bool ReportActions( sal_uIntPtr nAnzActions );
157 bool ReportInserts( sal_uIntPtr nAnzInserts );
159 sal_uIntPtr GetSumActionCount() const { return nSumActionCount; };
160 sal_uIntPtr GetSumCurAction() const { return nSumCurAction; };
161 sal_uIntPtr GetObjCount() const { return nObjCount; };
162 sal_uIntPtr GetCurObj() const { return nCurObj; };
164 sal_uIntPtr GetActionCount() const { return nActionCount; };
165 sal_uIntPtr GetCurAction() const { return nCurAction; };
167 sal_uIntPtr GetInsertCount() const { return nInsertCount; };
168 sal_uIntPtr GetCurInsert() const { return nCurInsert; };
170 bool ReportRescales( sal_uIntPtr nAnzRescales );
175 class SdrLinkList
177 std::vector<Link*> aList;
178 protected:
179 unsigned FindEntry(const Link& rLink) const;
180 public:
181 SdrLinkList(): aList() {}
182 ~SdrLinkList() { Clear(); }
183 SVX_DLLPUBLIC void Clear();
184 unsigned GetLinkCount() const { return (unsigned)aList.size(); }
185 Link& GetLink(unsigned nNum) { return *aList[nNum]; }
186 const Link& GetLink(unsigned nNum) const { return *aList[nNum]; }
187 void InsertLink(const Link& rLink, unsigned nPos=0xFFFF);
188 void RemoveLink(const Link& rLink);
189 bool HasLink(const Link& rLink) const { return FindEntry(rLink)!=0xFFFF; }
192 SdrLinkList& ImpGetUserMakeObjHdl();
193 SdrLinkList& ImpGetUserMakeObjUserDataHdl();
195 class SdrOle2Obj;
196 class AutoTimer;
198 class OLEObjCache : public std::vector<SdrOle2Obj*>
200 sal_uIntPtr nSize;
201 AutoTimer* pTimer;
203 void UnloadOnDemand();
204 bool UnloadObj( SdrOle2Obj* pObj );
205 DECL_LINK( UnloadCheckHdl, AutoTimer* );
207 public:
208 OLEObjCache();
209 SVX_DLLPUBLIC ~OLEObjCache();
211 void InsertObj(SdrOle2Obj* pObj);
212 void RemoveObj(SdrOle2Obj* pObj);
216 class SVX_DLLPUBLIC SdrGlobalData
218 const SvtSysLocale* pSysLocale; // follows always locale settings
219 const LocaleDataWrapper* pLocaleData; // follows always SysLocale
220 public:
221 SdrLinkList aUserMakeObjHdl;
222 SdrLinkList aUserMakeObjUserDataHdl;
223 SdrOutliner* pOutliner;
224 SdrEngineDefaults* pDefaults;
225 ResMgr* pResMgr;
226 sal_uIntPtr nExchangeFormat;
227 OLEObjCache aOLEObjCache;
230 const SvtSysLocale* GetSysLocale(); // follows always locale settings
231 const LocaleDataWrapper* GetLocaleData(); // follows always SysLocale
232 public:
233 SdrGlobalData();
235 OLEObjCache& GetOLEObjCache() { return aOLEObjCache; }
238 inline SdrGlobalData& GetSdrGlobalData()
240 void** ppAppData=GetAppData(SHL_SVD);
241 if (*ppAppData==NULL) {
242 *ppAppData=new SdrGlobalData;
244 return *((SdrGlobalData*)*ppAppData);
247 namespace sdr
249 SVX_DLLPUBLIC OUString GetResourceString(sal_uInt16 nResID);
253 // #i101872# isolated GetTextEditBackgroundColor for tooling
254 class SdrObjEditView;
256 SVX_DLLPUBLIC Color GetTextEditBackgroundColor(const SdrObjEditView& rView);
260 #endif // INCLUDED_SVX_SVDETC_HXX
262 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */