diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2018-03-20 16:40:35 +0100 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2018-03-21 17:54:47 +0100 |
commit | fb29b8262488d045a926504725669a362bacb5bb (patch) | |
tree | c8cb6e160267b46742e0051a8eded6206fb5c1f1 /officecfg | |
parent | fc3f43b6fe3df5e46ca869d5934d4c3333444881 (diff) |
tdf#116241 Customizing value highlighting colors
Change-Id: I5d77e6207d1e29326282d7184c9348e59292977a
Reviewed-on: https://gerrit.libreoffice.org/51653
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Calc.xcs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs index 18b3612259e6..2fdd0caccd64 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs @@ -262,6 +262,38 @@ <info> <desc>Contains settings that affect the window layout.</desc> </info> + <group oor:name="Highlighting"> + <info> + <desc>Contains settings that control highlighting.</desc> + </info> + <prop oor:name="ValueColor" oor:type="xs:int" oor:nillable="false"> + <!-- UIHints: Tools - Options - LibreOffice Calc - View - [Section] Highlighting --> + <!-- Default 255 = LightBlue --> + <info> + <desc>Specifies the color of highlighted values.</desc> + <label>Value Color</label> + </info> + <value>255</value> + </prop> + <prop oor:name="FormulaColor" oor:type="xs:int" oor:nillable="false"> + <!-- UIHints: Tools - Options - LibreOffice Calc - View - [Section] Highlighting --> + <!-- Default 32768 = Green --> + <info> + <desc>Specifies the color of highlighted formulas.</desc> + <label>Formula Color</label> + </info> + <value>32768</value> + </prop> + <prop oor:name="TextColor" oor:type="xs:int" oor:nillable="false"> + <!-- UIHints: Tools - Options - LibreOffice Calc - View - [Section] Highlighting --> + <!-- Default 0 = Black --> + <info> + <desc>Specifies the color of the highlighted text.</desc> + <label>Text Color</label> + </info> + <value>0</value> + </prop> + </group> <group oor:name="Line"> <info> <desc>Contains settings that control visual aids.</desc> |