diff options
author | Balazs Varga <balazs.varga.extern@allotropia.de> | 2023-10-20 19:38:58 +0200 |
---|---|---|
committer | Balazs Varga <balazs.varga.extern@allotropia.de> | 2023-10-24 08:38:54 +0200 |
commit | 60952eb3234006e9fba189e4189e15f902cafb4b (patch) | |
tree | cc4fe06bdbfefd781b10a944eead88a65050c95d /include | |
parent | bf7b0febbf3081a3693bf09bc4e779f7c6c30dc0 (diff) |
tdf#157838 - UI: Part 4 - Unify lockdown behavior of Options dialog
for Print Page.
Change-Id: I724dcbaf8e3ed479aaf053965d2d0e64381e53fe
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158269
Tested-by: Jenkins
Reviewed-by: Balazs Varga <balazs.varga.extern@allotropia.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/printopt.hxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/sfx2/printopt.hxx b/include/sfx2/printopt.hxx index a251616a4890..e01991dad347 100644 --- a/include/sfx2/printopt.hxx +++ b/include/sfx2/printopt.hxx @@ -33,22 +33,33 @@ private: std::unique_ptr<weld::RadioButton> m_xPrinterOutputRB; std::unique_ptr<weld::RadioButton> m_xPrintFileOutputRB; std::unique_ptr<weld::CheckButton> m_xReduceTransparencyCB; + std::unique_ptr<weld::Widget> m_xReduceTransparencyImg; std::unique_ptr<weld::RadioButton> m_xReduceTransparencyAutoRB; std::unique_ptr<weld::RadioButton> m_xReduceTransparencyNoneRB; + std::unique_ptr<weld::Widget> m_xReduceTransparencyModeImg; std::unique_ptr<weld::CheckButton> m_xReduceGradientsCB; + std::unique_ptr<weld::Widget> m_xReduceGradientsImg; std::unique_ptr<weld::RadioButton> m_xReduceGradientsStripesRB; std::unique_ptr<weld::RadioButton> m_xReduceGradientsColorRB; + std::unique_ptr<weld::Widget> m_xReduceGradientsModeImg; std::unique_ptr<weld::SpinButton> m_xReduceGradientsStepCountNF; std::unique_ptr<weld::CheckButton> m_xReduceBitmapsCB; + std::unique_ptr<weld::Widget> m_xReduceBitmapsImg; std::unique_ptr<weld::RadioButton> m_xReduceBitmapsOptimalRB; std::unique_ptr<weld::RadioButton> m_xReduceBitmapsNormalRB; std::unique_ptr<weld::RadioButton> m_xReduceBitmapsResolutionRB; + std::unique_ptr<weld::Widget> m_xReduceBitmapsModeImg; std::unique_ptr<weld::ComboBox> m_xReduceBitmapsResolutionLB; std::unique_ptr<weld::CheckButton> m_xReduceBitmapsTransparencyCB; + std::unique_ptr<weld::Widget> m_xReduceBitmapsTransparencyImg; std::unique_ptr<weld::CheckButton> m_xConvertToGreyscalesCB; + std::unique_ptr<weld::Widget> m_xConvertToGreyscalesImg; std::unique_ptr<weld::CheckButton> m_xPaperSizeCB; + std::unique_ptr<weld::Widget> m_xPaperSizeImg; std::unique_ptr<weld::CheckButton> m_xPaperOrientationCB; + std::unique_ptr<weld::Widget> m_xPaperOrientationImg; std::unique_ptr<weld::CheckButton> m_xTransparencyCB; + std::unique_ptr<weld::Widget> m_xTransparencyImg; private: |