xref: /AOO41X/main/sc/inc/document.hxx (revision 711fced44833292f9bb8ce33bc20bc17437f6f7d)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef SC_DOCUMENT_HXX
25 #define SC_DOCUMENT_HXX
26 
27 
28 #include <vcl/prntypes.hxx>
29 #include <vcl/timer.hxx>
30 #include <com/sun/star/uno/Reference.hxx>
31 #include <vos/ref.hxx>
32 #include "scdllapi.h"
33 #include "table.hxx"        // FastGetRowHeight (inline)
34 #include "rangelst.hxx"
35 #include "brdcst.hxx"
36 #include "tabopparams.hxx"
37 #include "formula/grammar.hxx"
38 #include <com/sun/star/chart2/XChartDocument.hpp>
39 #include "scdllapi.h"
40 
41 #include <memory>
42 #include <map>
43 #include <set>
44 
45 // Wang Xu Ming -- 2009-8-17
46 // DataPilot Migration - Cache&&Performance
47 #include <list>
48 class ScDPTableDataCache;
49 // End Comments
50 
51 class KeyEvent;
52 class OutputDevice;
53 class SdrObject;
54 class SfxBroadcaster;
55 class SfxListener;
56 class SfxHint;
57 class SfxItemSet;
58 class SfxObjectShell;
59 class SfxBindings;
60 class SfxPoolItem;
61 class SfxItemPool;
62 class SfxPrinter;
63 class SfxStatusBarManager;
64 class SfxStyleSheetBase;
65 class SvMemoryStream;
66 class SvNumberFormatter;
67 class SvxBorderLine;
68 class SvxBoxInfoItem;
69 class SvxBoxItem;
70 class SvxBrushItem;
71 class SvxForbiddenCharactersTable;
72 namespace sfx2 {
73     class LinkManager;
74     }
75 class SvxSearchItem;
76 class SvxShadowItem;
77 class Window;
78 class XColorTable;
79 class List;
80 
81 class ScAutoFormatData;
82 class ScBaseCell;
83 class ScStringCell;
84 class ScBroadcastAreaSlotMachine;
85 class ScChangeViewSettings;
86 class ScChartCollection;
87 class ScChartListenerCollection;
88 class ScConditionalFormat;
89 class ScConditionalFormatList;
90 class ScDBCollection;
91 class ScDBData;
92 class ScDetOpData;
93 class ScDetOpList;
94 class ScDocOptions;
95 class ScDocProtection;
96 class ScDocumentPool;
97 class ScDrawLayer;
98 class ScExtDocOptions;
99 class ScExternalRefManager;
100 class ScFormulaCell;
101 class ScMarkData;
102 class ScOutlineTable;
103 class ScPatternAttr;
104 class ScPrintRangeSaver;
105 class ScRangeData;
106 class ScRangeName;
107 class ScStyleSheet;
108 class ScStyleSheetPool;
109 class ScTable;
110 class ScTableProtection;
111 class ScTokenArray;
112 class ScValidationData;
113 class ScValidationDataList;
114 class ScViewOptions;
115 class ScStrCollection;
116 class TypedScStrCollection;
117 class ScChangeTrack;
118 class ScEditEngineDefaulter;
119 class ScFieldEditEngine;
120 class ScNoteEditEngine;
121 struct ScConsolidateParam;
122 class ScDPObject;
123 class ScDPCollection;
124 class ScMatrix;
125 class ScScriptTypeData;
126 class ScPoolHelper;
127 struct ScSortParam;
128 class ScRefreshTimerControl;
129 class ScUnoListenerCalls;
130 class ScUnoRefList;
131 class ScRecursionHelper;
132 struct RowInfo;
133 struct ScTableInfo;
134 struct ScTabOpParam;
135 class VirtualDevice;
136 class ScAutoNameCache;
137 class ScTemporaryChartLock;
138 class ScLookupCache;
139 struct ScLookupCacheMapImpl;
140 class SfxUndoManager;
141 class ScFormulaParserPool;
142 struct ScClipParam;
143 struct ScClipRangeNameData;
144 class ScRowBreakIterator;
145 
146 namespace com { namespace sun { namespace star {
147     namespace lang {
148         class XMultiServiceFactory;
149         struct EventObject;
150     }
151     namespace i18n {
152         class XBreakIterator;
153     }
154     namespace util {
155         class XModifyListener;
156     }
157     namespace embed {
158         class XEmbeddedObject;
159     }
160     namespace script { namespace vba {
161         class XVBAEventProcessor;
162     } }
163     namespace sheet {
164         struct TablePageBreakData;
165     }
166 } } }
167 
168 #include <svl/zforlist.hxx>
169 /*
170 #ifdef _ZFORLIST_DECLARE_TABLE
171 class SvNumberFormatterIndexTable;
172 #else
173 class Table;
174 typedef Table SvNumberFormatterIndexTable;
175 #endif
176 */
177 
178 #define SC_DOC_NEW          0xFFFF
179 
180 #define SC_MACROCALL_ALLOWED        0
181 #define SC_MACROCALL_NOTALLOWED     1
182 #define SC_MACROCALL_ASK            2
183 
184 #define SC_ASIANCOMPRESSION_INVALID     0xff
185 #define SC_ASIANKERNING_INVALID         0xff
186 
187 
188 enum ScDocumentMode
189     {
190         SCDOCMODE_DOCUMENT,
191         SCDOCMODE_CLIP,
192         SCDOCMODE_UNDO
193     };
194 
195 
196 struct ScDocStat
197 {
198     String  aDocName;
199     SCTAB   nTableCount;
200     sal_uLong   nCellCount;
201     sal_uInt16  nPageCount;
202 };
203 
204 // The constant parameters to CopyBlockFromClip
205 struct ScCopyBlockFromClipParams
206 {
207     ScDocument* pRefUndoDoc;
208     ScDocument* pClipDoc;
209     sal_uInt16      nInsFlag;
210     SCTAB       nTabStart;
211     SCTAB       nTabEnd;
212     sal_Bool        bAsLink;
213     sal_Bool        bSkipAttrForEmpty;
214 };
215 
216 
217 // for loading of binary file format symbol string cells which need font conversion
218 struct ScSymbolStringCellEntry
219 {
220     ScStringCell*   pCell;
221     SCROW           nRow;
222 };
223 
224 
225 // -----------------------------------------------------------------------
226 
227 // DDE link modes
228 const sal_uInt8 SC_DDE_DEFAULT       = 0;
229 const sal_uInt8 SC_DDE_ENGLISH       = 1;
230 const sal_uInt8 SC_DDE_TEXT          = 2;
231 const sal_uInt8 SC_DDE_IGNOREMODE    = 255;       /// For usage in FindDdeLink() only!
232 
233 
234 // -----------------------------------------------------------------------
235 
236 class ScDocument
237 {
238 friend class ScDocumentIterator;
239 friend class ScValueIterator;
240 friend class ScHorizontalValueIterator;
241 friend class ScDBQueryDataIterator;
242 friend class ScCellIterator;
243 friend class ScQueryCellIterator;
244 friend class ScHorizontalCellIterator;
245 friend class ScHorizontalAttrIterator;
246 friend class ScDocAttrIterator;
247 friend class ScAttrRectIterator;
248 friend class ScDocShell;
249 
250 private:
251     ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceManager;
252 
253     vos::ORef<ScPoolHelper> xPoolHelper;
254 
255     SfxUndoManager*     mpUndoManager;
256     ScFieldEditEngine*  pEditEngine;                    // uses pEditPool from xPoolHelper
257     ScNoteEditEngine*   pNoteEngine;                    // uses pEditPool from xPoolHelper
258     SfxItemPool*    pNoteItemPool; // SfxItemPool to be used if pDrawLayer not created.
259     SfxObjectShell*     pShell;
260     SfxPrinter*         pPrinter;
261     VirtualDevice*      pVirtualDevice_100th_mm;
262     ScDrawLayer*        pDrawLayer;                     // SdrModel
263     XColorTable*        pColorTable;
264     ScConditionalFormatList* pCondFormList;             // bedingte Formate
265     ScValidationDataList* pValidationList;              // Gueltigkeit
266     SvNumberFormatterIndexTable*    pFormatExchangeList;            // zum Umsetzen von Zahlenformaten
267     ScTable*            pTab[MAXTABCOUNT];
268     ScRangeName*        pRangeName;
269     ScDBCollection*     pDBCollection;
270     ScDPCollection*     pDPCollection;
271     // Wang Xu Ming -- 2009-8-17
272     // DataPilot Migration - Cache&&Performance
273     std::list<ScDPTableDataCache*>   m_listDPObjectsCaches;
274     // End Comments
275     ScChartCollection*  pChartCollection;
276     std::auto_ptr< ScTemporaryChartLock > apTemporaryChartLock;
277     ScPatternAttr*      pSelectionAttr;                 // Attribute eines Blocks
278     mutable sfx2::LinkManager*      pLinkManager;
279     ScFormulaCell*      pFormulaTree;                   // Berechnungsbaum Start
280     ScFormulaCell*      pEOFormulaTree;                 // Berechnungsbaum Ende, letzte Zelle
281     ScFormulaCell*      pFormulaTrack;                  // BroadcastTrack Start
282     ScFormulaCell*      pEOFormulaTrack;                // BrodcastTrack Ende, letzte Zelle
283     ScBroadcastAreaSlotMachine* pBASM;                  // BroadcastAreas
284     ScChartListenerCollection* pChartListenerCollection;
285     ScStrCollection*        pOtherObjects;                  // non-chart OLE objects
286     SvMemoryStream*     pClipData;
287     ScDetOpList*        pDetOpList;
288     ScChangeTrack*      pChangeTrack;
289     SfxBroadcaster*     pUnoBroadcaster;
290     ScUnoListenerCalls* pUnoListenerCalls;
291     ScUnoRefList*       pUnoRefUndoList;
292     ScChangeViewSettings* pChangeViewSettings;
293     ScScriptTypeData*   pScriptTypeData;
294     ScRefreshTimerControl* pRefreshTimerControl;
295     vos::ORef<SvxForbiddenCharactersTable> xForbiddenCharacters;
296 
297     ScFieldEditEngine*  pCacheFieldEditEngine;
298 
299     ::std::auto_ptr<ScDocProtection> pDocProtection;
300     ::std::auto_ptr<ScClipParam>     mpClipParam;
301 
302     ::std::auto_ptr<ScExternalRefManager> pExternalRefMgr;
303 
304     // mutable for lazy construction
305     mutable ::std::auto_ptr< ScFormulaParserPool >
306                         mxFormulaParserPool;            /// Pool for all external formula parsers used by this document.
307 
308     String              aDocName;                       // opt: Dokumentname
309     String              aDocCodeName;                       // opt: Dokumentname
310     ScRangePairListRef  xColNameRanges;
311     ScRangePairListRef  xRowNameRanges;
312 
313     ScViewOptions*      pViewOptions;                   // View-Optionen
314     ScDocOptions*       pDocOptions;                    // Dokument-Optionen
315     ScExtDocOptions*    pExtDocOptions;                 // fuer Import etc.
316     ScConsolidateParam* pConsolidateDlgData;
317 
318     ScRecursionHelper*  pRecursionHelper;               // information for recursive and iterative cell formulas
319 
320     ScAutoNameCache*    pAutoNameCache;                 // for automatic name lookup during CompileXML
321 
322     ScLookupCacheMapImpl* pLookupCacheMapImpl;          // cache for lookups like VLOOKUP and MATCH
323 
324     sal_Int64           nUnoObjectId;                   // counted up for UNO objects
325 
326     sal_uInt32          nRangeOverflowType;             // used in (xml) loading for overflow warnings
327 
328     ScRange             aEmbedRange;
329     ScAddress           aCurTextWidthCalcPos;
330     ScAddress           aOnlineSpellPos;                // within whole document
331     ScRange             aVisSpellRange;
332     ScAddress           aVisSpellPos;                   // within aVisSpellRange (see nVisSpellState)
333 
334     Timer               aTrackTimer;
335 
336     com::sun::star::uno::Reference< com::sun::star::script::vba::XVBAEventProcessor >
337                         mxVbaEvents;
338 
339 public:
340     ScTabOpList         aTableOpList;                   // list of ScInterpreterTableOpParams currently in use
341     ScInterpreterTableOpParams  aLastTableOpParams;     // remember last params
342 private:
343 
344     LanguageType        eLanguage;                      // default language
345     LanguageType        eCjkLanguage;                   // default language for asian text
346     LanguageType        eCtlLanguage;                   // default language for complex text
347     CharSet             eSrcSet;                        // Einlesen: Quell-Zeichensatz
348 
349     /** The compiler grammar used in document storage. GRAM_PODF for ODF 1.1
350         documents, GRAM_ODFF for ODF 1.2 documents. */
351     formula::FormulaGrammar::Grammar  eStorageGrammar;
352 
353     /** The compiler grammar used in ODF import after brackets had been
354         stripped (which they shouldn't, but until that's fixed) by the XML
355         importer. */
356     formula::FormulaGrammar::Grammar  eXmlImportGrammar;
357 
358     sal_uLong               nFormulaCodeInTree;             // FormelRPN im Formelbaum
359     sal_uLong               nXMLImportedFormulaCount;        // progress count during XML import
360     sal_uInt16              nInterpretLevel;                // >0 wenn im Interpreter
361     sal_uInt16              nMacroInterpretLevel;           // >0 wenn Macro im Interpreter
362     sal_uInt16              nInterpreterTableOpLevel;       // >0 if in Interpreter TableOp
363     SCTAB               nMaxTableNumber;
364     sal_uInt16              nSrcVer;                        // Dateiversion (Laden/Speichern)
365     SCROW               nSrcMaxRow;                     // Zeilenzahl zum Laden/Speichern
366     sal_uInt16              nFormulaTrackCount;
367     sal_uInt16              nHardRecalcState;               // 0: soft, 1: hard-warn, 2: hard
368     SCTAB               nVisibleTab;                    // fuer OLE etc.
369 
370     ScLkUpdMode         eLinkMode;
371 
372     sal_Bool                bAutoCalc;                      // Automatisch Berechnen
373     sal_Bool                bAutoCalcShellDisabled;         // in/von/fuer ScDocShell disabled
374     // ob noch ForcedFormulas berechnet werden muessen,
375     // im Zusammenspiel mit ScDocShell SetDocumentModified,
376     // AutoCalcShellDisabled und TrackFormulas
377     sal_Bool                bForcedFormulaPending;
378     sal_Bool                bCalculatingFormulaTree;
379     sal_Bool                bIsClip;
380     sal_Bool                bIsUndo;
381     sal_Bool                bIsVisible;                     // set from view ctor
382 
383     sal_Bool                bIsEmbedded;                    // Embedded-Bereich anzeigen/anpassen ?
384 
385     // kein SetDirty bei ScFormulaCell::CompileTokenArray sondern am Ende
386     // von ScDocument::CompileAll[WithFormats], CopyScenario, CopyBlockFromClip
387     sal_Bool                bNoSetDirty;
388     // kein Broadcast, keine Listener aufbauen waehrend aus einem anderen
389     // Doc (per Filter o.ae.) inserted wird, erst bei CompileAll / CalcAfterLoad
390     sal_Bool                bInsertingFromOtherDoc;
391     bool                bLoadingMedium;
392     bool                bImportingXML;      // special handling of formula text
393     sal_Bool                bXMLFromWrapper;    // distinguish ScXMLImportWrapper from external component
394     sal_Bool                bCalcingAfterLoad;              // in CalcAfterLoad TRUE
395     // wenn temporaer keine Listener auf/abgebaut werden sollen
396     sal_Bool                bNoListening;
397     sal_Bool                bIdleDisabled;
398     sal_Bool                bInLinkUpdate;                  // TableLink or AreaLink
399     sal_Bool                bChartListenerCollectionNeedsUpdate;
400     // ob RC_FORCED Formelzellen im Dokument sind/waren (einmal an immer an)
401     sal_Bool                bHasForcedFormulas;
402     // ob das Doc gerade zerstoert wird (kein Notify-Tracking etc. mehr)
403     sal_Bool                bInDtorClear;
404     // ob bei Spalte/Zeile einfuegen am Rand einer Referenz die Referenz
405     // erweitert wird, wird in jedem UpdateReference aus InputOptions geholt,
406     // gesetzt und am Ende von UpdateReference zurueckgesetzt
407     sal_Bool                bExpandRefs;
408     // fuer Detektiv-Update, wird bei jeder Aenderung an Formeln gesetzt
409     sal_Bool                bDetectiveDirty;
410 
411     sal_uInt8               nMacroCallMode;     // Makros per Warnung-Dialog disabled?
412     sal_Bool                bHasMacroFunc;      // valid only after loading
413 
414     sal_uInt8               nVisSpellState;
415 
416     sal_uInt8               nAsianCompression;
417     sal_uInt8               nAsianKerning;
418     sal_Bool                bSetDrawDefaults;
419 
420     sal_Bool                bPastingDrawFromOtherDoc;
421 
422     sal_uInt8                nInDdeLinkUpdate;   // originating DDE links (stacked bool)
423 
424     sal_Bool                bInUnoBroadcast;
425     sal_Bool                bInUnoListenerCall;
426     formula::FormulaGrammar::Grammar  eGrammar;
427 
428     mutable sal_Bool        bStyleSheetUsageInvalid;
429 
430     bool                mbUndoEnabled;
431     bool                mbAdjustHeightEnabled;
432     bool                mbExecuteLinkEnabled;
433     bool                mbChangeReadOnlyEnabled;    // allow changes in read-only document (for API import filters)
434     bool                mbStreamValidLocked;
435 
436     sal_Int16           mnNamedRangesLockCount;
437 
438 public:
439     SC_DLLPUBLIC sal_uLong          GetCellCount() const;       // alle Zellen
440     SCSIZE          GetCellCount(SCTAB nTab, SCCOL nCol) const;
441     sal_uLong           GetWeightedCount() const;   // Formeln und Edit staerker gewichtet
442     sal_uLong           GetCodeCount() const;       // RPN-Code in Formeln
443     DECL_LINK( GetUserDefinedColor, sal_uInt16 * );
444                                                                 // Numberformatter
445 
446 public:
447     SC_DLLPUBLIC                ScDocument( ScDocumentMode eMode = SCDOCMODE_DOCUMENT,
448                                 SfxObjectShell* pDocShell = NULL );
449     SC_DLLPUBLIC                ~ScDocument();
450 
451     inline ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >
452                     GetServiceManager() const { return xServiceManager; }
453 
454     SC_DLLPUBLIC const String&  GetName() const { return aDocName; }
455     void            SetName( const String& r ) { aDocName = r; }
456     const String&   GetCodeName() const { return aDocCodeName; }
457     void            SetCodeName( const String& r ) { aDocCodeName = r; }
458 
459     void            GetDocStat( ScDocStat& rDocStat );
460 
461     SC_DLLPUBLIC void           InitDrawLayer( SfxObjectShell* pDocShell = NULL );
462     XColorTable*    GetColorTable();
463 
464     SC_DLLPUBLIC sfx2::LinkManager*     GetLinkManager() const;
465 
466     SC_DLLPUBLIC const ScDocOptions&        GetDocOptions() const;
467     SC_DLLPUBLIC void                   SetDocOptions( const ScDocOptions& rOpt );
468     SC_DLLPUBLIC const ScViewOptions&   GetViewOptions() const;
469     SC_DLLPUBLIC void                   SetViewOptions( const ScViewOptions& rOpt );
470     void                    SetPrintOptions();
471 
472     ScExtDocOptions*        GetExtDocOptions()  { return pExtDocOptions; }
473     SC_DLLPUBLIC void                   SetExtDocOptions( ScExtDocOptions* pNewOptions );
474 
475     void                    GetLanguage( LanguageType& rLatin, LanguageType& rCjk, LanguageType& rCtl ) const;
476     void                    SetLanguage( LanguageType eLatin, LanguageType eCjk, LanguageType eCtl );
477 
478     void                    SetDrawDefaults();
479 
480     void                        SetConsolidateDlgData( const ScConsolidateParam* pData );
481     const ScConsolidateParam*   GetConsolidateDlgData() const { return pConsolidateDlgData; }
482 
483     void            Clear( sal_Bool bFromDestructor = sal_False );
484 
485     ScFieldEditEngine*  CreateFieldEditEngine();
486     void                DisposeFieldEditEngine(ScFieldEditEngine*& rpEditEngine);
487 
488     SC_DLLPUBLIC ScRangeName*   GetRangeName();
489     void            SetRangeName( ScRangeName* pNewRangeName );
490     SCTAB           GetMaxTableNumber() { return nMaxTableNumber; }
491     void            SetMaxTableNumber(SCTAB nNumber) { nMaxTableNumber = nNumber; }
492 
493     ScRangePairList*    GetColNameRanges() { return &xColNameRanges; }
494     ScRangePairList*    GetRowNameRanges() { return &xRowNameRanges; }
495     ScRangePairListRef& GetColNameRangesRef() { return xColNameRanges; }
496     ScRangePairListRef& GetRowNameRangesRef() { return xRowNameRanges; }
497 
498     SC_DLLPUBLIC ScDBCollection*    GetDBCollection() const;
499     void            SetDBCollection( ScDBCollection* pNewDBCollection,
500                                         sal_Bool bRemoveAutoFilter = sal_False );
501     ScDBData*       GetDBAtCursor(SCCOL nCol, SCROW nRow, SCTAB nTab,
502                                         sal_Bool bStartOnly = sal_False) const;
503     ScDBData*       GetDBAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2) const;
504     ScDBData*       GetFilterDBAtTable(SCTAB nTab) const;
505 //UNUSED2008-05  ScRangeData*   GetRangeAtCursor(SCCOL nCol, SCROW nRow, SCTAB nTab,
506 //UNUSED2008-05                                      sal_Bool bStartOnly = sal_False) const;
507     SC_DLLPUBLIC ScRangeData*   GetRangeAtBlock( const ScRange& rBlock, String* pName=NULL ) const;
508 
509     SC_DLLPUBLIC ScDPCollection*        GetDPCollection();
510     ScDPObject*         GetDPAtCursor(SCCOL nCol, SCROW nRow, SCTAB nTab) const;
511     ScDPObject*         GetDPAtBlock( const ScRange& rBlock ) const;
512     // Wang Xu Ming -- 2009-8-17
513     // DataPilot Migration - Cache&&Performance
514     SC_DLLPUBLIC ScDPTableDataCache*    GetDPObjectCache( long nID );
515     SC_DLLPUBLIC ScDPTableDataCache*    GetUsedDPObjectCache ( ScRange rRange );
516     SC_DLLPUBLIC long                                 AddDPObjectCache( ScDPTableDataCache* pData );
517     SC_DLLPUBLIC void                                 RemoveDPObjectCache( long nID );
518     SC_DLLPUBLIC void                                 RemoveUnusedDPObjectCaches();
519     SC_DLLPUBLIC void                                 GetUsedDPObjectCache( std::list<ScDPTableDataCache*>& usedlist );
520     SC_DLLPUBLIC long                                 GetNewDPObjectCacheId ();
521     // End Comments
522 
523     SC_DLLPUBLIC ScChartCollection* GetChartCollection() const;
524 
525     void                StopTemporaryChartLock();
526 
527     void            EnsureGraphicNames();
528 
529     SdrObject*      GetObjectAtPoint( SCTAB nTab, const Point& rPos );
530     sal_Bool            HasChartAtPoint( SCTAB nTab, const Point& rPos, String* pName = NULL );
531 
532     ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartDocument > GetChartByName( const String& rChartName );
533     SC_DLLPUBLIC void            GetChartRanges( const String& rChartName, ::std::vector< ScRangeList >& rRanges, ScDocument* pSheetNameDoc );
534     void            SetChartRanges( const String& rChartName, const ::std::vector< ScRangeList >& rRanges );
535 
536     void            UpdateChartArea( const String& rChartName, const ScRange& rNewArea,
537                                         sal_Bool bColHeaders, sal_Bool bRowHeaders, sal_Bool bAdd );
538     void            UpdateChartArea( const String& rChartName,
539                                     const ScRangeListRef& rNewList,
540                                     sal_Bool bColHeaders, sal_Bool bRowHeaders, sal_Bool bAdd );
541     void            GetOldChartParameters( const String& rName,
542                                     ScRangeList& rRanges, sal_Bool& rColHeaders, sal_Bool& rRowHeaders );
543     ::com::sun::star::uno::Reference<
544             ::com::sun::star::embed::XEmbeddedObject >
545                     FindOleObjectByName( const String& rName );
546 
547     SC_DLLPUBLIC void           MakeTable( SCTAB nTab,bool _bNeedsNameCheck = true );
548 
549     SCTAB           GetVisibleTab() const       { return nVisibleTab; }
550     SC_DLLPUBLIC void           SetVisibleTab(SCTAB nTab)   { nVisibleTab = nTab; }
551 
552     SC_DLLPUBLIC sal_Bool           HasTable( SCTAB nTab ) const;
553     SC_DLLPUBLIC sal_Bool           GetName( SCTAB nTab, String& rName ) const;
554     SC_DLLPUBLIC sal_Bool           GetCodeName( SCTAB nTab, String& rName ) const;
555     SC_DLLPUBLIC sal_Bool           SetCodeName( SCTAB nTab, const String& rName );
556     SC_DLLPUBLIC sal_Bool           GetTable( const String& rName, SCTAB& rTab ) const;
557     SC_DLLPUBLIC inline SCTAB   GetTableCount() const { return nMaxTableNumber; }
558     SvNumberFormatterIndexTable* GetFormatExchangeList() const { return pFormatExchangeList; }
559 
560     SC_DLLPUBLIC ScDocProtection* GetDocProtection() const;
561     SC_DLLPUBLIC void            SetDocProtection(const ScDocProtection* pProtect);
562     SC_DLLPUBLIC sal_Bool           IsDocProtected() const;
563     sal_Bool            IsDocEditable() const;
564     SC_DLLPUBLIC sal_Bool           IsTabProtected( SCTAB nTab ) const;
565     SC_DLLPUBLIC    ScTableProtection* GetTabProtection( SCTAB nTab ) const;
566     SC_DLLPUBLIC void SetTabProtection(SCTAB nTab, const ScTableProtection* pProtect);
567     void            CopyTabProtection(SCTAB nTabSrc, SCTAB nTabDest);
568 
569     void            LockTable(SCTAB nTab);
570     void            UnlockTable(SCTAB nTab);
571 
572     sal_Bool            IsBlockEditable( SCTAB nTab, SCCOL nStartCol, SCROW nStartRow,
573                                         SCCOL nEndCol, SCROW nEndRow,
574                                         sal_Bool* pOnlyNotBecauseOfMatrix = NULL ) const;
575     sal_Bool            IsSelectionEditable( const ScMarkData& rMark,
576                                         sal_Bool* pOnlyNotBecauseOfMatrix = NULL ) const;
577     sal_Bool            HasSelectedBlockMatrixFragment( SCCOL nStartCol, SCROW nStartRow,
578                                             SCCOL nEndCol, SCROW nEndRow,
579                                             const ScMarkData& rMark ) const;
580 
581     sal_Bool            GetMatrixFormulaRange( const ScAddress& rCellPos, ScRange& rMatrix );
582 
583     sal_Bool            IsEmbedded() const;
584     void            GetEmbedded( ScRange& rRange ) const;
585     void            SetEmbedded( const ScRange& rRange );
586     void            ResetEmbedded();
587     Rectangle       GetEmbeddedRect() const;                        // 1/100 mm
588     void            SetEmbedded( const Rectangle& rRect );          // aus VisArea (1/100 mm)
589     void            SnapVisArea( Rectangle& rRect ) const;          // 1/100 mm
590 
591     SC_DLLPUBLIC sal_Bool           ValidTabName( const String& rName ) const;
592     SC_DLLPUBLIC sal_Bool           ValidNewTabName( const String& rName ) const;
593     SC_DLLPUBLIC void           CreateValidTabName(String& rName) const;
594     SC_DLLPUBLIC sal_Bool           InsertTab( SCTAB nPos, const String& rName,
595                                 sal_Bool bExternalDocument = sal_False );
596     SC_DLLPUBLIC sal_Bool            DeleteTab( SCTAB nTab, ScDocument* pRefUndoDoc = NULL );
597     SC_DLLPUBLIC sal_Bool           RenameTab( SCTAB nTab, const String& rName,
598                                 sal_Bool bUpdateRef = sal_True,
599                                 sal_Bool bExternalDocument = sal_False );
600     sal_Bool            MoveTab( SCTAB nOldPos, SCTAB nNewPos );
601     sal_Bool            CopyTab( SCTAB nOldPos, SCTAB nNewPos,
602                                 const ScMarkData* pOnlyMarked = NULL );
603     SC_DLLPUBLIC sal_uLong          TransferTab(ScDocument* pSrcDoc, SCTAB nSrcPos, SCTAB nDestPos,
604                                     sal_Bool bInsertNew = sal_True,
605                                     sal_Bool bResultsOnly = sal_False );
606     SC_DLLPUBLIC void           TransferDrawPage(ScDocument* pSrcDoc, SCTAB nSrcPos, SCTAB nDestPos);
607     SC_DLLPUBLIC void           SetVisible( SCTAB nTab, sal_Bool bVisible );
608     SC_DLLPUBLIC sal_Bool           IsVisible( SCTAB nTab ) const;
609     sal_Bool            IsStreamValid( SCTAB nTab ) const;
610     void            SetStreamValid( SCTAB nTab, sal_Bool bSet, sal_Bool bIgnoreLock = sal_False );
611     void            LockStreamValid( bool bLock );
612     bool            IsStreamValidLocked() const                         { return mbStreamValidLocked; }
613     sal_Bool            IsPendingRowHeights( SCTAB nTab ) const;
614     void            SetPendingRowHeights( SCTAB nTab, sal_Bool bSet );
615     SC_DLLPUBLIC void           SetLayoutRTL( SCTAB nTab, sal_Bool bRTL );
616     SC_DLLPUBLIC sal_Bool           IsLayoutRTL( SCTAB nTab ) const;
617     sal_Bool            IsNegativePage( SCTAB nTab ) const;
618     SC_DLLPUBLIC void           SetScenario( SCTAB nTab, sal_Bool bFlag );
619     SC_DLLPUBLIC sal_Bool           IsScenario( SCTAB nTab ) const;
620     SC_DLLPUBLIC void           GetScenarioData( SCTAB nTab, String& rComment,
621                                         Color& rColor, sal_uInt16& rFlags ) const;
622     SC_DLLPUBLIC void           SetScenarioData( SCTAB nTab, const String& rComment,
623                                         const Color& rColor, sal_uInt16 nFlags );
624     SC_DLLPUBLIC Color GetTabBgColor( SCTAB nTab ) const;
625     SC_DLLPUBLIC void SetTabBgColor( SCTAB nTab, const Color& rColor );
626     SC_DLLPUBLIC bool IsDefaultTabBgColor( SCTAB nTab ) const;
627     void            GetScenarioFlags( SCTAB nTab, sal_uInt16& rFlags ) const;
628     SC_DLLPUBLIC sal_Bool           IsActiveScenario( SCTAB nTab ) const;
629     SC_DLLPUBLIC void           SetActiveScenario( SCTAB nTab, sal_Bool bActive );      // nur fuer Undo etc.
630     SC_DLLPUBLIC formula::FormulaGrammar::AddressConvention GetAddressConvention() const;
631     SC_DLLPUBLIC formula::FormulaGrammar::Grammar GetGrammar() const;
632     void            SetGrammar( formula::FormulaGrammar::Grammar eGram );
633     SC_DLLPUBLIC sal_uInt8          GetLinkMode( SCTAB nTab ) const;
634     sal_Bool            IsLinked( SCTAB nTab ) const;
635     SC_DLLPUBLIC const String&  GetLinkDoc( SCTAB nTab ) const;
636     const String&   GetLinkFlt( SCTAB nTab ) const;
637     const String&   GetLinkOpt( SCTAB nTab ) const;
638     SC_DLLPUBLIC const String&  GetLinkTab( SCTAB nTab ) const;
639     sal_uLong           GetLinkRefreshDelay( SCTAB nTab ) const;
640     void            SetLink( SCTAB nTab, sal_uInt8 nMode, const String& rDoc,
641                             const String& rFilter, const String& rOptions,
642                             const String& rTabName, sal_uLong nRefreshDelay );
643     sal_Bool            HasLink( const String& rDoc,
644                             const String& rFilter, const String& rOptions ) const;
645     SC_DLLPUBLIC sal_Bool           LinkExternalTab( SCTAB& nTab, const String& aDocTab,
646                                     const String& aFileName,
647                                     const String& aTabName );
648 
649     bool            HasExternalRefManager() const { return pExternalRefMgr.get(); }
650     SC_DLLPUBLIC ScExternalRefManager* GetExternalRefManager() const;
651     bool            IsInExternalReferenceMarking() const;
652     void            MarkUsedExternalReferences();
653     bool            MarkUsedExternalReferences( ScTokenArray & rArr );
654 
655     /** Returns the pool containing external formula parsers. Creates the pool
656         on first call. */
657     ScFormulaParserPool& GetFormulaParserPool() const;
658 
659     sal_Bool            HasDdeLinks() const;
660     sal_Bool            HasAreaLinks() const;
661     void            UpdateExternalRefLinks();
662     void            UpdateDdeLinks();
663     void            UpdateAreaLinks();
664 
665                     // originating DDE links
666     void            IncInDdeLinkUpdate() { if ( nInDdeLinkUpdate < 255 ) ++nInDdeLinkUpdate; }
667     void            DecInDdeLinkUpdate() { if ( nInDdeLinkUpdate ) --nInDdeLinkUpdate; }
668     sal_Bool            IsInDdeLinkUpdate() const   { return nInDdeLinkUpdate != 0; }
669 
670     SC_DLLPUBLIC void           CopyDdeLinks( ScDocument* pDestDoc ) const;
671     void            DisconnectDdeLinks();
672 
673                     // Fuer StarOne Api:
674     sal_uInt16          GetDdeLinkCount() const;
675     sal_Bool            UpdateDdeLink( const String& rAppl, const String& rTopic, const String& rItem );
676 
677     /** Tries to find a DDE link with the specified connection data.
678         @param rnDdePos  (out-param) Returns the index of the DDE link (does not include other links from link manager).
679         @return  true = DDE link found, rnDdePos valid. */
680     SC_DLLPUBLIC bool            FindDdeLink( const String& rAppl, const String& rTopic, const String& rItem, sal_uInt8 nMode, sal_uInt16& rnDdePos );
681 
682     /** Returns the connection data of the specified DDE link.
683         @param nDdePos  Index of the DDE link (does not include other links from link manager).
684         @param rAppl  (out-param) The application name.
685         @param rTopic  (out-param) The DDE topic.
686         @param rItem  (out-param) The DDE item.
687         @return  true = DDE link found, out-parameters valid. */
688     bool            GetDdeLinkData( sal_uInt16 nDdePos, String& rAppl, String& rTopic, String& rItem ) const;
689     /** Returns the link mode of the specified DDE link.
690         @param nDdePos  Index of the DDE link (does not include other links from link manager).
691         @param rnMode  (out-param) The link mode of the specified DDE link.
692         @return  true = DDE link found, rnMode valid. */
693     bool            GetDdeLinkMode( sal_uInt16 nDdePos, sal_uInt8& rnMode ) const;
694     /** Returns the result matrix of the specified DDE link.
695         @param nDdePos  Index of the DDE link (does not include other links from link manager).
696         @return  The result matrix, if the DDE link has been found, 0 otherwise. */
697     SC_DLLPUBLIC const ScMatrix* GetDdeLinkResultMatrix( sal_uInt16 nDdePos ) const;
698 
699     /** Tries to find a DDE link or creates a new, if not extant.
700         @param pResults  If not 0, sets the matrix as as DDE link result matrix (also for existing links).
701         @return  true = DDE link found; false = Unpredictable error occured, no DDE link created. */
702     SC_DLLPUBLIC bool            CreateDdeLink( const String& rAppl, const String& rTopic, const String& rItem, sal_uInt8 nMode, ScMatrix* pResults = NULL );
703     /** Sets a result matrix for the specified DDE link.
704         @param nDdePos  Index of the DDE link (does not include other links from link manager).
705         @param pResults  The array containing all results of the DDE link (intrusive-ref-counted, do not delete).
706         @return  true = DDE link found and matrix set. */
707     bool            SetDdeLinkResultMatrix( sal_uInt16 nDdePos, ScMatrix* pResults );
708 
709 
710     SfxBindings*    GetViewBindings();
711     SfxObjectShell* GetDocumentShell() const    { return pShell; }
712     ScDrawLayer*    GetDrawLayer()              { return pDrawLayer; }
713     SfxBroadcaster* GetDrawBroadcaster();       // zwecks Header-Vermeidung
714     void            BeginDrawUndo();
715     sal_Bool        IsDrawRecording() const;
716     void            EndDrawUndo();//paired with BeginDrawUndo, clear undo object if GetUndoObj is not called.
717                                 //Not necessary if GetUndoObj is called, but call EndDrawUndo paired with BeginDrawUndo is recommended
718 
719     void            BeginUnoRefUndo();
720     bool            HasUnoRefUndo() const       { return ( pUnoRefUndoList != NULL ); }
721     ScUnoRefList*   EndUnoRefUndo();            // must be deleted by caller!
722     sal_Int64       GetNewUnoId();
723     void            AddUnoRefChange( sal_Int64 nId, const ScRangeList& rOldRanges );
724 
725     // #109985#
726     sal_Bool IsChart( const SdrObject* pObject );
727 
728     SC_DLLPUBLIC void           UpdateAllCharts();
729     void            UpdateChartRef( UpdateRefMode eUpdateRefMode,
730                                     SCCOL nCol1, SCROW nRow1, SCTAB nTab1,
731                                     SCCOL nCol2, SCROW nRow2, SCTAB nTab2,
732                                     SCsCOL nDx, SCsROW nDy, SCsTAB nDz );
733                     //! setzt nur die neue RangeList, keine ChartListener o.ae.
734     void            SetChartRangeList( const String& rChartName,
735                         const ScRangeListRef& rNewRangeListRef );
736 
737     sal_Bool            HasControl( SCTAB nTab, const Rectangle& rMMRect );
738     void            InvalidateControls( Window* pWin, SCTAB nTab, const Rectangle& rMMRect );
739 
740     void            StartAnimations( SCTAB nTab, Window* pWin );
741 
742     sal_Bool            HasBackgroundDraw( SCTAB nTab, const Rectangle& rMMRect );
743     sal_Bool            HasAnyDraw( SCTAB nTab, const Rectangle& rMMRect );
744 
745     const ScSheetEvents* GetSheetEvents( SCTAB nTab ) const;
746     void            SetSheetEvents( SCTAB nTab, const ScSheetEvents* pNew );
747     bool            HasSheetEventScript( SCTAB nTab, sal_Int32 nEvent, bool bWithVbaEvents = false ) const;
748     bool            HasAnySheetEventScript( sal_Int32 nEvent, bool bWithVbaEvents = false ) const;  // on any sheet
749 
750     bool            HasAnyCalcNotification() const;
751     sal_Bool            HasCalcNotification( SCTAB nTab ) const;
752     void            SetCalcNotification( SCTAB nTab );
753     void            ResetCalcNotifications();
754 
755     SC_DLLPUBLIC ScOutlineTable*    GetOutlineTable( SCTAB nTab, sal_Bool bCreate = sal_False );
756     sal_Bool            SetOutlineTable( SCTAB nTab, const ScOutlineTable* pNewOutline );
757 
758     void            DoAutoOutline( SCCOL nStartCol, SCROW nStartRow,
759                                     SCCOL nEndCol, SCROW nEndRow, SCTAB nTab );
760 
761     sal_Bool            DoSubTotals( SCTAB nTab, ScSubTotalParam& rParam );
762     void            RemoveSubTotals( SCTAB nTab, ScSubTotalParam& rParam );
763     sal_Bool            TestRemoveSubTotals( SCTAB nTab, const ScSubTotalParam& rParam );
764     sal_Bool            HasSubTotalCells( const ScRange& rRange );
765 
766     SC_DLLPUBLIC void           PutCell( const ScAddress&, ScBaseCell* pCell, sal_Bool bForceTab = sal_False );
767 //UNUSED2009-05 SC_DLLPUBLIC void           PutCell( const ScAddress&, ScBaseCell* pCell,
768 //UNUSED2009-05                         sal_uLong nFormatIndex, sal_Bool bForceTab = sal_False);
769     SC_DLLPUBLIC void           PutCell( SCCOL nCol, SCROW nRow, SCTAB nTab, ScBaseCell* pCell,
770                             sal_Bool bForceTab = sal_False );
771     SC_DLLPUBLIC void           PutCell(SCCOL nCol, SCROW nRow, SCTAB nTab, ScBaseCell* pCell,
772                             sal_uLong nFormatIndex, sal_Bool bForceTab = sal_False);
773                     //  return sal_True = Zahlformat gesetzt
774     SC_DLLPUBLIC sal_Bool           SetString(
775         SCCOL nCol, SCROW nRow, SCTAB nTab, const String& rString,
776         SvNumberFormatter* pFormatter = NULL, bool bDetectNumberFormat = true );
777     SC_DLLPUBLIC void           SetValue( SCCOL nCol, SCROW nRow, SCTAB nTab, const double& rVal );
778     void            SetError( SCCOL nCol, SCROW nRow, SCTAB nTab, const sal_uInt16 nError);
779 
780     SC_DLLPUBLIC void           InsertMatrixFormula(SCCOL nCol1, SCROW nRow1,
781                                         SCCOL nCol2, SCROW nRow2,
782                                         const ScMarkData& rMark,
783                                         const String& rFormula,
784                                         const ScTokenArray* p = NULL,
785                                         const formula::FormulaGrammar::Grammar = formula::FormulaGrammar::GRAM_DEFAULT );
786     SC_DLLPUBLIC void           InsertTableOp(const ScTabOpParam& rParam,   // Mehrfachoperation
787                                   SCCOL nCol1, SCROW nRow1,
788                                   SCCOL nCol2, SCROW nRow2, const ScMarkData& rMark);
789 
790     SC_DLLPUBLIC void           GetString( SCCOL nCol, SCROW nRow, SCTAB nTab, String& rString );
791     SC_DLLPUBLIC void           GetInputString( SCCOL nCol, SCROW nRow, SCTAB nTab, String& rString );
792     sal_uInt16                  GetStringForFormula( const ScAddress& rPos, rtl::OUString& rString );
793     SC_DLLPUBLIC double         GetValue( const ScAddress& );
794     SC_DLLPUBLIC void           GetValue( SCCOL nCol, SCROW nRow, SCTAB nTab, double& rValue );
795     SC_DLLPUBLIC double         RoundValueAsShown( double fVal, sal_uLong nFormat );
796     SC_DLLPUBLIC void           GetNumberFormat( SCCOL nCol, SCROW nRow, SCTAB nTab,
797                                      sal_uInt32& rFormat );
798     SC_DLLPUBLIC sal_uInt32     GetNumberFormat( const ScAddress& ) const;
799                     /** If no number format attribute is set and the cell
800                         pointer passed is of type formula cell, the calculated
801                         number format of the formula cell is returned. pCell
802                         may be NULL. */
803     SC_DLLPUBLIC void           GetNumberFormatInfo( short& nType, sal_uLong& nIndex,
804                         const ScAddress& rPos, const ScBaseCell* pCell ) const;
805     void            GetFormula( SCCOL nCol, SCROW nRow, SCTAB nTab, String& rFormula,
806                                 sal_Bool bAsciiExport = sal_False ) const;
807     SC_DLLPUBLIC void           GetCellType( SCCOL nCol, SCROW nRow, SCTAB nTab, CellType& rCellType ) const;
808     SC_DLLPUBLIC CellType       GetCellType( const ScAddress& rPos ) const;
809     SC_DLLPUBLIC void           GetCell( SCCOL nCol, SCROW nRow, SCTAB nTab, ScBaseCell*& rpCell ) const;
810     SC_DLLPUBLIC ScBaseCell*        GetCell( const ScAddress& rPos ) const;
811 
812 //UNUSED2008-05  void           RefreshNoteFlags();
813 
814     SC_DLLPUBLIC sal_Bool           HasData( SCCOL nCol, SCROW nRow, SCTAB nTab );
815     SC_DLLPUBLIC sal_Bool           HasStringData( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
816     SC_DLLPUBLIC sal_Bool           HasValueData( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
817     sal_Bool            HasStringCells( const ScRange& rRange ) const;
818 
819     /** Returns true, if there is any data to create a selection list for rPos. */
820     sal_Bool            HasSelectionData( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
821 
822     /** Returns the pointer to a cell note object at the passed cell address. */
823     ScPostIt*       GetNote( const ScAddress& rPos );
824     /** Sets the passed note at the cell with the passed cell address. */
825     void            TakeNote( const ScAddress& rPos, ScPostIt*& rpNote );
826     /** Returns and forgets the cell note object at the passed cell address. */
827     ScPostIt*       ReleaseNote( const ScAddress& rPos );
828     /** Returns the pointer to an existing or created cell note object at the passed cell address. */
829     SC_DLLPUBLIC ScPostIt* GetOrCreateNote( const ScAddress& rPos );
830     /** Deletes the note at the passed cell address. */
831     void            DeleteNote( const ScAddress& rPos );
832     /** Creates the captions of all uninitialized cell notes in the specified sheet.
833         @param bForced  True = always create all captions, false = skip when Undo is disabled. */
834     void            InitializeNoteCaptions( SCTAB nTab, bool bForced = false );
835     /** Creates the captions of all uninitialized cell notes in all sheets.
836         @param bForced  True = always create all captions, false = skip when Undo is disabled. */
837     void            InitializeAllNoteCaptions( bool bForced = false );
838 
839     sal_Bool            ExtendMergeSel( SCCOL nStartCol, SCROW nStartRow,
840                                 SCCOL& rEndCol, SCROW& rEndRow, const ScMarkData& rMark,
841                                 sal_Bool bRefresh = sal_False, sal_Bool bAttrs = sal_False );
842     sal_Bool            ExtendMerge( SCCOL nStartCol, SCROW nStartRow,
843                                 SCCOL& rEndCol, SCROW& rEndRow, SCTAB nTab,
844                                 sal_Bool bRefresh = sal_False, sal_Bool bAttrs = sal_False );
845     sal_Bool            ExtendMerge( ScRange& rRange, sal_Bool bRefresh = sal_False, sal_Bool bAttrs = sal_False );
846     sal_Bool            ExtendTotalMerge( ScRange& rRange );
847     SC_DLLPUBLIC sal_Bool           ExtendOverlapped( SCCOL& rStartCol, SCROW& rStartRow,
848                                 SCCOL nEndCol, SCROW nEndRow, SCTAB nTab );
849     SC_DLLPUBLIC sal_Bool           ExtendOverlapped( ScRange& rRange );
850 
851     sal_Bool            RefreshAutoFilter( SCCOL nStartCol, SCROW nStartRow,
852                                 SCCOL nEndCol, SCROW nEndRow, SCTAB nTab );
853 
854     SC_DLLPUBLIC void           DoMergeContents( SCTAB nTab, SCCOL nStartCol, SCROW nStartRow,
855                                     SCCOL nEndCol, SCROW nEndRow );
856                     //  ohne Ueberpruefung:
857     SC_DLLPUBLIC void           DoMerge( SCTAB nTab, SCCOL nStartCol, SCROW nStartRow,
858                                     SCCOL nEndCol, SCROW nEndRow, bool bDeleteCaptions = true );
859     void            RemoveMerge( SCCOL nCol, SCROW nRow, SCTAB nTab );
860 
861     sal_Bool            IsBlockEmpty( SCTAB nTab, SCCOL nStartCol, SCROW nStartRow,
862                                                 SCCOL nEndCol, SCROW nEndRow, bool bIgnoreNotes = false ) const;
863     sal_Bool            IsPrintEmpty( SCTAB nTab, SCCOL nStartCol, SCROW nStartRow,
864                                                 SCCOL nEndCol, SCROW nEndRow,
865                                                 sal_Bool bLeftIsEmpty = sal_False,
866                                                 ScRange* pLastRange = NULL,
867                                                 Rectangle* pLastMM = NULL ) const;
868 
869     sal_Bool            IsHorOverlapped( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
870     sal_Bool            IsVerOverlapped( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
871 
872     SC_DLLPUBLIC bool           HasAttrib( SCCOL nCol1, SCROW nRow1, SCTAB nTab1,
873                                            SCCOL nCol2, SCROW nRow2, SCTAB nTab2, sal_uInt16 nMask );
874     SC_DLLPUBLIC bool           HasAttrib( const ScRange& rRange, sal_uInt16 nMask );
875 
876     void            GetBorderLines( SCCOL nCol, SCROW nRow, SCTAB nTab,
877                                     const SvxBorderLine** ppLeft,
878                                     const SvxBorderLine** ppTop,
879                                     const SvxBorderLine** ppRight,
880                                     const SvxBorderLine** ppBottom ) const;
881 
882     void            ResetChanged( const ScRange& rRange );
883 
884     void            SetDirty();
885     void            SetDirty( const ScRange& );
886     void            SetTableOpDirty( const ScRange& );  // for Interpreter TableOp
887     void            InterpretDirtyCells( const ScRangeList& rRanges );
888     void            CalcAll();
889     SC_DLLPUBLIC void           CalcAfterLoad();
890     void            CompileAll();
891     void            CompileXML();
892 
893     ScAutoNameCache* GetAutoNameCache()     { return pAutoNameCache; }
894 
895                     /** Creates a ScLookupCache cache for the range if it
896                         doesn't already exist. */
897     ScLookupCache & GetLookupCache( const ScRange & rRange );
898                     /** Only ScLookupCache ctor uses AddLookupCache(), do not
899                         use elsewhere! */
900     void            AddLookupCache( ScLookupCache & rCache );
901                     /** Only ScLookupCache dtor uses RemoveLookupCache(), do
902                         not use elsewhere! */
903     void            RemoveLookupCache( ScLookupCache & rCache );
904                     /** Zap all caches. */
905     void            ClearLookupCaches();
906 
907                     // Automatisch Berechnen
908     void            SetAutoCalc( sal_Bool bNewAutoCalc );
909     sal_Bool            GetAutoCalc() const { return bAutoCalc; }
910                     // Automatisch Berechnen in/von/fuer ScDocShell disabled
911     void            SetAutoCalcShellDisabled( sal_Bool bNew ) { bAutoCalcShellDisabled = bNew; }
912     sal_Bool            IsAutoCalcShellDisabled() const { return bAutoCalcShellDisabled; }
913                     // ForcedFormulas zu berechnen
914     void            SetForcedFormulaPending( sal_Bool bNew ) { bForcedFormulaPending = bNew; }
915     sal_Bool            IsForcedFormulaPending() const { return bForcedFormulaPending; }
916                     // if CalcFormulaTree() is currently running
917     sal_Bool            IsCalculatingFormulaTree() { return bCalculatingFormulaTree; }
918 
919     sal_uInt16          GetErrCode( const ScAddress& ) const;
920 
921                     /** Shrink a range to only include data area.
922 
923                         This is not the actually used area within the
924                         selection, but the bounds of the sheet's data area
925                         instead.
926 
927                         @returns True if the area passed intersected the data
928                                  area, false if not, in which case the values
929                                  obtained may be out of bounds, not in order or
930                                  unmodified. True does not mean that there
931                                  actually is any data within the selection.
932                      */
933     bool            ShrinkToDataArea( SCTAB nTab, SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow ) const;
934 
935                     /** Shrink a range to only include used data area.
936 
937                         @param o_bShrunk
938                                Out parameter, True if area was shrunk, false if not.
939 
940                         @returns True if there is any data, fakse if not.
941                      */
942     bool            ShrinkToUsedDataArea( bool& o_bShrunk,
943                                           SCTAB nTab, SCCOL& rStartCol, SCROW& rStartRow,
944                                           SCCOL& rEndCol, SCROW& rEndRow, bool bColumnsOnly ) const;
945 
946     SC_DLLPUBLIC void           GetDataArea( SCTAB nTab, SCCOL& rStartCol, SCROW& rStartRow,
947                                     SCCOL& rEndCol, SCROW& rEndRow, sal_Bool bIncludeOld, bool bOnlyDown ) const;
948     SC_DLLPUBLIC sal_Bool           GetCellArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow ) const;
949     SC_DLLPUBLIC sal_Bool           GetTableArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow ) const;
950     SC_DLLPUBLIC sal_Bool           GetPrintArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow,
951                                     sal_Bool bNotes = sal_True ) const;
952     SC_DLLPUBLIC sal_Bool           GetPrintAreaHor( SCTAB nTab, SCROW nStartRow, SCROW nEndRow,
953                                         SCCOL& rEndCol, sal_Bool bNotes = sal_True ) const;
954     SC_DLLPUBLIC sal_Bool           GetPrintAreaVer( SCTAB nTab, SCCOL nStartCol, SCCOL nEndCol,
955                                         SCROW& rEndRow, sal_Bool bNotes = sal_True ) const;
956     void            InvalidateTableArea();
957 
958 
959     SC_DLLPUBLIC sal_Bool           GetDataStart( SCTAB nTab, SCCOL& rStartCol, SCROW& rStartRow ) const;
960 
961     /**
962      * Find the maximum column position that contains printable data for the
963      * specified row range.  The final column position must be equal or less
964      * than the initial value of rEndCol.
965      */
966     void            ExtendPrintArea( OutputDevice* pDev, SCTAB nTab,
967                                     SCCOL nStartCol, SCROW nStartRow,
968                                     SCCOL& rEndCol, SCROW nEndRow );
969     SC_DLLPUBLIC SCSIZE         GetEmptyLinesInBlock( SCCOL nStartCol, SCROW nStartRow, SCTAB nStartTab,
970                                             SCCOL nEndCol, SCROW nEndRow, SCTAB nEndTab,
971                                             ScDirection eDir );
972 
973     void            FindAreaPos( SCCOL& rCol, SCROW& rRow, SCTAB nTab, SCsCOL nMovX, SCsROW nMovY );
974     SC_DLLPUBLIC void           GetNextPos( SCCOL& rCol, SCROW& rRow, SCTAB nTab, SCsCOL nMovX, SCsROW nMovY,
975                                 sal_Bool bMarked, sal_Bool bUnprotected, const ScMarkData& rMark );
976 
977     sal_Bool            GetNextMarkedCell( SCCOL& rCol, SCROW& rRow, SCTAB nTab,
978                                         const ScMarkData& rMark );
979 
980     void            LimitChartArea( SCTAB nTab, SCCOL& rStartCol, SCROW& rStartRow,
981                                                     SCCOL& rEndCol, SCROW& rEndRow );
982     void            LimitChartIfAll( ScRangeListRef& rRangeList );
983 
984     sal_Bool            InsertRow( SCCOL nStartCol, SCTAB nStartTab,
985                                SCCOL nEndCol,   SCTAB nEndTab,
986                                SCROW nStartRow, SCSIZE nSize, ScDocument* pRefUndoDoc = NULL,
987                                const ScMarkData* pTabMark = NULL );
988     SC_DLLPUBLIC sal_Bool           InsertRow( const ScRange& rRange, ScDocument* pRefUndoDoc = NULL );
989     void            DeleteRow( SCCOL nStartCol, SCTAB nStartTab,
990                                SCCOL nEndCol,   SCTAB nEndTab,
991                                SCROW nStartRow, SCSIZE nSize,
992                                ScDocument* pRefUndoDoc = NULL, sal_Bool* pUndoOutline = NULL,
993                                const ScMarkData* pTabMark = NULL );
994     void            DeleteRow( const ScRange& rRange,
995                                ScDocument* pRefUndoDoc = NULL, sal_Bool* pUndoOutline = NULL );
996     sal_Bool            InsertCol( SCROW nStartRow, SCTAB nStartTab,
997                                SCROW nEndRow,   SCTAB nEndTab,
998                                SCCOL nStartCol, SCSIZE nSize, ScDocument* pRefUndoDoc = NULL,
999                                const ScMarkData* pTabMark = NULL );
1000     SC_DLLPUBLIC sal_Bool           InsertCol( const ScRange& rRange, ScDocument* pRefUndoDoc = NULL );
1001     void            DeleteCol( SCROW nStartRow, SCTAB nStartTab,
1002                                SCROW nEndRow, SCTAB nEndTab,
1003                                SCCOL nStartCol, SCSIZE nSize,
1004                                ScDocument* pRefUndoDoc = NULL, sal_Bool* pUndoOutline = NULL,
1005                                const ScMarkData* pTabMark = NULL );
1006     void            DeleteCol( const ScRange& rRange,
1007                                ScDocument* pRefUndoDoc = NULL, sal_Bool* pUndoOutline = NULL );
1008 
1009     sal_Bool            CanInsertRow( const ScRange& rRange ) const;
1010     sal_Bool            CanInsertCol( const ScRange& rRange ) const;
1011 
1012     void            FitBlock( const ScRange& rOld, const ScRange& rNew, sal_Bool bClear = sal_True );
1013     sal_Bool            CanFitBlock( const ScRange& rOld, const ScRange& rNew );
1014 
1015     sal_Bool            IsClipOrUndo() const                        { return bIsClip || bIsUndo; }
1016     sal_Bool            IsUndo() const                              { return bIsUndo; }
1017     sal_Bool            IsClipboard() const                         { return bIsClip; }
1018     bool            IsUndoEnabled() const                       { return mbUndoEnabled; }
1019     void            EnableUndo( bool bVal );
1020 
1021     bool            IsAdjustHeightEnabled() const               { return mbAdjustHeightEnabled; }
1022     void            EnableAdjustHeight( bool bVal )             { mbAdjustHeightEnabled = bVal; }
1023     bool            IsExecuteLinkEnabled() const                { return mbExecuteLinkEnabled; }
1024     void            EnableExecuteLink( bool bVal )              { mbExecuteLinkEnabled = bVal; }
1025     bool            IsChangeReadOnlyEnabled() const             { return mbChangeReadOnlyEnabled; }
1026     void            EnableChangeReadOnly( bool bVal )           { mbChangeReadOnlyEnabled = bVal; }
1027     SC_DLLPUBLIC sal_Int16       GetNamedRangesLockCount() const             { return mnNamedRangesLockCount; }
1028     void            SetNamedRangesLockCount( sal_Int16 nCount ) { mnNamedRangesLockCount = nCount; }
1029     SC_DLLPUBLIC void           ResetClip( ScDocument* pSourceDoc, const ScMarkData* pMarks );
1030     SC_DLLPUBLIC void           ResetClip( ScDocument* pSourceDoc, SCTAB nTab );
1031     void            SetCutMode( sal_Bool bCut );
1032     sal_Bool            IsCutMode();
1033     void            SetClipArea( const ScRange& rArea, sal_Bool bCut = sal_False );
1034 
1035     SC_DLLPUBLIC sal_Bool           IsDocVisible() const                        { return bIsVisible; }
1036     void            SetDocVisible( sal_Bool bSet );
1037 
1038     sal_Bool            HasOLEObjectsInArea( const ScRange& rRange, const ScMarkData* pTabMark = NULL );
1039 
1040     void            DeleteObjectsInArea( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1041                                         const ScMarkData& rMark );
1042     void            DeleteObjectsInSelection( const ScMarkData& rMark );
1043 
1044     void            DeleteArea(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1045                             const ScMarkData& rMark, sal_uInt16 nDelFlag);
1046     void            DeleteAreaTab(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1047                                 SCTAB nTab, sal_uInt16 nDelFlag);
1048     void            DeleteAreaTab(const ScRange& rRange, sal_uInt16 nDelFlag);
1049 
1050     void            CopyToClip(const ScClipParam& rClipParam, ScDocument* pClipDoc,
1051                                const ScMarkData* pMarks = NULL, bool bAllTabs = false, bool bKeepScenarioFlags = false,
1052                                bool bIncludeObjects = false, bool bCloneNoteCaptions = true);
1053 
1054     void            CopyTabToClip(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1055                                 SCTAB nTab, ScDocument* pClipDoc = NULL);
1056     void            CopyBlockFromClip( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1057                                     const ScMarkData& rMark, SCsCOL nDx, SCsROW nDy,
1058                                     const ScCopyBlockFromClipParams* pCBFCP );
1059     void            CopyNonFilteredFromClip( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1060                                     const ScMarkData& rMark, SCsCOL nDx, SCsROW nDy,
1061                                     const ScCopyBlockFromClipParams* pCBFCP,
1062                                     SCROW & rClipStartRow );
1063     void            StartListeningFromClip( SCCOL nCol1, SCROW nRow1,
1064                                         SCCOL nCol2, SCROW nRow2,
1065                                         const ScMarkData& rMark, sal_uInt16 nInsFlag );
1066     void            BroadcastFromClip( SCCOL nCol1, SCROW nRow1,
1067                                     SCCOL nCol2, SCROW nRow2,
1068                                     const ScMarkData& rMark, sal_uInt16 nInsFlag );
1069     /** If pDestRanges is given it overrides rDestRange, rDestRange in this
1070         case is the overall encompassing range. */
1071     void            CopyFromClip( const ScRange& rDestRange, const ScMarkData& rMark,
1072                                     sal_uInt16 nInsFlag,
1073                                     ScDocument* pRefUndoDoc = NULL,
1074                                     ScDocument* pClipDoc = NULL,
1075                                     sal_Bool bResetCut = sal_True,
1076                                     sal_Bool bAsLink = sal_False,
1077                                     sal_Bool bIncludeFiltered = sal_True,
1078                                     sal_Bool bSkipAttrForEmpty = sal_False,
1079                                     const ScRangeList * pDestRanges = NULL );
1080 
1081     void            CopyMultiRangeFromClip(const ScAddress& rDestPos, const ScMarkData& rMark,
1082                                            sal_uInt16 nInsFlag, ScDocument* pClipDoc,
1083                                            bool bResetCut = true, bool bAsLink = false,
1084                                            bool bIncludeFiltered = true,
1085                                            bool bSkipAttrForEmpty = false);
1086 
1087     void            GetClipArea(SCCOL& nClipX, SCROW& nClipY, sal_Bool bIncludeFiltered);
1088     void            GetClipStart(SCCOL& nClipX, SCROW& nClipY);
1089 
1090     sal_Bool            HasClipFilteredRows();
1091 
1092     sal_Bool            IsClipboardSource() const;
1093 
1094     SC_DLLPUBLIC void           TransposeClip( ScDocument* pTransClip, sal_uInt16 nFlags, sal_Bool bAsLink );
1095 
1096     ScClipParam&    GetClipParam();
1097     void            SetClipParam(const ScClipParam& rParam);
1098 
1099     void            MixDocument( const ScRange& rRange, sal_uInt16 nFunction, sal_Bool bSkipEmpty,
1100                                     ScDocument* pSrcDoc );
1101 
1102     void            FillTab( const ScRange& rSrcArea, const ScMarkData& rMark,
1103                                 sal_uInt16 nFlags, sal_uInt16 nFunction,
1104                                 sal_Bool bSkipEmpty, sal_Bool bAsLink );
1105     void            FillTabMarked( SCTAB nSrcTab, const ScMarkData& rMark,
1106                                 sal_uInt16 nFlags, sal_uInt16 nFunction,
1107                                 sal_Bool bSkipEmpty, sal_Bool bAsLink );
1108 
1109     void            TransliterateText( const ScMarkData& rMultiMark, sal_Int32 nType );
1110 
1111     SC_DLLPUBLIC void           InitUndo( ScDocument* pSrcDoc, SCTAB nTab1, SCTAB nTab2,
1112                                 sal_Bool bColInfo = sal_False, sal_Bool bRowInfo = sal_False );
1113     void            AddUndoTab( SCTAB nTab1, SCTAB nTab2,
1114                                 sal_Bool bColInfo = sal_False, sal_Bool bRowInfo = sal_False );
1115     SC_DLLPUBLIC void           InitUndoSelected( ScDocument* pSrcDoc, const ScMarkData& rTabSelection,
1116                                 sal_Bool bColInfo = sal_False, sal_Bool bRowInfo = sal_False );
1117 
1118                     //  nicht mehr benutzen:
1119     void            CopyToDocument(SCCOL nCol1, SCROW nRow1, SCTAB nTab1,
1120                                 SCCOL nCol2, SCROW nRow2, SCTAB nTab2,
1121                                 sal_uInt16 nFlags, sal_Bool bMarked, ScDocument* pDestDoc,
1122                                 const ScMarkData* pMarks = NULL, sal_Bool bColRowFlags = sal_True);
1123     void            UndoToDocument(SCCOL nCol1, SCROW nRow1, SCTAB nTab1,
1124                                 SCCOL nCol2, SCROW nRow2, SCTAB nTab2,
1125                                 sal_uInt16 nFlags, sal_Bool bMarked, ScDocument* pDestDoc,
1126                                 const ScMarkData* pMarks = NULL);
1127 
1128     void            CopyToDocument(const ScRange& rRange,
1129                                 sal_uInt16 nFlags, sal_Bool bMarked, ScDocument* pDestDoc,
1130                                 const ScMarkData* pMarks = NULL, sal_Bool bColRowFlags = sal_True);
1131     void            UndoToDocument(const ScRange& rRange,
1132                                 sal_uInt16 nFlags, sal_Bool bMarked, ScDocument* pDestDoc,
1133                                 const ScMarkData* pMarks = NULL);
1134 
1135     void            CopyScenario( SCTAB nSrcTab, SCTAB nDestTab, sal_Bool bNewScenario = sal_False );
1136     sal_Bool            TestCopyScenario( SCTAB nSrcTab, SCTAB nDestTab ) const;
1137     void            MarkScenario( SCTAB nSrcTab, SCTAB nDestTab,
1138                                     ScMarkData& rDestMark, sal_Bool bResetMark = sal_True,
1139                                     sal_uInt16 nNeededBits = 0 ) const;
1140     sal_Bool            HasScenarioRange( SCTAB nTab, const ScRange& rRange ) const;
1141     SC_DLLPUBLIC const ScRangeList* GetScenarioRanges( SCTAB nTab ) const;
1142 
1143     SC_DLLPUBLIC void           CopyUpdated( ScDocument* pPosDoc, ScDocument* pDestDoc );
1144 
1145     void            UpdateReference( UpdateRefMode eUpdateRefMode, SCCOL nCol1, SCROW nRow1, SCTAB nTab1,
1146                                      SCCOL nCol2, SCROW nRow2, SCTAB nTab2,
1147                                      SCsCOL nDx, SCsROW nDy, SCsTAB nDz,
1148                                      ScDocument* pUndoDoc = NULL, sal_Bool bIncludeDraw = sal_True,
1149                                      bool bUpdateNoteCaptionPos = true );
1150 
1151     SC_DLLPUBLIC void           UpdateTranspose( const ScAddress& rDestPos, ScDocument* pClipDoc,
1152                                         const ScMarkData& rMark, ScDocument* pUndoDoc = NULL );
1153 
1154     void            UpdateGrow( const ScRange& rArea, SCCOL nGrowX, SCROW nGrowY );
1155 
1156     void            Fill(   SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1157                             const ScMarkData& rMark,
1158                             sal_uLong nFillCount, FillDir eFillDir = FILL_TO_BOTTOM,
1159                             FillCmd eFillCmd = FILL_LINEAR, FillDateCmd eFillDateCmd = FILL_DAY,
1160                             double nStepValue = 1.0, double nMaxValue = 1E307);
1161     String          GetAutoFillPreview( const ScRange& rSource, SCCOL nEndX, SCROW nEndY );
1162 
1163     sal_Bool            GetSelectionFunction( ScSubTotalFunc eFunc,
1164                                             const ScAddress& rCursor, const ScMarkData& rMark,
1165                                             double& rResult );
1166 
1167     SC_DLLPUBLIC const SfxPoolItem*         GetAttr( SCCOL nCol, SCROW nRow, SCTAB nTab, sal_uInt16 nWhich ) const;
1168     SC_DLLPUBLIC const ScPatternAttr*   GetPattern( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
1169     SC_DLLPUBLIC const ScPatternAttr*    GetMostUsedPattern( SCCOL nCol, SCROW nStartRow, SCROW nEndRow, SCTAB nTab ) const;
1170     const ScPatternAttr*    GetSelectionPattern( const ScMarkData& rMark, sal_Bool bDeep = sal_True );
1171     ScPatternAttr*          CreateSelectionPattern( const ScMarkData& rMark, sal_Bool bDeep = sal_True );
1172 
1173     const ScConditionalFormat* GetCondFormat( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
1174     SC_DLLPUBLIC const SfxItemSet*  GetCondResult( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
1175     const SfxPoolItem*  GetEffItem( SCCOL nCol, SCROW nRow, SCTAB nTab, sal_uInt16 nWhich ) const;
1176 
1177     SC_DLLPUBLIC const ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XBreakIterator >& GetBreakIterator();
1178     sal_Bool            HasStringWeakCharacters( const String& rString );
1179     SC_DLLPUBLIC sal_uInt8          GetStringScriptType( const String& rString );
1180     SC_DLLPUBLIC sal_uInt8          GetCellScriptType( ScBaseCell* pCell, sal_uLong nNumberFormat );
1181     SC_DLLPUBLIC sal_uInt8          GetScriptType( SCCOL nCol, SCROW nRow, SCTAB nTab, ScBaseCell* pCell = NULL );
1182 
1183     sal_Bool            HasDetectiveOperations() const;
1184     void            AddDetectiveOperation( const ScDetOpData& rData );
1185     void            ClearDetectiveOperations();
1186     ScDetOpList*    GetDetOpList() const                { return pDetOpList; }
1187     void            SetDetOpList(ScDetOpList* pNew);
1188 
1189     sal_Bool            HasDetectiveObjects(SCTAB nTab) const;
1190 
1191     void            GetSelectionFrame( const ScMarkData& rMark,
1192                                        SvxBoxItem&      rLineOuter,
1193                                        SvxBoxInfoItem&  rLineInner );
1194     void            ApplySelectionFrame( const ScMarkData& rMark,
1195                                          const SvxBoxItem* pLineOuter,
1196                                          const SvxBoxInfoItem* pLineInner );
1197     void            ApplyFrameAreaTab( const ScRange& rRange,
1198                                          const SvxBoxItem* pLineOuter,
1199                                          const SvxBoxInfoItem* pLineInner );
1200 
1201     void            ClearSelectionItems( const sal_uInt16* pWhich, const ScMarkData& rMark );
1202     void            ChangeSelectionIndent( sal_Bool bIncrement, const ScMarkData& rMark );
1203 
1204     SC_DLLPUBLIC sal_uLong          AddCondFormat( const ScConditionalFormat& rNew );
1205     SC_DLLPUBLIC void           FindConditionalFormat( sal_uLong nKey, ScRangeList& rRanges );
1206     SC_DLLPUBLIC void           FindConditionalFormat( sal_uLong nKey, ScRangeList& rRanges, SCTAB nTab );
1207     void            ConditionalChanged( sal_uLong nKey );
1208 
1209     SC_DLLPUBLIC sal_uLong          AddValidationEntry( const ScValidationData& rNew );
1210 
1211     SC_DLLPUBLIC const ScValidationData*    GetValidationEntry( sal_uLong nIndex ) const;
1212 
1213     ScConditionalFormatList* GetCondFormList() const        // Ref-Undo
1214                     { return pCondFormList; }
1215     void            SetCondFormList(ScConditionalFormatList* pNew);
1216 
1217     ScValidationDataList* GetValidationList() const
1218                     { return pValidationList; }
1219 
1220     SC_DLLPUBLIC void           ApplyAttr( SCCOL nCol, SCROW nRow, SCTAB nTab,
1221                                 const SfxPoolItem& rAttr );
1222     SC_DLLPUBLIC void           ApplyPattern( SCCOL nCol, SCROW nRow, SCTAB nTab,
1223                                     const ScPatternAttr& rAttr );
1224     SC_DLLPUBLIC void           ApplyPatternArea( SCCOL nStartCol, SCROW nStartRow,
1225                                         SCCOL nEndCol, SCROW nEndRow,
1226                                         const ScMarkData& rMark, const ScPatternAttr& rAttr );
1227     SC_DLLPUBLIC void           ApplyPatternAreaTab( SCCOL nStartCol, SCROW nStartRow,
1228                                             SCCOL nEndCol, SCROW nEndRow, SCTAB nTab,
1229                                             const ScPatternAttr& rAttr );
1230     SC_DLLPUBLIC void           ApplyPatternIfNumberformatIncompatible(
1231                             const ScRange& rRange, const ScMarkData& rMark,
1232                             const ScPatternAttr& rPattern, short nNewType );
1233 
1234     void            ApplyStyle( SCCOL nCol, SCROW nRow, SCTAB nTab,
1235                                 const ScStyleSheet& rStyle);
1236     void            ApplyStyleArea( SCCOL nStartCol, SCROW nStartRow,
1237                                     SCCOL nEndCol, SCROW nEndRow,
1238                                     const ScMarkData& rMark, const ScStyleSheet& rStyle);
1239     SC_DLLPUBLIC void           ApplyStyleAreaTab( SCCOL nStartCol, SCROW nStartRow,
1240                                         SCCOL nEndCol, SCROW nEndRow, SCTAB nTab,
1241                                         const ScStyleSheet& rStyle);
1242 
1243     void            ApplySelectionStyle( const ScStyleSheet& rStyle, const ScMarkData& rMark );
1244     void            ApplySelectionLineStyle( const ScMarkData& rMark,
1245                                             const SvxBorderLine* pLine, sal_Bool bColorOnly );
1246 
1247     const ScStyleSheet* GetStyle( SCCOL nCol, SCROW nRow, SCTAB nTab ) const;
1248     const ScStyleSheet* GetSelectionStyle( const ScMarkData& rMark ) const;
1249 
1250     void            StyleSheetChanged( const SfxStyleSheetBase* pStyleSheet, sal_Bool bRemoved,
1251                                         OutputDevice* pDev,
1252                                         double nPPTX, double nPPTY,
1253                                         const Fraction& rZoomX, const Fraction& rZoomY );
1254 
1255     sal_Bool            IsStyleSheetUsed( const ScStyleSheet& rStyle, sal_Bool bGatherAllStyles ) const;
1256 
1257     SC_DLLPUBLIC sal_Bool           ApplyFlagsTab( SCCOL nStartCol, SCROW nStartRow,
1258                                             SCCOL nEndCol, SCROW nEndRow,
1259                                             SCTAB nTab, sal_Int16 nFlags );
1260     sal_Bool            RemoveFlagsTab( SCCOL nStartCol, SCROW nStartRow,
1261                                             SCCOL nEndCol, SCROW nEndRow,
1262                                             SCTAB nTab, sal_Int16 nFlags );
1263 
1264     SC_DLLPUBLIC void           SetPattern( const ScAddress&, const ScPatternAttr& rAttr,
1265                                     sal_Bool bPutToPool = sal_False );
1266     SC_DLLPUBLIC void           SetPattern( SCCOL nCol, SCROW nRow, SCTAB nTab, const ScPatternAttr& rAttr,
1267                                     sal_Bool bPutToPool = sal_False );
1268     void            DeleteNumberFormat( const sal_uInt32* pDelKeys, sal_uInt32 nCount );
1269 
1270     void            AutoFormat( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
1271                                     sal_uInt16 nFormatNo, const ScMarkData& rMark );
1272     void            GetAutoFormatData( SCTAB nTab, SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
1273                                         ScAutoFormatData& rData );
1274     sal_Bool            SearchAndReplace( const SvxSearchItem& rSearchItem,
1275                                         SCCOL& rCol, SCROW& rRow, SCTAB& rTab,
1276                                         ScMarkData& rMark,
1277                                         String& rUndoStr, ScDocument* pUndoDoc = NULL );
1278 
1279                     // Col/Row von Folgeaufrufen bestimmen
1280                     // (z.B. nicht gefunden von Anfang, oder folgende Tabellen)
1281     static void     GetSearchAndReplaceStart( const SvxSearchItem& rSearchItem,
1282                         SCCOL& rCol, SCROW& rRow );
1283 
1284     sal_Bool            Solver(SCCOL nFCol, SCROW nFRow, SCTAB nFTab,
1285                             SCCOL nVCol, SCROW nVRow, SCTAB nVTab,
1286                             const String& sValStr, double& nX);
1287 
1288     void            ApplySelectionPattern( const ScPatternAttr& rAttr, const ScMarkData& rMark );
1289     void            DeleteSelection( sal_uInt16 nDelFlag, const ScMarkData& rMark );
1290     void            DeleteSelectionTab( SCTAB nTab, sal_uInt16 nDelFlag, const ScMarkData& rMark );
1291 
1292     SC_DLLPUBLIC void           SetColWidth( SCCOL nCol, SCTAB nTab, sal_uInt16 nNewWidth );
1293     SC_DLLPUBLIC void           SetRowHeight( SCROW nRow, SCTAB nTab, sal_uInt16 nNewHeight );
1294     SC_DLLPUBLIC void           SetRowHeightRange( SCROW nStartRow, SCROW nEndRow, SCTAB nTab,
1295                                             sal_uInt16 nNewHeight );
1296 
1297     SC_DLLPUBLIC void           SetRowHeightOnly( SCROW nStartRow, SCROW nEndRow, SCTAB nTab,
1298                                                   sal_uInt16 nNewHeight );
1299     void                        SetManualHeight( SCROW nStartRow, SCROW nEndRow, SCTAB nTab, sal_Bool bManual );
1300 
1301     SC_DLLPUBLIC sal_uInt16         GetColWidth( SCCOL nCol, SCTAB nTab ) const;
1302     SC_DLLPUBLIC sal_uInt16         GetRowHeight( SCROW nRow, SCTAB nTab, bool bHiddenAsZero = true ) const;
1303     SC_DLLPUBLIC sal_uInt16         GetRowHeight( SCROW nRow, SCTAB nTab, SCROW* pStartRow, SCROW* pEndRow, bool bHiddenAsZero = true ) const;
1304     SC_DLLPUBLIC sal_uLong          GetRowHeight( SCROW nStartRow, SCROW nEndRow, SCTAB nTab ) const;
1305     SCROW                       GetRowForHeight( SCTAB nTab, sal_uLong nHeight ) const;
1306     sal_uLong                       GetScaledRowHeight( SCROW nStartRow, SCROW nEndRow, SCTAB nTab, double fScale ) const;
1307     SC_DLLPUBLIC sal_uLong          GetColOffset( SCCOL nCol, SCTAB nTab ) const;
1308     SC_DLLPUBLIC sal_uLong          GetRowOffset( SCROW nRow, SCTAB nTab ) const;
1309 
1310     SC_DLLPUBLIC sal_uInt16         GetOriginalWidth( SCCOL nCol, SCTAB nTab ) const;
1311     SC_DLLPUBLIC sal_uInt16         GetOriginalHeight( SCROW nRow, SCTAB nTab ) const;
1312 
1313     sal_uInt16          GetCommonWidth( SCCOL nEndCol, SCTAB nTab ) const;
1314 
1315     SCROW           GetHiddenRowCount( SCROW nRow, SCTAB nTab ) const;
1316 
1317     sal_uInt16          GetOptimalColWidth( SCCOL nCol, SCTAB nTab, OutputDevice* pDev,
1318                                         double nPPTX, double nPPTY,
1319                                         const Fraction& rZoomX, const Fraction& rZoomY,
1320                                         sal_Bool bFormula,
1321                                         const ScMarkData* pMarkData = NULL,
1322                                         sal_Bool bSimpleTextImport = sal_False );
1323     SC_DLLPUBLIC sal_Bool           SetOptimalHeight( SCROW nStartRow, SCROW nEndRow, SCTAB nTab, sal_uInt16 nExtra,
1324                                         OutputDevice* pDev,
1325                                         double nPPTX, double nPPTY,
1326                                         const Fraction& rZoomX, const Fraction& rZoomY,
1327                                         sal_Bool bShrink );
1328     void            UpdateAllRowHeights( OutputDevice* pDev,
1329                                         double nPPTX, double nPPTY,
1330                                         const Fraction& rZoomX, const Fraction& rZoomY,
1331                                         const ScMarkData* pTabMark = NULL );
1332     long            GetNeededSize( SCCOL nCol, SCROW nRow, SCTAB nTab,
1333                                     OutputDevice* pDev,
1334                                     double nPPTX, double nPPTY,
1335                                     const Fraction& rZoomX, const Fraction& rZoomY,
1336                                     sal_Bool bWidth, sal_Bool bTotalSize = sal_False );
1337 
1338     SC_DLLPUBLIC void           ShowCol(SCCOL nCol, SCTAB nTab, sal_Bool bShow);
1339     SC_DLLPUBLIC void           ShowRow(SCROW nRow, SCTAB nTab, sal_Bool bShow);
1340     SC_DLLPUBLIC void           ShowRows(SCROW nRow1, SCROW nRow2, SCTAB nTab, sal_Bool bShow);
1341     SC_DLLPUBLIC void           SetColFlags( SCCOL nCol, SCTAB nTab, sal_uInt8 nNewFlags );
1342     SC_DLLPUBLIC void           SetRowFlags( SCROW nRow, SCTAB nTab, sal_uInt8 nNewFlags );
1343     SC_DLLPUBLIC void           SetRowFlags( SCROW nStartRow, SCROW nEndRow, SCTAB nTab, sal_uInt8 nNewFlags );
1344 
1345     SC_DLLPUBLIC sal_uInt8          GetColFlags( SCCOL nCol, SCTAB nTab ) const;
1346     SC_DLLPUBLIC sal_uInt8          GetRowFlags( SCROW nRow, SCTAB nTab ) const;
1347 
1348     SC_DLLPUBLIC const ScBitMaskCompressedArray< SCROW, sal_uInt8> & GetRowFlagsArray( SCTAB nTab ) const;
1349     SC_DLLPUBLIC       ScBitMaskCompressedArray< SCROW, sal_uInt8> & GetRowFlagsArrayModifiable( SCTAB nTab );
1350 
1351     SC_DLLPUBLIC void           GetAllRowBreaks(::std::set<SCROW>& rBreaks, SCTAB nTab, bool bPage, bool bManual) const;
1352     SC_DLLPUBLIC void           GetAllColBreaks(::std::set<SCCOL>& rBreaks, SCTAB nTab, bool bPage, bool bManual) const;
1353     SC_DLLPUBLIC ScBreakType    HasRowBreak(SCROW nRow, SCTAB nTab) const;
1354     SC_DLLPUBLIC ScBreakType    HasColBreak(SCCOL nCol, SCTAB nTab) const;
1355     SC_DLLPUBLIC void           SetRowBreak(SCROW nRow, SCTAB nTab, bool bPage, bool bManual);
1356     SC_DLLPUBLIC void           SetColBreak(SCCOL nCol, SCTAB nTab, bool bPage, bool bManual);
1357     void                        RemoveRowBreak(SCROW nRow, SCTAB nTab, bool bPage, bool bManual);
1358     void                        RemoveColBreak(SCCOL nCol, SCTAB nTab, bool bPage, bool bManual);
1359     ::com::sun::star::uno::Sequence<
1360         ::com::sun::star::sheet::TablePageBreakData> GetRowBreakData(SCTAB nTab) const;
1361 
1362     SC_DLLPUBLIC bool           RowHidden(SCROW nRow, SCTAB nTab, SCROW* pFirstRow = NULL, SCROW* pLastRow = NULL);
1363     SC_DLLPUBLIC bool           RowHidden(SCROW nRow, SCTAB nTab, SCROW& rLastRow);
1364     SC_DLLPUBLIC bool           HasHiddenRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab);
1365     SC_DLLPUBLIC bool           ColHidden(SCCOL nCol, SCTAB nTab, SCCOL& rLastCol);
1366     SC_DLLPUBLIC bool           ColHidden(SCCOL nCol, SCTAB nTab, SCCOL* pFirstCol = NULL, SCCOL* pLastCol = NULL);
1367     SC_DLLPUBLIC void           SetRowHidden(SCROW nStartRow, SCROW nEndRow, SCTAB nTab, bool bHidden);
1368     SC_DLLPUBLIC void           SetColHidden(SCCOL nStartCol, SCCOL nEndCol, SCTAB nTab, bool bHidden);
1369     SC_DLLPUBLIC SCROW          FirstVisibleRow(SCROW nStartRow, SCROW nEndRow, SCTAB nTab);
1370     SC_DLLPUBLIC SCROW          LastVisibleRow(SCROW nStartRow, SCROW nEndRow, SCTAB nTab);
1371     SCROW                       CountVisibleRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab);
1372 
1373     bool                        RowFiltered(SCROW nRow, SCTAB nTab, SCROW* pFirstRow = NULL, SCROW* pLastRow = NULL);
1374     bool                        HasFilteredRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab);
1375     bool                        ColFiltered(SCCOL nCol, SCTAB nTab, SCCOL* pFirstCol = NULL, SCCOL* pLastCol = NULL);
1376     SC_DLLPUBLIC void           SetRowFiltered(SCROW nStartRow, SCROW nEndRow, SCTAB nTab, bool bFiltered);
1377     SC_DLLPUBLIC void           SetColFiltered(SCCOL nStartCol, SCCOL nEndCol, SCTAB nTab, bool bFiltered);
1378     SCROW                       FirstNonFilteredRow(SCROW nStartRow, SCROW nEndRow, SCTAB nTab);
1379     SCROW                       LastNonFilteredRow(SCROW nStartRow, SCROW nEndRow, SCTAB nTab);
1380     SCROW                       CountNonFilteredRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab);
1381 
1382     /**
1383      * Write all column row flags to table's flag data, because not all column
1384      * row attributes are stored in the flag data members.  This is necessary
1385      * for ods export.
1386      */
1387     void                        SyncColRowFlags();
1388 
1389                     /// @return  the index of the last row with any set flags (auto-pagebreak is ignored).
1390     SC_DLLPUBLIC SCROW          GetLastFlaggedRow( SCTAB nTab ) const;
1391 
1392                     /// @return  the index of the last changed column (flags and column width, auto pagebreak is ignored).
1393     SCCOL           GetLastChangedCol( SCTAB nTab ) const;
1394                     /// @return  the index of the last changed row (flags and row height, auto pagebreak is ignored).
1395     SCROW           GetLastChangedRow( SCTAB nTab ) const;
1396 
1397     SCCOL           GetNextDifferentChangedCol( SCTAB nTab, SCCOL nStart) const;
1398 
1399                     // #108550#; if bCareManualSize is set then the row
1400                     // heights are compared only if the manual size flag for
1401                     // the row is set. If the bCareManualSize is not set then
1402                     // the row heights are always compared.
1403     SCROW           GetNextDifferentChangedRow( SCTAB nTab, SCROW nStart, bool bCareManualSize = true) const;
1404 
1405     // returns whether to export a Default style for this col/row or not
1406     // nDefault is setted to one possition in the current row/col where the Default style is
1407     sal_Bool            GetColDefault( SCTAB nTab, SCCOL nCol, SCROW nLastRow, SCROW& nDefault);
1408     sal_Bool            GetRowDefault( SCTAB nTab, SCROW nRow, SCCOL nLastCol, SCCOL& nDefault);
1409 
1410     sal_Bool            UpdateOutlineCol( SCCOL nStartCol, SCCOL nEndCol, SCTAB nTab, sal_Bool bShow );
1411     sal_Bool            UpdateOutlineRow( SCROW nStartRow, SCROW nEndRow, SCTAB nTab, sal_Bool bShow );
1412 
1413     void            StripHidden( SCCOL& rX1, SCROW& rY1, SCCOL& rX2, SCROW& rY2, SCTAB nTab );
1414     void            ExtendHidden( SCCOL& rX1, SCROW& rY1, SCCOL& rX2, SCROW& rY2, SCTAB nTab );
1415 
1416     SC_DLLPUBLIC ScPatternAttr*     GetDefPattern() const;
1417     SC_DLLPUBLIC ScDocumentPool*        GetPool();
1418     SC_DLLPUBLIC ScStyleSheetPool*  GetStyleSheetPool() const;
1419 
1420     // PageStyle:
1421     SC_DLLPUBLIC const String&  GetPageStyle( SCTAB nTab ) const;
1422     SC_DLLPUBLIC void           SetPageStyle( SCTAB nTab, const String& rName );
1423     Size            GetPageSize( SCTAB nTab ) const;
1424     void            SetPageSize( SCTAB nTab, const Size& rSize );
1425     void            SetRepeatArea( SCTAB nTab, SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, SCROW nEndRow );
1426     void            InvalidatePageBreaks(SCTAB nTab);
1427     void            UpdatePageBreaks( SCTAB nTab, const ScRange* pUserArea = NULL );
1428     void            RemoveManualBreaks( SCTAB nTab );
1429     sal_Bool            HasManualBreaks( SCTAB nTab ) const;
1430 
1431     sal_Bool            IsPageStyleInUse( const String& rStrPageStyle, SCTAB* pInTab = NULL );
1432     sal_Bool            RemovePageStyleInUse( const String& rStrPageStyle );
1433     sal_Bool            RenamePageStyleInUse( const String& rOld, const String& rNew );
1434     void            ModifyStyleSheet( SfxStyleSheetBase& rPageStyle,
1435                                       const SfxItemSet&  rChanges );
1436 
1437     void            PageStyleModified( SCTAB nTab, const String& rNewName );
1438 
1439     SC_DLLPUBLIC sal_Bool           NeedPageResetAfterTab( SCTAB nTab ) const;
1440 
1441     // war vorher im PageStyle untergracht. Jetzt an jeder Tabelle:
1442     SC_DLLPUBLIC sal_Bool           HasPrintRange();
1443     SC_DLLPUBLIC sal_uInt16         GetPrintRangeCount( SCTAB nTab );
1444     SC_DLLPUBLIC const ScRange* GetPrintRange( SCTAB nTab, sal_uInt16 nPos );
1445     SC_DLLPUBLIC const ScRange* GetRepeatColRange( SCTAB nTab );
1446     SC_DLLPUBLIC const ScRange* GetRepeatRowRange( SCTAB nTab );
1447     /** Returns true, if the specified sheet is always printed. */
1448     sal_Bool            IsPrintEntireSheet( SCTAB nTab ) const;
1449 
1450     /** Removes all print ranges. */
1451     SC_DLLPUBLIC void            ClearPrintRanges( SCTAB nTab );
1452     /** Adds a new print ranges. */
1453     SC_DLLPUBLIC void            AddPrintRange( SCTAB nTab, const ScRange& rNew );
1454 //UNUSED2009-05 /** Removes all old print ranges and sets the passed print ranges. */
1455 //UNUSED2009-05 void            SetPrintRange( SCTAB nTab, const ScRange& rNew );
1456     /** Marks the specified sheet to be printed completely. Deletes old print ranges on the sheet! */
1457     SC_DLLPUBLIC void            SetPrintEntireSheet( SCTAB nTab );
1458     SC_DLLPUBLIC void           SetRepeatColRange( SCTAB nTab, const ScRange* pNew );
1459     SC_DLLPUBLIC void           SetRepeatRowRange( SCTAB nTab, const ScRange* pNew );
1460     ScPrintRangeSaver* CreatePrintRangeSaver() const;
1461     void            RestorePrintRanges( const ScPrintRangeSaver& rSaver );
1462 
1463     SC_DLLPUBLIC Rectangle      GetMMRect( SCCOL nStartCol, SCROW nStartRow,
1464                                 SCCOL nEndCol, SCROW nEndRow, SCTAB nTab );
1465     SC_DLLPUBLIC ScRange            GetRange( SCTAB nTab, const Rectangle& rMMRect );
1466 
1467     void            UpdStlShtPtrsFrmNms();
1468     void            StylesToNames();
1469 
1470     SC_DLLPUBLIC void           CopyStdStylesFrom( ScDocument* pSrcDoc );
1471 
1472     CharSet         GetSrcCharSet() const   { return eSrcSet; }
1473     sal_uLong           GetSrcVersion() const   { return nSrcVer; }
1474     SCROW           GetSrcMaxRow() const    { return nSrcMaxRow; }
1475 
1476     void            SetSrcCharSet( CharSet eNew )   { eSrcSet = eNew; }
1477     void            UpdateFontCharSet();
1478 
1479     void            FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2,
1480                         SCTAB nTab, double nScaleX, double nScaleY,
1481                         sal_Bool bPageMode, sal_Bool bFormulaMode,
1482                         const ScMarkData* pMarkData = NULL );
1483 
1484     SC_DLLPUBLIC SvNumberFormatter* GetFormatTable() const;
1485 
1486     void            Sort( SCTAB nTab, const ScSortParam& rSortParam, sal_Bool bKeepQuery );
1487     SCSIZE          Query( SCTAB nTab, const ScQueryParam& rQueryParam, sal_Bool bKeepSub );
1488     sal_Bool            ValidQuery( SCROW nRow, SCTAB nTab, const ScQueryParam& rQueryParam, sal_Bool* pSpecial = NULL );
1489     SC_DLLPUBLIC sal_Bool           CreateQueryParam( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1490                                         SCTAB nTab, ScQueryParam& rQueryParam );
1491     void            GetUpperCellString(SCCOL nCol, SCROW nRow, SCTAB nTab, String& rStr);
1492 
1493     sal_Bool            GetFilterEntries( SCCOL nCol, SCROW nRow, SCTAB nTab,
1494                                 bool bFilter, TypedScStrCollection& rStrings, bool& rHasDates);
1495     SC_DLLPUBLIC sal_Bool           GetFilterEntriesArea( SCCOL nCol, SCROW nStartRow, SCROW nEndRow,
1496                                 SCTAB nTab, TypedScStrCollection& rStrings, bool& rHasDates );
1497     sal_Bool            GetDataEntries( SCCOL nCol, SCROW nRow, SCTAB nTab,
1498                                 TypedScStrCollection& rStrings, sal_Bool bLimit = sal_False );
1499     sal_Bool            GetFormulaEntries( TypedScStrCollection& rStrings );
1500 
1501     sal_Bool            HasAutoFilter( SCCOL nCol, SCROW nRow, SCTAB nTab );
1502 
1503     SC_DLLPUBLIC sal_Bool           HasColHeader( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
1504                                     SCTAB nTab );
1505     SC_DLLPUBLIC sal_Bool           HasRowHeader( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
1506                                     SCTAB nTab );
1507 
1508     SfxPrinter*     GetPrinter( sal_Bool bCreateIfNotExist = sal_True );
1509     void            SetPrinter( SfxPrinter* pNewPrinter );
1510     VirtualDevice*  GetVirtualDevice_100th_mm();
1511     SC_DLLPUBLIC OutputDevice*  GetRefDevice(); // WYSIWYG: Printer, otherwise VirtualDevice...
1512 
1513     void            EraseNonUsedSharedNames(sal_uInt16 nLevel);
1514     sal_Bool            GetNextSpellingCell(SCCOL& nCol, SCROW& nRow, SCTAB nTab,
1515                                         sal_Bool bInSel, const ScMarkData& rMark) const;
1516 
1517     sal_Bool            ReplaceStyle(const SvxSearchItem& rSearchItem,
1518                                  SCCOL nCol, SCROW nRow, SCTAB nTab,
1519                                  ScMarkData& rMark, sal_Bool bIsUndo);
1520 
1521     void            DoColResize( SCTAB nTab, SCCOL nCol1, SCCOL nCol2, SCSIZE nAdd );
1522 
1523     void            InvalidateTextWidth( const String& rStyleName );
1524     void            InvalidateTextWidth( SCTAB nTab );
1525     void            InvalidateTextWidth( const ScAddress* pAdrFrom, const ScAddress* pAdrTo, sal_Bool bNumFormatChanged );
1526 
1527     sal_Bool            IdleCalcTextWidth();
1528     sal_Bool            IdleCheckLinks();
1529 
1530     sal_Bool            ContinueOnlineSpelling();   // sal_True = etwas gefunden
1531 
1532     void            RepaintRange( const ScRange& rRange );
1533 
1534     sal_Bool        IsIdleDisabled() const      { return bIdleDisabled; }
1535     void            DisableIdle(sal_Bool bDo)   { bIdleDisabled = bDo; }
1536 
1537     sal_Bool            IsDetectiveDirty() const     { return bDetectiveDirty; }
1538     void            SetDetectiveDirty(sal_Bool bSet) { bDetectiveDirty = bSet; }
1539 
1540     void            RemoveAutoSpellObj();
1541     void            SetOnlineSpellPos( const ScAddress& rPos );
1542     SC_DLLPUBLIC sal_Bool           SetVisibleSpellRange( const ScRange& rRange );  // sal_True = changed
1543 
1544     sal_uInt8           GetMacroCallMode() const     { return nMacroCallMode; }
1545     void            SetMacroCallMode(sal_uInt8 nNew)     { nMacroCallMode = nNew; }
1546 
1547     sal_Bool            GetHasMacroFunc() const      { return bHasMacroFunc; }
1548     void            SetHasMacroFunc(sal_Bool bSet)   { bHasMacroFunc = bSet; }
1549 
1550     sal_Bool            CheckMacroWarn();
1551 
1552     void            SetRangeOverflowType(sal_uInt32 nType)  { nRangeOverflowType = nType; }
1553     sal_Bool        HasRangeOverflow() const                { return nRangeOverflowType != 0; }
1554     SC_DLLPUBLIC sal_uInt32      GetRangeOverflowType() const            { return nRangeOverflowType; }
1555 
1556     // fuer Broadcasting/Listening
1557     void            SetNoSetDirty( sal_Bool bVal ) { bNoSetDirty = bVal; }
1558     sal_Bool            GetNoSetDirty() const { return bNoSetDirty; }
1559     void            SetInsertingFromOtherDoc( sal_Bool bVal ) { bInsertingFromOtherDoc = bVal; }
1560     sal_Bool            IsInsertingFromOtherDoc() const { return bInsertingFromOtherDoc; }
1561     void            SetLoadingMedium( bool bVal );
1562     void            SetImportingXML( bool bVal );
1563     bool            IsImportingXML() const { return bImportingXML; }
1564     void            SetXMLFromWrapper( sal_Bool bVal );
1565     sal_Bool            IsXMLFromWrapper() const { return bXMLFromWrapper; }
1566     void            SetCalcingAfterLoad( sal_Bool bVal ) { bCalcingAfterLoad = bVal; }
1567     sal_Bool            IsCalcingAfterLoad() const { return bCalcingAfterLoad; }
1568     void            SetNoListening( sal_Bool bVal ) { bNoListening = bVal; }
1569     sal_Bool            GetNoListening() const { return bNoListening; }
1570     ScBroadcastAreaSlotMachine* GetBASM() const { return pBASM; }
1571 
1572     ScChartListenerCollection* GetChartListenerCollection() const
1573                         { return pChartListenerCollection; }
1574     void            SetChartListenerCollection( ScChartListenerCollection*,
1575                         sal_Bool bSetChartRangeLists = sal_False );
1576     void            UpdateChart( const String& rName );
1577     void            RestoreChartListener( const String& rName );
1578     SC_DLLPUBLIC void           UpdateChartListenerCollection();
1579     sal_Bool            IsChartListenerCollectionNeedsUpdate() const
1580                         { return bChartListenerCollectionNeedsUpdate; }
1581     void            SetChartListenerCollectionNeedsUpdate( sal_Bool bFlg )
1582                         { bChartListenerCollectionNeedsUpdate = bFlg; }
1583     void            AddOLEObjectToCollection(const String& rName);
1584 
1585     ScChangeViewSettings* GetChangeViewSettings() const     { return pChangeViewSettings; }
1586     SC_DLLPUBLIC void               SetChangeViewSettings(const ScChangeViewSettings& rNew);
1587 
1588     vos::ORef<SvxForbiddenCharactersTable> GetForbiddenCharacters();
1589     void            SetForbiddenCharacters( const vos::ORef<SvxForbiddenCharactersTable> xNew );
1590 
1591     sal_uInt8           GetAsianCompression() const;        // CharacterCompressionType values
1592     sal_Bool            IsValidAsianCompression() const;
1593     void            SetAsianCompression(sal_uInt8 nNew);
1594 
1595     sal_Bool            GetAsianKerning() const;
1596     sal_Bool            IsValidAsianKerning() const;
1597     void            SetAsianKerning(sal_Bool bNew);
1598 
1599     void            ApplyAsianEditSettings(ScEditEngineDefaulter& rEngine);
1600 
1601     sal_uInt8           GetEditTextDirection(SCTAB nTab) const; // EEHorizontalTextDirection values
1602 
1603     SC_DLLPUBLIC ScLkUpdMode        GetLinkMode() const             { return eLinkMode ;}
1604     void            SetLinkMode( ScLkUpdMode nSet ) {   eLinkMode  = nSet;}
1605 
1606 
1607 private:
1608     ScDocument(const ScDocument& r); // disabled with no definition
1609 
1610     void                FindMaxRotCol( SCTAB nTab, RowInfo* pRowInfo, SCSIZE nArrCount,
1611                                         SCCOL nX1, SCCOL nX2 ) const;
1612 
1613     sal_uInt16              RowDifferences( SCROW nThisRow, SCTAB nThisTab,
1614                                         ScDocument& rOtherDoc,
1615                                         SCROW nOtherRow, SCTAB nOtherTab,
1616                                         SCCOL nMaxCol, SCCOLROW* pOtherCols );
1617     sal_uInt16              ColDifferences( SCCOL nThisCol, SCTAB nThisTab,
1618                                         ScDocument& rOtherDoc,
1619                                         SCCOL nOtherCol, SCTAB nOtherTab,
1620                                         SCROW nMaxRow, SCCOLROW* pOtherRows );
1621     void                FindOrder( SCCOLROW* pOtherRows, SCCOLROW nThisEndRow, SCCOLROW nOtherEndRow,
1622                                         sal_Bool bColumns,
1623                                         ScDocument& rOtherDoc, SCTAB nThisTab, SCTAB nOtherTab,
1624                                         SCCOLROW nEndCol, SCCOLROW* pTranslate,
1625                                         ScProgress* pProgress, sal_uLong nProAdd );
1626     sal_Bool                OnlineSpellInRange( const ScRange& rSpellRange, ScAddress& rSpellPos,
1627                                         sal_uInt16 nMaxTest );
1628 
1629     DECL_LINK( TrackTimeHdl, Timer* );
1630 
1631     static ScRecursionHelper*   CreateRecursionHelperInstance();
1632 
1633 public:
1634     void                StartListeningArea( const ScRange& rRange,
1635                                             SvtListener* pListener );
1636     void                EndListeningArea( const ScRange& rRange,
1637                                             SvtListener* pListener );
1638                         /** Broadcast wrapper, calls
1639     SC_DLLPUBLIC                         rHint.GetCell()->Broadcast() and AreaBroadcast()
1640                             and TrackFormulas() and conditional format list
1641                             SourceChanged().
1642                             Preferred.
1643                          */
1644     void                Broadcast( const ScHint& rHint );
1645                         /// deprecated
1646     void                Broadcast( sal_uLong nHint, const ScAddress& rAddr,
1647                                     ScBaseCell* pCell );
1648                         /// only area, no cell broadcast
1649     void                AreaBroadcast( const ScHint& rHint );
1650                         /// only areas in range, no cell broadcasts
1651     void                AreaBroadcastInRange( const ScRange& rRange,
1652                                               const ScHint& rHint );
1653     void                DelBroadcastAreasInRange( const ScRange& rRange );
1654     void                UpdateBroadcastAreas( UpdateRefMode eUpdateRefMode,
1655                                             const ScRange& rRange,
1656                                             SCsCOL nDx, SCsROW nDy, SCsTAB nDz );
1657 
1658 
1659     void                StartListeningCell( const ScAddress& rAddress,
1660                                             SvtListener* pListener );
1661     void                EndListeningCell( const ScAddress& rAddress,
1662                                             SvtListener* pListener );
1663     void                PutInFormulaTree( ScFormulaCell* pCell );
1664     void                RemoveFromFormulaTree( ScFormulaCell* pCell );
1665     void                CalcFormulaTree( sal_Bool bOnlyForced = sal_False,
1666                                         sal_Bool bNoProgressBar = sal_False );
1667     void                ClearFormulaTree();
1668     void                AppendToFormulaTrack( ScFormulaCell* pCell );
1669     void                RemoveFromFormulaTrack( ScFormulaCell* pCell );
1670     void                TrackFormulas( sal_uLong nHintId = SC_HINT_DATACHANGED );
1671     sal_uInt16              GetFormulaTrackCount() const { return nFormulaTrackCount; }
1672     sal_Bool                IsInFormulaTree( ScFormulaCell* pCell ) const;
1673     sal_Bool                IsInFormulaTrack( ScFormulaCell* pCell ) const;
1674     sal_uInt16              GetHardRecalcState() { return nHardRecalcState; }
1675     void                SetHardRecalcState( sal_uInt16 nVal ) { nHardRecalcState = nVal; }
1676     void                StartAllListeners();
1677     const ScFormulaCell*    GetFormulaTree() const { return pFormulaTree; }
1678     sal_Bool                HasForcedFormulas() const { return bHasForcedFormulas; }
1679     void                SetForcedFormulas( sal_Bool bVal ) { bHasForcedFormulas = bVal; }
1680     sal_uLong               GetFormulaCodeInTree() const { return nFormulaCodeInTree; }
1681     sal_Bool                IsInInterpreter() const { return nInterpretLevel != 0; }
1682     sal_uInt16              GetInterpretLevel() { return nInterpretLevel; }
1683     void                IncInterpretLevel()
1684                             {
1685                                 if ( nInterpretLevel < USHRT_MAX )
1686                                     nInterpretLevel++;
1687                             }
1688     void                DecInterpretLevel()
1689                             {
1690                                 if ( nInterpretLevel )
1691                                     nInterpretLevel--;
1692                             }
1693     sal_Bool                IsInMacroInterpreter() const { return nMacroInterpretLevel != 0; }
1694     sal_uInt16              GetMacroInterpretLevel() { return nMacroInterpretLevel; }
1695     void                IncMacroInterpretLevel()
1696                             {
1697                                 if ( nMacroInterpretLevel < USHRT_MAX )
1698                                     nMacroInterpretLevel++;
1699                             }
1700     void                DecMacroInterpretLevel()
1701                             {
1702                                 if ( nMacroInterpretLevel )
1703                                     nMacroInterpretLevel--;
1704                             }
1705     sal_Bool                IsInInterpreterTableOp() const { return nInterpreterTableOpLevel != 0; }
1706     sal_uInt16              GetInterpreterTableOpLevel() { return nInterpreterTableOpLevel; }
1707     void                IncInterpreterTableOpLevel()
1708                             {
1709                                 if ( nInterpreterTableOpLevel < USHRT_MAX )
1710                                     nInterpreterTableOpLevel++;
1711                             }
1712     void                DecInterpreterTableOpLevel()
1713                             {
1714                                 if ( nInterpreterTableOpLevel )
1715                                     nInterpreterTableOpLevel--;
1716                             }
1717                         // add a formula to be remembered for TableOp broadcasts
1718     void                AddTableOpFormulaCell( ScFormulaCell* );
1719     void                InvalidateLastTableOpParams() { aLastTableOpParams.bValid = sal_False; }
1720     ScRecursionHelper&  GetRecursionHelper()
1721                             {
1722                                 if (!pRecursionHelper)
1723                                     pRecursionHelper = CreateRecursionHelperInstance();
1724                                 return *pRecursionHelper;
1725                             }
1726     sal_Bool                IsInDtorClear() const { return bInDtorClear; }
1727     void                SetExpandRefs( sal_Bool bVal ) { bExpandRefs = bVal; }
1728     sal_Bool                IsExpandRefs() { return bExpandRefs; }
1729 
1730     SC_DLLPUBLIC void               IncSizeRecalcLevel( SCTAB nTab );
1731     SC_DLLPUBLIC void               DecSizeRecalcLevel( SCTAB nTab, bool bUpdateNoteCaptionPos = true );
1732 
1733     sal_uLong               GetXMLImportedFormulaCount() const { return nXMLImportedFormulaCount; }
1734     void                IncXMLImportedFormulaCount( sal_uLong nVal )
1735                             {
1736                                 if ( nXMLImportedFormulaCount + nVal > nXMLImportedFormulaCount )
1737                                     nXMLImportedFormulaCount += nVal;
1738                             }
1739     void                DecXMLImportedFormulaCount( sal_uLong nVal )
1740                             {
1741                                 if ( nVal <= nXMLImportedFormulaCount )
1742                                     nXMLImportedFormulaCount -= nVal;
1743                                 else
1744                                     nXMLImportedFormulaCount = 0;
1745                             }
1746 
1747     void                StartTrackTimer();
1748 
1749     void            CompileDBFormula();
1750     void            CompileDBFormula( sal_Bool bCreateFormulaString );
1751     void            CompileNameFormula( sal_Bool bCreateFormulaString );
1752     void            CompileColRowNameFormula();
1753 
1754     /** Maximum string length of a column, e.g. for dBase export.
1755         @return String length in octets (!) of the destination encoding. In
1756                 case of non-octet encodings (e.g. UCS2) the length in code
1757                 points times sizeof(sal_Unicode) is returned. */
1758     sal_Int32       GetMaxStringLen( SCTAB nTab, SCCOL nCol,
1759                                      SCROW nRowStart, SCROW nRowEnd,
1760                                      CharSet eCharSet ) const;
1761     /** Maximum string length of numerical cells of a column, e.g. for dBase export.
1762         @return String length in characters (!) including the decimal
1763                 separator, and the decimal precision needed. */
1764     xub_StrLen      GetMaxNumberStringLen( sal_uInt16& nPrecision,
1765                                            SCTAB nTab, SCCOL nCol,
1766                                            SCROW nRowStart, SCROW nRowEnd ) const;
1767 
1768     void    KeyInput( const KeyEvent& rKEvt );      // TimerDelays etc.
1769 
1770     ScChangeTrack*      GetChangeTrack() const { return pChangeTrack; }
1771 
1772     //! only for import filter, deletes any existing ChangeTrack via
1773     //! EndChangeTracking() and takes ownership of new ChangeTrack pTrack
1774     SC_DLLPUBLIC void           SetChangeTrack( ScChangeTrack* pTrack );
1775 
1776     void            StartChangeTracking();
1777     void            EndChangeTracking();
1778 
1779     SC_DLLPUBLIC void           CompareDocument( ScDocument& rOtherDoc );
1780 
1781     void            AddUnoObject( SfxListener& rObject );
1782     void            RemoveUnoObject( SfxListener& rObject );
1783     void            BroadcastUno( const SfxHint &rHint );
1784     void            AddUnoListenerCall( const ::com::sun::star::uno::Reference<
1785                                             ::com::sun::star::util::XModifyListener >& rListener,
1786                                         const ::com::sun::star::lang::EventObject& rEvent );
1787 
1788     void            SetInLinkUpdate(sal_Bool bSet);             // TableLink or AreaLink
1789     sal_Bool            IsInLinkUpdate() const;                 // including DdeLink
1790 
1791     SC_DLLPUBLIC SfxItemPool*       GetEditPool() const;
1792     SC_DLLPUBLIC SfxItemPool*       GetEnginePool() const;
1793     SC_DLLPUBLIC ScFieldEditEngine& GetEditEngine();
1794     SC_DLLPUBLIC ScNoteEditEngine&  GetNoteEngine();
1795 
1796     ScRefreshTimerControl*  GetRefreshTimerControl() const
1797         { return pRefreshTimerControl; }
1798     ScRefreshTimerControl * const * GetRefreshTimerControlAddress() const
1799         { return &pRefreshTimerControl; }
1800 
1801     void            SetPastingDrawFromOtherDoc( sal_Bool bVal )
1802                         { bPastingDrawFromOtherDoc = bVal; }
1803     sal_Bool            PastingDrawFromOtherDoc() const
1804                         { return bPastingDrawFromOtherDoc; }
1805 
1806                     /// an ID unique to each document instance
1807     sal_uInt32      GetDocumentID() const;
1808 
1809     void            InvalidateStyleSheetUsage()
1810                         { bStyleSheetUsageInvalid = sal_True; }
1811     void GetSortParam( ScSortParam& rParam, SCTAB nTab );
1812     void SetSortParam( ScSortParam& rParam, SCTAB nTab );
1813 
1814     inline void     SetVbaEventProcessor( const com::sun::star::uno::Reference< com::sun::star::script::vba::XVBAEventProcessor >& rxVbaEvents )
1815                         { mxVbaEvents = rxVbaEvents; }
1816     inline com::sun::star::uno::Reference< com::sun::star::script::vba::XVBAEventProcessor >
1817                     GetVbaEventProcessor() const { return mxVbaEvents; }
1818 
1819     /** Should only be GRAM_PODF or GRAM_ODFF. */
1820     void                SetStorageGrammar( formula::FormulaGrammar::Grammar eGrammar );
1821     formula::FormulaGrammar::Grammar  GetStorageGrammar() const
1822                             { return eStorageGrammar; }
1823 
1824     SfxUndoManager*     GetUndoManager();
1825     bool IsInVBAMode() const;
1826     ScRowBreakIterator* GetRowBreakIterator(SCTAB nTab) const;
1827 
1828 private: // CLOOK-Impl-Methoden
1829 
1830     /**
1831      * Use this class as a locale variable to merge number formatter from
1832      * another document, and set NULL pointer to pFormatExchangeList when
1833      * done.
1834      */
1835     class NumFmtMergeHandler
1836     {
1837     public:
1838         explicit NumFmtMergeHandler(ScDocument* pDoc, ScDocument* pSrcDoc);
1839         ~NumFmtMergeHandler();
1840 
1841     private:
1842         ScDocument* mpDoc;
1843     };
1844 
1845     void    MergeNumberFormatter(ScDocument* pSrcDoc);
1846 
1847     void    ImplCreateOptions(); // bei Gelegenheit auf on-demand umstellen?
1848     void    ImplDeleteOptions();
1849 
1850     void    DeleteDrawLayer();
1851     void    DeleteColorTable();
1852     SC_DLLPUBLIC sal_Bool   DrawGetPrintArea( ScRange& rRange, sal_Bool bSetHor, sal_Bool bSetVer ) const;
1853     void    DrawMovePage( sal_uInt16 nOldPos, sal_uInt16 nNewPos );
1854     void    DrawCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos );
1855 
1856     void    UpdateDrawPrinter();
1857     void    UpdateDrawLanguages();
1858     void    UpdateDrawDefaults();
1859     SC_DLLPUBLIC void   InitClipPtrs( ScDocument* pSourceDoc );
1860 
1861     void    LoadDdeLinks(SvStream& rStream);
1862     void    SaveDdeLinks(SvStream& rStream) const;
1863 
1864     void    DeleteAreaLinksOnTab( SCTAB nTab );
1865     void    UpdateRefAreaLinks( UpdateRefMode eUpdateRefMode,
1866                              const ScRange& r, SCsCOL nDx, SCsROW nDy, SCsTAB nDz );
1867 
1868     void    CopyRangeNamesToClip(ScDocument* pClipDoc, const ScRange& rClipRange, const ScMarkData* pMarks, bool bAllTabs);
1869     void    CopyRangeNamesFromClip(ScDocument* pClipDoc, ScClipRangeNameData& rRangeNames);
1870     void    UpdateRangeNamesInFormulas(
1871         ScClipRangeNameData& rRangeNames, const ScRangeList& rDestRanges, const ScMarkData& rMark,
1872         SCCOL nXw, SCROW nYw);
1873 
1874     sal_Bool    HasPartOfMerged( const ScRange& rRange );
1875 
1876     std::map< SCTAB, ScSortParam > mSheetSortParams;
1877 
1878 };
1879 inline void ScDocument::GetSortParam( ScSortParam& rParam, SCTAB nTab )
1880 {
1881     rParam = mSheetSortParams[ nTab ];
1882 }
1883 
1884 inline void ScDocument::SetSortParam( ScSortParam& rParam, SCTAB nTab )
1885 {
1886     mSheetSortParams[ nTab ] = rParam;
1887 }
1888 
1889 #endif
1890 
1891 
1892