summaryrefslogtreecommitdiff
path: root/vcl/inc/printdlg.hxx
diff options
context:
space:
mode:
authorAyhan Yalçınsoy <ayhanyalcinsoy@pisilinux.org>2020-10-26 13:28:38 +0300
committerHeiko Tietze <heiko.tietze@documentfoundation.org>2020-10-29 09:22:09 +0100
commit1628d815712ef40020f744a80b949e3cf4d8380d (patch)
tree53f19d875331359d5919829fce62eeaa96c9242a /vcl/inc/printdlg.hxx
parent695600ab48f86dccd656a6173b6728c02f795fd5 (diff)
tdf#137506: Move single control in 'More Options' to print dialog
Change-Id: Iacefe276bf174b96118015b48e746d1591b93c1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104805 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'vcl/inc/printdlg.hxx')
-rw-r--r--vcl/inc/printdlg.hxx18
1 files changed, 1 insertions, 17 deletions
diff --git a/vcl/inc/printdlg.hxx b/vcl/inc/printdlg.hxx
index 3e337057d042..43760bab815c 100644
--- a/vcl/inc/printdlg.hxx
+++ b/vcl/inc/printdlg.hxx
@@ -34,21 +34,6 @@ namespace vcl {
namespace vcl
{
- class MoreOptionsDialog final : public weld::GenericDialogController
- {
- PrintDialog* mpParent;
- std::unique_ptr<weld::Button> mxOKButton;
- std::unique_ptr<weld::Button> mxCancelButton;
- std::unique_ptr<weld::CheckButton> mxSingleJobsBox;
-
- DECL_LINK( ClickHdl, weld::Button&, void );
-
- public:
-
- MoreOptionsDialog(PrintDialog* i_pParent);
- virtual ~MoreOptionsDialog() override;
- };
-
class PrintDialog : public weld::GenericDialogController
{
friend class MoreOptionsDialog;
@@ -129,8 +114,6 @@ namespace vcl
std::shared_ptr<PrinterController> maPController;
- std::unique_ptr<MoreOptionsDialog> mxMoreOptionsDlg;
-
std::unique_ptr<weld::Notebook> mxTabCtrl;
std::unique_ptr<weld::Frame> mxPageLayoutFrame;
std::unique_ptr<weld::ComboBox> mxPrinters;
@@ -143,6 +126,7 @@ namespace vcl
std::unique_ptr<weld::Entry> mxPageRangeEdit;
std::unique_ptr<weld::RadioButton> mxPageRangesRadioButton;
std::unique_ptr<weld::ComboBox> mxPaperSidesBox;
+ std::unique_ptr<weld::CheckButton> mxSingleJobsBox;
std::unique_ptr<weld::CheckButton> mxReverseOrderBox;
std::unique_ptr<weld::Button> mxOKButton;