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/shl.hxx>
27 : #include <vcl/outdev.hxx>
28 :
29 :
30 :
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
37 :
38 : class SdrOutliner;
39 : class SdrModel;
40 : class SvtSysLocale;
41 : class LocaleDataWrapper;
42 :
43 : namespace com { namespace sun { namespace star { namespace lang {
44 : struct Locale;
45 : }}}}
46 :
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 );
53 :
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
58 : {
59 : friend class SdrAttrObj;
60 : OUString aFontName;
61 : FontFamily eFontFamily;
62 : Color aFontColor;
63 : sal_uIntPtr nFontHeight;
64 : MapUnit eMapUnit;
65 : Fraction aMapFraction;
66 :
67 : private:
68 : static SdrEngineDefaults& GetDefaults();
69 :
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 0 : 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 0 : 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 0 : static MapUnit GetMapUnit() { return GetDefaults().eMapUnit; }
94 : // Default MapFraction ist 1/1.
95 : static void SetMapFraction(const Fraction& rMap) { GetDefaults().aMapFraction=rMap; }
96 0 : static Fraction GetMapFraction() { return GetDefaults().aMapFraction; }
97 :
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 );
104 : };
105 :
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);
110 :
111 :
112 :
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);
116 :
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);
120 :
121 :
122 :
123 : class Link;
124 :
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
130 : {
131 : private:
132 : sal_uIntPtr nSumActionCount; // Summe aller Actions
133 : sal_uIntPtr nSumCurAction; // Summe aller bearbeiteten Actions
134 :
135 : sal_uIntPtr nActionCount; // Anzahl der Actions im akt. Obj.
136 : sal_uIntPtr nCurAction; // Anzahl bearbeiteter Act. im akt. Obj.
137 :
138 : sal_uIntPtr nInsertCount; // Anzahl einzufuegender Act. im akt. Obj.
139 : sal_uIntPtr nCurInsert; // Anzahl bereits eingefuegter Actions
140 :
141 : sal_uIntPtr nObjCount; // Anzahl der selektierten Objekte
142 : sal_uIntPtr nCurObj; // Aktuelles Objekt
143 :
144 : Link *pLink;
145 :
146 : public:
147 : SvdProgressInfo( Link *_pLink );
148 :
149 : void Init( sal_uIntPtr _nSumActionCount, sal_uIntPtr _nObjCount );
150 :
151 : bool SetNextObject();
152 :
153 : void SetActionCount( sal_uIntPtr _nActionCount );
154 : void SetInsertCount( sal_uIntPtr _nInsertCount );
155 :
156 : bool ReportActions( sal_uIntPtr nAnzActions );
157 : bool ReportInserts( sal_uIntPtr nAnzInserts );
158 :
159 : sal_uIntPtr GetSumActionCount() const { return nSumActionCount; };
160 0 : sal_uIntPtr GetSumCurAction() const { return nSumCurAction; };
161 0 : sal_uIntPtr GetObjCount() const { return nObjCount; };
162 0 : sal_uIntPtr GetCurObj() const { return nCurObj; };
163 :
164 0 : sal_uIntPtr GetActionCount() const { return nActionCount; };
165 0 : sal_uIntPtr GetCurAction() const { return nCurAction; };
166 :
167 0 : sal_uIntPtr GetInsertCount() const { return nInsertCount; };
168 0 : sal_uIntPtr GetCurInsert() const { return nCurInsert; };
169 :
170 : bool ReportRescales( sal_uIntPtr nAnzRescales );
171 : };
172 :
173 :
174 :
175 : class SdrLinkList
176 : {
177 : std::vector<Link*> aList;
178 : protected:
179 : unsigned FindEntry(const Link& rLink) const;
180 : public:
181 0 : SdrLinkList(): aList() {}
182 0 : ~SdrLinkList() { Clear(); }
183 : SVX_DLLPUBLIC void Clear();
184 0 : unsigned GetLinkCount() const { return (unsigned)aList.size(); }
185 0 : Link& GetLink(unsigned nNum) { return *aList[nNum]; }
186 0 : 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; }
190 : };
191 :
192 : SdrLinkList& ImpGetUserMakeObjHdl();
193 : SdrLinkList& ImpGetUserMakeObjUserDataHdl();
194 :
195 : class SdrOle2Obj;
196 : class AutoTimer;
197 :
198 : class OLEObjCache : public std::vector<SdrOle2Obj*>
199 : {
200 : sal_uIntPtr nSize;
201 : AutoTimer* pTimer;
202 :
203 : void UnloadOnDemand();
204 : bool UnloadObj( SdrOle2Obj* pObj );
205 : DECL_LINK( UnloadCheckHdl, AutoTimer* );
206 :
207 : public:
208 : OLEObjCache();
209 : SVX_DLLPUBLIC ~OLEObjCache();
210 :
211 : void InsertObj(SdrOle2Obj* pObj);
212 : void RemoveObj(SdrOle2Obj* pObj);
213 : };
214 :
215 :
216 : class SVX_DLLPUBLIC SdrGlobalData
217 : {
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;
228 :
229 :
230 : const SvtSysLocale* GetSysLocale(); // follows always locale settings
231 : const LocaleDataWrapper* GetLocaleData(); // follows always SysLocale
232 : public:
233 : SdrGlobalData();
234 :
235 0 : OLEObjCache& GetOLEObjCache() { return aOLEObjCache; }
236 : };
237 :
238 0 : inline SdrGlobalData& GetSdrGlobalData()
239 : {
240 0 : void** ppAppData=GetAppData(SHL_SVD);
241 0 : if (*ppAppData==NULL) {
242 0 : *ppAppData=new SdrGlobalData;
243 : }
244 0 : return *((SdrGlobalData*)*ppAppData);
245 : }
246 :
247 : namespace sdr
248 : {
249 : SVX_DLLPUBLIC OUString GetResourceString(sal_uInt16 nResID);
250 : }
251 :
252 :
253 : // #i101872# isolated GetTextEditBackgroundColor for tooling
254 : class SdrObjEditView;
255 :
256 : SVX_DLLPUBLIC Color GetTextEditBackgroundColor(const SdrObjEditView& rView);
257 :
258 :
259 :
260 : #endif // INCLUDED_SVX_SVDETC_HXX
261 :
262 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|