]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/printwin.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/printwin.cpp
3 // Purpose: wxWindowsPrinter framework
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 // Don't use the Windows printer if we're in wxUniv mode and using
28 // the PostScript architecture
29 #if wxUSE_PRINTING_ARCHITECTURE && (!defined(__WXUNIVERSAL__) || !wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW)
32 #include "wx/msw/wrapcdlg.h"
33 #include "wx/window.h"
34 #include "wx/msw/private.h"
38 #include "wx/msgdlg.h"
41 #include "wx/dcprint.h"
42 #include "wx/dcmemory.h"
46 #include "wx/msw/dib.h"
47 #include "wx/msw/dcmemory.h"
48 #include "wx/msw/printwin.h"
49 #include "wx/msw/printdlg.h"
50 #include "wx/msw/private.h"
51 #include "wx/msw/dcprint.h"
52 #if wxUSE_ENH_METAFILE
53 #include "wx/msw/enhmeta.h"
57 // ---------------------------------------------------------------------------
59 // ---------------------------------------------------------------------------
61 BOOL CALLBACK
wxAbortProc(HDC hdc
, int error
);
63 // ---------------------------------------------------------------------------
65 // ---------------------------------------------------------------------------
67 IMPLEMENT_DYNAMIC_CLASS(wxWindowsPrinter
, wxPrinterBase
)
68 IMPLEMENT_CLASS(wxWindowsPrintPreview
, wxPrintPreviewBase
)
70 // ===========================================================================
72 // ===========================================================================
74 // ---------------------------------------------------------------------------
76 // ---------------------------------------------------------------------------
78 wxWindowsPrinter::wxWindowsPrinter(wxPrintDialogData
*data
)
83 bool wxWindowsPrinter::Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
)
86 sm_abortWindow
= NULL
;
90 sm_lastError
= wxPRINTER_ERROR
;
94 if (m_printDialogData
.GetMinPage() < 1)
95 m_printDialogData
.SetMinPage(1);
96 if (m_printDialogData
.GetMaxPage() < 1)
97 m_printDialogData
.SetMaxPage(9999);
99 // Create a suitable device context
100 wxPrinterDC
*dc
wxDUMMY_INITIALIZE(NULL
);
103 dc
= wxDynamicCast(PrintDialog(parent
), wxPrinterDC
);
109 dc
= new wxPrinterDC(m_printDialogData
.GetPrintData());
112 // May have pressed cancel.
113 if (!dc
|| !dc
->IsOk())
119 wxPrinterDCImpl
*impl
= (wxPrinterDCImpl
*) dc
->GetImpl();
121 HDC hdc
= ::GetDC(NULL
);
122 int logPPIScreenX
= ::GetDeviceCaps(hdc
, LOGPIXELSX
);
123 int logPPIScreenY
= ::GetDeviceCaps(hdc
, LOGPIXELSY
);
124 ::ReleaseDC(NULL
, hdc
);
126 int logPPIPrinterX
= ::GetDeviceCaps((HDC
) impl
->GetHDC(), LOGPIXELSX
);
127 int logPPIPrinterY
= ::GetDeviceCaps((HDC
) impl
->GetHDC(), LOGPIXELSY
);
128 if (logPPIPrinterX
== 0 || logPPIPrinterY
== 0)
131 sm_lastError
= wxPRINTER_ERROR
;
135 printout
->SetPPIScreen(logPPIScreenX
, logPPIScreenY
);
136 printout
->SetPPIPrinter(logPPIPrinterX
, logPPIPrinterY
);
138 // Set printout parameters
143 printout
->SetPageSizePixels((int)w
, (int)h
);
144 printout
->SetPaperRectPixels(dc
->GetPaperRect());
146 dc
->GetSizeMM(&w
, &h
);
147 printout
->SetPageSizeMM((int)w
, (int)h
);
149 // Create an abort window
150 wxBusyCursor busyCursor
;
152 printout
->OnPreparePrinting();
154 // Get some parameters from the printout, if defined
155 int fromPage
, toPage
;
156 int minPage
, maxPage
;
157 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
161 sm_lastError
= wxPRINTER_ERROR
;
165 // Only set min and max, because from and to have been
167 m_printDialogData
.SetMinPage(minPage
);
168 m_printDialogData
.SetMaxPage(maxPage
);
170 wxPrintAbortDialog
*win
= CreateAbortWindow(parent
, printout
);
173 ::SetAbortProc(GetHdcOf(*impl
), wxAbortProc
);
177 wxLogDebug(wxT("Could not create an abort dialog."));
178 sm_lastError
= wxPRINTER_ERROR
;
183 sm_abortWindow
= win
;
184 sm_abortWindow
->Show();
187 printout
->OnBeginPrinting();
189 sm_lastError
= wxPRINTER_NO_ERROR
;
191 int minPageNum
= minPage
, maxPageNum
= maxPage
;
193 if ( !m_printDialogData
.GetAllPages() )
195 minPageNum
= m_printDialogData
.GetFromPage();
196 maxPageNum
= m_printDialogData
.GetToPage();
199 // The dc we get from the PrintDialog will do multiple copies without help
200 // if the device supports it. Loop only if we have created a dc from our
201 // own m_printDialogData or the device does not support multiple copies.
202 // m_printDialogData.GetPrintData().GetNoCopies() is set from device
203 // devMode in printdlg.cpp/wxWindowsPrintDialog::ConvertFromNative()
204 const int maxCopyCount
= !prompt
||
205 !m_printDialogData
.GetPrintData().GetNoCopies()
206 ? m_printDialogData
.GetNoCopies() : 1;
207 for ( int copyCount
= 1; copyCount
<= maxCopyCount
; copyCount
++ )
209 if ( !printout
->OnBeginDocument(minPageNum
, maxPageNum
) )
211 wxLogError(_("Could not start printing."));
212 sm_lastError
= wxPRINTER_ERROR
;
217 sm_lastError
= wxPRINTER_CANCELLED
;
223 for ( pn
= minPageNum
;
224 pn
<= maxPageNum
&& printout
->HasPage(pn
);
227 win
->SetProgress(pn
- minPageNum
+ 1,
228 maxPageNum
- minPageNum
+ 1,
229 copyCount
, maxCopyCount
);
233 sm_lastError
= wxPRINTER_CANCELLED
;
238 bool cont
= printout
->OnPrintPage(pn
);
243 sm_lastError
= wxPRINTER_CANCELLED
;
248 printout
->OnEndDocument();
251 printout
->OnEndPrinting();
255 sm_abortWindow
->Show(false);
256 wxDELETE(sm_abortWindow
);
261 return sm_lastError
== wxPRINTER_NO_ERROR
;
264 wxDC
*wxWindowsPrinter::PrintDialog(wxWindow
*parent
)
268 wxWindowsPrintDialog
dialog(parent
, & m_printDialogData
);
269 int ret
= dialog
.ShowModal();
273 dc
= dialog
.GetPrintDC();
274 m_printDialogData
= dialog
.GetPrintDialogData();
276 sm_lastError
= wxPRINTER_ERROR
;
278 sm_lastError
= wxPRINTER_NO_ERROR
;
281 sm_lastError
= wxPRINTER_CANCELLED
;
286 bool wxWindowsPrinter::Setup(wxWindow
*WXUNUSED(parent
))
289 // We no longer expose that dialog
290 wxPrintDialog
dialog(parent
, & m_printDialogData
);
291 dialog
.GetPrintDialogData().SetSetupDialog(true);
293 int ret
= dialog
.ShowModal();
297 m_printDialogData
= dialog
.GetPrintDialogData();
300 return (ret
== wxID_OK
);
310 wxWindowsPrintPreview::wxWindowsPrintPreview(wxPrintout
*printout
,
311 wxPrintout
*printoutForPrinting
,
312 wxPrintDialogData
*data
)
313 : wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
318 wxWindowsPrintPreview::wxWindowsPrintPreview(wxPrintout
*printout
,
319 wxPrintout
*printoutForPrinting
,
321 : wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
326 wxWindowsPrintPreview::~wxWindowsPrintPreview()
330 bool wxWindowsPrintPreview::Print(bool interactive
)
332 if (!m_printPrintout
)
334 wxWindowsPrinter
printer(&m_printDialogData
);
335 return printer
.Print(m_previewFrame
, m_printPrintout
, interactive
);
338 void wxWindowsPrintPreview::DetermineScaling()
341 int logPPIScreenX
= ::GetDeviceCaps(dc
, LOGPIXELSX
);
342 int logPPIScreenY
= ::GetDeviceCaps(dc
, LOGPIXELSY
);
343 m_previewPrintout
->SetPPIScreen(logPPIScreenX
, logPPIScreenY
);
345 // Get a device context for the currently selected printer
346 wxPrinterDC
printerDC(m_printDialogData
.GetPrintData());
357 if ( printerDC
.IsOk() )
359 wxPrinterDCImpl
*impl
= (wxPrinterDCImpl
*) printerDC
.GetImpl();
360 HDC dc
= GetHdcOf(*impl
);
361 printerWidthMM
= ::GetDeviceCaps(dc
, HORZSIZE
);
362 printerHeightMM
= ::GetDeviceCaps(dc
, VERTSIZE
);
363 printerXRes
= ::GetDeviceCaps(dc
, HORZRES
);
364 printerYRes
= ::GetDeviceCaps(dc
, VERTRES
);
365 logPPIPrinterX
= ::GetDeviceCaps(dc
, LOGPIXELSX
);
366 logPPIPrinterY
= ::GetDeviceCaps(dc
, LOGPIXELSY
);
368 paperRect
= printerDC
.GetPaperRect();
370 if ( logPPIPrinterX
== 0 ||
371 logPPIPrinterY
== 0 ||
372 printerWidthMM
== 0 ||
373 printerHeightMM
== 0 )
381 printerWidthMM
= 150;
382 printerHeightMM
= 250;
385 logPPIPrinterX
= 600;
386 logPPIPrinterY
= 600;
388 paperRect
= wxRect(0, 0, printerXRes
, printerYRes
);
391 m_pageWidth
= printerXRes
;
392 m_pageHeight
= printerYRes
;
393 m_previewPrintout
->SetPageSizePixels(printerXRes
, printerYRes
);
394 m_previewPrintout
->SetPageSizeMM(printerWidthMM
, printerHeightMM
);
395 m_previewPrintout
->SetPaperRectPixels(paperRect
);
396 m_previewPrintout
->SetPPIPrinter(logPPIPrinterX
, logPPIPrinterY
);
398 // At 100%, the page should look about page-size on the screen.
399 m_previewScaleX
= float(logPPIScreenX
) / logPPIPrinterX
;
400 m_previewScaleY
= float(logPPIScreenY
) / logPPIPrinterY
;
403 #if wxUSE_ENH_METAFILE
404 bool wxWindowsPrintPreview::RenderPageIntoBitmap(wxBitmap
& bmp
, int pageNum
)
406 // The preview, as implemented in wxPrintPreviewBase (and as used prior to
407 // wx3) is inexact: it uses screen DC, which has much lower resolution and
408 // has other properties different from printer DC, so the preview is not
411 // To make matters worse, if the application depends heavily on
412 // GetTextExtent() or does text layout itself, the output in preview and on
413 // paper can be very different. In particular, wxHtmlEasyPrinting is
414 // affected and the preview can be easily off by several pages.
416 // To fix this, we render the preview into high-resolution enhanced
417 // metafile with properties identical to the printer DC. This guarantees
418 // metrics correctness while still being fast.
421 // print the preview into a metafile:
422 wxPrinterDC
printerDC(m_printDialogData
.GetPrintData());
423 wxEnhMetaFileDC
metaDC(printerDC
,
425 printerDC
.GetSize().x
, printerDC
.GetSize().y
);
427 if ( !RenderPageIntoDC(metaDC
, pageNum
) )
430 wxEnhMetaFile
*metafile
= metaDC
.Close();
434 // now render the metafile:
436 bmpDC
.SelectObject(bmp
);
439 wxRect
outRect(0, 0, bmp
.GetWidth(), bmp
.GetHeight());
440 metafile
->Play(&bmpDC
, &outRect
);
445 // TODO: we should keep the metafile and reuse it when changing zoom level
449 #endif // wxUSE_ENH_METAFILE
451 BOOL CALLBACK
wxAbortProc(HDC
WXUNUSED(hdc
), int WXUNUSED(error
))
455 if (!wxPrinterBase::sm_abortWindow
) /* If the abort dialog isn't up yet */
458 /* Process messages intended for the abort dialog box */
460 while (!wxPrinterBase::sm_abortIt
&& ::PeekMessage(&msg
, 0, 0, 0, TRUE
))
461 if (!IsDialogMessage((HWND
) wxPrinterBase::sm_abortWindow
->GetHWND(), &msg
)) {
462 TranslateMessage(&msg
);
463 DispatchMessage(&msg
);
466 /* bAbort is TRUE (return is FALSE) if the user has aborted */
468 return !wxPrinterBase::sm_abortIt
;
472 // wxUSE_PRINTING_ARCHITECTURE