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 /include/svtools/optionsdrawinglayer.hxx | |
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 'include/svtools/optionsdrawinglayer.hxx')
-rw-r--r-- | include/svtools/optionsdrawinglayer.hxx | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/include/svtools/optionsdrawinglayer.hxx b/include/svtools/optionsdrawinglayer.hxx index b156dd5741f2..762b2545e1af 100644 --- a/include/svtools/optionsdrawinglayer.hxx +++ b/include/svtools/optionsdrawinglayer.hxx @@ -101,23 +101,12 @@ class SVT_DLLPUBLIC SvtOptionsDrawinglayer // primitives bool IsAntiAliasing() const; - /** - 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. - */ - static sal_uInt32 GetQuadratic3DRenderLimit() { return 1000000; } - /** - 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. - */ - static sal_uInt32 GetQuadraticFormControlRenderLimit() { return 45000; } + bool IsSnapHorVerLinesToDiscrete() const; + bool IsSolidDragCreate() const; + bool IsRenderDecoratedTextDirect() const; + bool IsRenderSimpleTextDirect() const; + sal_uInt32 GetQuadratic3DRenderLimit() const; + sal_uInt32 GetQuadraticFormControlRenderLimit() const; void SetAntiAliasing( bool bState ); |