1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/link.hxx>
27 #include <tools/shl.hxx>
28 #include <tools/fract.hxx>
29 #include <vcl/outdev.hxx>
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
43 class LocaleDataWrapper
;
45 namespace com
{ namespace sun
{ namespace star
{ namespace lang
{
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
);
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
61 friend class SdrAttrObj
;
63 FontFamily eFontFamily
;
65 sal_uIntPtr nFontHeight
;
67 Fraction aMapFraction
;
70 static SdrEngineDefaults
& GetDefaults();
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 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 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 static MapUnit
GetMapUnit() { return GetDefaults().eMapUnit
; }
96 // Default MapFraction ist 1/1.
97 static void SetMapFraction(const Fraction
& rMap
) { GetDefaults().aMapFraction
=rMap
; }
98 static Fraction
GetMapFraction() { return GetDefaults().aMapFraction
; }
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
);
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
);
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
);
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
);
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
130 sal_uIntPtr nSumActionCount
; // Summe aller Actions
131 sal_uIntPtr nSumCurAction
; // Summe aller bearbeiteten Actions
133 sal_uIntPtr nActionCount
; // Anzahl der Actions im akt. Obj.
134 sal_uIntPtr nCurAction
; // Anzahl bearbeiteter Act. im akt. Obj.
136 sal_uIntPtr nInsertCount
; // Anzahl einzufuegender Act. im akt. Obj.
137 sal_uIntPtr nCurInsert
; // Anzahl bereits eingefuegter Actions
139 sal_uIntPtr nObjCount
; // Anzahl der selektierten Objekte
140 sal_uIntPtr nCurObj
; // Aktuelles Objekt
145 SvdProgressInfo( Link
<> *_pLink
);
147 void Init( sal_uIntPtr _nSumActionCount
, sal_uIntPtr _nObjCount
);
149 bool SetNextObject();
151 void SetActionCount( sal_uIntPtr _nActionCount
);
152 void SetInsertCount( sal_uIntPtr _nInsertCount
);
154 bool ReportActions( sal_uIntPtr nActionCount
);
155 bool ReportInserts( sal_uIntPtr nInsertCount
);
157 sal_uIntPtr
GetSumActionCount() const { return nSumActionCount
; };
158 sal_uIntPtr
GetSumCurAction() const { return nSumCurAction
; };
159 sal_uIntPtr
GetObjCount() const { return nObjCount
; };
160 sal_uIntPtr
GetCurObj() const { return nCurObj
; };
162 sal_uIntPtr
GetActionCount() const { return nActionCount
; };
163 sal_uIntPtr
GetCurAction() const { return nCurAction
; };
165 sal_uIntPtr
GetInsertCount() const { return nInsertCount
; };
166 sal_uIntPtr
GetCurInsert() const { return nCurInsert
; };
168 bool ReportRescales( sal_uIntPtr nRescaleCount
);
175 std::vector
<Link
<>*> aList
;
177 unsigned FindEntry(const Link
<>& rLink
) const;
179 SdrLinkList(): aList() {}
180 ~SdrLinkList() { Clear(); }
181 SVX_DLLPUBLIC
void Clear();
182 unsigned GetLinkCount() const { return (unsigned)aList
.size(); }
183 Link
<>& GetLink(unsigned nNum
) { return *aList
[nNum
]; }
184 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; }
190 SdrLinkList
& ImpGetUserMakeObjHdl();
191 SdrLinkList
& ImpGetUserMakeObjUserDataHdl();
198 std::vector
<SdrOle2Obj
*> maObjs
;
203 void UnloadOnDemand();
204 static bool UnloadObj( SdrOle2Obj
* pObj
);
205 DECL_LINK_TYPED( UnloadCheckHdl
, Timer
*, void );
209 SVX_DLLPUBLIC
~OLEObjCache();
211 void InsertObj(SdrOle2Obj
* pObj
);
212 void RemoveObj(SdrOle2Obj
* pObj
);
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;
220 class SVX_DLLPUBLIC SdrGlobalData
222 const SvtSysLocale
* pSysLocale
; // follows always locale settings
223 const LocaleDataWrapper
* pLocaleData
; // follows always SysLocale
225 SdrLinkList aUserMakeObjHdl
;
226 SdrLinkList aUserMakeObjUserDataHdl
;
227 SdrOutliner
* pOutliner
;
228 SdrEngineDefaults
* pDefaults
;
230 sal_uIntPtr nExchangeFormat
;
231 OLEObjCache aOLEObjCache
;
234 const SvtSysLocale
* GetSysLocale(); // follows always locale settings
235 const LocaleDataWrapper
* GetLocaleData(); // follows always SysLocale
239 OLEObjCache
& GetOLEObjCache() { return aOLEObjCache
; }
242 inline SdrGlobalData
& GetSdrGlobalData()
244 void** ppAppData
=GetAppData(SHL_SVD
);
245 if (*ppAppData
==NULL
) {
246 *ppAppData
=new SdrGlobalData
;
248 return *static_cast<SdrGlobalData
*>(*ppAppData
);
253 SVX_DLLPUBLIC OUString
GetResourceString(sal_uInt16 nResID
);
257 // #i101872# isolated GetTextEditBackgroundColor for tooling
258 class SdrObjEditView
;
260 SVX_DLLPUBLIC Color
GetTextEditBackgroundColor(const SdrObjEditView
& rView
);
264 #endif // INCLUDED_SVX_SVDETC_HXX
266 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */