]>
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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "printwin.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
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)
38 #include "wx/window.h"
39 #include "wx/msw/private.h"
43 #include "wx/msgdlg.h"
47 #include "wx/msw/printwin.h"
48 #include "wx/dcprint.h"
49 #include "wx/printdlg.h"
51 #include "wx/msw/private.h"
55 #include "wx/msw/private.h"
63 // ---------------------------------------------------------------------------
65 // ---------------------------------------------------------------------------
67 LONG APIENTRY _EXPORT
wxAbortProc(HDC hPr
, int Code
);
69 // ---------------------------------------------------------------------------
71 // ---------------------------------------------------------------------------
73 IMPLEMENT_DYNAMIC_CLASS(wxWindowsPrinter
, wxPrinterBase
)
74 IMPLEMENT_CLASS(wxWindowsPrintPreview
, wxPrintPreviewBase
)
76 // ===========================================================================
78 // ===========================================================================
80 // ---------------------------------------------------------------------------
82 // ---------------------------------------------------------------------------
84 wxWindowsPrinter::wxWindowsPrinter(wxPrintDialogData
*data
)
87 m_lpAbortProc
= (WXFARPROC
) MakeProcInstance((FARPROC
) wxAbortProc
, wxGetInstance());
90 wxWindowsPrinter::~wxWindowsPrinter()
92 // avoids warning about statement with no effect (FreeProcInstance
93 // doesn't do anything under Win32)
94 #if !defined(__WIN32__) && !defined(__NT__)
95 FreeProcInstance((FARPROC
) m_lpAbortProc
);
99 bool wxWindowsPrinter::Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
)
102 sm_abortWindow
= NULL
;
106 sm_lastError
= wxPRINTER_ERROR
;
110 printout
->SetIsPreview(false);
112 if (m_printDialogData
.GetMinPage() < 1)
113 m_printDialogData
.SetMinPage(1);
114 if (m_printDialogData
.GetMaxPage() < 1)
115 m_printDialogData
.SetMaxPage(9999);
117 // Create a suitable device context
118 wxDC
*dc
wxDUMMY_INITIALIZE(NULL
);
121 dc
= PrintDialog(parent
);
127 dc
= new wxPrinterDC(m_printDialogData
.GetPrintData());
130 // May have pressed cancel.
131 if (!dc
|| !dc
->Ok())
137 HDC hdc
= ::GetDC(NULL
);
138 int logPPIScreenX
= ::GetDeviceCaps(hdc
, LOGPIXELSX
);
139 int logPPIScreenY
= ::GetDeviceCaps(hdc
, LOGPIXELSY
);
140 ::ReleaseDC(NULL
, hdc
);
142 int logPPIPrinterX
= ::GetDeviceCaps((HDC
) dc
->GetHDC(), LOGPIXELSX
);
143 int logPPIPrinterY
= ::GetDeviceCaps((HDC
) dc
->GetHDC(), LOGPIXELSY
);
144 if (logPPIPrinterX
== 0 || logPPIPrinterY
== 0)
147 sm_lastError
= wxPRINTER_ERROR
;
151 printout
->SetPPIScreen(logPPIScreenX
, logPPIScreenY
);
152 printout
->SetPPIPrinter(logPPIPrinterX
, logPPIPrinterY
);
154 // Set printout parameters
159 printout
->SetPageSizePixels((int)w
, (int)h
);
161 dc
->GetSizeMM(&w
, &h
);
162 printout
->SetPageSizeMM((int)w
, (int)h
);
164 // Create an abort window
165 wxBusyCursor busyCursor
;
167 printout
->OnPreparePrinting();
169 // Get some parameters from the printout, if defined
170 int fromPage
, toPage
;
171 int minPage
, maxPage
;
172 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
176 sm_lastError
= wxPRINTER_ERROR
;
180 // Only set min and max, because from and to have been
182 m_printDialogData
.SetMinPage(minPage
);
183 m_printDialogData
.SetMaxPage(maxPage
);
185 wxWindow
*win
= CreateAbortWindow(parent
, printout
);
188 #if defined(__WATCOMC__) || defined(__BORLANDC__) || defined(__GNUWIN32__) || defined(__SALFORDC__) || !defined(__WIN32__)
190 ::SetAbortProc((HDC
) dc
->GetHDC(), (ABORTPROC
) m_lpAbortProc
);
192 ::SetAbortProc((HDC
) dc
->GetHDC(), (FARPROC
) m_lpAbortProc
);
195 ::SetAbortProc((HDC
) dc
->GetHDC(), (int (_stdcall
*)
196 // cast it to right type only if required
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
209 wxLogDebug(wxT("Could not create an abort dialog."));
210 sm_lastError
= wxPRINTER_ERROR
;
214 sm_abortWindow
= win
;
215 sm_abortWindow
->Show();
218 printout
->OnBeginPrinting();
220 sm_lastError
= wxPRINTER_NO_ERROR
;
222 int minPageNum
= minPage
, maxPageNum
= maxPage
;
224 if ( !m_printDialogData
.GetAllPages() )
226 minPageNum
= m_printDialogData
.GetFromPage();
227 maxPageNum
= m_printDialogData
.GetToPage();
232 copyCount
<= m_printDialogData
.GetNoCopies();
235 if ( !printout
->OnBeginDocument(minPageNum
, maxPageNum
) )
237 wxLogError(_("Could not start printing."));
238 sm_lastError
= wxPRINTER_ERROR
;
243 sm_lastError
= wxPRINTER_CANCELLED
;
249 for ( pn
= minPageNum
;
250 pn
<= maxPageNum
&& printout
->HasPage(pn
);
255 sm_lastError
= wxPRINTER_CANCELLED
;
260 bool cont
= printout
->OnPrintPage(pn
);
265 sm_lastError
= wxPRINTER_CANCELLED
;
270 printout
->OnEndDocument();
273 printout
->OnEndPrinting();
277 sm_abortWindow
->Show(false);
278 delete sm_abortWindow
;
279 sm_abortWindow
= NULL
;
284 return (sm_lastError
== wxPRINTER_NO_ERROR
);
287 wxDC
* wxWindowsPrinter::PrintDialog(wxWindow
*parent
)
289 wxDC
* dc
= (wxDC
*) NULL
;
291 wxPrintDialog
dialog(parent
, & m_printDialogData
);
292 int ret
= dialog
.ShowModal();
296 dc
= dialog
.GetPrintDC();
297 m_printDialogData
= dialog
.GetPrintDialogData();
299 sm_lastError
= wxPRINTER_ERROR
;
301 sm_lastError
= wxPRINTER_NO_ERROR
;
304 sm_lastError
= wxPRINTER_CANCELLED
;
309 bool wxWindowsPrinter::Setup(wxWindow
*WXUNUSED(parent
))
312 // We no longer expose that dialog
313 wxPrintDialog
dialog(parent
, & m_printDialogData
);
314 dialog
.GetPrintDialogData().SetSetupDialog(true);
316 int ret
= dialog
.ShowModal();
320 m_printDialogData
= dialog
.GetPrintDialogData();
323 return (ret
== wxID_OK
);
333 wxWindowsPrintPreview::wxWindowsPrintPreview(wxPrintout
*printout
,
334 wxPrintout
*printoutForPrinting
,
335 wxPrintDialogData
*data
)
336 : wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
341 wxWindowsPrintPreview::wxWindowsPrintPreview(wxPrintout
*printout
,
342 wxPrintout
*printoutForPrinting
,
344 : wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
349 wxWindowsPrintPreview::~wxWindowsPrintPreview()
353 bool wxWindowsPrintPreview::Print(bool interactive
)
355 if (!m_printPrintout
)
357 wxWindowsPrinter
printer(&m_printDialogData
);
358 return printer
.Print(m_previewFrame
, m_printPrintout
, interactive
);
361 void wxWindowsPrintPreview::DetermineScaling()
363 HDC dc
= ::GetDC(NULL
);
364 int screenWidth
= ::GetDeviceCaps(dc
, HORZSIZE
);
365 int screenYRes
= ::GetDeviceCaps(dc
, VERTRES
);
366 int logPPIScreenX
= ::GetDeviceCaps(dc
, LOGPIXELSX
);
367 int logPPIScreenY
= ::GetDeviceCaps(dc
, LOGPIXELSY
);
368 m_previewPrintout
->SetPPIScreen(logPPIScreenX
, logPPIScreenY
);
370 ::ReleaseDC(NULL
, dc
);
372 // Get a device context for the currently selected printer
373 wxPrinterDC
printerDC(m_printDialogData
.GetPrintData());
375 int printerWidth
= 150;
376 int printerHeight
wxDUMMY_INITIALIZE(250);
377 int printerXRes
= 1500;
378 int printerYRes
= 2500;
380 dc
= GetHdcOf(printerDC
);
383 printerWidth
= ::GetDeviceCaps(dc
, HORZSIZE
);
384 printerHeight
= ::GetDeviceCaps(dc
, VERTSIZE
);
385 printerXRes
= ::GetDeviceCaps(dc
, HORZRES
);
386 printerYRes
= ::GetDeviceCaps(dc
, VERTRES
);
388 int logPPIPrinterX
= ::GetDeviceCaps(dc
, LOGPIXELSX
);
389 int logPPIPrinterY
= ::GetDeviceCaps(dc
, LOGPIXELSY
);
391 m_previewPrintout
->SetPPIPrinter(logPPIPrinterX
, logPPIPrinterY
);
392 m_previewPrintout
->SetPageSizeMM(printerWidth
, printerHeight
);
394 if (logPPIPrinterX
== 0 || logPPIPrinterY
== 0 || printerWidth
== 0 || printerHeight
== 0)
400 m_pageWidth
= printerXRes
;
401 m_pageHeight
= printerYRes
;
403 // At 100%, the page should look about page-size on the screen.
404 m_previewScale
= (float)((float)screenWidth
/(float)printerWidth
);
405 m_previewScale
= m_previewScale
* (float)((float)screenYRes
/(float)printerYRes
);
408 /****************************************************************************
410 FUNCTION: wxAbortProc()
412 PURPOSE: Processes messages for the Abort Dialog box
414 ****************************************************************************/
416 LONG APIENTRY _EXPORT
wxAbortProc(HDC
WXUNUSED(hPr
), int WXUNUSED(Code
))
420 if (!wxPrinterBase::sm_abortWindow
) /* If the abort dialog isn't up yet */
423 /* Process messages intended for the abort dialog box */
425 while (!wxPrinterBase::sm_abortIt
&& ::PeekMessage(&msg
, 0, 0, 0, TRUE
))
426 if (!IsDialogMessage((HWND
) wxPrinterBase::sm_abortWindow
->GetHWND(), &msg
)) {
427 TranslateMessage(&msg
);
428 DispatchMessage(&msg
);
431 /* bAbort is TRUE (return is FALSE) if the user has aborted */
433 return (!wxPrinterBase::sm_abortIt
);
437 // wxUSE_PRINTING_ARCHITECTURE