diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-02-13 10:39:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-02-13 12:11:07 +0000 |
commit | 6b86b55107751b1f0d03fad2a59bf8049cda3bdc (patch) | |
tree | fffec610fee6d7e5b3708984d4f99b4a8532c2f3 /sfx2/inc | |
parent | 62fb1958f6ac4d238e98cfb6b497f5990615450f (diff) |
move print options .ui to sfx2 and adapt code
Change-Id: I8a7b1d15a002cbe74ac0fb97fcd8ce60a47a4e61
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/sfx2/printopt.hxx | 50 |
1 files changed, 20 insertions, 30 deletions
diff --git a/sfx2/inc/sfx2/printopt.hxx b/sfx2/inc/sfx2/printopt.hxx index ccc48ef0e058..44d37d0a4558 100644 --- a/sfx2/inc/sfx2/printopt.hxx +++ b/sfx2/inc/sfx2/printopt.hxx @@ -41,39 +41,32 @@ class SFX2_DLLPUBLIC SfxCommonPrintOptionsTabPage : public SfxTabPage { private: - FixedLine aReduceGB; + RadioButton* m_pPrinterOutputRB; + RadioButton* m_pPrintFileOutputRB; - FixedText aOutputTypeFT; - RadioButton aPrinterOutputRB; - RadioButton aPrintFileOutputRB; + CheckBox* m_pReduceTransparencyCB; + RadioButton* m_pReduceTransparencyAutoRB; + RadioButton* m_pReduceTransparencyNoneRB; - FixedLine aOutputGB; + CheckBox* m_pReduceGradientsCB; + RadioButton* m_pReduceGradientsStripesRB; + RadioButton* m_pReduceGradientsColorRB; + NumericField* m_pReduceGradientsStepCountNF; - CheckBox aReduceTransparencyCB; - RadioButton aReduceTransparencyAutoRB; - RadioButton aReduceTransparencyNoneRB; + CheckBox* m_pReduceBitmapsCB; + RadioButton* m_pReduceBitmapsOptimalRB; + RadioButton* m_pReduceBitmapsNormalRB; + RadioButton* m_pReduceBitmapsResolutionRB; + ListBox* m_pReduceBitmapsResolutionLB; + CheckBox* m_pReduceBitmapsTransparencyCB; - CheckBox aReduceGradientsCB; - RadioButton aReduceGradientsStripesRB; - RadioButton aReduceGradientsColorRB; - NumericField aReduceGradientsStepCountNF; + CheckBox* m_pConvertToGreyscalesCB; - CheckBox aReduceBitmapsCB; - RadioButton aReduceBitmapsOptimalRB; - RadioButton aReduceBitmapsNormalRB; - RadioButton aReduceBitmapsResolutionRB; - ListBox aReduceBitmapsResolutionLB; - CheckBox aReduceBitmapsTransparencyCB; + CheckBox* m_pPDFCB; - CheckBox aConvertToGreyscalesCB; - - CheckBox aPDFCB; - - FixedLine aWarnGB; - - CheckBox aPaperSizeCB; - CheckBox aPaperOrientationCB; - CheckBox aTransparencyCB; + CheckBox* m_pPaperSizeCB; + CheckBox* m_pPaperOrientationCB; + CheckBox* m_pTransparencyCB; private: @@ -93,9 +86,6 @@ private: SAL_DLLPRIVATE void ImplUpdateControls( const PrinterOptions* pCurrentOptions ); SAL_DLLPRIVATE void ImplSaveControls( PrinterOptions* pCurrentOptions ); - // #i63982# - SAL_DLLPRIVATE void ImplSetAccessibleNames(); - protected: using TabPage::DeactivatePage; |