1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/dcprint.cpp
3 // Purpose: wxPrinterDC class
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 "dcprint.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/string.h"
34 #include "wx/window.h"
35 #include "wx/dcmemory.h"
38 #if wxUSE_PRINTING_ARCHITECTURE
40 #include "wx/msw/private.h"
43 #include "wx/msw/dib.h"
46 #include "wx/dcprint.h"
47 #include "wx/printdlg.h"
48 #include "wx/msw/printdlg.h"
51 #if wxUSE_COMMON_DIALOGS
59 // mingw32 defines GDI_ERROR incorrectly
60 #if defined(__GNUWIN32__) || !defined(GDI_ERROR)
62 #define GDI_ERROR ((int)-1)
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 IMPLEMENT_CLASS(wxPrinterDC
, wxDC
)
71 // ============================================================================
73 // ============================================================================
75 // ----------------------------------------------------------------------------
76 // wxPrinterDC construction
77 // ----------------------------------------------------------------------------
79 // This form is deprecated
80 wxPrinterDC::wxPrinterDC(const wxString
& driver_name
,
81 const wxString
& device_name
,
86 m_isInteractive
= interactive
;
89 m_printData
.SetFilename(file
);
91 #if wxUSE_COMMON_DIALOGS
96 pd
.lStructSize
= sizeof( PRINTDLG
);
97 pd
.hwndOwner
= (HWND
) NULL
;
98 pd
.hDevMode
= (HANDLE
)NULL
;
99 pd
.hDevNames
= (HANDLE
)NULL
;
100 pd
.Flags
= PD_RETURNDC
| PD_NOSELECTION
| PD_NOPAGENUMS
;
106 pd
.hInstance
= (HINSTANCE
)NULL
;
108 m_ok
= PrintDlg( &pd
) != 0;
111 m_hDC
= (WXHDC
) pd
.hDC
;
115 #endif // wxUSE_COMMON_DIALOGS
117 if ( !driver_name
.empty() && !device_name
.empty() && !file
.empty() )
119 m_hDC
= (WXHDC
) CreateDC(driver_name
, device_name
, file
, NULL
);
121 else // we don't have all parameters, ask the user
123 wxPrintData printData
;
124 printData
.SetOrientation(orientation
);
125 m_hDC
= wxGetPrinterDC(printData
);
128 m_ok
= m_hDC
? true: false;
130 // as we created it, we must delete it as well
137 wxPrinterDC::wxPrinterDC(const wxPrintData
& printData
)
139 m_printData
= printData
;
141 m_isInteractive
= false;
143 m_hDC
= wxGetPrinterDC(printData
);
151 wxPrinterDC::wxPrinterDC(WXHDC dc
)
153 m_isInteractive
= false;
160 void wxPrinterDC::Init()
164 // int width = GetDeviceCaps(m_hDC, VERTRES);
165 // int height = GetDeviceCaps(m_hDC, HORZRES);
166 SetMapMode(wxMM_TEXT
);
168 SetBrush(*wxBLACK_BRUSH
);
169 SetPen(*wxBLACK_PEN
);
173 // ----------------------------------------------------------------------------
174 // wxPrinterDC {Start/End}{Page/Doc} methods
175 // ----------------------------------------------------------------------------
177 bool wxPrinterDC::StartDoc(const wxString
& message
)
180 docinfo
.cbSize
= sizeof(DOCINFO
);
181 docinfo
.lpszDocName
= (const wxChar
*)message
;
183 wxString
filename(m_printData
.GetFilename());
185 if (filename
.empty())
186 docinfo
.lpszOutput
= NULL
;
188 docinfo
.lpszOutput
= (const wxChar
*) filename
;
190 #if defined(__WIN95__)
191 docinfo
.lpszDatatype
= NULL
;
198 int ret
= ::StartDoc(GetHdc(), &docinfo
);
202 DWORD lastError
= GetLastError();
203 wxLogDebug(wxT("wxDC::StartDoc failed with error: %ld\n"), lastError
);
209 void wxPrinterDC::EndDoc()
211 if (m_hDC
) ::EndDoc((HDC
) m_hDC
);
214 void wxPrinterDC::StartPage()
217 ::StartPage((HDC
) m_hDC
);
220 void wxPrinterDC::EndPage()
223 ::EndPage((HDC
) m_hDC
);
226 // Returns default device and port names
227 static bool wxGetDefaultDeviceName(wxString
& deviceName
, wxString
& portName
)
231 LPDEVNAMES lpDevNames
;
232 LPTSTR lpszDeviceName
;
237 // Cygwin has trouble believing PRINTDLG is 66 bytes - thinks it is 68
240 pd
.lStructSize
= 66; // sizeof(PRINTDLG);
242 memset(&pd
, 0, sizeof(PRINTDLG
));
243 pd
.lStructSize
= sizeof(PRINTDLG
);
246 pd
.hwndOwner
= (HWND
)NULL
;
247 pd
.hDevMode
= NULL
; // Will be created by PrintDlg
248 pd
.hDevNames
= NULL
; // Ditto
249 pd
.Flags
= PD_RETURNDEFAULT
;
252 if (!PrintDlg((LPPRINTDLG
)&pd
))
255 GlobalFree(pd
.hDevMode
);
257 GlobalFree(pd
.hDevNames
);
264 lpDevNames
= (LPDEVNAMES
)GlobalLock(pd
.hDevNames
);
265 lpszDeviceName
= (LPTSTR
)lpDevNames
+ lpDevNames
->wDeviceOffset
;
266 lpszPortName
= (LPTSTR
)lpDevNames
+ lpDevNames
->wOutputOffset
;
268 deviceName
= lpszDeviceName
;
269 portName
= lpszPortName
;
271 GlobalUnlock(pd
.hDevNames
);
272 GlobalFree(pd
.hDevNames
);
278 GlobalFree(pd
.hDevMode
);
281 return ( deviceName
!= wxEmptyString
);
284 // Gets an HDC for the specified printer configuration
285 WXHDC WXDLLEXPORT
wxGetPrinterDC(const wxPrintData
& printDataConst
)
287 #if defined(__WXUNIVERSAL__) && (!defined(__WXMSW__) || wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW)
290 wxPostScriptPrintNativeData
*data
=
291 (wxPostScriptPrintNativeData
*) printDataConst
.GetNativeData();
292 // FIXME: how further ???
297 #else // Postscript vs. native Windows
299 wxWindowsPrintNativeData
*data
=
300 (wxWindowsPrintNativeData
*) printDataConst
.GetNativeData();
302 data
->TransferFrom( printDataConst
);
304 wxChar
* driverName
= (wxChar
*) NULL
;
306 wxString devNameStr
= printDataConst
.GetPrinterName();
307 wxChar
* portName
= (wxChar
*) NULL
; // Obsolete in WIN32
309 const wxChar
* deviceName
;
311 deviceName
= (wxChar
*) NULL
;
313 deviceName
= devNameStr
.c_str();
315 LPDEVMODE lpDevMode
= (LPDEVMODE
) NULL
;
317 HGLOBAL hDevMode
= (HGLOBAL
)(DWORD
) data
->GetDevMode();
320 lpDevMode
= (DEVMODE
*) GlobalLock(hDevMode
);
324 // Retrieve the default device name
326 if ( !wxGetDefaultDeviceName(devNameStr
, portName
) )
328 return 0; // Could not get default device name
330 deviceName
= devNameStr
.c_str();
334 HDC hDC
= CreateDC(driverName
, deviceName
, portName
, (DEVMODE
*) lpDevMode
);
336 HDC hDC
= CreateDC(driverName
, deviceName
, portName
, (LPSTR
) lpDevMode
);
339 if (hDevMode
&& lpDevMode
)
340 GlobalUnlock(hDevMode
);
346 // ----------------------------------------------------------------------------
347 // wxPrinterDC bit blitting/bitmap drawing
348 // ----------------------------------------------------------------------------
350 // helper of DoDrawBitmap() and DoBlit()
352 bool DrawBitmapUsingStretchDIBits(HDC hdc
,
354 wxCoord x
, wxCoord y
)
358 bool ok
= dib
.IsOk();
363 if ( !::GetObject(dib
.GetHandle(), sizeof(ds
), &ds
) )
365 wxLogLastError(_T("GetObject(DIBSECTION)"));
370 // ok, we've got all data we need, do blit it
375 ds
.dsBmih
.biWidth
, ds
.dsBmih
.biHeight
,
377 ds
.dsBmih
.biWidth
, ds
.dsBmih
.biHeight
,
379 (LPBITMAPINFO
)&ds
.dsBmih
,
384 wxLogLastError(wxT("StretchDIBits"));
395 void wxPrinterDC::DoDrawBitmap(const wxBitmap
& bmp
,
396 wxCoord x
, wxCoord y
,
399 wxCHECK_RET( bmp
.Ok(), _T("invalid bitmap in wxPrinterDC::DrawBitmap") );
401 int width
= bmp
.GetWidth(),
402 height
= bmp
.GetHeight();
404 if ( !(::GetDeviceCaps(GetHdc(), RASTERCAPS
) & RC_STRETCHDIB
) ||
405 !DrawBitmapUsingStretchDIBits(GetHdc(), bmp
, x
, y
) )
407 // no support for StretchDIBits() or an error occured if we got here
409 memDC
.SelectObject(bmp
);
411 Blit(x
, y
, width
, height
, &memDC
, 0, 0, wxCOPY
, useMask
);
413 memDC
.SelectObject(wxNullBitmap
);
417 bool wxPrinterDC::DoBlit(wxCoord xdest
, wxCoord ydest
,
418 wxCoord width
, wxCoord height
,
420 wxCoord
WXUNUSED(xsrc
), wxCoord
WXUNUSED(ysrc
),
421 int WXUNUSED(rop
), bool useMask
,
422 wxCoord
WXUNUSED(xsrcMask
), wxCoord
WXUNUSED(ysrcMask
))
424 wxBitmap
& bmp
= source
->GetSelectedBitmap();
425 wxMask
*mask
= useMask
? bmp
.GetMask() : NULL
;
428 // If we are printing source colours are screen colours not printer
429 // colours and so we need copy the bitmap pixel by pixel.
431 HDC dcSrc
= GetHdcOf(*source
);
432 MemoryHDC
dcMask(dcSrc
);
433 SelectInHDC
selectMask(dcMask
, (HBITMAP
)mask
->GetMaskBitmap());
435 for (int x
= 0; x
< width
; x
++)
437 for (int y
= 0; y
< height
; y
++)
439 COLORREF cref
= ::GetPixel(dcMask
, x
, y
);
442 HBRUSH brush
= ::CreateSolidBrush(::GetPixel(dcSrc
, x
, y
));
443 rect
.left
= xdest
+ x
;
444 rect
.right
= rect
.left
+ 1;
445 rect
.top
= ydest
+ y
;
446 rect
.bottom
= rect
.top
+ 1;
447 ::FillRect(GetHdc(), &rect
, brush
);
448 ::DeleteObject(brush
);
455 if ( !(::GetDeviceCaps(GetHdc(), RASTERCAPS
) & RC_STRETCHDIB
) ||
456 !DrawBitmapUsingStretchDIBits(GetHdc(), bmp
, xdest
, ydest
) )
458 // no support for StretchDIBits
460 // as we are printing, source colours are screen colours not
461 // printer colours and so we need copy the bitmap pixel by pixel.
462 HDC dcSrc
= GetHdcOf(*source
);
464 for (int y
= 0; y
< height
; y
++)
466 // optimization: draw identical adjacent pixels together.
467 for (int x
= 0; x
< width
; x
++)
469 COLORREF col
= ::GetPixel(dcSrc
, x
, y
);
470 HBRUSH brush
= ::CreateSolidBrush( col
);
472 rect
.left
= xdest
+ x
;
473 rect
.top
= ydest
+ y
;
474 while( (x
+ 1 < width
) &&
475 (::GetPixel(dcSrc
, x
+ 1, y
) == col
) )
479 rect
.right
= xdest
+ x
+ 1;
480 rect
.bottom
= rect
.top
+ 1;
481 ::FillRect((HDC
) m_hDC
, &rect
, brush
);
482 ::DeleteObject(brush
);
492 // wxUSE_PRINTING_ARCHITECTURE