diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-04-17 11:43:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-04-17 13:07:42 +0200 |
commit | f569507f3f0da7f69a2e808165612cbef4c15410 (patch) | |
tree | 7aad2540b2d5eaadd074d679f05fdc9ad524042d /officecfg | |
parent | 9a3b47afab1750eba0451d59a8bac53302d85b2f (diff) |
Revert "[API CHANGE] remove some primitives rendering settings"
This reverts commit c71656f51a09e88ecae4f3423c96fee84778647d.
Reason for revert: I give up
Change-Id: I2a09c36c1f0d731f4d3f7d809364de7efa8d8a58
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92426
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Common.xcs | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index d7ae0e4d48b6..1307269765fb 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -1140,6 +1140,45 @@ </info> <value>true</value> </prop> + <prop oor:name="SnapHorVerLinesToDiscrete" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>This switch allows to enhance visualisation of graphics which + use Horizontal or Vertical Hairlines combined with AntiAliased mode + (e.g. in 2D charts). When not used, those lines will be AntiAliased as + everything else. Since this is not pleasing for the eye, this option + allows to force those lines to snap to discrete points (pixels) when + activated and thus avoids AntiAliasing of pure Horizontal or Vertical + Hairlines.</desc> + <label>Determines if Horizontal and Vertical HairLines in AntiAliased + mode are snapped to discrete pixels to enhance visualisation</label> + </info> + <value>true</value> + </prop> + <prop oor:name="RenderDecoratedTextDirect" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>This switch determines if the decorations of decorated text + portions (e.g. underline, strike through) are rendered using VCL + direct rendering or if the primitive is decomposed into simple text + and the corresponding geometrical representations of the decorations. + Default is true since VCL's usage of the diverse System's hinting + possibilities for decorations is useful.</desc> + <label>Determines if decorated texts are decomposed at render time or + directly rendered using VCL</label> + </info> + <value>true</value> + </prop> + <prop oor:name="RenderSimpleTextDirect" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>This switch determines if simple text is directly rendered using + VCL or not. If not, the simple text is decomposed into PolyPolygons + which will be painted then. Default is true, since VCL will use the + hinting for font rendering on the diverse supported systems, which + gives better quality than rendering the text as Polygons.</desc> + <label>Determines if simple texts are decomposed at render time or + directly rendered using VCL</label> + </info> + <value>true</value> + </prop> <prop oor:name="SolidDragCreate" oor:type="xs:boolean" oor:nillable="false"> <info> <desc>This switch decides if Interactions in the DrawingLayer are @@ -1155,6 +1194,31 @@ </info> <value>true</value> </prop> + <prop oor:name="Quadratic3DRenderLimit" oor:type="xs:int" oor:nillable="false"> + <info> + <desc>This defines a Limitation for the default raster conversion from + 3D Scenes to Bitmaps. The number is the maximum number of pixels to + use, e.g. 1000x1000 Pixels is allowed as default. When Scenes would + need more Pixels than this, the Bitmap will be limited and scaled to + the needed pixel size at paint time.</desc> + <label>A Pixel limitation for the creation of 3D Scenes with the + default renderer.</label> + </info> + <value>1000000</value> + </prop> + <prop oor:name="QuadraticFormControlRenderLimit" oor:type="xs:int" oor:nillable="false"> + <info> + <desc>This defines a Limitation for the default raster conversion of + FormControls in edit mode. These have the ability to be displayed + using this fallback to Bitmaps. The number is the maximum number of + pixels to use, e.g. 300x150 Pixels is allowed as default. When + FormControls would need more Pixels than this, the Bitmap will be + limited and scaled to the needed pixel size at paint time.</desc> + <label>A Pixel limitation for the creation of FormControl fallback + display.</label> + </info> + <value>45000</value> + </prop> <prop oor:name="TransparentSelection" oor:type="xs:boolean" oor:nillable="false"> <info> <desc>This switch defines if the selections in the applications (text |