]> git.saurik.com Git - wxWidgets.git/blame - src/msw/dcprint.cpp
MSVC 5 compilation fixes.
[wxWidgets.git] / src / msw / dcprint.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
4b7f2165 2// Name: src/msw/dcprint.cpp
2bda0e17
KB
3// Purpose: wxPrinterDC class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
4b7f2165 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
4b7f2165
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17 20#ifdef __GNUG__
4b7f2165 21 #pragma implementation "dcprint.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
4b7f2165 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
31#ifndef WX_PRECOMP
4b7f2165
VZ
32 #include "wx/string.h"
33 #include "wx/log.h"
34 #include "wx/window.h"
475f6e7a 35 #include "wx/dcmemory.h"
2bda0e17
KB
36#endif
37
f6bcfd97
BP
38#if wxUSE_PRINTING_ARCHITECTURE
39
42e69d6b 40#include "wx/msw/private.h"
4676948b
JS
41
42#if wxUSE_WXDIB
2f52b4e1 43#include "wx/msw/dib.h"
4676948b
JS
44#endif
45
0c589ad0
BM
46#include "wx/dcprint.h"
47#include "math.h"
2bda0e17 48
b4da152e 49#if wxUSE_COMMON_DIALOGS
4b7f2165 50 #include <commdlg.h>
2bda0e17
KB
51#endif
52
53#ifndef __WIN32__
4b7f2165 54 #include <print.h>
2bda0e17
KB
55#endif
56
3c1a88d8 57// mingw32 defines GDI_ERROR incorrectly
2f52b4e1 58#if defined(__GNUWIN32__) || !defined(GDI_ERROR)
3c1a88d8
VZ
59 #undef GDI_ERROR
60 #define GDI_ERROR ((int)-1)
61#endif
62
4b7f2165
VZ
63// ----------------------------------------------------------------------------
64// wxWin macros
65// ----------------------------------------------------------------------------
3c1a88d8 66
2bda0e17 67IMPLEMENT_CLASS(wxPrinterDC, wxDC)
2bda0e17 68
4b7f2165
VZ
69// ============================================================================
70// implementation
71// ============================================================================
72
73// ----------------------------------------------------------------------------
74// wxPrinterDC construction
75// ----------------------------------------------------------------------------
76
7bcb11d3 77// This form is deprecated
7ba4fbeb
VZ
78wxPrinterDC::wxPrinterDC(const wxString& driver_name,
79 const wxString& device_name,
80 const wxString& file,
81 bool interactive,
82 int orientation)
2bda0e17 83{
7bcb11d3 84 m_isInteractive = interactive;
a17e237f 85
7ba4fbeb 86 if ( !file.empty() )
7bcb11d3 87 m_printData.SetFilename(file);
a17e237f 88
47d67540 89#if wxUSE_COMMON_DIALOGS
7ba4fbeb 90 if ( interactive )
7bcb11d3
JS
91 {
92 PRINTDLG pd;
a17e237f 93
7bcb11d3 94 pd.lStructSize = sizeof( PRINTDLG );
7ba4fbeb
VZ
95 pd.hwndOwner = (HWND) NULL;
96 pd.hDevMode = (HANDLE)NULL;
97 pd.hDevNames = (HANDLE)NULL;
98 pd.Flags = PD_RETURNDC | PD_NOSELECTION | PD_NOPAGENUMS;
99 pd.nFromPage = 0;
100 pd.nToPage = 0;
101 pd.nMinPage = 0;
102 pd.nMaxPage = 0;
103 pd.nCopies = 1;
104 pd.hInstance = (HINSTANCE)NULL;
105
106 m_ok = PrintDlg( &pd ) != 0;
107 if ( m_ok )
7bcb11d3
JS
108 {
109 m_hDC = (WXHDC) pd.hDC;
7bcb11d3 110 }
7bcb11d3
JS
111 }
112 else
4b7f2165 113#endif // wxUSE_COMMON_DIALOGS
7ba4fbeb
VZ
114 {
115 if ( !driver_name.empty() && !device_name.empty() && !file.empty() )
7bcb11d3 116 {
7ba4fbeb 117 m_hDC = (WXHDC) CreateDC(driver_name, device_name, file, NULL);
7bcb11d3 118 }
7ba4fbeb 119 else // we don't have all parameters, ask the user
7bcb11d3
JS
120 {
121 wxPrintData printData;
122 printData.SetOrientation(orientation);
123 m_hDC = wxGetPrinterDC(printData);
7bcb11d3 124 }
a17e237f 125
7ba4fbeb
VZ
126 m_ok = m_hDC ? TRUE: FALSE;
127
128 // as we created it, we must delete it as well
129 m_bOwnsDC = TRUE;
130 }
131
132 Init();
7bcb11d3
JS
133}
134
135wxPrinterDC::wxPrinterDC(const wxPrintData& printData)
136{
137 m_printData = printData;
138
139 m_isInteractive = FALSE;
140
141 m_hDC = wxGetPrinterDC(printData);
7ba4fbeb
VZ
142 m_ok = m_hDC != 0;
143 m_bOwnsDC = TRUE;
a17e237f 144
7ba4fbeb 145 Init();
2bda0e17
KB
146}
147
7bcb11d3 148
7ba4fbeb 149wxPrinterDC::wxPrinterDC(WXHDC dc)
2bda0e17 150{
7bcb11d3 151 m_isInteractive = FALSE;
a17e237f 152
7ba4fbeb
VZ
153 m_hDC = dc;
154 m_bOwnsDC = TRUE;
7bcb11d3 155 m_ok = TRUE;
7ba4fbeb
VZ
156}
157
158void wxPrinterDC::Init()
159{
160 if ( m_hDC )
7bcb11d3
JS
161 {
162 // int width = GetDeviceCaps(m_hDC, VERTRES);
163 // int height = GetDeviceCaps(m_hDC, HORZRES);
164 SetMapMode(wxMM_TEXT);
2bda0e17 165
7ba4fbeb
VZ
166 SetBrush(*wxBLACK_BRUSH);
167 SetPen(*wxBLACK_PEN);
168 }
2bda0e17
KB
169}
170
4b7f2165
VZ
171// ----------------------------------------------------------------------------
172// wxPrinterDC {Start/End}{Page/Doc} methods
173// ----------------------------------------------------------------------------
174
7bcb11d3
JS
175bool wxPrinterDC::StartDoc(const wxString& message)
176{
177 DOCINFO docinfo;
178 docinfo.cbSize = sizeof(DOCINFO);
837e5743 179 docinfo.lpszDocName = (const wxChar*)message;
7bcb11d3
JS
180
181 wxString filename(m_printData.GetFilename());
182
183 if (filename.IsEmpty())
184 docinfo.lpszOutput = NULL;
185 else
837e5743 186 docinfo.lpszOutput = (const wxChar *) filename;
7bcb11d3
JS
187
188#if defined(__WIN95__)
189 docinfo.lpszDatatype = NULL;
190 docinfo.fwType = 0;
191#endif
a17e237f 192
7bcb11d3
JS
193 if (!m_hDC)
194 return FALSE;
a17e237f 195
4b7f2165 196 int ret = ::StartDoc(GetHdc(), &docinfo);
a17e237f 197
7bcb11d3
JS
198#ifndef __WIN16__
199 if (ret <= 0)
200 {
201 DWORD lastError = GetLastError();
9b601c24 202 wxLogDebug(wxT("wxDC::StartDoc failed with error: %ld\n"), lastError);
7bcb11d3
JS
203 }
204#endif
a17e237f 205
7bcb11d3
JS
206 return (ret > 0);
207}
208
4b7f2165 209void wxPrinterDC::EndDoc()
7bcb11d3
JS
210{
211 if (m_hDC) ::EndDoc((HDC) m_hDC);
212}
213
4b7f2165 214void wxPrinterDC::StartPage()
7bcb11d3
JS
215{
216 if (m_hDC)
217 ::StartPage((HDC) m_hDC);
218}
219
4b7f2165 220void wxPrinterDC::EndPage()
7bcb11d3
JS
221{
222 if (m_hDC)
223 ::EndPage((HDC) m_hDC);
224}
225
226// Returns default device and port names
227static bool wxGetDefaultDeviceName(wxString& deviceName, wxString& portName)
228{
7ba4fbeb 229 deviceName.clear();
7bcb11d3
JS
230
231 LPDEVNAMES lpDevNames;
161f4f73
VZ
232 LPTSTR lpszDriverName;
233 LPTSTR lpszDeviceName;
234 LPTSTR lpszPortName;
a17e237f 235
7bcb11d3
JS
236 PRINTDLG pd;
237
238 // Cygwin has trouble believing PRINTDLG is 66 bytes - thinks it is 68
239#ifdef __GNUWIN32__
161f4f73 240 memset(&pd, 0, 66);
7bcb11d3
JS
241 pd.lStructSize = 66; // sizeof(PRINTDLG);
242#else
161f4f73 243 memset(&pd, 0, sizeof(PRINTDLG));
7bcb11d3
JS
244 pd.lStructSize = sizeof(PRINTDLG);
245#endif
246
247 pd.hwndOwner = (HWND)NULL;
248 pd.hDevMode = NULL; // Will be created by PrintDlg
249 pd.hDevNames = NULL; // Ditto
250 pd.Flags = PD_RETURNDEFAULT;
251 pd.nCopies = 1;
a17e237f 252
7bcb11d3
JS
253 if (!PrintDlg((LPPRINTDLG)&pd))
254 {
255 if ( pd.hDevMode )
256 GlobalFree(pd.hDevMode);
257 if (pd.hDevNames)
258 GlobalFree(pd.hDevNames);
a17e237f 259
7bcb11d3
JS
260 return FALSE;
261 }
a17e237f 262
7bcb11d3
JS
263 if (pd.hDevNames)
264 {
265 lpDevNames = (LPDEVNAMES)GlobalLock(pd.hDevNames);
161f4f73
VZ
266 lpszDriverName = (LPTSTR)lpDevNames + lpDevNames->wDriverOffset;
267 lpszDeviceName = (LPTSTR)lpDevNames + lpDevNames->wDeviceOffset;
268 lpszPortName = (LPTSTR)lpDevNames + lpDevNames->wOutputOffset;
7bcb11d3
JS
269
270 deviceName = lpszDeviceName;
271 portName = lpszPortName;
60fe7303
JS
272
273 GlobalUnlock(pd.hDevNames);
274 GlobalFree(pd.hDevNames);
275 pd.hDevNames=NULL;
7bcb11d3 276 }
a17e237f 277
7bcb11d3
JS
278 if (pd.hDevMode)
279 {
280 GlobalFree(pd.hDevMode);
281 pd.hDevMode=NULL;
282 }
fda7962d 283 return ( deviceName != wxEmptyString );
7bcb11d3
JS
284}
285
7bcb11d3
JS
286// Gets an HDC for the specified printer configuration
287WXHDC WXDLLEXPORT wxGetPrinterDC(const wxPrintData& printDataConst)
288{
289 wxPrintData printData = printDataConst;
290 printData.ConvertToNative();
a17e237f 291
837e5743 292 wxChar* driverName = (wxChar*) NULL;
a17e237f 293
7bcb11d3 294 wxString devNameStr = printData.GetPrinterName();
837e5743 295 wxChar* portName = (wxChar*) NULL; // Obsolete in WIN32
a17e237f 296
4b7f2165
VZ
297 const wxChar* deviceName;
298 if ( !devNameStr )
837e5743 299 deviceName = (wxChar*) NULL;
7bcb11d3 300 else
4b7f2165 301 deviceName = devNameStr.c_str();
7bcb11d3
JS
302
303 LPDEVMODE lpDevMode = (LPDEVMODE) NULL;
304
48c12cb1 305 HGLOBAL hDevMode = (HGLOBAL)(DWORD) printData.GetNativeData();
7bcb11d3
JS
306
307 if ( hDevMode )
308 lpDevMode = (DEVMODE*) GlobalLock(hDevMode);
309
4b7f2165 310 if ( !devNameStr )
7bcb11d3
JS
311 {
312 // Retrieve the default device name
313 wxString portName;
a17e237f
VZ
314#ifdef __WXDEBUG__
315 bool ret =
316#else // !Debug
317 (void)
318#endif // Debug/Release
319 wxGetDefaultDeviceName(devNameStr, portName);
7bcb11d3 320
223d09f6 321 wxASSERT_MSG( ret, wxT("Could not get default device name.") );
2bda0e17 322
4b7f2165 323 deviceName = devNameStr.c_str();
7bcb11d3 324 }
a17e237f 325
7bcb11d3
JS
326#ifdef __WIN32__
327 HDC hDC = CreateDC(driverName, deviceName, portName, (DEVMODE *) lpDevMode);
328#else
329 HDC hDC = CreateDC(driverName, deviceName, portName, (LPSTR) lpDevMode);
330#endif
a17e237f 331
7bcb11d3
JS
332 if (hDevMode && lpDevMode)
333 GlobalUnlock(hDevMode);
a17e237f 334
7bcb11d3
JS
335 return (WXHDC) hDC;
336}
2bda0e17 337
4b7f2165
VZ
338// ----------------------------------------------------------------------------
339// wxPrinterDC bit blitting/bitmap drawing
340// ----------------------------------------------------------------------------
341
2f52b4e1
VZ
342// helper of DoDrawBitmap() and DoBlit()
343static
344bool DrawBitmapUsingStretchDIBits(HDC hdc,
345 const wxBitmap& bmp,
346 wxCoord x, wxCoord y)
347{
4676948b 348#if wxUSE_WXDIB
2f52b4e1
VZ
349 wxDIB dib(bmp);
350 if ( !dib.IsOk() )
351 return FALSE;
352
353 DIBSECTION ds;
354 if ( !::GetObject(dib.GetHandle(), sizeof(ds), &ds) )
355 {
356 wxLogLastError(_T("GetObject(DIBSECTION)"));
357
358 return FALSE;
359 }
360
361 // ok, we've got all data we need, do blit it
362 if ( ::StretchDIBits
363 (
364 hdc,
365 x, y,
366 ds.dsBmih.biWidth, ds.dsBmih.biHeight,
367 0, 0,
368 ds.dsBmih.biWidth, ds.dsBmih.biHeight,
369 ds.dsBm.bmBits,
370 (LPBITMAPINFO)&ds.dsBmih,
371 DIB_RGB_COLORS,
372 SRCCOPY
373 ) == GDI_ERROR )
374 {
375 wxLogLastError(wxT("StretchDIBits"));
f6081a04 376
2f52b4e1
VZ
377 return FALSE;
378 }
379
380 return TRUE;
4676948b
JS
381#else
382 return FALSE;
383#endif
2f52b4e1 384}
e11f2e16 385
2f52b4e1 386void wxPrinterDC::DoDrawBitmap(const wxBitmap& bmp,
4b7f2165
VZ
387 wxCoord x, wxCoord y,
388 bool useMask)
389{
390 wxCHECK_RET( bmp.Ok(), _T("invalid bitmap in wxPrinterDC::DrawBitmap") );
391
392 int width = bmp.GetWidth(),
393 height = bmp.GetHeight();
394
2f52b4e1
VZ
395 if ( !(::GetDeviceCaps(GetHdc(), RASTERCAPS) & RC_STRETCHDIB) ||
396 !DrawBitmapUsingStretchDIBits(GetHdc(), bmp, x, y) )
4b7f2165 397 {
2f52b4e1 398 // no support for StretchDIBits() or an error occured if we got here
4b7f2165
VZ
399 wxMemoryDC memDC;
400 memDC.SelectObject(bmp);
401
402 Blit(x, y, width, height, &memDC, 0, 0, wxCOPY, useMask);
403
404 memDC.SelectObject(wxNullBitmap);
405 }
406}
407
408bool wxPrinterDC::DoBlit(wxCoord xdest, wxCoord ydest,
409 wxCoord width, wxCoord height,
410 wxDC *source,
411 wxCoord xsrc, wxCoord ysrc,
0cbff120 412 int WXUNUSED(rop), bool useMask,
d699f48b 413 wxCoord WXUNUSED(xsrcMask), wxCoord WXUNUSED(ysrcMask))
4b7f2165 414{
2f52b4e1
VZ
415 wxBitmap& bmp = source->GetSelectedBitmap();
416 wxMask *mask = useMask ? bmp.GetMask() : NULL;
417 if ( mask )
4b7f2165 418 {
0becd470
VZ
419 // If we are printing source colours are screen colours not printer
420 // colours and so we need copy the bitmap pixel by pixel.
4b7f2165 421 RECT rect;
2f52b4e1
VZ
422 HDC dcSrc = GetHdcOf(*source);
423 MemoryHDC dcMask(dcSrc);
424 SelectInHDC selectMask(dcMask, (HBITMAP)mask->GetMaskBitmap());
4b7f2165 425
4b7f2165
VZ
426 for (int x = 0; x < width; x++)
427 {
428 for (int y = 0; y < height; y++)
429 {
2f52b4e1 430 COLORREF cref = ::GetPixel(dcMask, x, y);
4b7f2165
VZ
431 if (cref)
432 {
2f52b4e1 433 HBRUSH brush = ::CreateSolidBrush(::GetPixel(dcSrc, x, y));
4b7f2165
VZ
434 rect.left = xdest + x;
435 rect.right = rect.left + 1;
33ac7e6f 436 rect.top = ydest + y;
4b7f2165
VZ
437 rect.bottom = rect.top + 1;
438 ::FillRect(GetHdc(), &rect, brush);
439 ::DeleteObject(brush);
440 }
441 }
442 }
4b7f2165
VZ
443 }
444 else // no mask
445 {
2f52b4e1 446 if ( !(::GetDeviceCaps(GetHdc(), RASTERCAPS) & RC_STRETCHDIB) ||
e5c4c38b 447 !DrawBitmapUsingStretchDIBits(GetHdc(), bmp, xdest, ydest) )
4b7f2165 448 {
2f52b4e1 449 // no support for StretchDIBits
4b7f2165 450
0becd470
VZ
451 // as we are printing, source colours are screen colours not
452 // printer colours and so we need copy the bitmap pixel by pixel.
2f52b4e1 453 HDC dcSrc = GetHdcOf(*source);
4b7f2165
VZ
454 RECT rect;
455 for (int y = 0; y < height; y++)
456 {
0becd470 457 // optimization: draw identical adjacent pixels together.
4b7f2165
VZ
458 for (int x = 0; x < width; x++)
459 {
2f52b4e1 460 COLORREF col = ::GetPixel(dcSrc, x, y);
4b7f2165
VZ
461 HBRUSH brush = ::CreateSolidBrush( col );
462
463 rect.left = xdest + x;
464 rect.top = ydest + y;
2f52b4e1
VZ
465 while( (x + 1 < width) &&
466 (::GetPixel(dcSrc, x + 1, y) == col ) )
4b7f2165
VZ
467 {
468 ++x;
469 }
470 rect.right = xdest + x + 1;
471 rect.bottom = rect.top + 1;
472 ::FillRect((HDC) m_hDC, &rect, brush);
473 ::DeleteObject(brush);
474 }
475 }
476 }
477 }
478
2f52b4e1 479 return TRUE;
4b7f2165 480}
f6bcfd97
BP
481
482#endif
483 // wxUSE_PRINTING_ARCHITECTURE