summaryrefslogtreecommitdiff
path: root/vcl/inc/printdlg.hxx
blob: 60839b07382f541dcca4ee138911e0664bed66cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef VCL_INC_NEWPRINTDLG_HXX
#define VCL_INC_NEWPRINTDLG_HXX

#include <vcl/bitmapex.hxx>
#include <vcl/gdimtf.hxx>
#include <vcl/idle.hxx>
#include <vcl/print.hxx>
#include <vcl/customweld.hxx>
#include <vcl/weld.hxx>
#include <map>

namespace vcl {
    class PrintDialog;
}

namespace vcl
{
    class PrintDialog : public weld::GenericDialogController
    {
        friend class MoreOptionsDialog;
    public:

        class PrintPreviewWindow final : public weld::CustomWidgetController
        {
            PrintDialog*        mpDialog;
            GDIMetaFile         maMtf;
            Size                maOrigSize;
            Size                maPreviewSize;
            sal_Int32           mnDPIX;
            sal_Int32           mnDPIY;
            BitmapEx            maPreviewBitmap;
            OUString            maReplacementString;
            bool                mbGreyscale;

            OUString            maHorzText;
            OUString            maVertText;

            void preparePreviewBitmap();

        public:
            PrintPreviewWindow(PrintDialog* pDialog);
            virtual ~PrintPreviewWindow() override;

            virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
            virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override;
            virtual bool Command( const CommandEvent& ) override;
            virtual void Resize() override;

            void setPreview( const GDIMetaFile&, const Size& i_rPaperSize,
                             const OUString& i_rPaperName,
                             const OUString& i_rNoPageString,
                             sal_Int32 i_nDPIX, sal_Int32 i_nDPIY,
                             bool i_bGreyscale
                            );
        };

        class ShowNupOrderWindow final : public weld::CustomWidgetController
        {
            NupOrderType mnOrderMode;
            int mnRows;
            int mnColumns;
        public:
            ShowNupOrderWindow();

            virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;

            virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& ) override;

            void setValues( NupOrderType i_nOrderMode, int i_nColumns, int i_nRows )
            {
                mnOrderMode = i_nOrderMode;
                mnRows = i_nRows;
                mnColumns = i_nColumns;
                Invalidate();
            }
        };

        PrintDialog(weld::Window*, const std::shared_ptr<PrinterController>&);
        virtual ~PrintDialog() override;

        bool isPrintToFile() const;
        bool isCollate() const;
        bool isSingleJobs() const;
        bool hasPreview() const;

        void setPaperSizes();
        void previewForward();
        void previewBackward();
        void previewFirst();
        void previewLast();

    private:

        std::unique_ptr<weld::Builder>          mxCustomOptionsUIBuilder;

        std::shared_ptr<PrinterController>      maPController;

        std::unique_ptr<weld::Notebook>         mxTabCtrl;
        std::unique_ptr<weld::ScrolledWindow>   mxScrolledWindow;
        std::unique_ptr<weld::Frame>            mxPageLayoutFrame;
        std::unique_ptr<weld::ComboBox>         mxPrinters;
        std::unique_ptr<weld::Label>            mxStatusTxt;
        std::unique_ptr<weld::Button>           mxSetupButton;

        std::unique_ptr<weld::SpinButton>       mxCopyCountField;
        std::unique_ptr<weld::CheckButton>      mxCollateBox;
        std::unique_ptr<weld::Image>            mxCollateImage;
        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;
        std::unique_ptr<weld::Button>           mxCancelButton;
        std::unique_ptr<weld::Button>           mxHelpButton;
        std::unique_ptr<weld::Button>           mxMoreOptionsBtn;

        std::unique_ptr<weld::Button>           mxBackwardBtn;
        std::unique_ptr<weld::Button>           mxForwardBtn;
        std::unique_ptr<weld::Button>           mxFirstBtn;
        std::unique_ptr<weld::Button>           mxLastBtn;

        std::unique_ptr<weld::CheckButton>      mxPreviewBox;
        std::unique_ptr<weld::Label>            mxNumPagesText;
        std::unique_ptr<PrintPreviewWindow>     mxPreview;
        std::unique_ptr<weld::CustomWeld>       mxPreviewWindow;
        std::unique_ptr<weld::Entry>            mxPageEdit;

        std::unique_ptr<weld::RadioButton>      mxPagesBtn;
        std::unique_ptr<weld::RadioButton>      mxBrochureBtn;
        std::unique_ptr<weld::Label>            mxPagesBoxTitleTxt;
        std::unique_ptr<weld::ComboBox>         mxNupPagesBox;

        // controls for "Custom" page mode
        std::unique_ptr<weld::Label>            mxNupNumPagesTxt;
        std::unique_ptr<weld::SpinButton>       mxNupColEdt;
        std::unique_ptr<weld::Label>            mxNupTimesTxt;
        std::unique_ptr<weld::SpinButton>       mxNupRowsEdt;
        std::unique_ptr<weld::Label>            mxPageMarginTxt1;
        std::unique_ptr<weld::MetricSpinButton> mxPageMarginEdt;
        std::unique_ptr<weld::Label>            mxPageMarginTxt2;
        std::unique_ptr<weld::Label>            mxSheetMarginTxt1;
        std::unique_ptr<weld::MetricSpinButton> mxSheetMarginEdt;
        std::unique_ptr<weld::Label>            mxSheetMarginTxt2;
        std::unique_ptr<weld::ComboBox>         mxPaperSizeBox;
        std::unique_ptr<weld::ComboBox>         mxOrientationBox;

        // page order ("left to right, then down")
        std::unique_ptr<weld::Label>            mxNupOrderTxt;
        std::unique_ptr<weld::ComboBox>         mxNupOrderBox;
        std::unique_ptr<ShowNupOrderWindow>     mxNupOrder;
        std::unique_ptr<weld::CustomWeld>       mxNupOrderWin;
        /// border around each page
        std::unique_ptr<weld::CheckButton>      mxBorderCB;
        std::unique_ptr<weld::Expander>         mxRangeExpander;
        std::unique_ptr<weld::Expander>         mxLayoutExpander;
        std::unique_ptr<weld::Widget>           mxCustom;

        OUString                                maPrintToFileText;
        OUString                                maPrintText;
        OUString                                maDefPrtText;

        OUString                                maPageStr;
        OUString                                maNoPageStr;
        OUString                                maNoPreviewStr;
        sal_Int32                               mnCurPage;
        sal_Int32                               mnCachedPages;

        bool                                    mbCollateAlwaysOff;

        std::vector<std::unique_ptr<weld::Widget>>
                                                maExtraControls;

        std::map<weld::Widget*, OUString>
                                                maControlToPropertyMap;
        std::map<OUString, std::vector<weld::Widget*>>
                                                maPropertyToWindowMap;
        std::map<weld::Widget*, sal_Int32>
                                                maControlToNumValMap;

        Size                                    maNupPortraitSize;
        Size                                    maNupLandscapeSize;
        /// internal, used for automatic Nup-Portrait/landscape
        Size                                    maFirstPageSize;

        bool                                    mbShowLayoutFrame;

        Paper                                   mePaper;

        Idle maUpdatePreviewIdle;
        DECL_LINK(updatePreviewIdle, Timer*, void);
        Idle maUpdatePreviewNoCacheIdle;
        DECL_LINK(updatePreviewNoCacheIdle, Timer*, void);

        DECL_LINK( ClickHdl, weld::Button&, void );
        DECL_LINK( SelectHdl, weld::ComboBox&, void );
        DECL_LINK( ActivateHdl, weld::Entry&, bool );
        DECL_LINK( FocusOutHdl, weld::Widget&, void );
        DECL_LINK( SpinModifyHdl, weld::SpinButton&, void );
        DECL_LINK( MetricSpinModifyHdl, weld::MetricSpinButton&, void );
        DECL_LINK( ToggleHdl, weld::ToggleButton&, void );

        DECL_LINK( UIOption_CheckHdl, weld::ToggleButton&, void );
        DECL_LINK( UIOption_RadioHdl, weld::ToggleButton&, void );
        DECL_LINK( UIOption_SelectHdl, weld::ComboBox&, void );
        DECL_LINK( UIOption_SpinModifyHdl, weld::SpinButton&, void );
        DECL_LINK( UIOption_EntryModifyHdl, weld::Entry&, void );

        DECL_LINK( ExpandHdl, weld::Expander&, void );

        css::beans::PropertyValue* getValueForWindow(weld::Widget*) const;

        void preparePreview( bool i_bMayUseCache );
        void setupPaperSidesBox();
        void storeToSettings();
        void readFromSettings();
        void setPaperOrientation( Orientation eOrientation );
        void updateOrientationBox( bool bAutomatic = true );
        bool hasOrientationChanged() const;
        void checkPaperSize( Size& rPaperSize );
        void setPreviewText();
        void updatePrinterText();
        void checkControlDependencies();
        void checkOptionalControlDependencies();
        void makeEnabled( weld::Widget* );
        void updateWindowFromProperty( const OUString& );
        void initFromMultiPageSetup( const vcl::PrinterController::MultiPageSetup& );
        void showAdvancedControls( bool );
        void updateNup( bool i_bMayUseCache = true );
        void updateNupFromPages( bool i_bMayUseCache = true );
        void enableNupControls( bool bEnable );
        void setupOptionalUI();
        Size const & getJobPageSize();

    };

    class PrintProgressDialog final : public weld::GenericDialogController
    {
        OUString            maStr;
        bool                mbCanceled;
        sal_Int32           mnCur;
        sal_Int32           mnMax;

        std::unique_ptr<weld::Label> mxText;
        std::unique_ptr<weld::ProgressBar> mxProgress;
        std::unique_ptr<weld::Button> mxButton;

        DECL_LINK( ClickHdl, weld::Button&, void );

    public:
        PrintProgressDialog(weld::Window* i_pParent, int i_nMax);
        virtual ~PrintProgressDialog() override;
        bool isCanceled() const { return mbCanceled; }
        void setProgress( int i_nCurrent );
        void tick();
    };
}

#endif // VCL_INC_NEWPRINTDLG_HXX

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */