diff options
author | Michael Stahl <Michael.Stahl@cib.de> | 2020-01-31 16:19:21 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2022-06-22 15:10:07 +0200 |
commit | 4ec2c9816b8f4012bb7a760a85a46d8a1e530089 (patch) | |
tree | 399e628c4f83b7e773d379a668a14e32eaf3d82f /offapi/com | |
parent | bf2c6dea101ec9b28a827eac12842b713aeb9633 (diff) |
tdf#45589 offapi,officecfg,sw: add option to toggle bookmark display
Create specific option to toggle display of the bookmark positions
instead of relying on generic IsViewMetaChars().
Add a Bookmarks checkbox to Writer->Formatting Aids page in Options.
Add property ShowBookmarks to com::sun::star::text::ViewSettings.
Add config setting:
org/openoffice/Office/Writer/Content/NonprintingCharacter/Bookmarks
Change-Id: I998ecdc16d8e4a5baeeb1bbcff0bf5f1f5636692
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87774
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@cib.de>
(cherry picked from commit 04405edc3fac32938b8940bc767656ea6c7820f9)
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/text/ViewSettings.idl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/offapi/com/sun/star/text/ViewSettings.idl b/offapi/com/sun/star/text/ViewSettings.idl index 5de3bf8d6dd5..b0afa27c46e8 100644 --- a/offapi/com/sun/star/text/ViewSettings.idl +++ b/offapi/com/sun/star/text/ViewSettings.idl @@ -278,6 +278,12 @@ published service ViewSettings */ [optional, property] boolean UseHeaderFooterMenu; + /** If this property is `TRUE`, bookmark positions are displayed. + + @since LibreOffice 7.0 + */ + [optional, property] boolean ShowBookmarks; + }; }; }; }; }; |