]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: printwin.cpp | |
3 | // Purpose: wxWindowsPrinter framework | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
103aec29 VZ |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
103aec29 | 21 | #pragma implementation "printwin.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
103aec29 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
31 | #include "wx/defs.h" | |
32 | ||
12bdd77c JS |
33 | // Don't use the Windows printer if we're in wxUniv mode and using |
34 | // the PostScript architecture | |
35 | #if wxUSE_PRINTING_ARCHITECTURE && (!defined(__WXUNIVERSAL__) || !wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW) | |
f6bcfd97 | 36 | |
2bda0e17 | 37 | #ifndef WX_PRECOMP |
0c589ad0 BM |
38 | #include "wx/window.h" |
39 | #include "wx/msw/private.h" | |
103aec29 VZ |
40 | #include "wx/utils.h" |
41 | #include "wx/dc.h" | |
42 | #include "wx/app.h" | |
43 | #include "wx/msgdlg.h" | |
0c589ad0 | 44 | #include "wx/intl.h" |
2bda0e17 KB |
45 | #endif |
46 | ||
47 | #include "wx/msw/printwin.h" | |
48 | #include "wx/dcprint.h" | |
49 | #include "wx/printdlg.h" | |
6776a0b2 | 50 | #include "wx/log.h" |
2bda0e17 KB |
51 | #include "wx/msw/private.h" |
52 | ||
53 | #include <stdlib.h> | |
2bda0e17 | 54 | |
42e69d6b VZ |
55 | #include "wx/msw/private.h" |
56 | ||
57 | #include <commdlg.h> | |
2bda0e17 KB |
58 | |
59 | #ifndef __WIN32__ | |
103aec29 | 60 | #include <print.h> |
2bda0e17 KB |
61 | #endif |
62 | ||
103aec29 VZ |
63 | // --------------------------------------------------------------------------- |
64 | // private functions | |
65 | // --------------------------------------------------------------------------- | |
66 | ||
2bda0e17 KB |
67 | LONG APIENTRY _EXPORT wxAbortProc(HDC hPr, int Code); |
68 | ||
103aec29 VZ |
69 | // --------------------------------------------------------------------------- |
70 | // wxWin macros | |
71 | // --------------------------------------------------------------------------- | |
72 | ||
103aec29 VZ |
73 | IMPLEMENT_DYNAMIC_CLASS(wxWindowsPrinter, wxPrinterBase) |
74 | IMPLEMENT_CLASS(wxWindowsPrintPreview, wxPrintPreviewBase) | |
2bda0e17 | 75 | |
103aec29 VZ |
76 | // =========================================================================== |
77 | // implementation | |
78 | // =========================================================================== | |
79 | ||
80 | // --------------------------------------------------------------------------- | |
81 | // Printer | |
82 | // --------------------------------------------------------------------------- | |
7bcb11d3 | 83 | |
103aec29 VZ |
84 | wxWindowsPrinter::wxWindowsPrinter(wxPrintDialogData *data) |
85 | : wxPrinterBase(data) | |
2bda0e17 | 86 | { |
34da0970 | 87 | m_lpAbortProc = (WXFARPROC) MakeProcInstance((FARPROC) wxAbortProc, wxGetInstance()); |
2bda0e17 KB |
88 | } |
89 | ||
103aec29 | 90 | wxWindowsPrinter::~wxWindowsPrinter() |
2bda0e17 | 91 | { |
33ac7e6f | 92 | // avoids warning about statement with no effect (FreeProcInstance |
e41e579f | 93 | // doesn't do anything under Win32) |
d66dcb60 | 94 | #if !defined(__WIN32__) && !defined(__NT__) |
34da0970 | 95 | FreeProcInstance((FARPROC) m_lpAbortProc); |
a17e237f | 96 | #endif |
2bda0e17 KB |
97 | } |
98 | ||
99 | bool wxWindowsPrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt) | |
100 | { | |
e41e579f | 101 | sm_abortIt = false; |
7bcb11d3 | 102 | sm_abortWindow = NULL; |
103aec29 | 103 | |
7bcb11d3 | 104 | if (!printout) |
f6bcfd97 BP |
105 | { |
106 | sm_lastError = wxPRINTER_ERROR; | |
e41e579f | 107 | return false; |
f6bcfd97 | 108 | } |
103aec29 | 109 | |
e41e579f | 110 | printout->SetIsPreview(false); |
1044a386 | 111 | |
d2b354f9 JS |
112 | if (m_printDialogData.GetMinPage() < 1) |
113 | m_printDialogData.SetMinPage(1); | |
114 | if (m_printDialogData.GetMaxPage() < 1) | |
115 | m_printDialogData.SetMaxPage(9999); | |
2bda0e17 | 116 | |
103aec29 | 117 | // Create a suitable device context |
5cb598ae | 118 | wxDC *dc wxDUMMY_INITIALIZE(NULL); |
7bcb11d3 JS |
119 | if (prompt) |
120 | { | |
121 | dc = PrintDialog(parent); | |
122 | if (!dc) | |
e41e579f | 123 | return false; |
7bcb11d3 JS |
124 | } |
125 | else | |
126 | { | |
7bcb11d3 JS |
127 | dc = new wxPrinterDC(m_printDialogData.GetPrintData()); |
128 | } | |
103aec29 | 129 | |
7bcb11d3 JS |
130 | // May have pressed cancel. |
131 | if (!dc || !dc->Ok()) | |
132 | { | |
133 | if (dc) delete dc; | |
e41e579f | 134 | return false; |
7bcb11d3 | 135 | } |
103aec29 | 136 | |
7bcb11d3 | 137 | HDC hdc = ::GetDC(NULL); |
5cb598ae WS |
138 | int logPPIScreenX = ::GetDeviceCaps(hdc, LOGPIXELSX); |
139 | int logPPIScreenY = ::GetDeviceCaps(hdc, LOGPIXELSY); | |
7bcb11d3 | 140 | ::ReleaseDC(NULL, hdc); |
103aec29 | 141 | |
5cb598ae WS |
142 | int logPPIPrinterX = ::GetDeviceCaps((HDC) dc->GetHDC(), LOGPIXELSX); |
143 | int logPPIPrinterY = ::GetDeviceCaps((HDC) dc->GetHDC(), LOGPIXELSY); | |
7bcb11d3 JS |
144 | if (logPPIPrinterX == 0 || logPPIPrinterY == 0) |
145 | { | |
146 | delete dc; | |
f6bcfd97 | 147 | sm_lastError = wxPRINTER_ERROR; |
e41e579f | 148 | return false; |
7bcb11d3 | 149 | } |
103aec29 | 150 | |
7bcb11d3 JS |
151 | printout->SetPPIScreen(logPPIScreenX, logPPIScreenY); |
152 | printout->SetPPIPrinter(logPPIPrinterX, logPPIPrinterY); | |
103aec29 VZ |
153 | |
154 | // Set printout parameters | |
7bcb11d3 | 155 | printout->SetDC(dc); |
103aec29 | 156 | |
7bcb11d3 JS |
157 | int w, h; |
158 | dc->GetSize(&w, &h); | |
159 | printout->SetPageSizePixels((int)w, (int)h); | |
d6a1743b | 160 | |
7bcb11d3 JS |
161 | dc->GetSizeMM(&w, &h); |
162 | printout->SetPageSizeMM((int)w, (int)h); | |
103aec29 | 163 | |
7bcb11d3 | 164 | // Create an abort window |
0f07e3dc | 165 | wxBusyCursor busyCursor; |
103aec29 | 166 | |
1044a386 JS |
167 | printout->OnPreparePrinting(); |
168 | ||
d2b354f9 JS |
169 | // Get some parameters from the printout, if defined |
170 | int fromPage, toPage; | |
171 | int minPage, maxPage; | |
172 | printout->GetPageInfo(&minPage, &maxPage, &fromPage, &toPage); | |
173 | ||
174 | if (maxPage == 0) | |
175 | { | |
176 | sm_lastError = wxPRINTER_ERROR; | |
e41e579f | 177 | return false; |
d2b354f9 JS |
178 | } |
179 | ||
180 | // Only set min and max, because from and to have been | |
181 | // set by the user | |
182 | m_printDialogData.SetMinPage(minPage); | |
183 | m_printDialogData.SetMaxPage(maxPage); | |
184 | ||
7bcb11d3 JS |
185 | wxWindow *win = CreateAbortWindow(parent, printout); |
186 | wxYield(); | |
103aec29 | 187 | |
c34924f7 | 188 | #if defined(__WATCOMC__) || defined(__BORLANDC__) || defined(__GNUWIN32__) || defined(__SALFORDC__) || !defined(__WIN32__) |
27a9bd48 PA |
189 | #ifdef STRICT |
190 | ::SetAbortProc((HDC) dc->GetHDC(), (ABORTPROC) m_lpAbortProc); | |
191 | #else | |
7bcb11d3 | 192 | ::SetAbortProc((HDC) dc->GetHDC(), (FARPROC) m_lpAbortProc); |
27a9bd48 | 193 | #endif |
7bcb11d3 JS |
194 | #else |
195 | ::SetAbortProc((HDC) dc->GetHDC(), (int (_stdcall *) | |
196 | // cast it to right type only if required | |
103aec29 VZ |
197 | // FIXME it's really cdecl and we're casting it to stdcall - either there is |
198 | // something I don't understand or it will crash at first usage | |
7bcb11d3 JS |
199 | #ifdef STRICT |
200 | (HDC, int) | |
d6a1743b | 201 | #else |
7bcb11d3 | 202 | () |
d6a1743b | 203 | #endif |
7bcb11d3 JS |
204 | )m_lpAbortProc); |
205 | #endif | |
103aec29 | 206 | |
7bcb11d3 | 207 | if (!win) |
2bda0e17 | 208 | { |
223d09f6 | 209 | wxLogDebug(wxT("Could not create an abort dialog.")); |
f6bcfd97 | 210 | sm_lastError = wxPRINTER_ERROR; |
103aec29 | 211 | |
7bcb11d3 | 212 | delete dc; |
2bda0e17 | 213 | } |
7bcb11d3 | 214 | sm_abortWindow = win; |
e41e579f | 215 | sm_abortWindow->Show(); |
103aec29 VZ |
216 | wxSafeYield(); |
217 | ||
7bcb11d3 | 218 | printout->OnBeginPrinting(); |
103aec29 | 219 | |
f6bcfd97 BP |
220 | sm_lastError = wxPRINTER_NO_ERROR; |
221 | ||
e41e579f DS |
222 | int minPageNum = minPage, maxPageNum = maxPage; |
223 | ||
224 | if ( !m_printDialogData.GetAllPages() ) | |
e41e579f DS |
225 | { |
226 | minPageNum = m_printDialogData.GetFromPage(); | |
227 | maxPageNum = m_printDialogData.GetToPage(); | |
228 | } | |
229 | ||
7bcb11d3 | 230 | int copyCount; |
70846f0a VZ |
231 | for ( copyCount = 1; |
232 | copyCount <= m_printDialogData.GetNoCopies(); | |
233 | copyCount++ ) | |
7bcb11d3 | 234 | { |
e41e579f | 235 | if ( !printout->OnBeginDocument(minPageNum, maxPageNum) ) |
7bcb11d3 | 236 | { |
103aec29 | 237 | wxLogError(_("Could not start printing.")); |
f6bcfd97 | 238 | sm_lastError = wxPRINTER_ERROR; |
7bcb11d3 JS |
239 | break; |
240 | } | |
241 | if (sm_abortIt) | |
f6bcfd97 BP |
242 | { |
243 | sm_lastError = wxPRINTER_CANCELLED; | |
7bcb11d3 | 244 | break; |
f6bcfd97 | 245 | } |
103aec29 | 246 | |
7bcb11d3 | 247 | int pn; |
e41e579f DS |
248 | |
249 | for ( pn = minPageNum; | |
250 | pn <= maxPageNum && printout->HasPage(pn); | |
70846f0a | 251 | pn++ ) |
7bcb11d3 | 252 | { |
70846f0a | 253 | if ( sm_abortIt ) |
7bcb11d3 | 254 | { |
f6bcfd97 | 255 | sm_lastError = wxPRINTER_CANCELLED; |
7bcb11d3 JS |
256 | break; |
257 | } | |
70846f0a VZ |
258 | |
259 | dc->StartPage(); | |
260 | bool cont = printout->OnPrintPage(pn); | |
261 | dc->EndPage(); | |
262 | ||
263 | if ( !cont ) | |
f6bcfd97 BP |
264 | { |
265 | sm_lastError = wxPRINTER_CANCELLED; | |
70846f0a | 266 | break; |
f6bcfd97 | 267 | } |
7bcb11d3 | 268 | } |
70846f0a | 269 | |
7bcb11d3 JS |
270 | printout->OnEndDocument(); |
271 | } | |
103aec29 | 272 | |
7bcb11d3 | 273 | printout->OnEndPrinting(); |
103aec29 | 274 | |
7bcb11d3 | 275 | if (sm_abortWindow) |
2bda0e17 | 276 | { |
e41e579f | 277 | sm_abortWindow->Show(false); |
7bcb11d3 JS |
278 | delete sm_abortWindow; |
279 | sm_abortWindow = NULL; | |
2bda0e17 | 280 | } |
103aec29 | 281 | |
7bcb11d3 | 282 | delete dc; |
103aec29 | 283 | |
f6bcfd97 | 284 | return (sm_lastError == wxPRINTER_NO_ERROR); |
7bcb11d3 | 285 | } |
2bda0e17 | 286 | |
7bcb11d3 JS |
287 | wxDC* wxWindowsPrinter::PrintDialog(wxWindow *parent) |
288 | { | |
289 | wxDC* dc = (wxDC*) NULL; | |
2bda0e17 | 290 | |
7bcb11d3 JS |
291 | wxPrintDialog dialog(parent, & m_printDialogData); |
292 | int ret = dialog.ShowModal(); | |
2bda0e17 | 293 | |
7bcb11d3 JS |
294 | if (ret == wxID_OK) |
295 | { | |
296 | dc = dialog.GetPrintDC(); | |
297 | m_printDialogData = dialog.GetPrintDialogData(); | |
33ac7e6f | 298 | if (dc == NULL) |
f6bcfd97 BP |
299 | sm_lastError = wxPRINTER_ERROR; |
300 | else | |
301 | sm_lastError = wxPRINTER_NO_ERROR; | |
7bcb11d3 | 302 | } |
f6bcfd97 BP |
303 | else |
304 | sm_lastError = wxPRINTER_CANCELLED; | |
2bda0e17 | 305 | |
7bcb11d3 | 306 | return dc; |
2bda0e17 KB |
307 | } |
308 | ||
a12f001e | 309 | bool wxWindowsPrinter::Setup(wxWindow *WXUNUSED(parent)) |
2bda0e17 | 310 | { |
b45dfd0a RR |
311 | #if 0 |
312 | // We no longer expose that dialog | |
7bcb11d3 | 313 | wxPrintDialog dialog(parent, & m_printDialogData); |
e41e579f | 314 | dialog.GetPrintDialogData().SetSetupDialog(true); |
7bcb11d3 JS |
315 | |
316 | int ret = dialog.ShowModal(); | |
317 | ||
318 | if (ret == wxID_OK) | |
319 | { | |
320 | m_printDialogData = dialog.GetPrintDialogData(); | |
321 | } | |
322 | ||
323 | return (ret == wxID_OK); | |
b45dfd0a | 324 | #else |
3950f9e1 | 325 | return false; |
b45dfd0a | 326 | #endif |
2bda0e17 KB |
327 | } |
328 | ||
329 | /* | |
7bcb11d3 JS |
330 | * Print preview |
331 | */ | |
2bda0e17 | 332 | |
103aec29 VZ |
333 | wxWindowsPrintPreview::wxWindowsPrintPreview(wxPrintout *printout, |
334 | wxPrintout *printoutForPrinting, | |
335 | wxPrintDialogData *data) | |
336 | : wxPrintPreviewBase(printout, printoutForPrinting, data) | |
2bda0e17 | 337 | { |
7bcb11d3 | 338 | DetermineScaling(); |
2bda0e17 KB |
339 | } |
340 | ||
103aec29 VZ |
341 | wxWindowsPrintPreview::wxWindowsPrintPreview(wxPrintout *printout, |
342 | wxPrintout *printoutForPrinting, | |
343 | wxPrintData *data) | |
344 | : wxPrintPreviewBase(printout, printoutForPrinting, data) | |
345 | { | |
346 | DetermineScaling(); | |
347 | } | |
348 | ||
349 | wxWindowsPrintPreview::~wxWindowsPrintPreview() | |
2bda0e17 KB |
350 | { |
351 | } | |
352 | ||
353 | bool wxWindowsPrintPreview::Print(bool interactive) | |
354 | { | |
7bcb11d3 | 355 | if (!m_printPrintout) |
e41e579f | 356 | return false; |
7bcb11d3 JS |
357 | wxWindowsPrinter printer(&m_printDialogData); |
358 | return printer.Print(m_previewFrame, m_printPrintout, interactive); | |
2bda0e17 KB |
359 | } |
360 | ||
103aec29 | 361 | void wxWindowsPrintPreview::DetermineScaling() |
2bda0e17 KB |
362 | { |
363 | HDC dc = ::GetDC(NULL); | |
364 | int screenWidth = ::GetDeviceCaps(dc, HORZSIZE); | |
f4fefc23 | 365 | int screenYRes = ::GetDeviceCaps(dc, VERTRES); |
2bda0e17 KB |
366 | int logPPIScreenX = ::GetDeviceCaps(dc, LOGPIXELSX); |
367 | int logPPIScreenY = ::GetDeviceCaps(dc, LOGPIXELSY); | |
34da0970 | 368 | m_previewPrintout->SetPPIScreen(logPPIScreenX, logPPIScreenY); |
103aec29 | 369 | |
2bda0e17 | 370 | ::ReleaseDC(NULL, dc); |
103aec29 | 371 | |
2bda0e17 | 372 | // Get a device context for the currently selected printer |
7bcb11d3 | 373 | wxPrinterDC printerDC(m_printDialogData.GetPrintData()); |
103aec29 | 374 | |
2bda0e17 | 375 | int printerWidth = 150; |
5cb598ae | 376 | int printerHeight wxDUMMY_INITIALIZE(250); |
2bda0e17 KB |
377 | int printerXRes = 1500; |
378 | int printerYRes = 2500; | |
103aec29 | 379 | |
f4fefc23 VZ |
380 | dc = GetHdcOf(printerDC); |
381 | if ( dc ) | |
2bda0e17 | 382 | { |
f4fefc23 VZ |
383 | printerWidth = ::GetDeviceCaps(dc, HORZSIZE); |
384 | printerHeight = ::GetDeviceCaps(dc, VERTSIZE); | |
385 | printerXRes = ::GetDeviceCaps(dc, HORZRES); | |
386 | printerYRes = ::GetDeviceCaps(dc, VERTRES); | |
103aec29 | 387 | |
f4fefc23 VZ |
388 | int logPPIPrinterX = ::GetDeviceCaps(dc, LOGPIXELSX); |
389 | int logPPIPrinterY = ::GetDeviceCaps(dc, LOGPIXELSY); | |
103aec29 | 390 | |
7bcb11d3 JS |
391 | m_previewPrintout->SetPPIPrinter(logPPIPrinterX, logPPIPrinterY); |
392 | m_previewPrintout->SetPageSizeMM(printerWidth, printerHeight); | |
103aec29 | 393 | |
7bcb11d3 | 394 | if (logPPIPrinterX == 0 || logPPIPrinterY == 0 || printerWidth == 0 || printerHeight == 0) |
e41e579f | 395 | m_isOk = false; |
2bda0e17 KB |
396 | } |
397 | else | |
e41e579f | 398 | m_isOk = false; |
103aec29 | 399 | |
34da0970 JS |
400 | m_pageWidth = printerXRes; |
401 | m_pageHeight = printerYRes; | |
103aec29 | 402 | |
2bda0e17 | 403 | // At 100%, the page should look about page-size on the screen. |
34da0970 | 404 | m_previewScale = (float)((float)screenWidth/(float)printerWidth); |
f4fefc23 | 405 | m_previewScale = m_previewScale * (float)((float)screenYRes/(float)printerYRes); |
2bda0e17 KB |
406 | } |
407 | ||
408 | /**************************************************************************** | |
409 | ||
7bcb11d3 | 410 | FUNCTION: wxAbortProc() |
103aec29 | 411 | |
2bda0e17 | 412 | PURPOSE: Processes messages for the Abort Dialog box |
103aec29 | 413 | |
2bda0e17 KB |
414 | ****************************************************************************/ |
415 | ||
416 | LONG APIENTRY _EXPORT wxAbortProc(HDC WXUNUSED(hPr), int WXUNUSED(Code)) | |
417 | { | |
418 | MSG msg; | |
103aec29 | 419 | |
34da0970 | 420 | if (!wxPrinterBase::sm_abortWindow) /* If the abort dialog isn't up yet */ |
2bda0e17 | 421 | return(TRUE); |
103aec29 | 422 | |
2bda0e17 | 423 | /* Process messages intended for the abort dialog box */ |
103aec29 | 424 | |
078cf5cb | 425 | while (!wxPrinterBase::sm_abortIt && ::PeekMessage(&msg, 0, 0, 0, TRUE)) |
34da0970 | 426 | if (!IsDialogMessage((HWND) wxPrinterBase::sm_abortWindow->GetHWND(), &msg)) { |
2bda0e17 KB |
427 | TranslateMessage(&msg); |
428 | DispatchMessage(&msg); | |
429 | } | |
103aec29 | 430 | |
7bcb11d3 | 431 | /* bAbort is TRUE (return is FALSE) if the user has aborted */ |
103aec29 | 432 | |
7bcb11d3 | 433 | return (!wxPrinterBase::sm_abortIt); |
2bda0e17 KB |
434 | } |
435 | ||
f6bcfd97 BP |
436 | #endif |
437 | // wxUSE_PRINTING_ARCHITECTURE |