Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef _SV_PRNDLG_HXX
21 : #define _SV_PRNDLG_HXX
22 :
23 : #include <vcl/dllapi.h>
24 :
25 : #include "print.h"
26 :
27 : #include "vcl/print.hxx"
28 : #include "vcl/dialog.hxx"
29 : #include "vcl/fixed.hxx"
30 : #include "vcl/button.hxx"
31 : #include "vcl/gdimtf.hxx"
32 : #include "vcl/lstbox.hxx"
33 : #include "vcl/field.hxx"
34 : #include "vcl/tabctrl.hxx"
35 : #include "vcl/tabpage.hxx"
36 : #include "vcl/virdev.hxx"
37 :
38 : #include <boost/shared_ptr.hpp>
39 : #include <map>
40 :
41 : namespace vcl
42 : {
43 : class PrintDialog : public ModalDialog
44 : {
45 : public:
46 : class PrintPreviewWindow : public Window
47 : {
48 : GDIMetaFile maMtf;
49 : Size maOrigSize;
50 : Size maPreviewSize;
51 : VirtualDevice maPageVDev;
52 : rtl::OUString maReplacementString;
53 : rtl::OUString maToolTipString;
54 : bool mbGreyscale;
55 : FixedLine maHorzDim;
56 : FixedLine maVertDim;
57 :
58 : public:
59 : PrintPreviewWindow( Window* pParent );
60 : virtual ~PrintPreviewWindow();
61 :
62 : virtual void Paint( const Rectangle& rRect );
63 : virtual void Command( const CommandEvent& );
64 : virtual void Resize();
65 : virtual void DataChanged( const DataChangedEvent& );
66 :
67 : void setPreview( const GDIMetaFile&, const Size& i_rPaperSize,
68 : const rtl::OUString& i_rPaperName,
69 : const rtl::OUString& i_rNoPageString,
70 : sal_Int32 i_nDPIX, sal_Int32 i_nDPIY,
71 : bool i_bGreyscale
72 : );
73 : };
74 :
75 : class ShowNupOrderWindow : public Window
76 : {
77 : int mnOrderMode;
78 : int mnRows;
79 : int mnColumns;
80 : void ImplInitSettings();
81 : public:
82 : ShowNupOrderWindow( Window* pParent );
83 : virtual ~ShowNupOrderWindow();
84 :
85 : virtual Size GetOptimalSize(WindowSizeType eType) const;
86 :
87 : virtual void Paint( const Rectangle& );
88 :
89 0 : void setValues( int i_nOrderMode, int i_nColumns, int i_nRows )
90 : {
91 0 : mnOrderMode = i_nOrderMode;
92 0 : mnRows = i_nRows;
93 0 : mnColumns = i_nColumns;
94 0 : Invalidate();
95 0 : }
96 : };
97 :
98 : private:
99 :
100 : class NUpTabPage
101 : {
102 : public:
103 : RadioButton* mpPagesBtn;
104 : RadioButton* mpBrochureBtn;
105 : FixedText* mpPagesBoxTitleTxt;
106 : ListBox* mpNupPagesBox;
107 :
108 : // controls for "Custom" page mode
109 : FixedText* mpNupNumPagesTxt;
110 : NumericField* mpNupColEdt;
111 : FixedText* mpNupTimesTxt;
112 : NumericField* mpNupRowsEdt;
113 : FixedText* mpPageMarginTxt1;
114 : MetricField* mpPageMarginEdt;
115 : FixedText* mpPageMarginTxt2;
116 : FixedText* mpSheetMarginTxt1;
117 : MetricField* mpSheetMarginEdt;
118 : FixedText* mpSheetMarginTxt2;
119 : FixedText* mpNupOrientationTxt;
120 : ListBox* mpNupOrientationBox;
121 :
122 : // page order ("left to right, then down")
123 : FixedText* mpNupOrderTxt;
124 : ListBox* mpNupOrderBox;
125 : ShowNupOrderWindow* mpNupOrderWin;
126 : // border around each page
127 : CheckBox* mpBorderCB;
128 :
129 : void setupLayout();
130 :
131 : NUpTabPage( VclBuilder* );
132 :
133 : void readFromSettings();
134 : void storeToSettings();
135 : void initFromMultiPageSetup( const vcl::PrinterController::MultiPageSetup& );
136 : void enableNupControls( bool bEnable );
137 :
138 : void showAdvancedControls( bool );
139 : };
140 :
141 0 : class JobTabPage
142 : {
143 : public:
144 : ListBox* mpPrinters;
145 : FixedText* mpStatusTxt;
146 : FixedText* mpLocationTxt;
147 : FixedText* mpCommentTxt;
148 :
149 : PushButton* mpSetupButton;
150 :
151 : FixedLine* mpCopySpacer;
152 : NumericField* mpCopyCountField;
153 : CheckBox* mpCollateBox;
154 : FixedImage* mpCollateImage;
155 : CheckBox* mpReverseOrderBox;
156 :
157 : Image maCollateImg;
158 : Image maNoCollateImg;
159 :
160 : long mnCollateUIMode;
161 :
162 : JobTabPage( VclBuilder* );
163 :
164 : void readFromSettings();
165 : void storeToSettings();
166 : };
167 :
168 : class OutputOptPage
169 : {
170 : public:
171 : CheckBox* mpToFileBox;
172 : CheckBox* mpCollateSingleJobsBox;
173 :
174 : OutputOptPage( VclBuilder* );
175 :
176 : void readFromSettings();
177 : void storeToSettings();
178 : };
179 :
180 : VclBuilder* mpCustomOptionsUIBuilder;
181 :
182 : boost::shared_ptr< PrinterController > maPController;
183 : TabControl* mpTabCtrl;
184 : NUpTabPage maNUpPage;
185 : JobTabPage maJobPage;
186 : OutputOptPage maOptionsPage;
187 : PrintPreviewWindow* mpPreviewWindow;
188 : NumericField* mpPageEdit;
189 :
190 : FixedText* mpNumPagesText;
191 : PushButton* mpBackwardBtn;
192 : PushButton* mpForwardBtn;
193 :
194 : OKButton* mpOKButton;
195 : CancelButton* mpCancelButton;
196 : HelpButton* mpHelpButton;
197 :
198 : rtl::OUString maPageStr;
199 : rtl::OUString maNoPageStr;
200 : sal_Int32 mnCurPage;
201 : sal_Int32 mnCachedPages;
202 :
203 : std::map< Window*, rtl::OUString > maControlToPropertyMap;
204 : std::map< rtl::OUString, std::vector< Window* > >
205 : maPropertyToWindowMap;
206 : std::map< Window*, sal_Int32 > maControlToNumValMap;
207 : std::set< rtl::OUString > maReverseDependencySet;
208 :
209 : Size maNupPortraitSize;
210 : Size maNupLandscapeSize;
211 :
212 : // internal, used for automatic Nup-Portrait/landscape
213 : Size maFirstPageSize;
214 :
215 : rtl::OUString maPrintToFileText;
216 : rtl::OUString maPrintText;
217 : rtl::OUString maDefPrtText;
218 :
219 : Size maDetailsCollapsedSize;
220 : Size maDetailsExpandedSize;
221 :
222 : sal_Bool mbShowLayoutPage;
223 :
224 : Size getJobPageSize();
225 : void updateNup();
226 : void updateNupFromPages();
227 : void preparePreview( bool i_bPrintChanged = true, bool i_bMayUseCache = false );
228 : void setPreviewText( sal_Int32 );
229 : void updatePrinterText();
230 : void checkControlDependencies();
231 : void checkOptionalControlDependencies();
232 : void makeEnabled( Window* );
233 : void updateWindowFromProperty( const rtl::OUString& );
234 : void setupOptionalUI();
235 : void readFromSettings();
236 : void storeToSettings();
237 : com::sun::star::beans::PropertyValue* getValueForWindow( Window* ) const;
238 :
239 : virtual void Resize();
240 : virtual void Command( const CommandEvent& );
241 : virtual void DataChanged( const DataChangedEvent& );
242 :
243 : DECL_LINK( SelectHdl, ListBox* );
244 : DECL_LINK( ClickHdl, Button* );
245 : DECL_LINK( ModifyHdl, Edit* );
246 : DECL_LINK( UIOptionsChanged, void* );
247 :
248 : DECL_LINK( UIOption_CheckHdl, CheckBox* );
249 : DECL_LINK( UIOption_RadioHdl, RadioButton* );
250 : DECL_LINK( UIOption_SelectHdl, ListBox* );
251 : DECL_LINK( UIOption_ModifyHdl, Edit* );
252 :
253 : public:
254 : PrintDialog( Window*, const boost::shared_ptr< PrinterController >& );
255 : virtual ~PrintDialog();
256 :
257 : bool isPrintToFile();
258 : bool isCollate();
259 : bool isSingleJobs();
260 :
261 : void previewForward();
262 : void previewBackward();
263 : };
264 :
265 : class PrintProgressDialog : public ModelessDialog
266 : {
267 : String maStr;
268 : FixedText maText;
269 : CancelButton maButton;
270 :
271 : bool mbCanceled;
272 : sal_Int32 mnCur;
273 : sal_Int32 mnMax;
274 : long mnProgressHeight;
275 : Rectangle maProgressRect;
276 : bool mbNativeProgress;
277 :
278 : DECL_LINK( ClickHdl, Button* );
279 :
280 : void implCalcProgressRect();
281 : public:
282 : PrintProgressDialog( Window* i_pParent, int i_nMax );
283 : ~PrintProgressDialog();
284 :
285 0 : bool isCanceled() const { return mbCanceled; }
286 : void setProgress( int i_nCurrent, int i_nMax = -1 );
287 : void tick();
288 : void reset();
289 :
290 : virtual void Paint( const Rectangle& );
291 : };
292 : }
293 :
294 :
295 : #endif // _SV_PRNDLG_HXX
296 :
297 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|