]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/printwin.cpp
f60b5747257b436dd4e5f0df09f4de06e44529dd
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 lpAbortProc
= (WXFARPROC
) MakeProcInstance((FARPROC
) wxAbortProc
, wxGetInstance());
69 wxWindowsPrinter::~wxWindowsPrinter(void)
71 FreeProcInstance((FARPROC
) lpAbortProc
);
74 bool wxWindowsPrinter::Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
)
82 printout
->SetIsPreview(FALSE
);
83 printout
->OnPreparePrinting();
85 // Get some parameters from the printout, if defined
88 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
93 printData
.SetMinPage(minPage
);
94 printData
.SetMaxPage(maxPage
);
96 printData
.SetFromPage(fromPage
);
98 printData
.SetToPage(toPage
);
102 printData
.EnablePageNumbers(TRUE
);
103 if (printData
.GetFromPage() < printData
.GetMinPage())
104 printData
.SetFromPage(printData
.GetMinPage());
105 else if (printData
.GetFromPage() > printData
.GetMaxPage())
106 printData
.SetFromPage(printData
.GetMaxPage());
107 if (printData
.GetToPage() > printData
.GetMaxPage())
108 printData
.SetToPage(printData
.GetMaxPage());
109 else if (printData
.GetToPage() < printData
.GetMinPage())
110 printData
.SetToPage(printData
.GetMinPage());
113 printData
.EnablePageNumbers(FALSE
);
115 // Create a suitable device context
119 wxPrintDialog
dialog(parent
, & printData
);
120 if (dialog
.ShowModal() == wxID_OK
)
122 dc
= dialog
.GetPrintDC();
123 printData
= dialog
.GetPrintData();
128 dc
= new wxPrinterDC("", "", "", FALSE
, 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__)
176 ::SetAbortProc((HDC
) dc
->GetHDC(), (FARPROC
) lpAbortProc
);
178 ::SetAbortProc((HDC
) dc
->GetHDC(), (int (_stdcall
*)(HDC
, int)) lpAbortProc
);
184 wxMessageBox("Sorry, could not create an abort dialog.", "Print Error", wxOK
, parent
);
188 abortWindow
->Show(TRUE
);
191 printout
->OnBeginPrinting();
193 bool keepGoing
= TRUE
;
196 for (copyCount
= 1; copyCount
<= printData
.GetNoCopies(); copyCount
++)
198 if (!printout
->OnBeginDocument(printData
.GetFromPage(), printData
.GetToPage()))
201 wxMessageBox("Could not start printing.", "Print Error", wxOK
, parent
);
208 for (pn
= printData
.GetFromPage(); keepGoing
&& (pn
<= printData
.GetToPage()) && printout
->HasPage(pn
);
218 // int dcID = ::SaveDC(dc->GetHDC());
220 printout
->OnPrintPage(pn
);
222 // ::RestoreDC(dc->GetHDC(), dcID);
225 printout
->OnEndDocument();
228 printout
->OnEndPrinting();
232 abortWindow
->Show(FALSE
);
244 bool wxWindowsPrinter::PrintDialog(wxWindow
*parent
)
246 wxPrintDialog
dialog(parent
, & printData
);
247 return (dialog
.ShowModal() == wxID_OK
);
250 bool wxWindowsPrinter::Setup(wxWindow
*parent
)
252 wxPrintDialog
dialog(parent
, & printData
);
253 dialog
.GetPrintData().SetSetupDialog(TRUE
);
254 return (dialog
.ShowModal() == wxID_OK
);
261 wxWindowsPrintPreview::wxWindowsPrintPreview(wxPrintout
*printout
, wxPrintout
*printoutForPrinting
, wxPrintData
*data
):
262 wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
267 wxWindowsPrintPreview::~wxWindowsPrintPreview(void)
271 bool wxWindowsPrintPreview::Print(bool interactive
)
275 wxWindowsPrinter
printer(&printData
);
276 return printer
.Print(previewFrame
, printPrintout
, interactive
);
279 void wxWindowsPrintPreview::DetermineScaling(void)
281 HDC dc
= ::GetDC(NULL
);
282 int screenWidth
= ::GetDeviceCaps(dc
, HORZSIZE
);
283 // int screenHeight = ::GetDeviceCaps(dc, VERTSIZE);
284 int screenXRes
= ::GetDeviceCaps(dc
, HORZRES
);
285 // int screenYRes = ::GetDeviceCaps(dc, VERTRES);
286 int logPPIScreenX
= ::GetDeviceCaps(dc
, LOGPIXELSX
);
287 int logPPIScreenY
= ::GetDeviceCaps(dc
, LOGPIXELSY
);
288 previewPrintout
->SetPPIScreen(logPPIScreenX
, logPPIScreenY
);
290 ::ReleaseDC(NULL
, dc
);
292 // Get a device context for the currently selected printer
293 wxPrinterDC
printerDC("", "", "", FALSE
, printData
.GetOrientation());
295 int printerWidth
= 150;
296 int printerHeight
= 250;
297 int printerXRes
= 1500;
298 int printerYRes
= 2500;
300 if (printerDC
.GetHDC())
302 printerWidth
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), HORZSIZE
);
303 printerHeight
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), VERTSIZE
);
304 printerXRes
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), HORZRES
);
305 printerYRes
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), VERTRES
);
307 int logPPIPrinterX
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), LOGPIXELSX
);
308 int logPPIPrinterY
= ::GetDeviceCaps((HDC
) printerDC
.GetHDC(), LOGPIXELSY
);
310 previewPrintout
->SetPPIPrinter(logPPIPrinterX
, logPPIPrinterY
);
311 previewPrintout
->SetPageSizeMM(printerWidth
, printerHeight
);
313 if (logPPIPrinterX
== 0 || logPPIPrinterY
== 0 || printerWidth
== 0 || printerHeight
== 0)
319 pageWidth
= printerXRes
;
320 pageHeight
= printerYRes
;
322 // At 100%, the page should look about page-size on the screen.
323 previewScale
= (float)((float)screenWidth
/(float)printerWidth
);
324 previewScale
= previewScale
* (float)((float)screenXRes
/(float)printerYRes
);
327 /****************************************************************************
329 FUNCTION: wxAbortProc()
331 PURPOSE: Processes messages for the Abort Dialog box
333 ****************************************************************************/
335 LONG APIENTRY _EXPORT
wxAbortProc(HDC
WXUNUSED(hPr
), int WXUNUSED(Code
))
339 if (!wxPrinterBase::abortWindow
) /* If the abort dialog isn't up yet */
342 /* Process messages intended for the abort dialog box */
344 while (!wxPrinterBase::abortIt
&& PeekMessage(&msg
, 0, 0, 0, TRUE
))
345 if (!IsDialogMessage((HWND
) wxPrinterBase::abortWindow
->GetHWND(), &msg
)) {
346 TranslateMessage(&msg
);
347 DispatchMessage(&msg
);
350 /* bAbort is TRUE (return is FALSE) if the user has aborted */
352 return (!wxPrinterBase::abortIt
);