]> git.saurik.com Git - wxWidgets.git/blame - src/msw/dcprint.cpp
Visualage C++ V4.0 duplicate symbol 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$
8// Copyright: (c) Julian Smart and Markus Holzem
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
42e69d6b 38#include "wx/msw/private.h"
0c589ad0
BM
39#include "wx/dcprint.h"
40#include "math.h"
2bda0e17 41
c455ab93 42#if wxUSE_COMMON_DIALOGS || defined(__WXWINE__)
4b7f2165 43 #include <commdlg.h>
2bda0e17
KB
44#endif
45
46#ifndef __WIN32__
4b7f2165 47 #include <print.h>
2bda0e17
KB
48#endif
49
3c1a88d8
VZ
50// mingw32 defines GDI_ERROR incorrectly
51#ifdef __GNUWIN32__
52 #undef GDI_ERROR
53 #define GDI_ERROR ((int)-1)
54#endif
55
4b7f2165
VZ
56// ----------------------------------------------------------------------------
57// wxWin macros
58// ----------------------------------------------------------------------------
3c1a88d8 59
2bda0e17 60IMPLEMENT_CLASS(wxPrinterDC, wxDC)
2bda0e17 61
4b7f2165
VZ
62// ============================================================================
63// implementation
64// ============================================================================
65
66// ----------------------------------------------------------------------------
67// wxPrinterDC construction
68// ----------------------------------------------------------------------------
69
7bcb11d3 70// This form is deprecated
debe6624 71wxPrinterDC::wxPrinterDC(const wxString& driver_name, const wxString& device_name, const wxString& file, bool interactive, int orientation)
2bda0e17 72{
7bcb11d3 73 m_isInteractive = interactive;
a17e237f 74
4b7f2165 75 if ( !!file )
7bcb11d3 76 m_printData.SetFilename(file);
a17e237f 77
47d67540 78#if wxUSE_COMMON_DIALOGS
7bcb11d3
JS
79 if (interactive)
80 {
81 PRINTDLG pd;
a17e237f 82
7bcb11d3
JS
83 pd.lStructSize = sizeof( PRINTDLG );
84 pd.hwndOwner=(HWND) NULL;
85 pd.hDevMode=(HANDLE)NULL;
86 pd.hDevNames=(HANDLE)NULL;
87 pd.Flags=PD_RETURNDC | PD_NOSELECTION | PD_NOPAGENUMS;
88 pd.nFromPage=0;
89 pd.nToPage=0;
90 pd.nMinPage=0;
91 pd.nMaxPage=0;
92 pd.nCopies=1;
93 pd.hInstance=(HINSTANCE)NULL;
a17e237f 94
7bcb11d3
JS
95 if ( PrintDlg( &pd ) != 0 )
96 {
97 m_hDC = (WXHDC) pd.hDC;
98 m_ok = TRUE;
99 }
100 else
101 {
102 m_ok = FALSE;
103 return;
104 }
a17e237f 105
7bcb11d3
JS
106 // m_dontDelete = TRUE;
107 }
108 else
4b7f2165 109#endif // wxUSE_COMMON_DIALOGS
223d09f6
KB
110 if ((!driver_name.IsNull() && driver_name != wxT("")) &&
111 (!device_name.IsNull() && device_name != wxT("")) &&
112 (!file.IsNull() && file != wxT("")))
7bcb11d3 113 {
837e5743 114 m_hDC = (WXHDC) CreateDC(WXSTRINGCAST driver_name, WXSTRINGCAST device_name, WXSTRINGCAST file, NULL);
7bcb11d3
JS
115 m_ok = m_hDC ? TRUE: FALSE;
116 }
117 else
118 {
119 wxPrintData printData;
120 printData.SetOrientation(orientation);
121 m_hDC = wxGetPrinterDC(printData);
122 m_ok = m_hDC ? TRUE: FALSE;
123 }
a17e237f 124
7bcb11d3
JS
125 if (m_hDC)
126 {
127 // int width = GetDeviceCaps(m_hDC, VERTRES);
128 // int height = GetDeviceCaps(m_hDC, HORZRES);
129 SetMapMode(wxMM_TEXT);
130 }
131 SetBrush(*wxBLACK_BRUSH);
132 SetPen(*wxBLACK_PEN);
133}
134
135wxPrinterDC::wxPrinterDC(const wxPrintData& printData)
136{
137 m_printData = printData;
138
139 m_isInteractive = FALSE;
140
141 m_hDC = wxGetPrinterDC(printData);
142 m_ok = (m_hDC != 0);
a17e237f 143
7bcb11d3
JS
144 if (m_hDC)
145 SetMapMode(wxMM_TEXT);
a17e237f 146
7bcb11d3
JS
147 SetBrush(*wxBLACK_BRUSH);
148 SetPen(*wxBLACK_PEN);
2bda0e17
KB
149}
150
7bcb11d3 151
2bda0e17
KB
152wxPrinterDC::wxPrinterDC(WXHDC theDC)
153{
7bcb11d3 154 m_isInteractive = FALSE;
a17e237f 155
7bcb11d3
JS
156 m_hDC = theDC;
157 m_ok = TRUE;
158 if (m_hDC)
159 {
160 // int width = GetDeviceCaps(m_hDC, VERTRES);
161 // int height = GetDeviceCaps(m_hDC, HORZRES);
162 SetMapMode(wxMM_TEXT);
163 }
164 SetBrush(*wxBLACK_BRUSH);
165 SetPen(*wxBLACK_PEN);
2bda0e17
KB
166}
167
4b7f2165 168wxPrinterDC::~wxPrinterDC()
2bda0e17
KB
169{
170}
171
4b7f2165
VZ
172// ----------------------------------------------------------------------------
173// wxPrinterDC {Start/End}{Page/Doc} methods
174// ----------------------------------------------------------------------------
175
7bcb11d3
JS
176bool wxPrinterDC::StartDoc(const wxString& message)
177{
178 DOCINFO docinfo;
179 docinfo.cbSize = sizeof(DOCINFO);
837e5743 180 docinfo.lpszDocName = (const wxChar*)message;
7bcb11d3
JS
181
182 wxString filename(m_printData.GetFilename());
183
184 if (filename.IsEmpty())
185 docinfo.lpszOutput = NULL;
186 else
837e5743 187 docinfo.lpszOutput = (const wxChar *) filename;
7bcb11d3
JS
188
189#if defined(__WIN95__)
190 docinfo.lpszDatatype = NULL;
191 docinfo.fwType = 0;
192#endif
a17e237f 193
7bcb11d3
JS
194 if (!m_hDC)
195 return FALSE;
a17e237f 196
4b7f2165 197 int ret = ::StartDoc(GetHdc(), &docinfo);
a17e237f 198
7bcb11d3
JS
199#ifndef __WIN16__
200 if (ret <= 0)
201 {
202 DWORD lastError = GetLastError();
223d09f6 203 wxLogDebug(wxT("wxDC::StartDoc failed with error: %d\n"), lastError);
7bcb11d3
JS
204 }
205#endif
a17e237f 206
7bcb11d3
JS
207 return (ret > 0);
208}
209
4b7f2165 210void wxPrinterDC::EndDoc()
7bcb11d3
JS
211{
212 if (m_hDC) ::EndDoc((HDC) m_hDC);
213}
214
4b7f2165 215void wxPrinterDC::StartPage()
7bcb11d3
JS
216{
217 if (m_hDC)
218 ::StartPage((HDC) m_hDC);
219}
220
4b7f2165 221void wxPrinterDC::EndPage()
7bcb11d3
JS
222{
223 if (m_hDC)
224 ::EndPage((HDC) m_hDC);
225}
226
227// Returns default device and port names
228static bool wxGetDefaultDeviceName(wxString& deviceName, wxString& portName)
229{
230 deviceName = "";
231
232 LPDEVNAMES lpDevNames;
233 LPSTR lpszDriverName;
234 LPSTR lpszDeviceName;
235 LPSTR lpszPortName;
a17e237f 236
7bcb11d3
JS
237 PRINTDLG pd;
238
239 // Cygwin has trouble believing PRINTDLG is 66 bytes - thinks it is 68
240#ifdef __GNUWIN32__
241 pd.lStructSize = 66; // sizeof(PRINTDLG);
242#else
243 pd.lStructSize = sizeof(PRINTDLG);
244#endif
245
246 pd.hwndOwner = (HWND)NULL;
247 pd.hDevMode = NULL; // Will be created by PrintDlg
248 pd.hDevNames = NULL; // Ditto
249 pd.Flags = PD_RETURNDEFAULT;
250 pd.nCopies = 1;
a17e237f 251
7bcb11d3
JS
252 if (!PrintDlg((LPPRINTDLG)&pd))
253 {
254 if ( pd.hDevMode )
255 GlobalFree(pd.hDevMode);
256 if (pd.hDevNames)
257 GlobalFree(pd.hDevNames);
a17e237f 258
7bcb11d3
JS
259 return FALSE;
260 }
a17e237f 261
7bcb11d3
JS
262 if (pd.hDevNames)
263 {
264 lpDevNames = (LPDEVNAMES)GlobalLock(pd.hDevNames);
265 lpszDriverName = (LPSTR)lpDevNames + lpDevNames->wDriverOffset;
266 lpszDeviceName = (LPSTR)lpDevNames + lpDevNames->wDeviceOffset;
267 lpszPortName = (LPSTR)lpDevNames + lpDevNames->wOutputOffset;
7bcb11d3
JS
268
269 deviceName = lpszDeviceName;
270 portName = lpszPortName;
60fe7303
JS
271
272 GlobalUnlock(pd.hDevNames);
273 GlobalFree(pd.hDevNames);
274 pd.hDevNames=NULL;
7bcb11d3 275 }
a17e237f 276
7bcb11d3
JS
277 if (pd.hDevMode)
278 {
279 GlobalFree(pd.hDevMode);
280 pd.hDevMode=NULL;
281 }
223d09f6 282 return ( deviceName != wxT("") );
7bcb11d3
JS
283}
284
285#if 0
286// This uses defaults, except for orientation, so we should eliminate this function
287// and use the 2nd form (passing wxPrintData) instead.
2bda0e17
KB
288WXHDC wxGetPrinterDC(int orientation)
289{
290 HDC hDC;
291 LPDEVMODE lpDevMode = NULL;
292 LPDEVNAMES lpDevNames;
293 LPSTR lpszDriverName;
294 LPSTR lpszDeviceName;
295 LPSTR lpszPortName;
a17e237f 296
2bda0e17
KB
297 PRINTDLG pd;
298 // __GNUWIN32__ has trouble believing PRINTDLG is 66 bytes - thinks it is 68
7bcb11d3 299#ifdef __GNUWIN32__
2bda0e17 300 pd.lStructSize = 66; // sizeof(PRINTDLG);
7bcb11d3
JS
301#else
302 pd.lStructSize = sizeof(PRINTDLG);
303#endif
2bda0e17
KB
304 pd.hwndOwner = (HWND)NULL;
305 pd.hDevMode = NULL; // Will be created by PrintDlg
306 pd.hDevNames = NULL; // Ditto
307 pd.Flags = PD_RETURNDEFAULT;
308 pd.nCopies = 1;
a17e237f 309
2bda0e17
KB
310 if (!PrintDlg((LPPRINTDLG)&pd))
311 {
312 if ( pd.hDevMode )
313 GlobalFree(pd.hDevMode);
314 if (pd.hDevNames)
315 GlobalFree(pd.hDevNames);
a17e237f 316
2bda0e17
KB
317 return(0);
318 }
a17e237f 319
2bda0e17
KB
320 if (!pd.hDevNames)
321 {
322 if ( pd.hDevMode )
323 GlobalFree(pd.hDevMode);
324 }
a17e237f 325
2bda0e17
KB
326 lpDevNames = (LPDEVNAMES)GlobalLock(pd.hDevNames);
327 lpszDriverName = (LPSTR)lpDevNames + lpDevNames->wDriverOffset;
328 lpszDeviceName = (LPSTR)lpDevNames + lpDevNames->wDeviceOffset;
329 lpszPortName = (LPSTR)lpDevNames + lpDevNames->wOutputOffset;
330 GlobalUnlock(pd.hDevNames);
a17e237f 331
2bda0e17
KB
332 if ( pd.hDevMode )
333 {
334 lpDevMode = (DEVMODE*) GlobalLock(pd.hDevMode);
335 lpDevMode->dmOrientation = orientation;
336 lpDevMode->dmFields |= DM_ORIENTATION;
337 }
a17e237f 338
2bda0e17
KB
339#ifdef __WIN32__
340 hDC = CreateDC(lpszDriverName, lpszDeviceName, lpszPortName, (DEVMODE *)lpDevMode);
341#else
342 hDC = CreateDC(lpszDriverName, lpszDeviceName, lpszPortName, (LPSTR)lpDevMode);
343#endif
a17e237f 344
2bda0e17
KB
345 if (pd.hDevMode && lpDevMode)
346 GlobalUnlock(pd.hDevMode);
a17e237f 347
2bda0e17
KB
348 if (pd.hDevNames)
349 {
7bcb11d3
JS
350 GlobalFree(pd.hDevNames);
351 pd.hDevNames=NULL;
2bda0e17
KB
352 }
353 if (pd.hDevMode)
354 {
355 GlobalFree(pd.hDevMode);
356 pd.hDevMode=NULL;
357 }
358 return (WXHDC) hDC;
359}
7bcb11d3
JS
360#endif
361
362// Gets an HDC for the specified printer configuration
363WXHDC WXDLLEXPORT wxGetPrinterDC(const wxPrintData& printDataConst)
364{
365 wxPrintData printData = printDataConst;
366 printData.ConvertToNative();
a17e237f 367
837e5743 368 wxChar* driverName = (wxChar*) NULL;
a17e237f 369
7bcb11d3 370 wxString devNameStr = printData.GetPrinterName();
837e5743 371 wxChar* portName = (wxChar*) NULL; // Obsolete in WIN32
a17e237f 372
4b7f2165
VZ
373 const wxChar* deviceName;
374 if ( !devNameStr )
837e5743 375 deviceName = (wxChar*) NULL;
7bcb11d3 376 else
4b7f2165 377 deviceName = devNameStr.c_str();
7bcb11d3
JS
378
379 LPDEVMODE lpDevMode = (LPDEVMODE) NULL;
380
48c12cb1 381 HGLOBAL hDevMode = (HGLOBAL)(DWORD) printData.GetNativeData();
7bcb11d3
JS
382
383 if ( hDevMode )
384 lpDevMode = (DEVMODE*) GlobalLock(hDevMode);
385
4b7f2165 386 if ( !devNameStr )
7bcb11d3
JS
387 {
388 // Retrieve the default device name
389 wxString portName;
a17e237f
VZ
390#ifdef __WXDEBUG__
391 bool ret =
392#else // !Debug
393 (void)
394#endif // Debug/Release
395 wxGetDefaultDeviceName(devNameStr, portName);
7bcb11d3 396
223d09f6 397 wxASSERT_MSG( ret, wxT("Could not get default device name.") );
2bda0e17 398
4b7f2165 399 deviceName = devNameStr.c_str();
7bcb11d3 400 }
a17e237f 401
7bcb11d3
JS
402#ifdef __WIN32__
403 HDC hDC = CreateDC(driverName, deviceName, portName, (DEVMODE *) lpDevMode);
404#else
405 HDC hDC = CreateDC(driverName, deviceName, portName, (LPSTR) lpDevMode);
406#endif
a17e237f 407
7bcb11d3
JS
408 if (hDevMode && lpDevMode)
409 GlobalUnlock(hDevMode);
a17e237f 410
7bcb11d3
JS
411 return (WXHDC) hDC;
412}
2bda0e17 413
4b7f2165
VZ
414// ----------------------------------------------------------------------------
415// wxPrinterDC bit blitting/bitmap drawing
416// ----------------------------------------------------------------------------
417
418void wxPrinterDC::DoDrawBitmap(const wxBitmap &bmp,
419 wxCoord x, wxCoord y,
420 bool useMask)
421{
422 wxCHECK_RET( bmp.Ok(), _T("invalid bitmap in wxPrinterDC::DrawBitmap") );
423
424 int width = bmp.GetWidth(),
425 height = bmp.GetHeight();
426
427 if ( ::GetDeviceCaps(GetHdc(), RASTERCAPS) & RC_STRETCHDIB )
428 {
429 BITMAPINFO *info = (BITMAPINFO *) malloc( sizeof( BITMAPINFOHEADER ) + 256 * sizeof(RGBQUAD ) );
430 memset( info, 0, sizeof( BITMAPINFOHEADER ) );
431
432 int iBitsSize = ((width + 3 ) & ~3 ) * height;
433
434 void* bits = malloc( iBitsSize );
435
436 info->bmiHeader.biSize = sizeof( BITMAPINFOHEADER );
437 info->bmiHeader.biWidth = width;
438 info->bmiHeader.biHeight = height;
439 info->bmiHeader.biPlanes = 1;
440 info->bmiHeader.biBitCount = 8;
441 info->bmiHeader.biCompression = BI_RGB;
442
443 ScreenHDC display;
444 if ( GetDIBits(display, GetHbitmapOf(bmp), 0,
445 bmp.GetHeight(), bits, info,
446 DIB_RGB_COLORS) )
447 {
448 if ( ::StretchDIBits(GetHdc(), x, y,
449 width, height,
450 0 , 0, width, height,
451 bits, info,
452 DIB_RGB_COLORS, SRCCOPY) == GDI_ERROR )
453 {
454 wxLogLastError("StretchDIBits");
455 }
456 }
457
458 free(bits);
459 free(info);
460 }
461 else // no support for StretchDIBits()
462 {
463 wxMemoryDC memDC;
464 memDC.SelectObject(bmp);
465
466 Blit(x, y, width, height, &memDC, 0, 0, wxCOPY, useMask);
467
468 memDC.SelectObject(wxNullBitmap);
469 }
470}
471
472bool wxPrinterDC::DoBlit(wxCoord xdest, wxCoord ydest,
473 wxCoord width, wxCoord height,
474 wxDC *source,
475 wxCoord xsrc, wxCoord ysrc,
476 int rop, bool useMask)
477{
478 bool success = TRUE;
479
480 if ( useMask )
481 {
482 // If we are printing source colours are screen colours
483 // not printer colours and so we need copy the bitmap
484 // pixel by pixel.
485 RECT rect;
486 HDC dc_src = GetHdcOf(*source);
487 HDC dc_mask = ::CreateCompatibleDC(dc_src);
488
489 ::SelectObject(dc_mask, (HBITMAP) source->GetSelectedBitmap().GetMask()->GetMaskBitmap());
490 for (int x = 0; x < width; x++)
491 {
492 for (int y = 0; y < height; y++)
493 {
494 COLORREF cref = ::GetPixel(dc_mask, x, y);
495 if (cref)
496 {
497 HBRUSH brush = ::CreateSolidBrush(::GetPixel(dc_src, x, y));
498 rect.left = xdest + x;
499 rect.right = rect.left + 1;
500 rect.top = ydest + y;
501 rect.bottom = rect.top + 1;
502 ::FillRect(GetHdc(), &rect, brush);
503 ::DeleteObject(brush);
504 }
505 }
506 }
507 ::SelectObject(dc_mask, 0);
508 ::DeleteDC(dc_mask);
509 }
510 else // no mask
511 {
512 if ( ::GetDeviceCaps(GetHdc(), RASTERCAPS) & RC_STRETCHDIB )
513 {
514 wxBitmap& bmp = source->GetSelectedBitmap();
515 int width = bmp.GetWidth(),
516 height = bmp.GetHeight();
517
518 BITMAPINFO *info = (BITMAPINFO *) malloc( sizeof( BITMAPINFOHEADER ) + 256 * sizeof(RGBQUAD ) );
519 int iBitsSize = ((width + 3 ) & ~3 ) * height;
520
521 void* bits = malloc( iBitsSize );
522
523 memset( info , 0 , sizeof( BITMAPINFOHEADER ) );
524
525 info->bmiHeader.biSize = sizeof( BITMAPINFOHEADER );
526 info->bmiHeader.biWidth = width;
527 info->bmiHeader.biHeight = height;
528 info->bmiHeader.biPlanes = 1;
529 info->bmiHeader.biBitCount = 8;
530 info->bmiHeader.biCompression = BI_RGB;
531
532 ScreenHDC display;
533 if ( !::GetDIBits(display, GetHbitmapOf(bmp), 0,
534 height, bits, info, DIB_RGB_COLORS) )
535 {
536 wxLogLastError("GetDIBits");
537
538 success = FALSE;
539 }
540
541 if ( success )
542 {
543 success = ::StretchDIBits(GetHdc(), xdest, ydest,
544 width, height,
545 xsrc, ysrc,
546 width, height,
547 bits, info ,
548 DIB_RGB_COLORS,
549 SRCCOPY) != GDI_ERROR;
550 if ( !success )
551 {
552 wxLogLastError("StretchDIBits");
553 }
554 }
555
556 free(bits);
557 free(info);
558 }
559 else // no support for StretchDIBits
560 {
561 // as we are printing, source colours are screen colours not printer
562 // colours and so we need copy the bitmap pixel by pixel.
563 HDC dc_src = GetHdcOf(*source);
564 RECT rect;
565 for (int y = 0; y < height; y++)
566 {
567 // This is Stefan Csomor's optimisation, where identical adjacent
568 // pixels are drawn together.
569 for (int x = 0; x < width; x++)
570 {
571 COLORREF col = ::GetPixel(dc_src, x, y);
572 HBRUSH brush = ::CreateSolidBrush( col );
573
574 rect.left = xdest + x;
575 rect.top = ydest + y;
576 while( (x + 1 < width) && (::GetPixel(dc_src, x + 1, y) == col ) )
577 {
578 ++x;
579 }
580 rect.right = xdest + x + 1;
581 rect.bottom = rect.top + 1;
582 ::FillRect((HDC) m_hDC, &rect, brush);
583 ::DeleteObject(brush);
584 }
585 }
586 }
587 }
588
589 return success;
590}