236 lines
12 KiB
C++
236 lines
12 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
#ifndef INCLUDED_SW_SOURCE_CORE_INC_DOCUMENTSETTINGMANAGER_HXX
|
|
#define INCLUDED_SW_SOURCE_CORE_INC_DOCUMENTSETTINGMANAGER_HXX
|
|
|
|
#include <IDocumentSettingAccess.hxx>
|
|
class SwDoc;
|
|
typedef struct _xmlTextWriter* xmlTextWriterPtr;
|
|
|
|
namespace sw {
|
|
class DocumentSettingManager final :
|
|
public IDocumentSettingAccess
|
|
{
|
|
std::shared_ptr<SvxForbiddenCharactersTable> mxForbiddenCharsTable;
|
|
SwDoc &m_rDoc;
|
|
|
|
sal_uInt16 mnLinkUpdMode; //< UpdateMode for links.
|
|
|
|
SwFieldUpdateFlags meFieldUpdMode;//< Automatically Update Mode for fields/charts.
|
|
CharCompressType meChrCmprType;//< for ASIAN: compress punctuation/kana
|
|
|
|
sal_uInt32 mn32DummyCompatibilityOptions1;
|
|
sal_uInt32 mn32DummyCompatibilityOptions2;
|
|
|
|
// COMPATIBILITY FLAGS START
|
|
//
|
|
//
|
|
// HISTORY OF THE COMPATIBILITY FLAGS:
|
|
//
|
|
// SO5:
|
|
// mbParaSpaceMax def = false, true since SO8
|
|
// mbParaSpaceMaxAtPages def = false, true since SO8
|
|
//
|
|
// SO6:
|
|
// mbTabCompat def = false, true since SO8
|
|
//
|
|
// SO7:
|
|
// mbUseVirtualDevice def = true
|
|
// mbAddFlyOffsets def = false, hidden
|
|
//
|
|
// SO7pp1:
|
|
// bOldNumbering def = false, hidden
|
|
//
|
|
// SO8:
|
|
// mbAddExternalLeading def = true
|
|
// mbUseHiResolutionVirtualDevice def = true, hidden
|
|
// mbOldLineSpacing def = false
|
|
// mbAddParaSpacingToTableCells def = true
|
|
// mbUseFormerObjectPos def = false
|
|
// mbUseFormerTextWrapping def = false
|
|
// mbConsiderWrapOnObjPos def = false
|
|
//
|
|
// SO8pp1:
|
|
// mbIgnoreFirstLineIndentInNumbering def = false, hidden
|
|
// mbDoNotJustifyLinesWithManualBreak def = false, hidden
|
|
// mbDoNotResetParaAttrsForNumFont def = false, hidden
|
|
//
|
|
// SO8pp3
|
|
// mbDoNotCaptureDrawObjsOnPage def = false, hidden
|
|
// - Relevant for drawing objects, which don't follow the text flow, but
|
|
// whose position is outside the page area:
|
|
// false: Such drawing objects are captured on the page area of its anchor.
|
|
// true: Such drawing objects can leave the page area, they aren't captured.
|
|
// mbTableRowKeep def = false, hidden
|
|
// mbIgnoreTabsAndBlanksForLineCalculation def = false, hidden
|
|
// mbClipAsCharacterAnchoredWriterFlyFrame def = false, hidden
|
|
// - Introduced in order to re-activate clipping of as-character anchored
|
|
// Writer fly frames in method <SwFlyInContentFrame::MakeAll()> for documents,
|
|
// which are created with version prior SO8/OOo 2.0
|
|
//
|
|
// SO8pp4
|
|
// mbUnixForceZeroExtLeading def = false, hidden
|
|
//
|
|
// SO8pu8
|
|
//
|
|
// SO9
|
|
// #i24363# tab stops relative to indent
|
|
// mbTabRelativeToIndent def = 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 = false, hidden
|
|
|
|
bool mbHTMLMode : 1; //< true: Document is in HTMLMode.
|
|
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 mbPurgeOLE : 1; //< true: Purge OLE-Objects
|
|
bool mbKernAsianPunctuation : 1; //< true: kerning also for ASIAN punctuation
|
|
|
|
bool mbParaSpaceMax : 1;
|
|
bool mbParaSpaceMaxAtPages : 1;
|
|
bool mbTabCompat : 1;
|
|
bool mbUseVirtualDevice : 1;
|
|
bool mbAddFlyOffsets : 1;
|
|
bool mbAddVerticalFlyOffsets : 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#
|
|
// 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 mEmbedFonts : 1; //< Whether to embed fonts when saving.
|
|
bool mEmbedUsedFonts : 1; //< Whether to embed fonts that are used by the document when saving.
|
|
bool mEmbedLatinScriptFonts : 1; //< Whether to embed latin script fonts when saving.
|
|
bool mEmbedAsianScriptFonts : 1; //< Whether to embed asian script fonts when saving.
|
|
bool mEmbedComplexScriptFonts : 1; //< Whether to embed complex script fonts when saving.
|
|
bool mEmbedSystemFonts : 1; //< Whether to embed also system fonts.
|
|
|
|
// non-ui-compatibility flags:
|
|
bool mbOldNumbering : 1;
|
|
bool mbIgnoreFirstLineIndentInNumbering : 1; // #i47448#
|
|
bool mbNoGapAfterNoteNumber : 1 = false; // tdf#159382
|
|
bool mbDoNotJustifyLinesWithManualBreak : 1; // #i49277#
|
|
bool mbDoNotResetParaAttrsForNumFont : 1; // #i53199#
|
|
bool mbTableRowKeep : 1;
|
|
bool mbIgnoreTabsAndBlanksForLineCalculation : 1; // #i3952#
|
|
bool mbDoNotCaptureDrawObjsOnPage : 1; // #i62875#
|
|
bool mbClipAsCharacterAnchoredWriterFlyFrames : 1;
|
|
bool mbUnixForceZeroExtLeading : 1; // #i60945#
|
|
bool mbTabRelativeToIndent : 1; // #i24363# tab stops relative to indent
|
|
bool mbProtectForm : 1;
|
|
bool mbMsWordCompTrailingBlanks : 1; // tdf#104349 tdf#104668
|
|
bool mbMsWordCompMinLineHeightByFly : 1;
|
|
bool mbInvertBorderSpacing : 1;
|
|
bool mbCollapseEmptyCellPara : 1;
|
|
bool mbTabAtLeftIndentForParagraphsInList; // #i89181# - see above
|
|
bool mbSmallCapsPercentage66;
|
|
bool mbTabOverflow;
|
|
bool mbUnbreakableNumberings;
|
|
bool mbClippedPictures;
|
|
bool mbBackgroundParaOverDrawings;
|
|
bool mbTabOverMargin;
|
|
bool mbTabOverSpacing;
|
|
bool mbTreatSingleColumnBreakAsPageBreak; // tdf#76349
|
|
bool mbSurroundTextWrapSmall;
|
|
bool mbPropLineSpacingShrinksFirstLine; // fdo#79602
|
|
bool mbSubtractFlys; // tdf#86578
|
|
bool mApplyParagraphMarkFormatToNumbering;
|
|
bool mbAddParaLineSpacingToTableCells; // tdf#125300 tdf#134782
|
|
|
|
bool mbLastBrowseMode : 1;
|
|
bool mbDisableOffPagePositioning; // tdf#112443
|
|
bool mbEmptyDbFieldHidesPara;
|
|
bool mbContinuousEndnotes = false;
|
|
bool mbProtectBookmarks;
|
|
bool mbProtectFields;
|
|
bool mbHeaderSpacingBelowLastPara;
|
|
bool mbFrameAutowidthWithMorePara; //tdf#124423
|
|
/// Gutter position: false means left (not a compatibility setting).
|
|
bool mbGutterAtTop;
|
|
bool mbFootnoteInColumnToPageEnd;
|
|
sal_Int32 mnImagePreferredDPI;
|
|
bool mbAutoFirstLineIndentDisregardLineSpace;
|
|
bool mbHyphenateURLs = false;
|
|
bool mbDoNotBreakWrappedTables = false;
|
|
bool mbAllowTextAfterFloatingTableBreak = false;
|
|
bool mbJustifyLinesWithShrinking = false;
|
|
bool mbApplyTextAttrToEmptyLineAtEndOfParagraph = false; // this was a mistake
|
|
bool mbApplyParagraphMarkFormatToEmptyLineAtEndOfParagraph = false;
|
|
bool mbIgnoreHiddenCharsForLineCalculation = true;
|
|
bool mbDoNotMirrorRtlDrawObjs = false;
|
|
// If this is on as_char flys wrapping will be handled the same like in Word
|
|
bool mbNoNumberingShowFollowBy;
|
|
bool mbDropCapPunctuation; // tdf#150200, tdf#150438
|
|
bool mbUseVariableWidthNBSP : 1; // tdf#41652
|
|
bool mbPaintHellOverHeaderFooter : 1; // tdf#160198
|
|
bool mbMinRowHeightInclBorder : 1; // tdf#155229
|
|
bool mbMsWordCompGridMetrics : 1; // tdf#129808
|
|
bool mbNoClippingWithWrapPolygon : 1; // tdf#161233
|
|
|
|
public:
|
|
|
|
DocumentSettingManager(SwDoc &rDoc);
|
|
virtual ~DocumentSettingManager() override;
|
|
|
|
// IDocumentSettingAccess
|
|
virtual bool get(/*[in]*/ DocumentSettingId id) const override;
|
|
virtual void set(/*[in]*/ DocumentSettingId id, /*[in]*/ bool value) override;
|
|
virtual const css::i18n::ForbiddenCharacters* getForbiddenCharacters(/*[in]*/ LanguageType nLang, /*[in]*/ bool bLocaleData ) const override;
|
|
virtual void setForbiddenCharacters(/*[in]*/ LanguageType nLang, /*[in]*/ const css::i18n::ForbiddenCharacters& rForbiddenCharacters ) override;
|
|
virtual std::shared_ptr<SvxForbiddenCharactersTable>& getForbiddenCharacterTable() override;
|
|
virtual const std::shared_ptr<SvxForbiddenCharactersTable>& getForbiddenCharacterTable() const override;
|
|
virtual sal_uInt16 getLinkUpdateMode( /*[in]*/bool bGlobalSettings ) const override;
|
|
virtual void setLinkUpdateMode( /*[in]*/ sal_uInt16 nMode ) override;
|
|
virtual SwFieldUpdateFlags getFieldUpdateFlags( /*[in]*/bool bGlobalSettings ) const override;
|
|
virtual void setFieldUpdateFlags( /*[in]*/ SwFieldUpdateFlags eMode ) override;
|
|
virtual CharCompressType getCharacterCompressionType() const override;
|
|
virtual void setCharacterCompressionType( /*[in]*/CharCompressType nType ) override;
|
|
|
|
sal_Int32 getImagePreferredDPI() override
|
|
{
|
|
return mnImagePreferredDPI;
|
|
}
|
|
void setImagePreferredDPI(sal_Int32 nValue) override
|
|
{
|
|
mnImagePreferredDPI = nValue;
|
|
}
|
|
|
|
// Replace all compatibility options with those from rSource.
|
|
void ReplaceCompatibilityOptions(const DocumentSettingManager& rSource);
|
|
|
|
sal_uInt32 Getn32DummyCompatibilityOptions1() const override;
|
|
void Setn32DummyCompatibilityOptions1( const sal_uInt32 CompatibilityOptions1 ) override;
|
|
sal_uInt32 Getn32DummyCompatibilityOptions2() const override;
|
|
void Setn32DummyCompatibilityOptions2( const sal_uInt32 CompatibilityOptions2 ) override;
|
|
void dumpAsXml(xmlTextWriterPtr pWriter) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif //_DOCSETTING_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|