]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/printwin.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindowsPrinter framework
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "printwin.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
25 #define WINDOWS_PRINTING (wxTheApp->GetPrintMode() == wxPRINT_WINDOWS)
31 #include "wx/msgdlg.h"
34 #include "wx/msw/printwin.h"
35 #include "wx/dcprint.h"
36 #include "wx/printdlg.h"
37 #include "wx/msw/private.h"
43 // Clash with Windows header files
52 LONG APIENTRY _EXPORT
wxAbortProc(HDC hPr
, int Code
);
54 #if !USE_SHARED_LIBRARY
55 IMPLEMENT_DYNAMIC_CLASS(wxWindowsPrinter
, wxPrinterBase
)
56 IMPLEMENT_CLASS(wxWindowsPrintPreview
, wxPrintPreviewBase
)
63 wxWindowsPrinter::wxWindowsPrinter(wxPrintData
*data
):
66 m_lpAbortProc
= (WXFARPROC
) MakeProcInstance((FARPROC
) wxAbortProc
, wxGetInstance());
69 wxWindowsPrinter::~wxWindowsPrinter(void)
71 FreeProcInstance((FARPROC
) m_lpAbortProc
);
74 bool wxWindowsPrinter::Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
)
77 sm_abortWindow
= NULL
;
82 printout
->SetIsPreview(FALSE
);
83 printout
->OnPreparePrinting();
85 // Get some parameters from the printout, if defined
88 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
93 m_printData
.SetMinPage(minPage
);
94 m_printData
.SetMaxPage(maxPage
);
96 m_printData
.SetFromPage(fromPage
);
98 m_printData
.SetToPage(toPage
);
102 m_printData
.EnablePageNumbers(TRUE
);
103 if (m_printData
.GetFromPage() < m_printData
.GetMinPage())
104 m_printData
.SetFromPage(m_printData
.GetMinPage());
105 else if (m_printData
.GetFromPage() > m_printData
.GetMaxPage())
106 m_printData
.SetFromPage(m_printData
.GetMaxPage());
107 if (m_printData
.GetToPage() > m_printData
.GetMaxPage())
108 m_printData
.SetToPage(m_printData
.GetMaxPage());
109 else if (m_printData
.GetToPage() < m_printData
.GetMinPage())
110 m_printData
.SetToPage(m_printData
.GetMinPage());
113 m_printData
.EnablePageNumbers(FALSE
);
115 // Create a suitable device context
119 wxPrintDialog
dialog(parent
, & m_printData
);
120 if (dialog
.ShowModal() == wxID_OK
)
122 dc
= dialog
.GetPrintDC();
123 m_printData
= dialog
.GetPrintData();
128 dc
= new wxPrinterDC("", "", "", FALSE
, m_printData
.GetOrientation());
131 // May have pressed cancel.
132 if (!dc
|| !dc
->Ok())
138 int logPPIScreenX
= 0;
139 int logPPIScreenY
= 0;
140 int logPPIPrinterX
= 0;
141 int logPPIPrinterY
= 0;
143 HDC hdc
= ::GetDC(NULL
);
144 logPPIScreenX
= ::GetDeviceCaps(hdc
, LOGPIXELSX
);
145 logPPIScreenY
= ::GetDeviceCaps(hdc
, LOGPIXELSY
);
146 ::ReleaseDC(NULL
, hdc
);
148 logPPIPrinterX
= ::GetDeviceCaps((HDC
) dc
->GetHDC(), LOGPIXELSX
);
149 logPPIPrinterY
= ::GetDeviceCaps((HDC
) dc
->GetHDC(), LOGPIXELSY
);
150 if (logPPIPrinterX
== 0 || logPPIPrinterY
== 0)
156 printout
->SetPPIScreen(logPPIScreenX
, logPPIScreenY
);
157 printout
->SetPPIPrinter(logPPIPrinterX
, logPPIPrinterY
);
159 // Set printout parameters
165 printout
->SetPageSizePixels((int)w
, (int)h
);
166 dc
->GetSizeMM(&ww
, &hh
);
167 printout
->SetPageSizeMM((int)ww
, (int)hh
);
169 // Create an abort window
172 wxWindow
*win
= CreateAbortWindow(parent
, printout
);
175 #if defined(__BORLANDC__) || defined(__GNUWIN32__) || !defined(__WIN32__)
176 ::SetAbortProc((HDC
) dc
->GetHDC(), (FARPROC
) m_lpAbortProc
);
178 ::SetAbortProc((HDC
) dc
->GetHDC(), (int (_stdcall
*)
179 // cast it to right type only if required
180 // @@@ it's really cdecl and we're casting it to stdcall - either there is
181 // something I don't understand or it will crash at first usage
193 wxMessageBox("Sorry, could not create an abort dialog.", "Print Error", wxOK
, parent
);
196 sm_abortWindow
= win
;
197 sm_abortWindow
->Show(TRUE
);
200 printout
->OnBeginPrinting();
202 bool keepGoing
= TRUE
;
205 for (copyCount
= 1; copyCount
<= m_printData
.GetNoCopies(); copyCount
++)
207 if (!printout
->OnBeginDocument(m_printData
.GetFromPage(), m_printData
.GetToPage()))
210 wxMessageBox("Could not start printing.", "Print Error", wxOK
, parent
);
217 for (pn
= m_printData
.GetFromPage(); keepGoing
&& (pn
<= m_printData
.GetToPage()) && printout
->HasPage(pn
);
227 // int dcID = ::SaveDC(dc->GetHDC());
229 printout
->OnPrintPage(pn
);
231 // ::RestoreDC(dc->GetHDC(), dcID);
234 printout
->OnEndDocument();
237 printout
->OnEndPrinting();
241 sm_abortWindow
->Show(FALSE
);
242 delete sm_abortWindow
;
243 sm_abortWindow
= NULL
;
253 bool wxWindowsPrinter::PrintDialog(wxWindow
*parent
)
255 wxPrintDialog
dialog(parent
, & m_printData
);
256 return (dialog
.ShowModal() == wxID_OK
);
259 bool wxWindowsPrinter::Setup(wxWindow
*parent
)
261 wxPrintDialog
dialog(parent
, & m_printData
);
262 dialog
.GetPrintData().SetSetupDialog(TRUE
);
263 return (dialog
.ShowModal() == wxID_OK
);
270 wxWindowsPrintPreview::wxWindowsPrintPreview(wxPrintout
*printout
, wxPrintout
*printoutForPrinting
, wxPrintData
*data
):
271 wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
276 wxWindowsPrintPreview::~wxWindowsPrintPreview(void)
280 bool wxWindowsPrintPreview::Print(bool interactive
)
282 if (!m_printPrintout
)
284 wxWindowsPrinter
printer(&m_printData
);
285 return printer
.Print(m_previewFrame
, m_printPrintout
, interactive
);
288 void wxWindowsPrintPreview::DetermineScaling(void)
290 HDC dc
= ::GetDC(NULL
);
291 int screenWidth
= ::GetDeviceCaps(dc
, HORZSIZE
);
292 // int screenHeight = ::GetDeviceCaps(dc, VERTSIZE);
293 int screenXRes
= ::GetDeviceCaps(dc
, HORZRES
);
294 // int screenYRes = ::GetDeviceCaps(dc, VERTRES);
295 int logPPIScreenX
= ::GetDeviceCaps(dc
, LOGPIXELSX
);
296 int logPPIScreenY
= ::GetDeviceCaps(dc
, LOGPIXELSY
);
297 m_previewPrintout
->SetPPIScreen(logPPIScreenX
, logPPIScreenY
);
299 ::ReleaseDC(NULL
, dc
);
301 // Get a device context for the currently selected printer
302 wxPrinterDC
printerDC("", "", "", FALSE
, m_printData
.GetOrientation());
304 int printerWidth
= 150;
305 int printerHeight
= 250;
306 int printerXRes
= 1500;
307 int printerYRes
= 2500;
309 if (printerDC
.GetHDC())
311 printerWidth
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), HORZSIZE
);
312 printerHeight
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), VERTSIZE
);
313 printerXRes
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), HORZRES
);
314 printerYRes
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), VERTRES
);
316 int logPPIPrinterX
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), LOGPIXELSX
);
317 int logPPIPrinterY
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), LOGPIXELSY
);
319 m_previewPrintout
->SetPPIPrinter(logPPIPrinterX
, logPPIPrinterY
);
320 m_previewPrintout
->SetPageSizeMM(printerWidth
, printerHeight
);
322 if (logPPIPrinterX
== 0 || logPPIPrinterY
== 0 || printerWidth
== 0 || printerHeight
== 0)
328 m_pageWidth
= printerXRes
;
329 m_pageHeight
= printerYRes
;
331 // At 100%, the page should look about page-size on the screen.
332 m_previewScale
= (float)((float)screenWidth
/(float)printerWidth
);
333 m_previewScale
= m_previewScale
* (float)((float)screenXRes
/(float)printerYRes
);
336 /****************************************************************************
338 FUNCTION: wxAbortProc()
340 PURPOSE: Processes messages for the Abort Dialog box
342 ****************************************************************************/
344 LONG APIENTRY _EXPORT
wxAbortProc(HDC
WXUNUSED(hPr
), int WXUNUSED(Code
))
348 if (!wxPrinterBase::sm_abortWindow
) /* If the abort dialog isn't up yet */
351 /* Process messages intended for the abort dialog box */
353 while (!wxPrinterBase::sm_abortIt
&& PeekMessage(&msg
, 0, 0, 0, TRUE
))
354 if (!IsDialogMessage((HWND
) wxPrinterBase::sm_abortWindow
->GetHWND(), &msg
)) {
355 TranslateMessage(&msg
);
356 DispatchMessage(&msg
);
359 /* bAbort is TRUE (return is FALSE) if the user has aborted */
361 return (!wxPrinterBase::sm_abortIt
);