diff options
author | Oliver Specht <oliver.specht@cib.de> | 2024-08-05 13:53:25 +0200 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2024-09-17 03:44:46 +0200 |
commit | 4855bbfa4d0cbc6376ab2a40151886f84fafac40 (patch) | |
tree | eed93f169c9d1943c0e163cbd8cfb46f57628ac9 /officecfg | |
parent | 636f853bda69a889146968116b276d88f105b47f (diff) |
tdf#132274 add zoom defaults to Writer options
Zoom value is sometimes stored at documents. But users
might prefer local zoom settings over stored values.
Users are now able to set preferred values in Writer's
option dialog.
Change-Id: Ia1c3926aac3dd236f15f84d8dc535d8aa3758238
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171482
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Writer.xcs | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs index 124e0a3dd931..b2d7d503b35b 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs @@ -901,6 +901,59 @@ <value>1</value> </prop> </group> + <group oor:name="Zoom"> + <info> + <desc>Contains zoom settings of the document view.</desc> + </info> + <prop oor:name="DefaultZoom" oor:type="xs:boolean" oor:nillable="false"> + <!-- UIHints: Tools - Options - Text document Contents - [Section] ´Zoom--> + <info> + <desc>Determines whether zoom settings previously selected are applied to new/loaded document view or predefined zoom values are applied</desc> + </info> + <value>true</value> + </prop> + <prop oor:name="ZoomType" oor:type="xs:int" oor:nillable="false"> + <!-- UIHints: Tools - Options - Text document Contents - [Section] ´Zoom--> + <info> + <desc>Contains predefined zoom type</desc> + </info> + <constraints> + <enumeration oor:value="0"> + <info> + <desc>PERCENT</desc> + </info> + </enumeration> + <enumeration oor:value="1"> + <info> + <desc>OPTIMAL</desc> + </info> + </enumeration> + <enumeration oor:value="2"> + <info> + <desc>WHOLEPAGE</desc> + </info> + </enumeration> + <enumeration oor:value="3"> + <info> + <desc>PAGEWIDTH</desc> + </info> + </enumeration> + <enumeration oor:value="4"> + <info> + <desc>PAGEWIDTH_NOBORDER</desc> + </info> + </enumeration> + </constraints> + <value>0</value> + </prop> + <prop oor:name="ZoomValue" oor:type="xs:int" oor:nillable="false"> + <!-- UIHints: Tools - Options - Text document Contents - [Section] ´Zoom--> + <info> + <desc>Contains predefined zoom value in percent.</desc> + </info> + <value>100</value> + </prop> + </group> <group oor:name="NonprintingCharacter"> <info> <desc>Contains settings for the visibility of various non-printing characters.</desc> |