2163 lines
95 KiB
C++
2163 lines
95 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*************************************************************************
|
|
*
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* This file is part of OpenOffice.org.
|
|
*
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
* only, as published by the Free Software Foundation.
|
|
*
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License version 3 for more details
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
#ifndef SW_DOC_HXX
|
|
#define SW_DOC_HXX
|
|
|
|
/** SwDoc interfaces */
|
|
|
|
#include <IInterface.hxx>
|
|
#include <IDocumentSettingAccess.hxx>
|
|
#include <IDocumentDeviceAccess.hxx>
|
|
#include <IDocumentMarkAccess.hxx>
|
|
#include <IDocumentRedlineAccess.hxx>
|
|
#include <IDocumentLinksAdministration.hxx>
|
|
#include <IDocumentFieldsAccess.hxx>
|
|
#include <IDocumentContentOperations.hxx>
|
|
#include <IDocumentStylePoolAccess.hxx>
|
|
#include <IDocumentLineNumberAccess.hxx>
|
|
#include <IDocumentStatistics.hxx>
|
|
#include <IDocumentState.hxx>
|
|
#include <IDocumentDrawModelAccess.hxx>
|
|
#include <IDocumentLayoutAccess.hxx>
|
|
#include <IDocumentTimerAccess.hxx>
|
|
#include <IDocumentChartDataProviderAccess.hxx>
|
|
#include <IDocumentOutlineNodes.hxx>
|
|
#include <IDocumentListItems.hxx>
|
|
|
|
#include <IDocumentListsAccess.hxx>
|
|
class SwList;
|
|
|
|
#include <IDocumentExternalData.hxx>
|
|
#include <com/sun/star/embed/XEmbeddedObject.hpp>
|
|
#include <com/sun/star/embed/XStorage.hpp>
|
|
#include <vcl/timer.hxx>
|
|
#include <sal/macros.h>
|
|
#include "swdllapi.h"
|
|
#include <swtypes.hxx>
|
|
#include <swatrset.hxx>
|
|
#include <toxe.hxx> // enums
|
|
#include <flyenum.hxx>
|
|
#include <itabenum.hxx>
|
|
#include <swdbdata.hxx>
|
|
#include <chcmprse.hxx>
|
|
#include <com/sun/star/linguistic2/XSpellChecker1.hpp>
|
|
#include <com/sun/star/linguistic2/XHyphenatedWord.hpp>
|
|
#include <rtl/ref.hxx>
|
|
#include <svx/svdtypes.hxx>
|
|
#include <sfx2/objsh.hxx>
|
|
#include <svl/style.hxx>
|
|
#include <editeng/numitem.hxx>
|
|
#include "comphelper/implementationreference.hxx"
|
|
#include <com/sun/star/chart2/data/XDataProvider.hpp>
|
|
#include <com/sun/star/linguistic2/XProofreadingIterator.hpp>
|
|
#include <com/sun/star/script/vba/XVBAEventProcessor.hpp>
|
|
|
|
#include <boost/unordered_map.hpp>
|
|
#include <stringhash.hxx>
|
|
|
|
#include <svtools/embedhlp.hxx>
|
|
#include <vector>
|
|
#include <set>
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
#include <boost/ptr_container/ptr_vector.hpp>
|
|
|
|
namespace editeng { class SvxBorderLine; }
|
|
|
|
class SvxForbiddenCharactersTable;
|
|
class SwExtTextInput;
|
|
class DateTime;
|
|
class EditFieldInfo;
|
|
class JobSetup;
|
|
class Color;
|
|
class KeyCode;
|
|
class Outliner;
|
|
class OutputDevice;
|
|
class Point;
|
|
class SbxArray;
|
|
class SdrModel;
|
|
class SdrObject;
|
|
class SdrUndoAction;
|
|
class VirtualDevice;
|
|
class SfxPrinter;
|
|
class SvNumberFormatter;
|
|
class SvxMacro;
|
|
class SvxMacroTableDtor;
|
|
class SwAutoCompleteWord;
|
|
class SwAutoCorrExceptWord;
|
|
class SwCalc;
|
|
class SwCellFrm;
|
|
class SwCharFmt;
|
|
class SwCharFmts;
|
|
class SwConditionTxtFmtColl;
|
|
class SwCrsrShell;
|
|
class SwCursor;
|
|
class SwDBNameInfField;
|
|
class SwDocShell;
|
|
class SwDocUpdtFld;
|
|
class SwDrawFrmFmt;
|
|
class SwDrawView;
|
|
class SwEditShell;
|
|
class SwFieldType;
|
|
class SwField;
|
|
class SwTxtFld;
|
|
class SwFldTypes;
|
|
class SwFlyFrmFmt;
|
|
class SwFmtsBase;
|
|
class SwFmt;
|
|
class SwFmtINetFmt;
|
|
class SwFmtRefMark;
|
|
class SwFrmFmt;
|
|
class SwFrmFmts;
|
|
class SwFtnIdxs;
|
|
class SwFtnInfo;
|
|
class SwEndNoteInfo;
|
|
class GraphicObject;
|
|
class SwGrfFmtColl;
|
|
class SwGrfFmtColls;
|
|
class SwLineNumberInfo;
|
|
class SwNewDBMgr;
|
|
class SwNoTxtNode;
|
|
class SwNodeIndex;
|
|
class SwNodeRange;
|
|
class SwNodes;
|
|
class SwNumRule;
|
|
class SwNumRuleTbl;
|
|
class SwPageDesc;
|
|
class SwPosFlyFrms;
|
|
class SwPagePreViewPrtData;
|
|
class SwRedline;
|
|
class SwRedlineTbl;
|
|
class SwRootFrm;
|
|
class SwRubyList;
|
|
class SwRubyListEntry;
|
|
class SwSectionFmt;
|
|
class SwSectionFmts;
|
|
class SwSectionData;
|
|
class SwSelBoxes;
|
|
class SwTOXBase;
|
|
class SwTOXBaseSection;
|
|
class SwTOXMark;
|
|
class SwTOXMarks;
|
|
class SwTOXType;
|
|
class SwTOXTypes;
|
|
class SwTabCols;
|
|
class SwTable;
|
|
class SwTableAutoFmt;
|
|
class SwTableBox;
|
|
class SwTableBoxFmt;
|
|
class SwTableFmt;
|
|
class SwTableLineFmt;
|
|
class SwTableNode;
|
|
class SwTextBlocks;
|
|
class SwTxtFmtColl;
|
|
class SwTxtFmtColls;
|
|
class SwURLStateChanged;
|
|
class SwUnoCrsr;
|
|
class SwUnoCrsrTbl;
|
|
class ViewShell;
|
|
class _SetGetExpFld;
|
|
class SwDrawContact;
|
|
class SwLayouter;
|
|
class SdrView;
|
|
class SdrMarkList;
|
|
class SwAuthEntry;
|
|
class SwLayoutCache;
|
|
class IStyleAccess;
|
|
struct SwCallMouseEvent;
|
|
struct SwDocStat;
|
|
struct SwHash;
|
|
struct SwSortOptions;
|
|
struct SwDefTOXBase_Impl;
|
|
class SwPrintData;
|
|
class SwPrintUIOptions;
|
|
class SdrPageView;
|
|
struct SwConversionArgs;
|
|
class SwRewriter;
|
|
class SwMsgPoolItem;
|
|
class SwChartDataProvider;
|
|
class SwChartLockController_Helper;
|
|
class IGrammarContact;
|
|
class SwPrintData;
|
|
class SwRenderData;
|
|
class SwPageFrm;
|
|
class SwViewOption;
|
|
class IDocumentUndoRedo;
|
|
|
|
namespace sw { namespace mark {
|
|
class MarkManager;
|
|
}}
|
|
namespace sw {
|
|
class MetaFieldManager;
|
|
class UndoManager;
|
|
class IShellCursorSupplier;
|
|
}
|
|
|
|
namespace com { namespace sun { namespace star {
|
|
namespace i18n {
|
|
struct ForbiddenCharacters; ///< comes from the I18N UNO interface
|
|
}
|
|
namespace uno {
|
|
template < class > class Sequence;
|
|
}
|
|
namespace container {
|
|
class XNameContainer; ///< for getXForms()/isXForms()/initXForms() methods
|
|
}
|
|
}}}
|
|
|
|
namespace sfx2 {
|
|
class SvLinkSource;
|
|
class IXmlIdRegistry;
|
|
class LinkManager;
|
|
}
|
|
|
|
/// PageDescriptor-interface, Array because of inlines.
|
|
class SwPageDescs : public std::vector<SwPageDesc*>
|
|
{
|
|
public:
|
|
/// the destructor will free all objects still in the vector
|
|
~SwPageDescs();
|
|
};
|
|
|
|
/// forward declaration
|
|
void SetAllScriptItem( SfxItemSet& rSet, const SfxPoolItem& rItem );
|
|
|
|
/// global function to start grammar checking in the document
|
|
void StartGrammarChecking( SwDoc &rDoc );
|
|
|
|
/// Represents the model of a Writer document.
|
|
class SW_DLLPUBLIC SwDoc :
|
|
public IInterface,
|
|
public IDocumentSettingAccess,
|
|
public IDocumentDeviceAccess,
|
|
public IDocumentRedlineAccess,
|
|
public IDocumentLinksAdministration,
|
|
public IDocumentFieldsAccess,
|
|
public IDocumentContentOperations,
|
|
public IDocumentStylePoolAccess,
|
|
public IDocumentLineNumberAccess,
|
|
public IDocumentStatistics,
|
|
public IDocumentState,
|
|
public IDocumentDrawModelAccess,
|
|
public IDocumentLayoutAccess,
|
|
public IDocumentTimerAccess,
|
|
public IDocumentChartDataProviderAccess,
|
|
public IDocumentListItems,
|
|
public IDocumentOutlineNodes,
|
|
public IDocumentListsAccess,
|
|
public IDocumentExternalData
|
|
{
|
|
|
|
friend void _InitCore();
|
|
friend void _FinitCore();
|
|
|
|
//---------------- private Member --------------------------------
|
|
|
|
// -------------------------------------------------------------------
|
|
::boost::scoped_ptr<SwNodes> m_pNodes; ///< document content (Nodes Array)
|
|
SwAttrPool* mpAttrPool; ///< the attribute pool
|
|
SwPageDescs aPageDescs; ///< PageDescriptors
|
|
Link aOle2Link; ///< OLE 2.0-notification
|
|
/* @@@MAINTAINABILITY-HORROR@@@
|
|
Timer should not be members of the model
|
|
*/
|
|
Timer aIdleTimer; ///< Own IdleTimer
|
|
Timer aOLEModifiedTimer; ///< Timer for update modified OLE-Objecs
|
|
SwDBData aDBData; ///< database descriptor
|
|
::com::sun::star::uno::Sequence <sal_Int8 > aRedlinePasswd;
|
|
String sTOIAutoMarkURL; ///< ::com::sun::star::util::URL of table of index AutoMark file
|
|
boost::ptr_vector< boost::nullable<String> > aPatternNms; // Array for names of document-templates
|
|
com::sun::star::uno::Reference<com::sun::star::container::XNameContainer>
|
|
xXForms; ///< container with XForms models
|
|
mutable com::sun::star::uno::Reference< com::sun::star::linguistic2::XProofreadingIterator > m_xGCIterator;
|
|
|
|
const ::boost::scoped_ptr< ::sw::mark::MarkManager> pMarkManager;
|
|
const ::boost::scoped_ptr< ::sw::MetaFieldManager > m_pMetaFieldManager;
|
|
const ::boost::scoped_ptr< ::sw::UndoManager > m_pUndoManager;
|
|
|
|
// -------------------------------------------------------------------
|
|
// Pointer
|
|
|
|
SwFrmFmt *pDfltFrmFmt; ///< Default formats.
|
|
SwFrmFmt *pEmptyPageFmt; ///< Format for the default empty page
|
|
SwFrmFmt *pColumnContFmt; ///< Format for column container
|
|
SwCharFmt *pDfltCharFmt;
|
|
SwTxtFmtColl *pDfltTxtFmtColl; ///< Defaultformatcollections
|
|
SwGrfFmtColl *pDfltGrfFmtColl;
|
|
|
|
SwFrmFmts *pFrmFmtTbl; ///< Format table
|
|
SwCharFmts *pCharFmtTbl;
|
|
SwFrmFmts *pSpzFrmFmtTbl;
|
|
SwSectionFmts *pSectionFmtTbl;
|
|
SwFrmFmts *pTblFrmFmtTbl; ///< For tables
|
|
SwTxtFmtColls *pTxtFmtCollTbl; ///< FormatCollections
|
|
SwGrfFmtColls *pGrfFmtCollTbl;
|
|
|
|
SwTOXTypes *pTOXTypes; ///< Tables/indices
|
|
SwDefTOXBase_Impl * pDefTOXBases; ///< defaults of SwTOXBase's
|
|
|
|
ViewShell *pCurrentView; ///< SwDoc should get a new member pCurrentView//swmod 071225
|
|
SdrModel *pDrawModel; ///< StarView Drawing
|
|
|
|
SwDocUpdtFld *pUpdtFlds; ///< Struct for updating fields
|
|
SwFldTypes *pFldTypes;
|
|
SwNewDBMgr *pNewDBMgr; /**< Pointer to the new DBMgr for
|
|
evaluation of DB-fields. */
|
|
|
|
VirtualDevice *pVirDev; ///< can be used for formatting
|
|
SfxPrinter *pPrt; ///< can be used for formatting
|
|
SwPrintData *pPrtData; ///< Print configuration
|
|
|
|
SwDoc *pGlossaryDoc; ///< Pointer to glossary-document.
|
|
|
|
SwNumRule *pOutlineRule;
|
|
SwFtnInfo *pFtnInfo;
|
|
SwEndNoteInfo *pEndNoteInfo;
|
|
SwLineNumberInfo*pLineNumberInfo;
|
|
SwFtnIdxs *pFtnIdxs;
|
|
SwDocStat *pDocStat; ///< Statistics information.
|
|
|
|
SwDocShell *pDocShell; ///< Ptr to SfxDocShell of Doc.
|
|
SfxObjectShellLock xTmpDocShell; ///< A temporary shell that is used to copy OLE-Nodes
|
|
|
|
|
|
sfx2::LinkManager *pLinkMgr; ///< List of linked stuff (graphics/DDE/OLE).
|
|
|
|
SwAutoCorrExceptWord *pACEWord; /**< For the automated takeover of
|
|
auto-corrected words that are "re-corrected". */
|
|
SwURLStateChanged *pURLStateChgd; ///< SfxClient for changes in INetHistory
|
|
SvNumberFormatter *pNumberFormatter;///< NumFormatter for tables / fields
|
|
|
|
mutable SwNumRuleTbl *pNumRuleTbl; ///< List of all named NumRules.
|
|
|
|
/// Hash map to find numrules by name
|
|
mutable boost::unordered_map<String, SwNumRule *, StringHash> maNumRuleMap;
|
|
|
|
typedef boost::unordered_map< String, SwList*, StringHash > tHashMapForLists;
|
|
/// container to hold the lists of the text document
|
|
tHashMapForLists maLists;
|
|
/// relation between list style and its default list
|
|
tHashMapForLists maListStyleLists;
|
|
|
|
SwRedlineTbl *pRedlineTbl; ///< List of all Redlines.
|
|
String *pAutoFmtRedlnComment; ///< Comment for Redlines inserted via AutoFormat.
|
|
|
|
SwUnoCrsrTbl *pUnoCrsrTbl;
|
|
|
|
SwPagePreViewPrtData *pPgPViewPrtData; ///< Indenting / spacing for printing of page view.
|
|
SwPaM *pExtInputRing;
|
|
|
|
SwLayouter *pLayouter; /**< ::com::sun::star::frame::Controller for complex layout formatting
|
|
like footnote/endnote in sections */
|
|
IStyleAccess *pStyleAccess; ///< handling of automatic styles
|
|
SwLayoutCache *pLayoutCache; /**< Layout cache to read and save with the
|
|
document for a faster formatting */
|
|
|
|
SwModify *pUnoCallBack;
|
|
IGrammarContact *mpGrammarContact; ///< for grammar checking in paragraphs during editing
|
|
|
|
mutable comphelper::ImplementationReference< SwChartDataProvider
|
|
, ::com::sun::star::chart2::data::XDataProvider >
|
|
aChartDataProviderImplRef;
|
|
SwChartLockController_Helper *pChartControllerHelper;
|
|
|
|
/// table of forbidden characters of this document
|
|
rtl::Reference<SvxForbiddenCharactersTable> xForbiddenCharsTable;
|
|
com::sun::star::uno::Reference< com::sun::star::script::vba::XVBAEventProcessor > mxVbaEvents;
|
|
com::sun::star::uno::Reference<com::sun::star::container::XNameContainer> m_xTemplateToProjectCache;
|
|
public:
|
|
struct lessThanNodeNum
|
|
{
|
|
bool operator()( const SwNodeNum* pNodeNumOne,
|
|
const SwNodeNum* pNodeNumTwo ) const;
|
|
};
|
|
|
|
typedef ::std::set< const SwNodeNum*, lessThanNodeNum > tImplSortedNodeNumList;
|
|
private:
|
|
tImplSortedNodeNumList* mpListItemsList;
|
|
|
|
::std::auto_ptr< ::sfx2::IXmlIdRegistry > m_pXmlIdRegistry;
|
|
|
|
// -------------------------------------------------------------------
|
|
// other
|
|
|
|
sal_uInt16 nUndoCnt; ///< Count of Undo Actions.
|
|
sal_uInt16 nUndoSttEnd; ///< != 0 -> within parentheses.
|
|
|
|
sal_uInt16 nAutoFmtRedlnCommentNo; /**< SeqNo for conjoining of AutoFmt-Redlines.
|
|
by the UI. Managed by SwAutoFmt! */
|
|
|
|
sal_uInt16 nLinkUpdMode; ///< UpdateMode for links.
|
|
SwFldUpdateFlags eFldUpdMode;///< Automatically Update Mode for fields/charts.
|
|
RedlineMode_t eRedlineMode; ///< Current Redline Mode.
|
|
SwCharCompressType eChrCmprType;///< for ASIAN: compress punctuation/kana
|
|
|
|
sal_uInt32 nRsid; ///< current session ID of the document
|
|
sal_uInt32 nRsidRoot; ///< session ID when the document was created
|
|
|
|
sal_Int32 mReferenceCount;
|
|
sal_Int32 mIdleBlockCount;
|
|
sal_Int8 nLockExpFld; ///< If != 0 UpdateExpFlds() has no effect!
|
|
|
|
/** Draw Model Layer IDs
|
|
* LayerIds, Heaven == above document
|
|
* Hell == below document
|
|
* Controls == at the very top
|
|
*/
|
|
SdrLayerID nHeaven;
|
|
SdrLayerID nHell;
|
|
SdrLayerID nControls;
|
|
SdrLayerID nInvisibleHeaven;
|
|
SdrLayerID nInvisibleHell;
|
|
SdrLayerID nInvisibleControls;
|
|
|
|
bool mbGlossDoc : 1; ///< TRUE: glossary document.
|
|
bool mbModified : 1; ///< TRUE: document has changed.
|
|
bool mbDtor : 1; /**< TRUE: is in SwDoc DTOR.
|
|
and unfortunately temorarily also in
|
|
SwSwgReader::InLayout() when flawed
|
|
frames need deletion. */
|
|
bool mbPageNums : 1; ///< TRUE: There are virtual page numbers.
|
|
bool mbLoaded : 1; ///< TRUE: Doc loaded.
|
|
bool mbUpdateExpFld : 1; ///< TRUE: Update expression fields.
|
|
bool mbNewDoc : 1; ///< TRUE: new Doc.
|
|
bool mbNewFldLst : 1; ///< TRUE: Rebuild field-list.
|
|
bool mbCopyIsMove : 1; ///< TRUE: Copy is a hidden Move.
|
|
bool mbVisibleLinks : 1; ///< TRUE: Links are inserted visibly.
|
|
bool mbInReading : 1; ///< TRUE: Document is in the process of being read.
|
|
bool mbInXMLImport : 1; ///< TRUE: During xml import, attribute portion building is not necessary.
|
|
bool mbUpdateTOX : 1; ///< TRUE: After loading document, update TOX.
|
|
bool mbInLoadAsynchron : 1; ///< TRUE: Document is in the process of being loaded asynchronously.
|
|
bool mbHTMLMode : 1; ///< TRUE: Document is in HTMLMode.
|
|
bool mbInCallModified : 1; ///< TRUE: in Set/Reset-Modified link.
|
|
bool mbIsGlobalDoc : 1; ///< TRUE: It's a global document.
|
|
bool mbGlblDocSaveLinks : 1; ///< TRUE: Save sections linked in global document.
|
|
bool mbIsLabelDoc : 1; ///< TRUE: It's a label document.
|
|
bool mbIsAutoFmtRedline : 1; ///< TRUE: Redlines are recorded by Autoformat.
|
|
bool mbOLEPrtNotifyPending : 1; /**< TRUE: Printer has changed. At creation of
|
|
::com::sun::star::sdbcx::View
|
|
notification of OLE-Objects PrtOLENotify() is required. */
|
|
bool mbAllOLENotify : 1; ///< True: Notification of all objects is required.
|
|
bool mbIsRedlineMove : 1; ///< True: Redlines are moved into to / out of the section.
|
|
bool mbInsOnlyTxtGlssry : 1; ///< True: insert 'only text' glossary into doc
|
|
bool mbContains_MSVBasic : 1; ///< True: MS-VBasic exist is in our storage
|
|
bool mbPurgeOLE : 1; ///< sal_True: Purge OLE-Objects
|
|
bool mbKernAsianPunctuation : 1; ///< sal_True: kerning also for ASIAN punctuation
|
|
bool mbReadlineChecked : 1; ///< sal_True: if the query was already shown
|
|
bool mbLinksUpdated : 1; /**< #i38810#
|
|
flag indicating, that the links have been updated. */
|
|
bool mbClipBoard : 1; ///< TRUE: this document represents the clipboard
|
|
bool mbColumnSelection : 1; /**< TRUE: this content has bee created by a column selection
|
|
(clipboard docs only) */
|
|
|
|
#ifdef DBG_UTIL
|
|
bool mbXMLExport : 1; ///< sal_True: during XML export
|
|
#endif
|
|
|
|
// Document flag to trigger conversion, which applys the workaround for documents,
|
|
// which uses a certain layout defect in OOo 1.x to layout the documents.
|
|
// This conversion is performed, when the frames for the layout are created.
|
|
// Thus, this document flag has to be set after load a document and before
|
|
// creating the document view.
|
|
bool mbApplyWorkaroundForB6375613 : 1;
|
|
|
|
//
|
|
// COMPATIBILITY FLAGS START
|
|
//
|
|
//
|
|
// HISTORY OF THE COMPATIBILITY FLAGS:
|
|
//
|
|
// SO5:
|
|
// mbParaSpaceMax def = sal_False, sal_True since SO8
|
|
// mbParaSpaceMaxAtPages def = sal_False, sal_True since SO8
|
|
//
|
|
// SO6:
|
|
// mbTabCompat def = sal_False, sal_True since SO8
|
|
//
|
|
// SO7:
|
|
// mbUseVirtualDevice def = sal_True
|
|
// mbAddFlyOffsets def = sal_False, hidden
|
|
//
|
|
// SO7pp1:
|
|
// bOldNumbering def = sal_False, hidden
|
|
//
|
|
// SO8:
|
|
// mbAddExternalLeading def = sal_True
|
|
// mbUseHiResolutionVirtualDevice def = sal_True, hidden
|
|
// mbOldLineSpacing def = sal_False
|
|
// mbAddParaSpacingToTableCells def = sal_True
|
|
// mbUseFormerObjectPos def = sal_False
|
|
// mbUseFormerTextWrapping def = sal_False
|
|
// mbConsiderWrapOnObjPos def = sal_False
|
|
//
|
|
// SO8pp1:
|
|
// mbIgnoreFirstLineIndentInNumbering def = sal_False, hidden
|
|
// mbDoNotJustifyLinesWithManualBreak def = sal_False, hidden
|
|
// mbDoNotResetParaAttrsForNumFont def = sal_False, hidden
|
|
//
|
|
// SO8pp3
|
|
// mbDoNotCaptureDrawObjsOnPage def = sal_False, hidden
|
|
// - Relevant for drawing objects, which don't follow the text flow, but
|
|
// whose position is outside the page area:
|
|
// sal_False: Such drawing objects are captured on the page area of its anchor.
|
|
// sal_True: Such drawing objects can leave the page area, they aren't captured.
|
|
// mbTableRowKeep def = sal_False, hidden
|
|
// mbIgnoreTabsAndBlanksForLineCalculation def = sal_False, hidden
|
|
// mbClipAsCharacterAnchoredWriterFlyFrame def = sal_False, hidden
|
|
// - Introduced in order to re-activate clipping of as-character anchored
|
|
// Writer fly frames in method <SwFlyInCntFrm::MakeAll()> for documents,
|
|
// which are created with version prior SO8/OOo 2.0
|
|
//
|
|
// SO8pp4
|
|
// mbUnixForceZeroExtLeading def = sal_False, hidden
|
|
//
|
|
// SO8pu8
|
|
// mbOldPrinterMetrics def = sal_False, hidden
|
|
//
|
|
// SO9
|
|
// #i24363# tab stops relative to indent
|
|
// mbTabRelativeToIndent def = sal_True, hidden
|
|
// #i89181# suppress tab stop at left indent for paragraphs in lists, whose
|
|
// list level position and space mode equals LABEL_ALIGNMENT and whose list
|
|
// label is followed by a tab character.
|
|
// mbTabAtLeftIndentForParagraphsInList def = sal_False, hidden
|
|
|
|
bool mbParaSpaceMax : 1;
|
|
bool mbParaSpaceMaxAtPages : 1;
|
|
bool mbTabCompat : 1;
|
|
bool mbUseVirtualDevice : 1;
|
|
bool mbAddFlyOffsets : 1;
|
|
bool mbAddExternalLeading : 1;
|
|
bool mbUseHiResolutionVirtualDevice : 1;
|
|
bool mbOldLineSpacing : 1; // #i11859#
|
|
bool mbAddParaSpacingToTableCells : 1;
|
|
bool mbUseFormerObjectPos : 1; // #i11860#
|
|
bool mbUseFormerTextWrapping : 1;
|
|
bool mbConsiderWrapOnObjPos : 1; // #i28701#
|
|
// sal_True: object positioning algorithm has consider the wrapping style of // the floating screen objects as given by its attribute 'WrapInfluenceOnObjPos'
|
|
// floating screen objects as given by its
|
|
// attribute 'WrapInfluenceOnObjPos'.
|
|
bool mbMathBaselineAlignment : 1; // TL 2010-10-29 #i972#
|
|
bool mbStylesNoDefault : 1;
|
|
bool mbFloattableNomargins : 1; ///< If paragraph margins next to a floating table should be ignored.
|
|
bool mEmbedFonts : 1; ///< Whether to embed fonts used by the document when saving.
|
|
bool mEmbedSystemFonts : 1; ///< Whether to embed also system fonts.
|
|
|
|
// non-ui-compatibility flags:
|
|
bool mbOldNumbering : 1;
|
|
bool mbIgnoreFirstLineIndentInNumbering : 1; // #i47448#
|
|
bool mbDoNotJustifyLinesWithManualBreak : 1; // #i49277#
|
|
bool mbDoNotResetParaAttrsForNumFont : 1; // #i53199#
|
|
bool mbTableRowKeep : 1;
|
|
bool mbIgnoreTabsAndBlanksForLineCalculation : 1; // #i3952#
|
|
bool mbDoNotCaptureDrawObjsOnPage : 1; // #i62875#
|
|
bool mbOutlineLevelYieldsOutlineRule : 1;
|
|
bool mbClipAsCharacterAnchoredWriterFlyFrames : 1;
|
|
bool mbUnixForceZeroExtLeading : 1; // #i60945#
|
|
bool mbOldPrinterMetrics : 1;
|
|
bool mbTabRelativeToIndent : 1; // #i24363# tab stops relative to indent
|
|
bool mbProtectForm : 1;
|
|
bool mbInvertBorderSpacing : 1;
|
|
bool mbCollapseEmptyCellPara : 1;
|
|
bool mbTabAtLeftIndentForParagraphsInList; // #i89181# - see above
|
|
bool mbSmallCapsPercentage66;
|
|
bool mbTabOverflow;
|
|
bool mbUnbreakableNumberings;
|
|
bool mbClippedPictures;
|
|
bool mbBackgroundParaOverDrawings;
|
|
|
|
bool mbLastBrowseMode : 1;
|
|
|
|
sal_uInt32 n32DummyCompatabilityOptions1;
|
|
sal_uInt32 n32DummyCompatabilityOptions2;
|
|
//
|
|
// COMPATIBILITY FLAGS END
|
|
//
|
|
|
|
sal_Bool mbStartIdleTimer; ///< idle timer mode start/stop
|
|
|
|
bool mbSetDrawDefaults; ///< set draw pool defaults for freshly created documents
|
|
|
|
static SwAutoCompleteWord *pACmpltWords; ///< List of all words for AutoComplete
|
|
|
|
//---------------- private methods ------------------------------
|
|
void checkRedlining(RedlineMode_t& _rReadlineMode);
|
|
|
|
|
|
DECL_LINK( AddDrawUndo, SdrUndoAction * );
|
|
// DrawModel
|
|
void DrawNotifyUndoHdl(); // Because of CLOOKs
|
|
|
|
/** Only for internal use and therefore private.
|
|
Copy a range within the same or to another document.
|
|
Position may not lie within range! */
|
|
bool CopyImpl( SwPaM&, SwPosition&, const bool MakeNewFrms /*= true */,
|
|
const bool bCopyAll, SwPaM *const pCpyRng /*= 0*/ ) const;
|
|
|
|
SwFlyFrmFmt* _MakeFlySection( const SwPosition& rAnchPos,
|
|
const SwCntntNode& rNode, RndStdIds eRequestId,
|
|
const SfxItemSet* pFlyAttrSet,
|
|
SwFrmFmt* = 0 );
|
|
|
|
SwFlyFrmFmt* _InsNoTxtNode( const SwPosition&rPos, SwNoTxtNode*,
|
|
const SfxItemSet* pFlyAttrSet,
|
|
const SfxItemSet* pGrfAttrSet,
|
|
SwFrmFmt* = 0 );
|
|
|
|
void CopyFlyInFlyImpl( const SwNodeRange& rRg,
|
|
const xub_StrLen nEndContentIndex,
|
|
const SwNodeIndex& rStartIdx,
|
|
const bool bCopyFlyAtFly = false ) const;
|
|
sal_Int8 SetFlyFrmAnchor( SwFrmFmt& rFlyFmt, SfxItemSet& rSet, bool bNewFrms );
|
|
|
|
typedef SwFmt* (SwDoc:: *FNCopyFmt)( const String&, SwFmt*, bool, bool );
|
|
SwFmt* CopyFmt( const SwFmt& rFmt, const SwFmtsBase& rFmtArr,
|
|
FNCopyFmt fnCopyFmt, const SwFmt& rDfltFmt );
|
|
void CopyFmtArr( const SwFmtsBase& rSourceArr, SwFmtsBase& rDestArr,
|
|
FNCopyFmt fnCopyFmt, SwFmt& rDfltFmt );
|
|
void CopyPageDescHeaderFooterImpl( bool bCpyHeader,
|
|
const SwFrmFmt& rSrcFmt, SwFrmFmt& rDestFmt );
|
|
SwFmt* FindFmtByName( const SwFmtsBase& rFmtArr,
|
|
const String& rName ) const;
|
|
|
|
VirtualDevice& CreateVirtualDevice_() const;
|
|
SfxPrinter& CreatePrinter_() const;
|
|
void PrtDataChanged(); /**< Printer or JobSetup altered.
|
|
Care has to be taken of the necessary
|
|
invalidations and notifications. */
|
|
|
|
/// gcc: aFtnInfo::CopyCtor is private, therefore we too have to protect ourselves.
|
|
SwDoc( const SwDoc &);
|
|
|
|
// For fields:
|
|
void _InitFieldTypes(); ///< Called by CTOR!!
|
|
void _MakeFldList( int eMode );
|
|
|
|
/// Database fields:
|
|
void UpdateDBNumFlds( SwDBNameInfField& rDBFld, SwCalc& rCalc );
|
|
void AddUsedDBToList( std::vector<String>& rDBNameList,
|
|
const std::vector<String>& rUsedDBNames );
|
|
void AddUsedDBToList( std::vector<String>& rDBNameList, const String& rDBName );
|
|
bool IsNameInArray( const std::vector<String>& rOldNames, const String& rName );
|
|
void GetAllDBNames( std::vector<String>& rAllDBNames );
|
|
void ReplaceUsedDBs( const std::vector<String>& rUsedDBNames,
|
|
const String& rNewName, String& rFormel );
|
|
std::vector<String>& FindUsedDBs( const std::vector<String>& rAllDBNames,
|
|
const String& rFormel,
|
|
std::vector<String>& rUsedDBNames );
|
|
|
|
void InitDrawModel();
|
|
void ReleaseDrawModel();
|
|
|
|
void _CreateNumberFormatter();
|
|
|
|
sal_Bool _UnProtectTblCells( SwTable& rTbl );
|
|
|
|
/** Create sub-documents according to the given collection.
|
|
If no collection is given, take chapter style of the 1st level. */
|
|
bool SplitDoc( sal_uInt16 eDocType, const String& rPath, bool bOutline,
|
|
const SwTxtFmtColl* pSplitColl, int nOutlineLevel = 0 );
|
|
|
|
/// Update charts of given table.
|
|
void _UpdateCharts( const SwTable& rTbl, ViewShell& rVSh ) const;
|
|
|
|
sal_Bool _SelectNextRubyChars( SwPaM& rPam, SwRubyListEntry& rRubyEntry,
|
|
sal_uInt16 nMode );
|
|
|
|
/// Our own 'IdleTimer' calls the following method
|
|
DECL_LINK( DoIdleJobs, Timer * );
|
|
/// CharTimer calls this method.
|
|
void DoUpdateAllCharts();
|
|
DECL_LINK( DoUpdateModifiedOLE, Timer * );
|
|
|
|
SwFmt *_MakeCharFmt(const String &, SwFmt *, bool, bool );
|
|
SwFmt *_MakeFrmFmt(const String &, SwFmt *, bool, bool );
|
|
SwFmt *_MakeTxtFmtColl(const String &, SwFmt *, bool, bool );
|
|
|
|
void InitTOXTypes();
|
|
void Paste( const SwDoc& );
|
|
bool DeleteAndJoinImpl(SwPaM&, const bool);
|
|
bool DeleteAndJoinWithRedlineImpl(SwPaM&, const bool unused = false);
|
|
bool DeleteRangeImpl(SwPaM&, const bool unused = false);
|
|
bool DeleteRangeImplImpl(SwPaM &);
|
|
bool ReplaceRangeImpl(SwPaM&, String const&, const bool);
|
|
|
|
public:
|
|
|
|
/** Life cycle
|
|
*/
|
|
SwDoc();
|
|
~SwDoc();
|
|
|
|
inline bool IsInDtor() const { return mbDtor; }
|
|
|
|
/* @@@MAINTAINABILITY-HORROR@@@
|
|
Implementation details made public.
|
|
*/
|
|
SwNodes & GetNodes() { return *m_pNodes; }
|
|
SwNodes const& GetNodes() const { return *m_pNodes; }
|
|
|
|
/** IInterface
|
|
*/
|
|
virtual sal_Int32 acquire();
|
|
virtual sal_Int32 release();
|
|
virtual sal_Int32 getReferenceCount() const;
|
|
|
|
/** IDocumentSettingAccess
|
|
*/
|
|
virtual bool get(/*[in]*/ DocumentSettingId id) const;
|
|
virtual void set(/*[in]*/ DocumentSettingId id, /*[in]*/ bool value);
|
|
virtual const com::sun::star::i18n::ForbiddenCharacters* getForbiddenCharacters(/*[in]*/ sal_uInt16 nLang, /*[in]*/ bool bLocaleData ) const;
|
|
virtual void setForbiddenCharacters(/*[in]*/ sal_uInt16 nLang, /*[in]*/ const com::sun::star::i18n::ForbiddenCharacters& rForbiddenCharacters );
|
|
virtual rtl::Reference<SvxForbiddenCharactersTable>& getForbiddenCharacterTable();
|
|
virtual const rtl::Reference<SvxForbiddenCharactersTable>& getForbiddenCharacterTable() const;
|
|
virtual sal_uInt16 getLinkUpdateMode( /*[in]*/bool bGlobalSettings ) const;
|
|
virtual void setLinkUpdateMode( /*[in]*/ sal_uInt16 nMode );
|
|
virtual SwFldUpdateFlags getFieldUpdateFlags( /*[in]*/bool bGlobalSettings ) const;
|
|
virtual void setFieldUpdateFlags( /*[in]*/ SwFldUpdateFlags eMode );
|
|
virtual SwCharCompressType getCharacterCompressionType() const;
|
|
virtual void setCharacterCompressionType( /*[in]*/SwCharCompressType nType );
|
|
virtual sal_uInt32 getRsid() const;
|
|
virtual void setRsid( sal_uInt32 nVal );
|
|
virtual sal_uInt32 getRsidRoot() const;
|
|
virtual void setRsidRoot( sal_uInt32 nVal );
|
|
|
|
/** IDocumentDeviceAccess
|
|
*/
|
|
virtual SfxPrinter* getPrinter(/*[in]*/ bool bCreate ) const;
|
|
virtual void setPrinter(/*[in]*/ SfxPrinter* pP,/*[in]*/ bool bDeleteOld,/*[in]*/ bool bCallPrtDataChanged );
|
|
virtual VirtualDevice* getVirtualDevice(/*[in]*/ bool bCreate ) const;
|
|
virtual void setVirtualDevice(/*[in]*/ VirtualDevice* pVd,/*[in]*/ bool bDeleteOld, /*[in]*/ bool bCallVirDevDataChanged );
|
|
virtual OutputDevice* getReferenceDevice(/*[in]*/ bool bCreate ) const;
|
|
virtual void setReferenceDeviceType(/*[in]*/ bool bNewVirtual,/*[in]*/ bool bNewHiRes );
|
|
virtual const JobSetup* getJobsetup() const;
|
|
virtual void setJobsetup(/*[in]*/ const JobSetup& rJobSetup );
|
|
virtual const SwPrintData & getPrintData() const;
|
|
virtual void setPrintData(/*[in]*/ const SwPrintData& rPrtData);
|
|
|
|
/** IDocumentMarkAccess
|
|
*/
|
|
IDocumentMarkAccess* getIDocumentMarkAccess();
|
|
const IDocumentMarkAccess* getIDocumentMarkAccess() const;
|
|
|
|
/** IDocumentRedlineAccess
|
|
*/
|
|
virtual RedlineMode_t GetRedlineMode() const;
|
|
virtual void SetRedlineMode_intern(/*[in]*/RedlineMode_t eMode);
|
|
virtual void SetRedlineMode(/*[in]*/RedlineMode_t eMode);
|
|
virtual bool IsRedlineOn() const;
|
|
virtual bool IsIgnoreRedline() const;
|
|
virtual bool IsInRedlines(const SwNode& rNode) const;
|
|
virtual const SwRedlineTbl& GetRedlineTbl() const;
|
|
virtual bool AppendRedline(/*[in]*/SwRedline* pPtr, /*[in]*/bool bCallDelete);
|
|
virtual bool SplitRedline(const SwPaM& rPam);
|
|
virtual bool DeleteRedline(/*[in]*/const SwPaM& rPam, /*[in]*/bool bSaveInUndo, /*[in]*/sal_uInt16 nDelType);
|
|
virtual bool DeleteRedline(/*[in]*/const SwStartNode& rSection, /*[in]*/bool bSaveInUndo, /*[in]*/sal_uInt16 nDelType);
|
|
virtual sal_uInt16 GetRedlinePos(/*[in]*/const SwNode& rNode, /*[in]*/sal_uInt16 nType) const;
|
|
virtual void CompressRedlines();
|
|
virtual const SwRedline* GetRedline(/*[in]*/const SwPosition& rPos, /*[in]*/sal_uInt16* pFndPos) const;
|
|
virtual bool IsRedlineMove() const;
|
|
virtual void SetRedlineMove(/*[in]*/bool bFlag);
|
|
virtual bool AcceptRedline(/*[in]*/sal_uInt16 nPos, /*[in]*/bool bCallDelete);
|
|
virtual bool AcceptRedline(/*[in]*/const SwPaM& rPam, /*[in]*/bool bCallDelete);
|
|
virtual bool RejectRedline(/*[in]*/sal_uInt16 nPos, /*[in]*/bool bCallDelete);
|
|
virtual bool RejectRedline(/*[in]*/const SwPaM& rPam, /*[in]*/bool bCallDelete);
|
|
virtual const SwRedline* SelNextRedline(/*[in]*/SwPaM& rPam) const;
|
|
virtual const SwRedline* SelPrevRedline(/*[in]*/SwPaM& rPam) const;
|
|
virtual void UpdateRedlineAttr();
|
|
virtual sal_uInt16 GetRedlineAuthor();
|
|
virtual sal_uInt16 InsertRedlineAuthor(const String& rAuthor);
|
|
virtual bool SetRedlineComment(/*[in]*/const SwPaM& rPam, /*[in]*/const String& rComment);
|
|
virtual const ::com::sun::star::uno::Sequence <sal_Int8>& GetRedlinePassword() const;
|
|
virtual void SetRedlinePassword(/*[in]*/const ::com::sun::star::uno::Sequence <sal_Int8>& rNewPassword);
|
|
|
|
/** IDocumentUndoRedo
|
|
*/
|
|
IDocumentUndoRedo & GetIDocumentUndoRedo();
|
|
IDocumentUndoRedo const& GetIDocumentUndoRedo() const;
|
|
|
|
/** IDocumentLinksAdministration
|
|
*/
|
|
virtual bool IsVisibleLinks() const;
|
|
virtual void SetVisibleLinks(bool bFlag);
|
|
virtual sfx2::LinkManager& GetLinkManager();
|
|
virtual const sfx2::LinkManager& GetLinkManager() const;
|
|
virtual void UpdateLinks(bool bUI);
|
|
virtual bool GetData(const rtl::OUString& rItem, const String& rMimeType, ::com::sun::star::uno::Any& rValue) const;
|
|
virtual bool SetData(const rtl::OUString& rItem, const String& rMimeType, const ::com::sun::star::uno::Any& rValue);
|
|
virtual ::sfx2::SvLinkSource* CreateLinkSource(const rtl::OUString& rItem);
|
|
virtual bool EmbedAllLinks();
|
|
virtual void SetLinksUpdated(const bool bNewLinksUpdated);
|
|
virtual bool LinksUpdated() const;
|
|
|
|
/** IDocumentFieldsAccess
|
|
*/
|
|
virtual const SwFldTypes *GetFldTypes() const;
|
|
virtual SwFieldType *InsertFldType(const SwFieldType &);
|
|
virtual SwFieldType *GetSysFldType( const sal_uInt16 eWhich ) const;
|
|
virtual SwFieldType* GetFldType(sal_uInt16 nResId, const String& rName, bool bDbFieldMatching) const;
|
|
virtual void RemoveFldType(sal_uInt16 nFld);
|
|
virtual void UpdateFlds( SfxPoolItem* pNewHt, bool bCloseDB);
|
|
virtual void InsDeletedFldType(SwFieldType &);
|
|
virtual bool PutValueToField(const SwPosition & rPos, const com::sun::star::uno::Any& rVal, sal_uInt16 nWhich);
|
|
virtual bool UpdateFld(SwTxtFld * rDstFmtFld, SwField & rSrcFld, SwMsgPoolItem * pMsgHnt, bool bUpdateTblFlds);
|
|
virtual void UpdateRefFlds(SfxPoolItem* pHt);
|
|
virtual void UpdateTblFlds(SfxPoolItem* pHt);
|
|
virtual void UpdateExpFlds(SwTxtFld* pFld, bool bUpdateRefFlds);
|
|
virtual void UpdateUsrFlds();
|
|
virtual void UpdatePageFlds(SfxPoolItem*);
|
|
virtual void LockExpFlds();
|
|
virtual void UnlockExpFlds();
|
|
virtual bool IsExpFldsLocked() const;
|
|
virtual SwDocUpdtFld& GetUpdtFlds() const;
|
|
virtual bool SetFieldsDirty(bool b, const SwNode* pChk, sal_uLong nLen);
|
|
virtual void SetFixFields(bool bOnlyTimeDate, const DateTime* pNewDateTime);
|
|
virtual void FldsToCalc(SwCalc& rCalc, sal_uLong nLastNd, sal_uInt16 nLastCnt);
|
|
virtual void FldsToCalc(SwCalc& rCalc, const _SetGetExpFld& rToThisFld);
|
|
virtual void FldsToExpand(SwHash**& ppTbl, sal_uInt16& rTblSize, const _SetGetExpFld& rToThisFld);
|
|
virtual bool IsNewFldLst() const;
|
|
virtual void SetNewFldLst( bool bFlag);
|
|
virtual void InsDelFldInFldLst(bool bIns, const SwTxtFld& rFld);
|
|
|
|
/** Returns the field at a certain position.
|
|
@param rPos position to search at
|
|
@return pointer to field at the given position or NULL in case no field is found
|
|
*/
|
|
static SwField* GetField(const SwPosition& rPos);
|
|
|
|
/** Returns the field at a certain position.
|
|
@param rPos position to search at
|
|
@return pointer to field at the given position or NULL in case no field is found
|
|
*/
|
|
static SwTxtFld* GetTxtFld(const SwPosition& rPos);
|
|
bool containsUpdatableFields();
|
|
|
|
/** IDocumentContentOperations
|
|
*/
|
|
virtual bool CopyRange(SwPaM&, SwPosition&, const bool bCopyAll) const;
|
|
virtual void DeleteSection(SwNode* pNode);
|
|
virtual bool DeleteRange(SwPaM&);
|
|
virtual bool DelFullPara(SwPaM&);
|
|
// Add optional parameter <bForceJoinNext>, default value <false>
|
|
// Needed for hiding of deletion redlines
|
|
virtual bool DeleteAndJoin( SwPaM&,
|
|
const bool bForceJoinNext = false );
|
|
|
|
virtual bool MoveRange(SwPaM&, SwPosition&, SwMoveFlags);
|
|
virtual bool MoveNodeRange(SwNodeRange&, SwNodeIndex&, SwMoveFlags);
|
|
virtual bool MoveAndJoin(SwPaM&, SwPosition&, SwMoveFlags);
|
|
virtual bool Overwrite(const SwPaM &rRg, const String& rStr);
|
|
virtual bool InsertString(const SwPaM &rRg, const String&,
|
|
const enum InsertFlags nInsertMode = INS_EMPTYEXPAND );
|
|
virtual bool UpdateRsid( SwTxtNode *pTxtNode, xub_StrLen nStt, xub_StrLen nEnd );
|
|
virtual bool UpdateParRsid( SwTxtNode *pTxtNode, sal_uInt32 nVal = 0 );
|
|
virtual bool UpdateRsid( const SwPaM &rRg, xub_StrLen nLen );
|
|
virtual SwFlyFrmFmt* Insert(const SwPaM &rRg, const String& rGrfName, const String& rFltName, const Graphic* pGraphic,
|
|
const SfxItemSet* pFlyAttrSet, const SfxItemSet* pGrfAttrSet, SwFrmFmt*);
|
|
virtual SwFlyFrmFmt* Insert(const SwPaM& rRg, const GraphicObject& rGrfObj, const SfxItemSet* pFlyAttrSet,
|
|
const SfxItemSet* pGrfAttrSet, SwFrmFmt*);
|
|
virtual SwDrawFrmFmt* Insert(const SwPaM &rRg, SdrObject& rDrawObj, const SfxItemSet* pFlyAttrSet, SwFrmFmt*);
|
|
virtual SwFlyFrmFmt* Insert(const SwPaM &rRg, const svt::EmbeddedObjectRef& xObj, const SfxItemSet* pFlyAttrSet,
|
|
const SfxItemSet* pGrfAttrSet, SwFrmFmt*);
|
|
virtual bool InsertPoolItem(const SwPaM &rRg, const SfxPoolItem&,
|
|
const SetAttrMode nFlags);
|
|
virtual bool InsertItemSet (const SwPaM &rRg, const SfxItemSet&,
|
|
const SetAttrMode nFlags);
|
|
virtual void ReRead(SwPaM&, const String& rGrfName, const String& rFltName, const Graphic* pGraphic, const GraphicObject* pGrfObj);
|
|
virtual void TransliterateText(const SwPaM& rPaM, utl::TransliterationWrapper&);
|
|
virtual SwFlyFrmFmt* InsertOLE(const SwPaM &rRg, const String& rObjName, sal_Int64 nAspect, const SfxItemSet* pFlyAttrSet,
|
|
const SfxItemSet* pGrfAttrSet, SwFrmFmt*);
|
|
virtual bool SplitNode(const SwPosition &rPos, bool bChkTableStart);
|
|
virtual bool AppendTxtNode(SwPosition& rPos);
|
|
virtual void SetModified(SwPaM &rPaM);
|
|
virtual bool ReplaceRange(SwPaM& rPam, const String& rNewStr,
|
|
const bool bRegExReplace);
|
|
virtual void RemoveLeadingWhiteSpace(const SwPosition & rPos );
|
|
|
|
/** IDocumentStylePoolAccess
|
|
*/
|
|
virtual SwTxtFmtColl* GetTxtCollFromPool( sal_uInt16 nId, bool bRegardLanguage = true );
|
|
virtual SwFmt* GetFmtFromPool( sal_uInt16 nId );
|
|
virtual SwFrmFmt* GetFrmFmtFromPool( sal_uInt16 nId );
|
|
virtual SwCharFmt* GetCharFmtFromPool( sal_uInt16 nId );
|
|
virtual SwPageDesc* GetPageDescFromPool( sal_uInt16 nId, bool bRegardLanguage = true );
|
|
virtual SwNumRule* GetNumRuleFromPool( sal_uInt16 nId );
|
|
virtual bool IsPoolTxtCollUsed( sal_uInt16 nId ) const;
|
|
virtual bool IsPoolFmtUsed( sal_uInt16 nId ) const;
|
|
virtual bool IsPoolPageDescUsed( sal_uInt16 nId ) const;
|
|
|
|
/** IDocumentLineNumberAccess
|
|
*/
|
|
virtual const SwLineNumberInfo& GetLineNumberInfo() const;
|
|
virtual void SetLineNumberInfo(const SwLineNumberInfo& rInfo);
|
|
|
|
/** IDocumentStatistics
|
|
*/
|
|
virtual void DocInfoChgd();
|
|
virtual const SwDocStat &GetDocStat() const;
|
|
virtual const SwDocStat &GetUpdatedDocStat();
|
|
virtual void SetDocStat(const SwDocStat& rStat);
|
|
virtual void UpdateDocStat();
|
|
|
|
/** IDocumentState
|
|
*/
|
|
virtual void SetModified();
|
|
virtual void ResetModified();
|
|
virtual bool IsModified() const;
|
|
virtual bool IsLoaded() const;
|
|
virtual bool IsUpdateExpFld() const;
|
|
virtual bool IsNewDoc() const;
|
|
virtual bool IsPageNums() const;
|
|
virtual void SetPageNums(bool b);
|
|
virtual void SetNewDoc(bool b);
|
|
virtual void SetUpdateExpFldStat(bool b);
|
|
virtual void SetLoaded(bool b);
|
|
|
|
/** IDocumentDrawModelAccess
|
|
*/
|
|
virtual const SdrModel* GetDrawModel() const;
|
|
virtual SdrModel* GetDrawModel();
|
|
virtual SdrLayerID GetHeavenId() const;
|
|
virtual SdrLayerID GetHellId() const;
|
|
virtual SdrLayerID GetControlsId() const;
|
|
virtual SdrLayerID GetInvisibleHeavenId() const;
|
|
virtual SdrLayerID GetInvisibleHellId() const;
|
|
virtual SdrLayerID GetInvisibleControlsId() const;
|
|
virtual void NotifyInvisibleLayers( SdrPageView& _rSdrPageView );
|
|
virtual bool IsVisibleLayerId( const SdrLayerID& _nLayerId ) const;
|
|
virtual SdrLayerID GetVisibleLayerIdByInvisibleOne( const SdrLayerID& _nInvisibleLayerId );
|
|
virtual SdrLayerID GetInvisibleLayerIdByVisibleOne( const SdrLayerID& _nVisibleLayerId );
|
|
virtual SdrModel* _MakeDrawModel();
|
|
virtual SdrModel* GetOrCreateDrawModel();
|
|
|
|
/** IDocumentLayoutAccess
|
|
*/
|
|
virtual void SetCurrentViewShell( ViewShell* pNew );//swmod 071225
|
|
virtual SwLayouter* GetLayouter();
|
|
virtual const SwLayouter* GetLayouter() const;
|
|
virtual void SetLayouter( SwLayouter* pNew );
|
|
virtual SwFrmFmt* MakeLayoutFmt( RndStdIds eRequest, const SfxItemSet* pSet );
|
|
virtual void DelLayoutFmt( SwFrmFmt *pFmt );
|
|
virtual SwFrmFmt* CopyLayoutFmt( const SwFrmFmt& rSrc, const SwFmtAnchor& rNewAnchor, bool bSetTxtFlyAtt, bool bMakeFrms );
|
|
virtual const ViewShell *GetCurrentViewShell() const; //swmod 080219
|
|
virtual ViewShell *GetCurrentViewShell(); ///< swmod 080219 It must be able to communicate to a ViewShell.This is going to be removerd later.
|
|
virtual const SwRootFrm *GetCurrentLayout() const;
|
|
virtual SwRootFrm *GetCurrentLayout();//swmod 080219
|
|
virtual bool HasLayout() const;
|
|
void ClearSwLayouterEntries();
|
|
|
|
/** IDocumentTimerAccess
|
|
*/
|
|
virtual void StartIdling();
|
|
virtual void StopIdling();
|
|
virtual void BlockIdling();
|
|
virtual void UnblockIdling();
|
|
|
|
/** IDocumentChartDataProviderAccess
|
|
*/
|
|
virtual SwChartDataProvider * GetChartDataProvider( bool bCreate = false ) const;
|
|
virtual void CreateChartInternalDataProviders( const SwTable *pTable );
|
|
virtual SwChartLockController_Helper & GetChartControllerHelper();
|
|
|
|
/** IDocumentListItems
|
|
*/
|
|
virtual void addListItem( const SwNodeNum& rNodeNum );
|
|
virtual void removeListItem( const SwNodeNum& rNodeNum );
|
|
virtual String getListItemText( const SwNodeNum& rNodeNum,
|
|
const bool bWithNumber = true,
|
|
const bool bWithSpacesForLevel = false ) const;
|
|
virtual void getListItems( IDocumentListItems::tSortedNodeNumList& orNodeNumList ) const;
|
|
virtual void getNumItems( IDocumentListItems::tSortedNodeNumList& orNodeNumList ) const;
|
|
|
|
/** IDocumentOutlineNodes
|
|
*/
|
|
virtual sal_Int32 getOutlineNodesCount() const;
|
|
virtual int getOutlineLevel( const sal_Int32 nIdx ) const;
|
|
virtual String getOutlineText( const sal_Int32 nIdx,
|
|
const bool bWithNumber,
|
|
const bool bWithSpacesForLevel ) const;
|
|
virtual SwTxtNode* getOutlineNode( const sal_Int32 nIdx ) const;
|
|
virtual void getOutlineNodes( IDocumentOutlineNodes::tSortedOutlineNodeList& orOutlineNodeList ) const;
|
|
|
|
/** IDocumentListsAccess
|
|
*/
|
|
virtual SwList* createList( String sListId,
|
|
const String sDefaultListStyleName );
|
|
virtual void deleteList( const String sListId );
|
|
virtual SwList* getListByName( const String sListId ) const;
|
|
virtual SwList* createListForListStyle( const String sListStyleName );
|
|
virtual SwList* getListForListStyle( const String sListStyleName ) const;
|
|
virtual void deleteListForListStyle( const String sListStyleName );
|
|
virtual void trackChangeOfListStyleName( const String sListStyleName,
|
|
const String sNewListStyleName );
|
|
|
|
/** IDocumentExternalData */
|
|
virtual void setExternalData(::sw::tExternalDataType eType,
|
|
::sw::tExternalDataPointer pPayload);
|
|
virtual ::sw::tExternalDataPointer getExternalData(::sw::tExternalDataType eType);
|
|
|
|
/** INextInterface here
|
|
*/
|
|
|
|
DECL_STATIC_LINK( SwDoc, BackgroundDone, SvxBrushItem *);
|
|
DECL_LINK(CalcFieldValueHdl, EditFieldInfo*);
|
|
|
|
/** OLE ???
|
|
*/
|
|
bool IsOLEPrtNotifyPending() const { return mbOLEPrtNotifyPending; }
|
|
inline void SetOLEPrtNotifyPending( bool bSet = true );
|
|
void PrtOLENotify( sal_Bool bAll ); //All or only marked
|
|
|
|
#ifdef DBG_UTIL
|
|
bool InXMLExport() const { return mbXMLExport; }
|
|
void SetXMLExport( bool bFlag ) { mbXMLExport = bFlag; }
|
|
#endif
|
|
|
|
/** Returns positions of all FlyFrames in the document.
|
|
If a Pam-Pointer is passed the FlyFrames attached to paragraphes
|
|
have to be surrounded completely by ::com::sun::star::awt::Selection.
|
|
( Start < Pos < End ) !!!
|
|
(Required for Writers.) */
|
|
void GetAllFlyFmts( SwPosFlyFrms& rPosFlyFmts, const SwPaM* = 0,
|
|
sal_Bool bDrawAlso = sal_False,
|
|
sal_Bool bAsCharAlso = sal_False ) const;
|
|
|
|
/// Because swrtf.cxx and define private public here now.
|
|
SwFlyFrmFmt *MakeFlyFrmFmt (const String &rFmtName, SwFrmFmt *pDerivedFrom);
|
|
SwDrawFrmFmt *MakeDrawFrmFmt(const String &rFmtName, SwFrmFmt *pDerivedFrom);
|
|
|
|
// From now on this interface has to be used for Flys.
|
|
// pAnchorPos must be set, if they are not attached to pages AND
|
|
// ::com::sun::star::chaos::Anchor is not already set at valid CntntPos
|
|
// in FlySet/FrmFmt.
|
|
/* new parameter bCalledFromShell
|
|
|
|
sal_True: An existing adjust item at pAnchorPos is propagated to
|
|
the content node of the new fly section. That propagation only
|
|
takes place if there is no adjust item in the paragraph style
|
|
for the new fly section.
|
|
|
|
sal_False: no propagation
|
|
*/
|
|
SwFlyFrmFmt* MakeFlySection( RndStdIds eAnchorType,
|
|
const SwPosition* pAnchorPos,
|
|
const SfxItemSet* pSet = 0,
|
|
SwFrmFmt *pParent = 0,
|
|
sal_Bool bCalledFromShell = sal_False );
|
|
SwFlyFrmFmt* MakeFlyAndMove( const SwPaM& rPam, const SfxItemSet& rSet,
|
|
const SwSelBoxes* pSelBoxes = 0,
|
|
SwFrmFmt *pParent = 0 );
|
|
|
|
void CopyWithFlyInFly( const SwNodeRange& rRg,
|
|
const xub_StrLen nEndContentIndex,
|
|
const SwNodeIndex& rInsPos,
|
|
sal_Bool bMakeNewFrms = sal_True,
|
|
sal_Bool bDelRedlines = sal_True,
|
|
sal_Bool bCopyFlyAtFly = sal_False ) const;
|
|
|
|
bool SetFlyFrmAttr( SwFrmFmt& rFlyFmt, SfxItemSet& rSet );
|
|
|
|
bool SetFrmFmtToFly( SwFrmFmt& rFlyFmt, SwFrmFmt& rNewFmt,
|
|
SfxItemSet* pSet = 0, bool bKeepOrient = false );
|
|
void SetFlyFrmTitle( SwFlyFrmFmt& rFlyFrmFmt,
|
|
const String& sNewTitle );
|
|
void SetFlyFrmDescription( SwFlyFrmFmt& rFlyFrmFmt,
|
|
const String& sNewDescription );
|
|
|
|
/** Footnotes
|
|
*/
|
|
// Footnote information
|
|
const SwFtnInfo& GetFtnInfo() const { return *pFtnInfo; }
|
|
void SetFtnInfo(const SwFtnInfo& rInfo);
|
|
const SwEndNoteInfo& GetEndNoteInfo() const { return *pEndNoteInfo; }
|
|
void SetEndNoteInfo(const SwEndNoteInfo& rInfo);
|
|
SwFtnIdxs& GetFtnIdxs() { return *pFtnIdxs; }
|
|
const SwFtnIdxs& GetFtnIdxs() const { return *pFtnIdxs; }
|
|
/// change footnotes in area
|
|
bool SetCurFtn( const SwPaM& rPam, const String& rNumStr,
|
|
sal_uInt16 nNumber, bool bIsEndNote );
|
|
|
|
/** Operations on the content of the document e.g.
|
|
spell-checking/hyphenating/word-counting
|
|
*/
|
|
::com::sun::star::uno::Any
|
|
Spell( SwPaM&, ::com::sun::star::uno::Reference<
|
|
::com::sun::star::linguistic2::XSpellChecker1 > &,
|
|
sal_uInt16* pPageCnt, sal_uInt16* pPageSt, bool bGrammarCheck,
|
|
SwConversionArgs *pConvArgs = 0 ) const;
|
|
|
|
::com::sun::star::uno::Reference<
|
|
::com::sun::star::linguistic2::XHyphenatedWord >
|
|
Hyphenate( SwPaM *pPam, const Point &rCrsrPos,
|
|
sal_uInt16* pPageCnt, sal_uInt16* pPageSt );
|
|
|
|
/// count words in pam
|
|
void CountWords( const SwPaM& rPaM, SwDocStat& rStat ) const;
|
|
|
|
/// Glossary Document
|
|
void SetGlossDoc( bool bGlssDc = true ) { mbGlossDoc = bGlssDc; }
|
|
bool IsInsOnlyTextGlossary() const { return mbInsOnlyTxtGlssry; }
|
|
|
|
void Summary( SwDoc* pExtDoc, sal_uInt8 nLevel, sal_uInt8 nPara, bool bImpress );
|
|
|
|
void ChangeAuthorityData(const SwAuthEntry* pNewData);
|
|
|
|
bool IsInCallModified() const { return mbInCallModified; }
|
|
bool IsInHeaderFooter( const SwNodeIndex& rIdx ) const;
|
|
short GetTextDirection( const SwPosition& rPos,
|
|
const Point* pPt = 0 ) const;
|
|
sal_Bool IsInVerticalText( const SwPosition& rPos,
|
|
const Point* pPt = 0 ) const;
|
|
|
|
/** Database and DB-Manager
|
|
*/
|
|
void SetNewDBMgr( SwNewDBMgr* pNewMgr ) { pNewDBMgr = pNewMgr; }
|
|
SwNewDBMgr* GetNewDBMgr() const { return pNewDBMgr; }
|
|
void ChangeDBFields( const std::vector<String>& rOldNames,
|
|
const String& rNewName );
|
|
void SetInitDBFields(sal_Bool b);
|
|
|
|
/// Find out which databases are used by fields.
|
|
void GetAllUsedDB( std::vector<String>& rDBNameList,
|
|
const std::vector<String>* pAllDBNames = 0 );
|
|
|
|
void ChgDBData( const SwDBData& rNewData );
|
|
SwDBData GetDBData();
|
|
const SwDBData& GetDBDesc();
|
|
const SwDBData& _GetDBDesc() const { return aDBData; }
|
|
|
|
/** Some helper functions
|
|
*/
|
|
String GetUniqueGrfName() const;
|
|
String GetUniqueOLEName() const;
|
|
String GetUniqueFrameName() const;
|
|
|
|
std::set<SwRootFrm*> GetAllLayouts();//swmod 080225
|
|
|
|
void SetFlyName( SwFlyFrmFmt& rFmt, const String& rName );
|
|
const SwFlyFrmFmt* FindFlyByName( const String& rName, sal_Int8 nNdTyp = 0 ) const;
|
|
|
|
void GetGrfNms( const SwFlyFrmFmt& rFmt, String* pGrfName,
|
|
String* pFltName ) const;
|
|
|
|
/// Set a valid name for all Flys that have none (Called by Readers after reading).
|
|
void SetAllUniqueFlyNames();
|
|
|
|
/** Reset attributes. All TxtHints and (if completely selected) all hard-
|
|
formated stuff (auto-formats) are removed.
|
|
Introduce new optional parameter <bSendDataChangedEvents> in order to
|
|
control, if the side effect "send data changed events" is triggered or not. */
|
|
void ResetAttrs( const SwPaM &rRg,
|
|
bool bTxtAttr = true,
|
|
const std::set<sal_uInt16> &rAttrs = std::set<sal_uInt16>(),
|
|
const bool bSendDataChangedEvents = true );
|
|
void RstTxtAttrs(const SwPaM &rRg, bool bInclRefToxMark = false );
|
|
|
|
/** Set attribute in given format.
|
|
If Undo is activated, the old one is listed in Undo-History. */
|
|
void SetAttr( const SfxPoolItem&, SwFmt& );
|
|
void SetAttr( const SfxItemSet&, SwFmt& );
|
|
|
|
/// method to reset a certain attribute at the given format
|
|
void ResetAttrAtFormat( const sal_uInt16 nWhichId,
|
|
SwFmt& rChangedFormat );
|
|
|
|
/** Set attribute as new default attribute in current document.
|
|
If Undo is activated, the old one is listed in Undo-History. */
|
|
void SetDefault( const SfxPoolItem& );
|
|
void SetDefault( const SfxItemSet& );
|
|
|
|
/// Query default attribute in this document.
|
|
const SfxPoolItem& GetDefault( sal_uInt16 nFmtHint ) const;
|
|
|
|
/// Do not expand text attributes.
|
|
bool DontExpandFmt( const SwPosition& rPos, bool bFlag = true );
|
|
|
|
/* Formats */
|
|
const SwFrmFmts* GetFrmFmts() const { return pFrmFmtTbl; }
|
|
SwFrmFmts* GetFrmFmts() { return pFrmFmtTbl; }
|
|
const SwCharFmts* GetCharFmts() const { return pCharFmtTbl;}
|
|
|
|
/** LayoutFormats (frames, DrawObjects), sometimes const sometimes not */
|
|
const SwFrmFmts* GetSpzFrmFmts() const { return pSpzFrmFmtTbl; }
|
|
SwFrmFmts* GetSpzFrmFmts() { return pSpzFrmFmtTbl; }
|
|
|
|
const SwFrmFmt *GetDfltFrmFmt() const { return pDfltFrmFmt; }
|
|
SwFrmFmt *GetDfltFrmFmt() { return pDfltFrmFmt; }
|
|
const SwFrmFmt *GetEmptyPageFmt() const { return pEmptyPageFmt; }
|
|
SwFrmFmt *GetEmptyPageFmt() { return pEmptyPageFmt; }
|
|
const SwFrmFmt *GetColumnContFmt() const{ return pColumnContFmt; }
|
|
SwFrmFmt *GetColumnContFmt() { return pColumnContFmt; }
|
|
const SwCharFmt *GetDfltCharFmt() const { return pDfltCharFmt;}
|
|
SwCharFmt *GetDfltCharFmt() { return pDfltCharFmt;}
|
|
|
|
/// @return the interface of the management of (auto)styles
|
|
IStyleAccess& GetIStyleAccess() { return *pStyleAccess; }
|
|
|
|
/// Remove all language dependencies from all existing formats
|
|
void RemoveAllFmtLanguageDependencies();
|
|
|
|
SwFrmFmt *MakeFrmFmt(const String &rFmtName, SwFrmFmt *pDerivedFrom,
|
|
bool bBroadcast = false, bool bAuto = true);
|
|
void DelFrmFmt( SwFrmFmt *pFmt, bool bBroadcast = false );
|
|
SwFrmFmt* FindFrmFmtByName( const String& rName ) const
|
|
{ return (SwFrmFmt*)FindFmtByName( (SwFmtsBase&)*pFrmFmtTbl, rName ); }
|
|
|
|
SwCharFmt *MakeCharFmt(const String &rFmtName, SwCharFmt *pDerivedFrom,
|
|
bool bBroadcast = false,
|
|
bool bAuto = true );
|
|
void DelCharFmt(sal_uInt16 nFmt, bool bBroadcast = false);
|
|
void DelCharFmt(SwCharFmt* pFmt, bool bBroadcast = false);
|
|
SwCharFmt* FindCharFmtByName( const String& rName ) const
|
|
{ return (SwCharFmt*)FindFmtByName( (SwFmtsBase&)*pCharFmtTbl, rName ); }
|
|
|
|
/* Formatcollections (styles) */
|
|
// TXT
|
|
const SwTxtFmtColl* GetDfltTxtFmtColl() const { return pDfltTxtFmtColl; }
|
|
const SwTxtFmtColls *GetTxtFmtColls() const { return pTxtFmtCollTbl; }
|
|
SwTxtFmtColl *MakeTxtFmtColl( const String &rFmtName,
|
|
SwTxtFmtColl *pDerivedFrom,
|
|
bool bBroadcast = false,
|
|
bool bAuto = true );
|
|
SwConditionTxtFmtColl* MakeCondTxtFmtColl( const String &rFmtName,
|
|
SwTxtFmtColl *pDerivedFrom,
|
|
bool bBroadcast = false);
|
|
void DelTxtFmtColl(sal_uInt16 nFmt, bool bBroadcast = false);
|
|
void DelTxtFmtColl( SwTxtFmtColl* pColl, bool bBroadcast = false );
|
|
/** Add 4th optional parameter <bResetListAttrs>.
|
|
'side effect' of <SetTxtFmtColl> with <bReset = true> is that the hard
|
|
attributes of the affected text nodes are cleared, except the break
|
|
attribute, the page description attribute and the list style attribute.
|
|
The new parameter <bResetListAttrs> indicates, if the list attributes
|
|
(list style, restart at and restart with) are cleared as well in case
|
|
that <bReset = true> and the paragraph style has a list style attribute set. */
|
|
bool SetTxtFmtColl( const SwPaM &rRg, SwTxtFmtColl *pFmt,
|
|
bool bReset = true,
|
|
bool bResetListAttrs = false );
|
|
SwTxtFmtColl* FindTxtFmtCollByName( const String& rName ) const
|
|
{ return (SwTxtFmtColl*)FindFmtByName( (SwFmtsBase&)*pTxtFmtCollTbl, rName ); }
|
|
|
|
void ChkCondColls();
|
|
|
|
const SwGrfFmtColl* GetDfltGrfFmtColl() const { return pDfltGrfFmtColl; }
|
|
const SwGrfFmtColls *GetGrfFmtColls() const { return pGrfFmtCollTbl; }
|
|
SwGrfFmtColl *MakeGrfFmtColl(const String &rFmtName,
|
|
SwGrfFmtColl *pDerivedFrom);
|
|
SwGrfFmtColl* FindGrfFmtCollByName( const String& rName ) const
|
|
{ return (SwGrfFmtColl*)FindFmtByName( (SwFmtsBase&)*pGrfFmtCollTbl, rName ); }
|
|
|
|
/// Table formating
|
|
const SwFrmFmts* GetTblFrmFmts() const { return pTblFrmFmtTbl; }
|
|
SwFrmFmts* GetTblFrmFmts() { return pTblFrmFmtTbl; }
|
|
sal_uInt16 GetTblFrmFmtCount( bool bUsed ) const;
|
|
SwFrmFmt& GetTblFrmFmt(sal_uInt16 nFmt, bool bUsed ) const;
|
|
SwTableFmt* MakeTblFrmFmt(const String &rFmtName, SwFrmFmt *pDerivedFrom);
|
|
void DelTblFrmFmt( SwTableFmt* pFmt );
|
|
SwTableFmt* FindTblFmtByName( const String& rName, sal_Bool bAll = sal_False ) const;
|
|
|
|
/** Access to frames.
|
|
Iterate over Flys - forr Basic-Collections. */
|
|
sal_uInt16 GetFlyCount( FlyCntType eType = FLYCNTTYPE_ALL) const;
|
|
SwFrmFmt* GetFlyNum(sal_uInt16 nIdx, FlyCntType eType = FLYCNTTYPE_ALL);
|
|
|
|
/// Copy formats in own arrays and return them.
|
|
SwFrmFmt *CopyFrmFmt ( const SwFrmFmt& );
|
|
SwCharFmt *CopyCharFmt( const SwCharFmt& );
|
|
SwTxtFmtColl* CopyTxtColl( const SwTxtFmtColl& rColl );
|
|
SwGrfFmtColl* CopyGrfColl( const SwGrfFmtColl& rColl );
|
|
|
|
/// Replace all styles with those from rSource.
|
|
void ReplaceStyles( const SwDoc& rSource, bool bIncludePageStyles = true );
|
|
|
|
/// Replace all property defaults with those from rSource.
|
|
void ReplaceDefaults( const SwDoc& rSource );
|
|
|
|
/// Replace all compatability options with those from rSource.
|
|
void ReplaceCompatabilityOptions(const SwDoc& rSource);
|
|
|
|
/// Query if style (paragraph- / character- / frame- / page-) is used.
|
|
sal_Bool IsUsed( const SwModify& ) const;
|
|
sal_Bool IsUsed( const SwNumRule& ) const;
|
|
|
|
/// Set name of newly loaded document template.
|
|
sal_uInt16 SetDocPattern( const String& rPatternName );
|
|
|
|
/// @return name of document template. Can be 0!
|
|
const String* GetDocPattern( sal_uInt16 nPos ) const
|
|
{
|
|
if(nPos >= aPatternNms.size())
|
|
return NULL;
|
|
if(boost::is_null(aPatternNms.begin() + nPos))
|
|
return NULL;
|
|
return &(aPatternNms[nPos]);
|
|
}
|
|
|
|
/// Delete all unreferenced field types.
|
|
void GCFieldTypes(); ///< impl. in docfld.cxx
|
|
|
|
/// Query / connect current document with glossary document.
|
|
void SetGlossaryDoc( SwDoc* pDoc ) { pGlossaryDoc = pDoc; }
|
|
|
|
/// travel over PaM Ring
|
|
bool InsertGlossary( SwTextBlocks& rBlock, const String& rEntry,
|
|
SwPaM& rPaM, SwCrsrShell* pShell = 0);
|
|
|
|
/** get the set of printable pages for the XRenderable API by
|
|
evaluating the respective settings (see implementation) */
|
|
void CalculatePagesForPrinting( const SwRootFrm& rLayout, SwRenderData &rData, const SwPrintUIOptions &rOptions, bool bIsPDFExport,
|
|
sal_Int32 nDocPageCount );
|
|
void UpdatePagesForPrintingWithPostItData( SwRenderData &rData, const SwPrintUIOptions &rOptions, bool bIsPDFExport,
|
|
sal_Int32 nDocPageCount );
|
|
void CalculatePagePairsForProspectPrinting( const SwRootFrm& rLayout, SwRenderData &rData, const SwPrintUIOptions &rOptions,
|
|
sal_Int32 nDocPageCount );
|
|
|
|
/// PageDescriptor interface.
|
|
sal_uInt16 GetPageDescCnt() const { return aPageDescs.size(); }
|
|
const SwPageDesc& GetPageDesc( const sal_uInt16 i ) const { return *aPageDescs[i]; }
|
|
SwPageDesc& GetPageDesc( sal_uInt16 i ) { return *aPageDescs[i]; }
|
|
SwPageDesc* FindPageDescByName( const String& rName,
|
|
sal_uInt16* pPos = 0 ) const;
|
|
|
|
/** Copy the complete PageDesc - beyond document and "deep"!
|
|
Optionally copying of PoolFmtId, -HlpId can be prevented. */
|
|
void CopyPageDesc( const SwPageDesc& rSrcDesc, SwPageDesc& rDstDesc,
|
|
bool bCopyPoolIds = true );
|
|
|
|
/** Copy header (with contents) from SrcFmt to DestFmt
|
|
(can also be copied into other document). */
|
|
void CopyHeader( const SwFrmFmt& rSrcFmt, SwFrmFmt& rDestFmt )
|
|
{ CopyPageDescHeaderFooterImpl( true, rSrcFmt, rDestFmt ); }
|
|
|
|
/** Copy footer (with contents) from SrcFmt to DestFmt.
|
|
(can also be copied into other document). */
|
|
void CopyFooter( const SwFrmFmt& rSrcFmt, SwFrmFmt& rDestFmt )
|
|
{ CopyPageDescHeaderFooterImpl( false, rSrcFmt, rDestFmt ); }
|
|
|
|
//For Reader.
|
|
|
|
SwPageDesc * GetPageDesc( const String & rName );
|
|
void ChgPageDesc( const String & rName, const SwPageDesc& );
|
|
void ChgPageDesc( sal_uInt16 i, const SwPageDesc& );
|
|
bool FindPageDesc( const String & rName, sal_uInt16 * pFound );
|
|
void DelPageDesc( const String & rName, bool bBroadcast = false);
|
|
void DelPageDesc( sal_uInt16 i, bool bBroadcast = false );
|
|
void PreDelPageDesc(SwPageDesc * pDel);
|
|
sal_uInt16 MakePageDesc( const String &rName, const SwPageDesc* pCpy = 0,
|
|
bool bRegardLanguage = true,
|
|
bool bBroadcast = false);
|
|
void BroadcastStyleOperation(String rName, SfxStyleFamily eFamily,
|
|
sal_uInt16 nOp);
|
|
|
|
/** The html import sometimes overwrites the
|
|
page sizes set in the page descriptions. This function is used to
|
|
correct this. */
|
|
void CheckDefaultPageFmt();
|
|
|
|
/// Methods for tables/indices.
|
|
|
|
sal_uInt16 GetCurTOXMark( const SwPosition& rPos, SwTOXMarks& ) const;
|
|
void DeleteTOXMark( const SwTOXMark* pTOXMark );
|
|
const SwTOXMark& GotoTOXMark( const SwTOXMark& rCurTOXMark,
|
|
SwTOXSearch eDir, sal_Bool bInReadOnly );
|
|
|
|
/// Insert/Renew table/indes.
|
|
const SwTOXBaseSection* InsertTableOf( const SwPosition& rPos,
|
|
const SwTOXBase& rTOX,
|
|
const SfxItemSet* pSet = 0,
|
|
sal_Bool bExpand = sal_False );
|
|
const SwTOXBaseSection* InsertTableOf( sal_uLong nSttNd, sal_uLong nEndNd,
|
|
const SwTOXBase& rTOX,
|
|
const SfxItemSet* pSet = 0 );
|
|
const SwTOXBase* GetCurTOX( const SwPosition& rPos ) const;
|
|
const SwAttrSet& GetTOXBaseAttrSet(const SwTOXBase& rTOX) const;
|
|
|
|
sal_Bool DeleteTOX( const SwTOXBase& rTOXBase, sal_Bool bDelNodes = sal_False );
|
|
String GetUniqueTOXBaseName( const SwTOXType& rType,
|
|
const String* pChkStr = 0 ) const;
|
|
|
|
sal_Bool SetTOXBaseName(const SwTOXBase& rTOXBase, const String& rName);
|
|
void SetTOXBaseProtection(const SwTOXBase& rTOXBase, sal_Bool bProtect);
|
|
|
|
/// After reading file update all tables/indices.
|
|
void SetUpdateTOX( bool bFlag = true ) { mbUpdateTOX = bFlag; }
|
|
bool IsUpdateTOX() const { return mbUpdateTOX; }
|
|
|
|
const String& GetTOIAutoMarkURL() const {return sTOIAutoMarkURL;}
|
|
void SetTOIAutoMarkURL(const String& rSet) {sTOIAutoMarkURL = rSet;}
|
|
void ApplyAutoMark();
|
|
|
|
bool IsInReading() const { return mbInReading; }
|
|
void SetInReading( bool bNew ) { mbInReading = bNew; }
|
|
|
|
bool IsClipBoard() const { return mbClipBoard; }
|
|
/// N.B.: must be called right after constructor! (@see GetXmlIdRegistry)
|
|
void SetClipBoard( bool bNew ) { mbClipBoard = bNew; }
|
|
|
|
bool IsColumnSelection() const { return mbColumnSelection; }
|
|
void SetColumnSelection( bool bNew ) { mbColumnSelection = bNew; }
|
|
|
|
bool IsInXMLImport() const { return mbInXMLImport; }
|
|
void SetInXMLImport( bool bNew ) { mbInXMLImport = bNew; }
|
|
|
|
/// Manage types of tables/indices.
|
|
sal_uInt16 GetTOXTypeCount( TOXTypes eTyp ) const;
|
|
const SwTOXType* GetTOXType( TOXTypes eTyp, sal_uInt16 nId ) const;
|
|
sal_Bool DeleteTOXType( TOXTypes eTyp, sal_uInt16 nId );
|
|
const SwTOXType* InsertTOXType( const SwTOXType& rTyp );
|
|
const SwTOXTypes& GetTOXTypes() const { return *pTOXTypes; }
|
|
|
|
const SwTOXBase* GetDefaultTOXBase( TOXTypes eTyp, sal_Bool bCreate = sal_False );
|
|
void SetDefaultTOXBase(const SwTOXBase& rBase);
|
|
|
|
/// Key for management of index.
|
|
sal_uInt16 GetTOIKeys( SwTOIKeyType eTyp, std::vector<String>& rArr ) const;
|
|
|
|
/// Sort table text.
|
|
sal_Bool SortTbl(const SwSelBoxes& rBoxes, const SwSortOptions&);
|
|
sal_Bool SortText(const SwPaM&, const SwSortOptions&);
|
|
|
|
// Correct the SwPosition-Objects that are registered with the document
|
|
// e. g. ::com::sun::star::text::Bookmarks or tables/indices.
|
|
// If bMoveCrsr is set move Crsr too.
|
|
|
|
/// Set everything in rOldNode on rNewPos + Offset.
|
|
void CorrAbs( const SwNodeIndex& rOldNode, const SwPosition& rNewPos,
|
|
const xub_StrLen nOffset = 0, sal_Bool bMoveCrsr = sal_False );
|
|
|
|
/// Set everything in the range of [rStartNode, rEndNode] to rNewPos.
|
|
void CorrAbs( const SwNodeIndex& rStartNode, const SwNodeIndex& rEndNode,
|
|
const SwPosition& rNewPos, sal_Bool bMoveCrsr = sal_False );
|
|
|
|
/// Set everything in this range from rRange to rNewPos.
|
|
void CorrAbs( const SwPaM& rRange, const SwPosition& rNewPos,
|
|
sal_Bool bMoveCrsr = sal_False );
|
|
|
|
/// Set everything in rOldNode to relative Pos.
|
|
void CorrRel( const SwNodeIndex& rOldNode, const SwPosition& rNewPos,
|
|
const xub_StrLen nOffset = 0, sal_Bool bMoveCrsr = sal_False );
|
|
|
|
/// Query / set rules for Outline.
|
|
inline SwNumRule* GetOutlineNumRule() const
|
|
{
|
|
return pOutlineRule;
|
|
}
|
|
void SetOutlineNumRule( const SwNumRule& rRule );
|
|
void PropagateOutlineRule();
|
|
|
|
/// Outline - promote / demote.
|
|
bool OutlineUpDown( const SwPaM& rPam, short nOffset = 1 );
|
|
|
|
/// Ountline - move up / move down.
|
|
bool MoveOutlinePara( const SwPaM& rPam, short nOffset = 1);
|
|
|
|
bool GotoOutline( SwPosition& rPos, const String& rName ) const;
|
|
|
|
/** Accept changes of outline styles for OUtlineRule.
|
|
re-use unused 3rd parameter
|
|
Add optional parameter <bResetIndentAttrs> - default value sal_False.
|
|
If <bResetIndentAttrs> equals true, the indent attributes "before text"
|
|
and "first line indent" are additionally reset at the provided PaM, if
|
|
the list style makes use of the new list level attributes.
|
|
introduce parameters <bCreateNewList> and <sContinuedListId>
|
|
<bCreateNewList> indicates, if a new list is created by applying the
|
|
given list style. */
|
|
void SetNumRule( const SwPaM&,
|
|
const SwNumRule&,
|
|
const bool bCreateNewList,
|
|
const String sContinuedListId = String(),
|
|
bool bSetItem = true,
|
|
const bool bResetIndentAttrs = false );
|
|
void SetCounted( const SwPaM&, bool bCounted);
|
|
|
|
void MakeUniqueNumRules(const SwPaM & rPaM);
|
|
|
|
void SetNumRuleStart( const SwPosition& rPos, sal_Bool bFlag = sal_True );
|
|
void SetNodeNumStart( const SwPosition& rPos, sal_uInt16 nStt );
|
|
|
|
SwNumRule* GetCurrNumRule( const SwPosition& rPos ) const;
|
|
|
|
const SwNumRuleTbl& GetNumRuleTbl() const { return *pNumRuleTbl; }
|
|
|
|
/**
|
|
Add numbering rule to document.
|
|
|
|
@param pRule rule to add
|
|
*/
|
|
void AddNumRule(SwNumRule * pRule);
|
|
|
|
/// add optional parameter <eDefaultNumberFormatPositionAndSpaceMode>
|
|
sal_uInt16 MakeNumRule( const String &rName,
|
|
const SwNumRule* pCpy = 0,
|
|
sal_Bool bBroadcast = sal_False,
|
|
const SvxNumberFormat::SvxNumPositionAndSpaceMode eDefaultNumberFormatPositionAndSpaceMode =
|
|
SvxNumberFormat::LABEL_WIDTH_AND_POSITION );
|
|
sal_uInt16 FindNumRule( const String& rName ) const;
|
|
SwNumRule* FindNumRulePtr( const String& rName ) const;
|
|
|
|
/// Deletion only possible if ::com::sun::star::chaos::Rule is not used!
|
|
sal_Bool RenameNumRule(const String & aOldName, const String & aNewName,
|
|
sal_Bool bBroadcast = sal_False);
|
|
sal_Bool DelNumRule( const String& rName, sal_Bool bBroadCast = sal_False );
|
|
String GetUniqueNumRuleName( const String* pChkStr = 0, sal_Bool bAutoNum = sal_True ) const;
|
|
|
|
void UpdateNumRule(); /// Update all invalids.
|
|
void ChgNumRuleFmts( const SwNumRule& rRule, const String * pOldName = 0 );
|
|
sal_Bool ReplaceNumRule( const SwPosition& rPos, const String& rOldRule,
|
|
const String& rNewRule );
|
|
|
|
/// Goto next/previous on same level.
|
|
sal_Bool GotoNextNum( SwPosition&, sal_Bool bOverUpper = sal_True,
|
|
sal_uInt8* pUpper = 0, sal_uInt8* pLower = 0 );
|
|
sal_Bool GotoPrevNum( SwPosition&, sal_Bool bOverUpper = sal_True,
|
|
sal_uInt8* pUpper = 0, sal_uInt8* pLower = 0 );
|
|
|
|
/** Searches for a text node with a numbering rule.
|
|
|
|
add optional parameter <bInvestigateStartNode>
|
|
add output parameter <sListId>
|
|
|
|
\param rPos position to start search
|
|
\param bForward - sal_True: search forward
|
|
- sal_False: search backward
|
|
\param bNum - sal_True: search for enumeration
|
|
- sal_False: search for itemize
|
|
\param bOutline - sal_True: search for outline numbering rule
|
|
- sal_False: search for non-outline numbering rule
|
|
\param nNonEmptyAllowed number of non-empty paragraphs allowed between
|
|
rPos and found paragraph
|
|
|
|
@param sListId
|
|
output parameter - in case a list style is found, <sListId> holds the
|
|
list id, to which the text node belongs, which applies the found list style.
|
|
|
|
@param bInvestigateStartNode
|
|
input parameter - boolean, indicating, if start node, determined by given
|
|
start position has to be investigated or not.
|
|
*/
|
|
const SwNumRule * SearchNumRule(const SwPosition & rPos,
|
|
const bool bForward,
|
|
const bool bNum,
|
|
const bool bOutline,
|
|
int nNonEmptyAllowed,
|
|
String& sListId,
|
|
const bool bInvestigateStartNode = false );
|
|
|
|
/// Paragraphs without numbering but with indents.
|
|
sal_Bool NoNum( const SwPaM& );
|
|
|
|
/// Delete, splitting of numbering list.
|
|
void DelNumRules( const SwPaM& );
|
|
|
|
/// Invalidates all numrules
|
|
void InvalidateNumRules();
|
|
|
|
bool NumUpDown( const SwPaM&, bool bDown = true );
|
|
|
|
/** Move selected paragraphes (not only numberings)
|
|
according to offsets. (if negative: go to doc start). */
|
|
bool MoveParagraph( const SwPaM&, long nOffset = 1, bool bIsOutlMv = false );
|
|
|
|
sal_Bool NumOrNoNum( const SwNodeIndex& rIdx, sal_Bool bDel = sal_False);
|
|
|
|
void StopNumRuleAnimations( OutputDevice* );
|
|
|
|
/** Insert new table at position @param rPos (will be inserted before Node!).
|
|
For AutoFormat at input: columns have to be set at predefined width.
|
|
The array holds the positions of the columns (not their widths).
|
|
new @param bCalledFromShell:
|
|
sal_True: called from shell -> propagate existing adjust item at
|
|
rPos to every new cell. A existing adjust item in the table
|
|
heading or table contents paragraph style prevent that
|
|
propagation.
|
|
sal_False: do not propagate
|
|
*/
|
|
const SwTable* InsertTable( const SwInsertTableOptions& rInsTblOpts, // HEADLINE_NO_BORDER
|
|
const SwPosition& rPos, sal_uInt16 nRows,
|
|
sal_uInt16 nCols, short eAdjust,
|
|
const SwTableAutoFmt* pTAFmt = 0,
|
|
const std::vector<sal_uInt16> *pColArr = 0,
|
|
sal_Bool bCalledFromShell = sal_False,
|
|
sal_Bool bNewModel = sal_True );
|
|
|
|
/// If index is in a table, return TableNode, else 0.
|
|
SwTableNode* IsIdxInTbl( const SwNodeIndex& rIdx );
|
|
inline const SwTableNode* IsIdxInTbl( const SwNodeIndex& rIdx ) const;
|
|
|
|
/// Create a balanced table out of the selected range.
|
|
const SwTable* TextToTable( const SwInsertTableOptions& rInsTblOpts, // HEADLINE_NO_BORDER,
|
|
const SwPaM& rRange, sal_Unicode cCh,
|
|
short eAdjust,
|
|
const SwTableAutoFmt* = 0 );
|
|
|
|
/// text to table conversion - API support
|
|
const SwTable* TextToTable( const std::vector< std::vector<SwNodeRange> >& rTableNodes );
|
|
|
|
sal_Bool TableToText( const SwTableNode* pTblNd, sal_Unicode cCh );
|
|
|
|
/// Create columns / rows in table.
|
|
sal_Bool InsertCol( const SwCursor& rCursor,
|
|
sal_uInt16 nCnt = 1, sal_Bool bBehind = sal_True );
|
|
sal_Bool InsertCol( const SwSelBoxes& rBoxes,
|
|
sal_uInt16 nCnt = 1, sal_Bool bBehind = sal_True );
|
|
sal_Bool InsertRow( const SwCursor& rCursor,
|
|
sal_uInt16 nCnt = 1, sal_Bool bBehind = sal_True );
|
|
sal_Bool InsertRow( const SwSelBoxes& rBoxes,
|
|
sal_uInt16 nCnt = 1, sal_Bool bBehind = sal_True );
|
|
|
|
/// Delete Colums/Rows in table.
|
|
sal_Bool DeleteRowCol( const SwSelBoxes& rBoxes, bool bColumn = false );
|
|
sal_Bool DeleteRow( const SwCursor& rCursor );
|
|
sal_Bool DeleteCol( const SwCursor& rCursor );
|
|
|
|
/// Split / concatenate boxes in table.
|
|
sal_Bool SplitTbl( const SwSelBoxes& rBoxes, sal_Bool bVert = sal_True,
|
|
sal_uInt16 nCnt = 1, sal_Bool bSameHeight = sal_False );
|
|
|
|
/// @return enum TableMergeErr.
|
|
sal_uInt16 MergeTbl( SwPaM& rPam );
|
|
String GetUniqueTblName() const;
|
|
sal_Bool IsInsTblFormatNum() const;
|
|
sal_Bool IsInsTblChangeNumFormat() const;
|
|
sal_Bool IsInsTblAlignNum() const;
|
|
|
|
/// From FEShell (for Undo and BModified).
|
|
void GetTabCols( SwTabCols &rFill, const SwCursor* pCrsr,
|
|
const SwCellFrm* pBoxFrm = 0 ) const;
|
|
void SetTabCols( const SwTabCols &rNew, sal_Bool bCurRowOnly,
|
|
const SwCursor* pCrsr, const SwCellFrm* pBoxFrm = 0 );
|
|
void GetTabRows( SwTabCols &rFill, const SwCursor* pCrsr,
|
|
const SwCellFrm* pBoxFrm = 0 ) const;
|
|
void SetTabRows( const SwTabCols &rNew, sal_Bool bCurColOnly, const SwCursor* pCrsr,
|
|
const SwCellFrm* pBoxFrm = 0 );
|
|
|
|
/// Direct access for UNO.
|
|
void SetTabCols(SwTable& rTab, const SwTabCols &rNew, const SwTabCols &rOld,
|
|
const SwTableBox *pStart, sal_Bool bCurRowOnly);
|
|
|
|
void SetRowsToRepeat( SwTable &rTable, sal_uInt16 nSet );
|
|
|
|
/// AutoFormat for table/table selection.
|
|
sal_Bool SetTableAutoFmt( const SwSelBoxes& rBoxes, const SwTableAutoFmt& rNew );
|
|
|
|
/// Query attributes.
|
|
sal_Bool GetTableAutoFmt( const SwSelBoxes& rBoxes, SwTableAutoFmt& rGet );
|
|
|
|
void AppendUndoForInsertFromDB( const SwPaM& rPam, sal_Bool bIsTable );
|
|
|
|
sal_Bool SetColRowWidthHeight( SwTableBox& rAktBox, sal_uInt16 eType,
|
|
SwTwips nAbsDiff, SwTwips nRelDiff );
|
|
SwTableBoxFmt* MakeTableBoxFmt();
|
|
SwTableLineFmt* MakeTableLineFmt();
|
|
|
|
/// Check if box has numerical valule. Change format of box if required.
|
|
void ChkBoxNumFmt( SwTableBox& rAktBox, sal_Bool bCallUpdate );
|
|
void SetTblBoxFormulaAttrs( SwTableBox& rBox, const SfxItemSet& rSet );
|
|
void ClearBoxNumAttrs( const SwNodeIndex& rNode );
|
|
void ClearLineNumAttrs( SwPosition & rPos );
|
|
|
|
sal_Bool InsCopyOfTbl( SwPosition& rInsPos, const SwSelBoxes& rBoxes,
|
|
const SwTable* pCpyTbl = 0, sal_Bool bCpyName = sal_False,
|
|
sal_Bool bCorrPos = sal_False );
|
|
|
|
sal_Bool UnProtectCells( const String& rTblName );
|
|
sal_Bool UnProtectCells( const SwSelBoxes& rBoxes );
|
|
sal_Bool UnProtectTbls( const SwPaM& rPam );
|
|
sal_Bool HasTblAnyProtection( const SwPosition* pPos,
|
|
const String* pTblName = 0,
|
|
sal_Bool* pFullTblProtection = 0 );
|
|
|
|
/// Split table at baseline position, i.e. create a new table.
|
|
sal_Bool SplitTable( const SwPosition& rPos, sal_uInt16 eMode = 0,
|
|
sal_Bool bCalcNewSize = sal_False );
|
|
|
|
/** And vice versa: rPos must be in the table that remains. The flag indicates
|
|
whether the current table is merged with the one before or behind it. */
|
|
sal_Bool MergeTable( const SwPosition& rPos, sal_Bool bWithPrev = sal_True,
|
|
sal_uInt16 nMode = 0 );
|
|
|
|
/// Make charts of given table update.
|
|
void UpdateCharts( const String &rName ) const;
|
|
|
|
/// Update all charts, for that exists any table.
|
|
void UpdateAllCharts() { DoUpdateAllCharts(); }
|
|
|
|
/// Table is renamed and refreshes charts.
|
|
void SetTableName( SwFrmFmt& rTblFmt, const String &rNewName );
|
|
|
|
/// @return the reference in document that is set for name.
|
|
const SwFmtRefMark* GetRefMark( const String& rName ) const;
|
|
|
|
/// @return RefMark via index - for UNO.
|
|
const SwFmtRefMark* GetRefMark( sal_uInt16 nIndex ) const;
|
|
|
|
/** @return names of all references that are set in document.
|
|
If array pointer is 0 return only whether a RefMark is set in document. */
|
|
sal_uInt16 GetRefMarks( std::vector<rtl::OUString>* = 0 ) const;
|
|
|
|
/// Insert label. If a FlyFormat is created, return it.
|
|
SwFlyFrmFmt* InsertLabel( const SwLabelType eType, const String &rTxt, const String& rSeparator,
|
|
const String& rNumberingSeparator,
|
|
const sal_Bool bBefore, const sal_uInt16 nId, const sal_uLong nIdx,
|
|
const String& rCharacterStyle,
|
|
const sal_Bool bCpyBrd = sal_True );
|
|
SwFlyFrmFmt* InsertDrawLabel(
|
|
const String &rTxt, const String& rSeparator, const String& rNumberSeparator,
|
|
const sal_uInt16 nId, const String& rCharacterStyle, SdrObject& rObj );
|
|
|
|
/// Query attribute pool.
|
|
const SwAttrPool& GetAttrPool() const { return *mpAttrPool; }
|
|
SwAttrPool& GetAttrPool() { return *mpAttrPool; }
|
|
|
|
/// Search an EditShell or, if appropriate, a ViewShell via layout.
|
|
SwEditShell* GetEditShell( ViewShell** ppSh = 0 ) const;
|
|
::sw::IShellCursorSupplier * GetIShellCursorSupplier();
|
|
|
|
/// OLE 2.0-notification.
|
|
inline void SetOle2Link(const Link& rLink) {aOle2Link = rLink;}
|
|
inline const Link& GetOle2Link() const {return aOle2Link;}
|
|
|
|
/// insert section (the ODF kind of section, not the nodesarray kind)
|
|
SwSection * InsertSwSection(SwPaM const& rRange, SwSectionData &,
|
|
SwTOXBase const*const pTOXBase = 0,
|
|
SfxItemSet const*const pAttr = 0, bool const bUpdate = true);
|
|
sal_uInt16 IsInsRegionAvailable( const SwPaM& rRange,
|
|
const SwNode** ppSttNd = 0 ) const;
|
|
SwSection* GetCurrSection( const SwPosition& rPos ) const;
|
|
SwSectionFmts& GetSections() { return *pSectionFmtTbl; }
|
|
const SwSectionFmts& GetSections() const { return *pSectionFmtTbl; }
|
|
SwSectionFmt *MakeSectionFmt( SwSectionFmt *pDerivedFrom );
|
|
void DelSectionFmt( SwSectionFmt *pFmt, sal_Bool bDelNodes = sal_False );
|
|
void UpdateSection(sal_uInt16 const nSect, SwSectionData &,
|
|
SfxItemSet const*const = 0, bool const bPreventLinkUpdate = false);
|
|
String GetUniqueSectionName( const String* pChkStr = 0 ) const;
|
|
|
|
/* @@@MAINTAINABILITY-HORROR@@@
|
|
The model should not have anything to do with a shell.
|
|
Unnecessary compile/link time dependency.
|
|
*/
|
|
|
|
// Pointer to SfxDocShell from Doc. Can be 0!!
|
|
SwDocShell* GetDocShell() { return pDocShell; }
|
|
const SwDocShell* GetDocShell() const { return pDocShell; }
|
|
void SetDocShell( SwDocShell* pDSh );
|
|
|
|
/** in case during copying of embedded object a new shell is created,
|
|
it should be set here and cleaned later */
|
|
void SetTmpDocShell( SfxObjectShellLock rLock ) { xTmpDocShell = rLock; }
|
|
SfxObjectShellLock GetTmpDocShell() { return xTmpDocShell; }
|
|
|
|
/// For Autotexts? (text modules) They have only one SVPersist at their disposal.
|
|
SfxObjectShell* GetPersist() const;
|
|
|
|
/// Pointer to storage of SfxDocShells. Can be 0!!!
|
|
::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage > GetDocStorage();
|
|
|
|
/// Query / set flag indicating if document is loaded asynchronously at this moment.
|
|
bool IsInLoadAsynchron() const { return mbInLoadAsynchron; }
|
|
void SetInLoadAsynchron( bool bFlag ) { mbInLoadAsynchron = bFlag; }
|
|
|
|
bool SelectServerObj( const String& rStr, SwPaM*& rpPam,
|
|
SwNodeRange*& rpRange ) const;
|
|
|
|
/// For Drag&Move: (e.g. allow "moving" of RefMarks)
|
|
bool IsCopyIsMove() const { return mbCopyIsMove; }
|
|
void SetCopyIsMove( bool bFlag ) { mbCopyIsMove = bFlag; }
|
|
|
|
SwDrawContact* GroupSelection( SdrView& );
|
|
void UnGroupSelection( SdrView& );
|
|
bool DeleteSelection( SwDrawView& );
|
|
|
|
/// Invalidates OnlineSpell-WrongLists.
|
|
void SpellItAgainSam( bool bInvalid, bool bOnlyWrong, bool bSmartTags );
|
|
void InvalidateAutoCompleteFlag();
|
|
|
|
void SetCalcFieldValueHdl(Outliner* pOutliner);
|
|
|
|
// Query if ::com::sun::star::util::URL was visited.
|
|
// Query via Doc, if only a ::com::sun::star::text::Bookmark has been given.
|
|
// In this case the document name has to be set in front.
|
|
sal_Bool IsVisitedURL( const String& rURL ) const;
|
|
|
|
/// Save current values for automatic registration of exceptions in Autocorrection.
|
|
void SetAutoCorrExceptWord( SwAutoCorrExceptWord* pNew );
|
|
SwAutoCorrExceptWord* GetAutoCorrExceptWord() { return pACEWord; }
|
|
|
|
const SwFmtINetFmt* FindINetAttr( const String& rName ) const;
|
|
|
|
/// Call into intransparent Basic; expect possible Return String.
|
|
bool ExecMacro( const SvxMacro& rMacro, String* pRet = 0, SbxArray* pArgs = 0 );
|
|
|
|
/// Call into intransparent Basic / JavaScript.
|
|
sal_uInt16 CallEvent( sal_uInt16 nEvent, const SwCallMouseEvent& rCallEvent,
|
|
bool bChkPtr = false, SbxArray* pArgs = 0,
|
|
const Link* pCallBack = 0 );
|
|
|
|
/** Adjust left margin via object bar (similar to adjustment of numerations).
|
|
One can either change the margin "by" adding or substracting a given
|
|
offset or set it "to" this position (bModulus = true). */
|
|
void MoveLeftMargin( const SwPaM& rPam, bool bRight = true,
|
|
bool bModulus = true );
|
|
|
|
/// Query NumberFormatter.
|
|
inline SvNumberFormatter* GetNumberFormatter( sal_Bool bCreate = sal_True );
|
|
inline const SvNumberFormatter* GetNumberFormatter( sal_Bool bCreate = sal_True ) const;
|
|
|
|
bool HasInvisibleContent() const;
|
|
/// delete invisible content, like hidden sections and paragraphs
|
|
bool RemoveInvisibleContent();
|
|
/// restore the invisible content if it's available on the undo stack
|
|
bool RestoreInvisibleContent();
|
|
|
|
bool ConvertFieldsToText();
|
|
|
|
/// Create sub-documents according to given collection.
|
|
/// If no collection is given, use chapter styles for 1st level.
|
|
sal_Bool GenerateGlobalDoc( const String& rPath,
|
|
const SwTxtFmtColl* pSplitColl = 0 );
|
|
sal_Bool GenerateGlobalDoc( const String& rPath, int nOutlineLevel = 0 );
|
|
sal_Bool GenerateHTMLDoc( const String& rPath,
|
|
const SwTxtFmtColl* pSplitColl = 0 );
|
|
sal_Bool GenerateHTMLDoc( const String& rPath, int nOutlineLevel = 0 );
|
|
|
|
/// Compare two documents.
|
|
long CompareDoc( const SwDoc& rDoc );
|
|
|
|
/// Merge two documents.
|
|
long MergeDoc( const SwDoc& rDoc );
|
|
|
|
/** Set comment-text for Redline. It then comes in via AppendRedLine.
|
|
Used by AutoFormat. 0-pointer resets mode.
|
|
Sequence number is for conjoining of Redlines by the UI. */
|
|
void SetAutoFmtRedlineComment( const String* pTxt, sal_uInt16 nSeqNo = 0 );
|
|
|
|
bool IsAutoFmtRedline() const { return mbIsAutoFmtRedline; }
|
|
void SetAutoFmtRedline( bool bFlag ) { mbIsAutoFmtRedline = bFlag; }
|
|
|
|
/// For AutoFormat: with Undo/Redlining.
|
|
void SetTxtFmtCollByAutoFmt( const SwPosition& rPos, sal_uInt16 nPoolId,
|
|
const SfxItemSet* pSet = 0 );
|
|
void SetFmtItemByAutoFmt( const SwPaM& rPam, const SfxItemSet& );
|
|
|
|
/// Only for SW-textbloxks! Does not pay any attention to layout!
|
|
void ClearDoc(); // Deletes all content!
|
|
|
|
/// Query /set data for PagePreView.
|
|
const SwPagePreViewPrtData* GetPreViewPrtData() const { return pPgPViewPrtData; }
|
|
|
|
// If pointer == 0 destroy pointer in document.
|
|
// Else copy object.
|
|
// Pointer is not transferred to ownership by document!
|
|
void SetPreViewPrtData( const SwPagePreViewPrtData* pData );
|
|
|
|
/** update all modified OLE-Objects. The modification is called over the
|
|
StarOne - Interface */
|
|
void SetOLEObjModified()
|
|
{ if( GetCurrentViewShell() ) aOLEModifiedTimer.Start(); } //swmod 071107//swmod 071225
|
|
|
|
// -------------------- Uno - Interfaces ---------------------------
|
|
const SwUnoCrsrTbl& GetUnoCrsrTbl() const { return *pUnoCrsrTbl; }
|
|
SwUnoCrsr* CreateUnoCrsr( const SwPosition& rPos, bool bTblCrsr = false );
|
|
|
|
// -------------------- FeShell - Interfaces -----------------------
|
|
// !!! These assume always an existing layout !!!
|
|
bool ChgAnchor( const SdrMarkList& _rMrkList,
|
|
RndStdIds _eAnchorType,
|
|
const bool _bSameOnly,
|
|
const bool _bPosCorr );
|
|
|
|
void SetRowHeight( const SwCursor& rCursor, const SwFmtFrmSize &rNew );
|
|
void GetRowHeight( const SwCursor& rCursor, SwFmtFrmSize *& rpSz ) const;
|
|
void SetRowSplit( const SwCursor& rCursor, const SwFmtRowSplit &rNew );
|
|
void GetRowSplit( const SwCursor& rCursor, SwFmtRowSplit *& rpSz ) const;
|
|
sal_Bool BalanceRowHeight( const SwCursor& rCursor, sal_Bool bTstOnly = sal_True );
|
|
void SetRowBackground( const SwCursor& rCursor, const SvxBrushItem &rNew );
|
|
sal_Bool GetRowBackground( const SwCursor& rCursor, SvxBrushItem &rToFill ) const;
|
|
void SetTabBorders( const SwCursor& rCursor, const SfxItemSet& rSet );
|
|
void SetTabLineStyle( const SwCursor& rCursor,
|
|
const Color* pColor, sal_Bool bSetLine,
|
|
const editeng::SvxBorderLine* pBorderLine );
|
|
void GetTabBorders( const SwCursor& rCursor, SfxItemSet& rSet ) const;
|
|
void SetBoxAttr( const SwCursor& rCursor, const SfxPoolItem &rNew );
|
|
/**
|
|
Retrieves a box attribute from the given cursor.
|
|
|
|
@return Whether the property is set over the current box selection.
|
|
|
|
@remarks A property is 'set' if it's set to the same value over all boxes in the current selection.
|
|
The property value is retrieved from the first box in the current selection. It is then compared to
|
|
the values of the same property over any other boxes in the selection; if any value is different from
|
|
that of the first box, the property is unset (and sal_False is returned).
|
|
*/
|
|
sal_Bool GetBoxAttr( const SwCursor& rCursor, SfxPoolItem &rToFill ) const;
|
|
void SetBoxAlign( const SwCursor& rCursor, sal_uInt16 nAlign );
|
|
sal_uInt16 GetBoxAlign( const SwCursor& rCursor ) const;
|
|
void AdjustCellWidth( const SwCursor& rCursor, sal_Bool bBalance = sal_False );
|
|
|
|
int Chainable( const SwFrmFmt &rSource, const SwFrmFmt &rDest );
|
|
int Chain( SwFrmFmt &rSource, const SwFrmFmt &rDest );
|
|
void Unchain( SwFrmFmt &rFmt );
|
|
|
|
// For Copy/Move from FrmShell.
|
|
SdrObject* CloneSdrObj( const SdrObject&, bool bMoveWithinDoc = false,
|
|
bool bInsInPage = true );
|
|
|
|
//
|
|
// -------------------- FeShell - Interface end ------------------
|
|
|
|
/// Interface for TextInputData - for text input of Chinese and Japanese.
|
|
SwExtTextInput* CreateExtTextInput( const SwPaM& rPam );
|
|
void DeleteExtTextInput( SwExtTextInput* pDel );
|
|
SwExtTextInput* GetExtTextInput( const SwNode& rNd,
|
|
xub_StrLen nCntntPos = STRING_NOTFOUND) const;
|
|
SwExtTextInput* GetExtTextInput() const;
|
|
|
|
/// Interface for access to AutoComplete-List.
|
|
static SwAutoCompleteWord& GetAutoCompleteWords() { return *pACmpltWords; }
|
|
|
|
bool ContainsMSVBasic() const { return mbContains_MSVBasic; }
|
|
void SetContainsMSVBasic( bool bFlag ) { mbContains_MSVBasic = bFlag; }
|
|
|
|
/// Interface for the list of Ruby - texts/attributes
|
|
sal_uInt16 FillRubyList( const SwPaM& rPam, SwRubyList& rList,
|
|
sal_uInt16 nMode );
|
|
sal_uInt16 SetRubyList( const SwPaM& rPam, const SwRubyList& rList,
|
|
sal_uInt16 nMode );
|
|
|
|
void ReadLayoutCache( SvStream& rStream );
|
|
void WriteLayoutCache( SvStream& rStream );
|
|
SwLayoutCache* GetLayoutCache() const { return pLayoutCache; }
|
|
|
|
/** Checks if any of the text node contains hidden characters.
|
|
Used for optimization. Changing the view option 'view hidden text'
|
|
has to trigger a reformatting only if some of the text is hidden.
|
|
*/
|
|
bool ContainsHiddenChars() const;
|
|
|
|
/// call back for API wrapper
|
|
SwModify* GetUnoCallBack() const;
|
|
|
|
IGrammarContact* getGrammarContact() const { return mpGrammarContact; }
|
|
|
|
/** Marks/Unmarks a list level of a certain list
|
|
|
|
levels of a certain lists are marked now
|
|
|
|
@param sListId list Id of the list whose level has to be marked/unmarked
|
|
@param nListLevel level to mark
|
|
@param bValue - sal_True mark the level
|
|
- sal_False unmark the level
|
|
*/
|
|
void MarkListLevel( const String& sListId,
|
|
const int nListLevel,
|
|
const sal_Bool bValue );
|
|
|
|
/** Marks/Unmarks a list level of a certain list
|
|
|
|
levels of a certain lists are marked now
|
|
|
|
@param rList list whose level has to be marked/unmarked
|
|
@param nListLevel level to mark
|
|
@param bValue - sal_True mark the level
|
|
- sal_False unmark the level
|
|
*/
|
|
void MarkListLevel( SwList& rList,
|
|
const int nListLevel,
|
|
const sal_Bool bValue );
|
|
|
|
/// Change a format undoable.
|
|
void ChgFmt(SwFmt & rFmt, const SfxItemSet & rSet);
|
|
|
|
void RenameFmt(SwFmt & rFmt, const String & sNewName,
|
|
bool bBroadcast = false);
|
|
|
|
/// Change a TOX undoable.
|
|
void ChgTOX(SwTOXBase & rTOX, const SwTOXBase & rNew);
|
|
|
|
/**
|
|
Returns a textual description of a PaM.
|
|
|
|
@param rPaM the PaM to describe
|
|
|
|
If rPaM only spans one paragraph the result is:
|
|
|
|
'<text in the PaM>'
|
|
|
|
<text in the PaM> is shortened to nUndoStringLength characters.
|
|
|
|
If rPaM spans more than one paragraph the result is:
|
|
|
|
paragraphs (STR_PARAGRAPHS)
|
|
|
|
@return the textual description of rPaM
|
|
*/
|
|
String GetPaMDescr(const SwPaM & rPaM) const;
|
|
|
|
sal_Bool IsFirstOfNumRule(SwPosition & rPos);
|
|
|
|
// access methods for XForms model(s)
|
|
|
|
/// access container for XForms model; will be NULL if !isXForms()
|
|
com::sun::star::uno::Reference<com::sun::star::container::XNameContainer>
|
|
getXForms() const;
|
|
|
|
com::sun::star::uno::Reference< com::sun::star::linguistic2::XProofreadingIterator > GetGCIterator() const;
|
|
|
|
/// is this an XForms document?
|
|
bool isXForms() const;
|
|
|
|
/// initialize XForms models; turn this into an XForms document
|
|
void initXForms( bool bCreateDefaultModel );
|
|
// access methods for XForms model(s)
|
|
|
|
inline bool ApplyWorkaroundForB6375613() const
|
|
{
|
|
return mbApplyWorkaroundForB6375613;
|
|
}
|
|
void SetApplyWorkaroundForB6375613( bool p_bApplyWorkaroundForB6375613 );
|
|
|
|
//Update all the page masters
|
|
void SetDefaultPageMode(bool bSquaredPageMode);
|
|
sal_Bool IsSquaredPageMode() const;
|
|
|
|
void Setn32DummyCompatabilityOptions1( sal_uInt32 CompatabilityOptions1 )
|
|
{
|
|
n32DummyCompatabilityOptions1 = CompatabilityOptions1;
|
|
}
|
|
sal_uInt32 Getn32DummyCompatabilityOptions1( )
|
|
{
|
|
return n32DummyCompatabilityOptions1;
|
|
}
|
|
void Setn32DummyCompatabilityOptions2( sal_uInt32 CompatabilityOptions2 )
|
|
{
|
|
n32DummyCompatabilityOptions2 = CompatabilityOptions2;
|
|
}
|
|
sal_uInt32 Getn32DummyCompatabilityOptions2( )
|
|
{
|
|
return n32DummyCompatabilityOptions2;
|
|
}
|
|
com::sun::star::uno::Reference< com::sun::star::script::vba::XVBAEventProcessor > GetVbaEventProcessor();
|
|
void SetVBATemplateToProjectCache( com::sun::star::uno::Reference< com::sun::star::container::XNameContainer >& xCache ) { m_xTemplateToProjectCache = xCache; };
|
|
com::sun::star::uno::Reference< com::sun::star::container::XNameContainer > GetVBATemplateToProjectCache() { return m_xTemplateToProjectCache; };
|
|
::sfx2::IXmlIdRegistry& GetXmlIdRegistry();
|
|
::sw::MetaFieldManager & GetMetaFieldManager();
|
|
::sw::UndoManager & GetUndoManager();
|
|
::sw::UndoManager const& GetUndoManager() const;
|
|
SfxObjectShell* CreateCopy(bool bCallInitNew) const;
|
|
|
|
/**
|
|
* Dumps the entire nodes structure to the given destination (file nodes.xml in the current directory by default)
|
|
* @since 3.5
|
|
*/
|
|
void dumpAsXml( xmlTextWriterPtr writer = NULL );
|
|
|
|
/// must be called only in SwDocShell::InitNew, causes UpdateDrawDefaults to be called when drawing layer is created
|
|
void SetDrawDefaults();
|
|
|
|
private:
|
|
/// method to set new graphics pool defaults, must only be called by SetDrawDefaults!
|
|
void UpdateDrawDefaults();
|
|
/// Copies master header to left / first one, if necessary - used by ChgPageDesc().
|
|
void CopyMasterHeader(const SwPageDesc &rChged, const SwFmtHeader &rHead, SwPageDesc *pDesc, bool bLeft);
|
|
/// Copies master footer to left / first one, if necessary - used by ChgPageDesc().
|
|
void CopyMasterFooter(const SwPageDesc &rChged, const SwFmtFooter &rFoot, SwPageDesc *pDesc, bool bLeft);
|
|
};
|
|
|
|
// This method is called in Dtor of SwDoc and deletes cache of ContourObjects.
|
|
void ClrContourCache();
|
|
|
|
inline const SwTableNode* SwDoc::IsIdxInTbl( const SwNodeIndex& rIdx ) const
|
|
{
|
|
return ((SwDoc*)this)->IsIdxInTbl( rIdx );
|
|
}
|
|
|
|
inline SvNumberFormatter* SwDoc::GetNumberFormatter( sal_Bool bCreate )
|
|
{
|
|
if( bCreate && !pNumberFormatter )
|
|
_CreateNumberFormatter();
|
|
return pNumberFormatter;
|
|
}
|
|
|
|
inline const SvNumberFormatter* SwDoc::GetNumberFormatter( sal_Bool bCreate ) const
|
|
{
|
|
return ((SwDoc*)this)->GetNumberFormatter( bCreate );
|
|
}
|
|
|
|
inline void SwDoc::SetOLEPrtNotifyPending( bool bSet )
|
|
{
|
|
mbOLEPrtNotifyPending = bSet;
|
|
if( !bSet )
|
|
mbAllOLENotify = sal_False;
|
|
}
|
|
|
|
// namespace <docfunc> for functions and procedures working on a Writer document.
|
|
namespace docfunc
|
|
{
|
|
/** method to check, if given Writer document contains at least one drawing object
|
|
|
|
@author OD
|
|
|
|
@param p_rDoc
|
|
input parameter - reference to the Writer document, which is investigated.
|
|
*/
|
|
bool ExistsDrawObjs( SwDoc& p_rDoc );
|
|
|
|
/** method to check, if given Writer document contains only drawing objects,
|
|
which are completely on its page.
|
|
|
|
@author OD
|
|
|
|
@param p_rDoc
|
|
input parameter - reference to the Writer document, which is investigated.
|
|
*/
|
|
bool AllDrawObjsOnPage( SwDoc& p_rDoc );
|
|
|
|
/** method to check, if the outline style has to written as a normal list style
|
|
|
|
#i69627#
|
|
The outline style has to written as a normal list style, if a parent
|
|
paragraph style of one of the paragraph styles, which are assigned to
|
|
the list levels of the outline style, has a list style set or inherits
|
|
a list style from its parent paragraphs style.
|
|
This information is needed for the OpenDocument file format export.
|
|
|
|
@author OD
|
|
|
|
@param rDoc
|
|
input parameter - reference to the text document, which is investigated.
|
|
|
|
@return boolean
|
|
indicating, if the outline style has to written as a normal list style
|
|
*/
|
|
bool HasOutlineStyleToBeWrittenAsNormalListStyle( SwDoc& rDoc );
|
|
}
|
|
#endif //_DOC_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|