LibreOffice Module sw (master) 1
IDocumentSettingAccess.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <sal/types.h>
23#include "fldupde.hxx"
24#include <i18nlangtag/lang.h>
25#include <memory>
26
29{
30struct ForbiddenCharacters;
31}
32enum class CharCompressType;
33
35{
36 // COMPATIBILITY FLAGS START
39
41
44
46
56
61
66
67 // tdf#104349 tdf#104668
69 // tdf#128197 MS Word in some modes can have line height based on shape height, not on font
74 // #i89181#
85 // MS Word still wraps text around objects with less space than LO would.
89 // tdf#112443 disable off-page content positioning
92 // tdf#129448: Auto first-line indent should not be effected by line space
96 // COMPATIBILITY FLAGS END
102 PURGE_OLE,
120 // footnoteContainer default position is the page end instead of the column end
121 // only if "evenly distributed" is set, and "collected at the end" is not set
123 // Should we display follow by symbol for numbered paragraph if numbering exists, but "None"?
125 // drop cap punctuation: smaller dashes, bullet, asterisks, quotation marks etc.
126 // by extending the rounding box of the glyph to the baseline
128 // render NBSP as standard-space-width (prettier when justified)
130};
131
135{
136public:
146 virtual bool get(/*[in]*/ DocumentSettingId id) const = 0;
147
157 virtual void set(/*[in]*/ DocumentSettingId id, /*[in]*/ bool value) = 0;
158
171 virtual const css::i18n::ForbiddenCharacters*
172 getForbiddenCharacters(/*[in]*/ LanguageType nLang, /*[in]*/ bool bLocaleData) const = 0;
173
182 virtual void
184 /*[in]*/ const css::i18n::ForbiddenCharacters& rForbiddenCharacters)
185 = 0;
186
192 virtual std::shared_ptr<SvxForbiddenCharactersTable>& getForbiddenCharacterTable() = 0;
193
199 virtual const std::shared_ptr<SvxForbiddenCharactersTable>&
201
211 virtual sal_uInt16 getLinkUpdateMode(/*[in]*/ bool bGlobalSettings) const = 0;
212
218 virtual void setLinkUpdateMode(/*[in]*/ sal_uInt16 nMode) = 0;
219
229 virtual SwFieldUpdateFlags getFieldUpdateFlags(/*[in]*/ bool bGlobalSettings) const = 0;
230
236 virtual void setFieldUpdateFlags(/*[in]*/ SwFieldUpdateFlags nMode) = 0;
237
244
250 virtual void setCharacterCompressionType(/*[in]*/ CharCompressType nType) = 0;
251
254 virtual sal_uInt32 Getn32DummyCompatibilityOptions1() const = 0;
255
258 virtual void Setn32DummyCompatibilityOptions1(const sal_uInt32 CompatibilityOptions1) = 0;
259
262 virtual sal_uInt32 Getn32DummyCompatibilityOptions2() const = 0;
263
266 virtual void Setn32DummyCompatibilityOptions2(const sal_uInt32 CompatibilityOptions2) = 0;
267
268 virtual sal_Int32 getImagePreferredDPI() = 0;
269 virtual void setImagePreferredDPI(sal_Int32 nValue) = 0;
270
271protected:
273};
274
275/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
@ CONSIDER_WRAP_ON_OBJECT_POSITION
@ CLIP_AS_CHARACTER_ANCHORED_WRITER_FLY_FRAME
@ TREAT_SINGLE_COLUMN_BREAK_AS_PAGE_BREAK
@ DO_NOT_JUSTIFY_LINES_WITH_MANUAL_BREAK
@ HYPHENATE_URLS
tdf#152952
@ IGNORE_FIRST_LINE_INDENT_IN_NUMBERING
@ APPLY_PARAGRAPH_MARK_FORMAT_TO_NUMBERING
@ AUTO_FIRST_LINE_INDENT_DISREGARD_LINE_SPACE
@ TAB_AT_LEFT_INDENT_FOR_PARA_IN_LIST
@ MS_WORD_COMP_MIN_LINE_HEIGHT_BY_FLY
@ IGNORE_TABS_AND_BLANKS_FOR_LINE_CALCULATION
@ DO_NOT_CAPTURE_DRAW_OBJS_ON_PAGE
@ PROP_LINE_SPACING_SHRINKS_FIRST_LINE
@ DO_NOT_RESET_PARA_ATTRS_FOR_NUM_FONT
@ ADD_PARA_LINE_SPACING_TO_TABLE_CELLS
CharCompressType
Provides access to settings of a document.
virtual sal_uInt32 Getn32DummyCompatibilityOptions1() const =0
Get the n32DummyCompatibilityOptions1.
virtual sal_uInt16 getLinkUpdateMode(bool bGlobalSettings) const =0
Get the current link update mode.
virtual std::shared_ptr< SvxForbiddenCharactersTable > & getForbiddenCharacterTable()=0
Get the forbidden character table and creates one if necessary.
virtual const std::shared_ptr< SvxForbiddenCharactersTable > & getForbiddenCharacterTable() const =0
Get the forbidden character table.
virtual void setFieldUpdateFlags(SwFieldUpdateFlags nMode)=0
Set the current field update mode.
virtual void setImagePreferredDPI(sal_Int32 nValue)=0
virtual bool get(DocumentSettingId id) const =0
Return the specified document setting.
virtual void setLinkUpdateMode(sal_uInt16 nMode)=0
Set the current link update mode.
virtual void setCharacterCompressionType(CharCompressType nType)=0
Set the character compression type for Asian characters.
virtual void set(DocumentSettingId id, bool value)=0
Set the specified document setting.
virtual void Setn32DummyCompatibilityOptions2(const sal_uInt32 CompatibilityOptions2)=0
Set the n32DummyCompatibilityOptions2.
virtual SwFieldUpdateFlags getFieldUpdateFlags(bool bGlobalSettings) const =0
Get the current field update mode.
virtual CharCompressType getCharacterCompressionType() const =0
Get the character compression type for Asian characters.
virtual const css::i18n::ForbiddenCharacters * getForbiddenCharacters(LanguageType nLang, bool bLocaleData) const =0
Return the forbidden characters.
virtual sal_Int32 getImagePreferredDPI()=0
virtual void setForbiddenCharacters(LanguageType nLang, const css::i18n::ForbiddenCharacters &rForbiddenCharacters)=0
Set the forbidden characters.
virtual void Setn32DummyCompatibilityOptions1(const sal_uInt32 CompatibilityOptions1)=0
Set the n32DummyCompatibilityOptions1.
virtual sal_uInt32 Getn32DummyCompatibilityOptions2() const =0
Get the n32DummyCompatibilityOptions2.
SwFieldUpdateFlags
Definition: fldupde.hxx:23
static LanguageType nLang
Definition: srtdlg.cxx:51