]>
Commit | Line | Data |
---|---|---|
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 |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
4b7f2165 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
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 | 67 | IMPLEMENT_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 |
78 | wxPrinterDC::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 | |
d71cc120 | 126 | m_ok = m_hDC ? true: false; |
7ba4fbeb VZ |
127 | |
128 | // as we created it, we must delete it as well | |
d71cc120 | 129 | m_bOwnsDC = true; |
7ba4fbeb VZ |
130 | } |
131 | ||
132 | Init(); | |
7bcb11d3 JS |
133 | } |
134 | ||
135 | wxPrinterDC::wxPrinterDC(const wxPrintData& printData) | |
136 | { | |
137 | m_printData = printData; | |
138 | ||
d71cc120 | 139 | m_isInteractive = false; |
7bcb11d3 JS |
140 | |
141 | m_hDC = wxGetPrinterDC(printData); | |
7ba4fbeb | 142 | m_ok = m_hDC != 0; |
d71cc120 | 143 | m_bOwnsDC = true; |
a17e237f | 144 | |
7ba4fbeb | 145 | Init(); |
2bda0e17 KB |
146 | } |
147 | ||
7bcb11d3 | 148 | |
7ba4fbeb | 149 | wxPrinterDC::wxPrinterDC(WXHDC dc) |
2bda0e17 | 150 | { |
d71cc120 | 151 | m_isInteractive = false; |
a17e237f | 152 | |
7ba4fbeb | 153 | m_hDC = dc; |
d71cc120 WS |
154 | m_bOwnsDC = true; |
155 | m_ok = true; | |
7ba4fbeb VZ |
156 | } |
157 | ||
158 | void 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 |
175 | bool 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 | 193 | if (!m_hDC) |
d71cc120 | 194 | return false; |
a17e237f | 195 | |
4b7f2165 | 196 | int ret = ::StartDoc(GetHdc(), &docinfo); |
a17e237f | 197 | |
7bcb11d3 JS |
198 | if (ret <= 0) |
199 | { | |
200 | DWORD lastError = GetLastError(); | |
9b601c24 | 201 | wxLogDebug(wxT("wxDC::StartDoc failed with error: %ld\n"), lastError); |
7bcb11d3 | 202 | } |
a17e237f | 203 | |
7bcb11d3 JS |
204 | return (ret > 0); |
205 | } | |
206 | ||
4b7f2165 | 207 | void wxPrinterDC::EndDoc() |
7bcb11d3 JS |
208 | { |
209 | if (m_hDC) ::EndDoc((HDC) m_hDC); | |
210 | } | |
211 | ||
4b7f2165 | 212 | void wxPrinterDC::StartPage() |
7bcb11d3 JS |
213 | { |
214 | if (m_hDC) | |
215 | ::StartPage((HDC) m_hDC); | |
216 | } | |
217 | ||
4b7f2165 | 218 | void wxPrinterDC::EndPage() |
7bcb11d3 JS |
219 | { |
220 | if (m_hDC) | |
221 | ::EndPage((HDC) m_hDC); | |
222 | } | |
223 | ||
224 | // Returns default device and port names | |
225 | static bool wxGetDefaultDeviceName(wxString& deviceName, wxString& portName) | |
226 | { | |
7ba4fbeb | 227 | deviceName.clear(); |
7bcb11d3 JS |
228 | |
229 | LPDEVNAMES lpDevNames; | |
161f4f73 VZ |
230 | LPTSTR lpszDeviceName; |
231 | LPTSTR lpszPortName; | |
a17e237f | 232 | |
7bcb11d3 JS |
233 | PRINTDLG pd; |
234 | ||
235 | // Cygwin has trouble believing PRINTDLG is 66 bytes - thinks it is 68 | |
236 | #ifdef __GNUWIN32__ | |
161f4f73 | 237 | memset(&pd, 0, 66); |
7bcb11d3 JS |
238 | pd.lStructSize = 66; // sizeof(PRINTDLG); |
239 | #else | |
161f4f73 | 240 | memset(&pd, 0, sizeof(PRINTDLG)); |
7bcb11d3 JS |
241 | pd.lStructSize = sizeof(PRINTDLG); |
242 | #endif | |
243 | ||
244 | pd.hwndOwner = (HWND)NULL; | |
245 | pd.hDevMode = NULL; // Will be created by PrintDlg | |
246 | pd.hDevNames = NULL; // Ditto | |
247 | pd.Flags = PD_RETURNDEFAULT; | |
248 | pd.nCopies = 1; | |
a17e237f | 249 | |
7bcb11d3 JS |
250 | if (!PrintDlg((LPPRINTDLG)&pd)) |
251 | { | |
252 | if ( pd.hDevMode ) | |
253 | GlobalFree(pd.hDevMode); | |
254 | if (pd.hDevNames) | |
255 | GlobalFree(pd.hDevNames); | |
a17e237f | 256 | |
d71cc120 | 257 | return false; |
7bcb11d3 | 258 | } |
a17e237f | 259 | |
7bcb11d3 JS |
260 | if (pd.hDevNames) |
261 | { | |
262 | lpDevNames = (LPDEVNAMES)GlobalLock(pd.hDevNames); | |
161f4f73 VZ |
263 | lpszDeviceName = (LPTSTR)lpDevNames + lpDevNames->wDeviceOffset; |
264 | lpszPortName = (LPTSTR)lpDevNames + lpDevNames->wOutputOffset; | |
7bcb11d3 JS |
265 | |
266 | deviceName = lpszDeviceName; | |
267 | portName = lpszPortName; | |
60fe7303 JS |
268 | |
269 | GlobalUnlock(pd.hDevNames); | |
270 | GlobalFree(pd.hDevNames); | |
271 | pd.hDevNames=NULL; | |
7bcb11d3 | 272 | } |
a17e237f | 273 | |
7bcb11d3 JS |
274 | if (pd.hDevMode) |
275 | { | |
276 | GlobalFree(pd.hDevMode); | |
277 | pd.hDevMode=NULL; | |
278 | } | |
fda7962d | 279 | return ( deviceName != wxEmptyString ); |
7bcb11d3 JS |
280 | } |
281 | ||
7bcb11d3 JS |
282 | // Gets an HDC for the specified printer configuration |
283 | WXHDC WXDLLEXPORT wxGetPrinterDC(const wxPrintData& printDataConst) | |
284 | { | |
285 | wxPrintData printData = printDataConst; | |
286 | printData.ConvertToNative(); | |
a17e237f | 287 | |
837e5743 | 288 | wxChar* driverName = (wxChar*) NULL; |
a17e237f | 289 | |
7bcb11d3 | 290 | wxString devNameStr = printData.GetPrinterName(); |
837e5743 | 291 | wxChar* portName = (wxChar*) NULL; // Obsolete in WIN32 |
a17e237f | 292 | |
4b7f2165 VZ |
293 | const wxChar* deviceName; |
294 | if ( !devNameStr ) | |
837e5743 | 295 | deviceName = (wxChar*) NULL; |
7bcb11d3 | 296 | else |
4b7f2165 | 297 | deviceName = devNameStr.c_str(); |
7bcb11d3 JS |
298 | |
299 | LPDEVMODE lpDevMode = (LPDEVMODE) NULL; | |
300 | ||
48c12cb1 | 301 | HGLOBAL hDevMode = (HGLOBAL)(DWORD) printData.GetNativeData(); |
7bcb11d3 JS |
302 | |
303 | if ( hDevMode ) | |
304 | lpDevMode = (DEVMODE*) GlobalLock(hDevMode); | |
305 | ||
4b7f2165 | 306 | if ( !devNameStr ) |
7bcb11d3 JS |
307 | { |
308 | // Retrieve the default device name | |
309 | wxString portName; | |
3f8b4a3f JS |
310 | if ( !wxGetDefaultDeviceName(devNameStr, portName) ) |
311 | { | |
312 | return 0; // Could not get default device name | |
313 | } | |
4b7f2165 | 314 | deviceName = devNameStr.c_str(); |
7bcb11d3 | 315 | } |
a17e237f | 316 | |
7bcb11d3 JS |
317 | #ifdef __WIN32__ |
318 | HDC hDC = CreateDC(driverName, deviceName, portName, (DEVMODE *) lpDevMode); | |
319 | #else | |
320 | HDC hDC = CreateDC(driverName, deviceName, portName, (LPSTR) lpDevMode); | |
321 | #endif | |
a17e237f | 322 | |
7bcb11d3 JS |
323 | if (hDevMode && lpDevMode) |
324 | GlobalUnlock(hDevMode); | |
a17e237f | 325 | |
7bcb11d3 JS |
326 | return (WXHDC) hDC; |
327 | } | |
2bda0e17 | 328 | |
4b7f2165 VZ |
329 | // ---------------------------------------------------------------------------- |
330 | // wxPrinterDC bit blitting/bitmap drawing | |
331 | // ---------------------------------------------------------------------------- | |
332 | ||
2f52b4e1 VZ |
333 | // helper of DoDrawBitmap() and DoBlit() |
334 | static | |
335 | bool DrawBitmapUsingStretchDIBits(HDC hdc, | |
336 | const wxBitmap& bmp, | |
337 | wxCoord x, wxCoord y) | |
338 | { | |
4676948b | 339 | #if wxUSE_WXDIB |
2f52b4e1 | 340 | wxDIB dib(bmp); |
999836aa VZ |
341 | bool ok = dib.IsOk(); |
342 | if ( !ok ) | |
d71cc120 | 343 | return false; |
2f52b4e1 VZ |
344 | |
345 | DIBSECTION ds; | |
346 | if ( !::GetObject(dib.GetHandle(), sizeof(ds), &ds) ) | |
347 | { | |
348 | wxLogLastError(_T("GetObject(DIBSECTION)")); | |
349 | ||
d71cc120 | 350 | return false; |
2f52b4e1 VZ |
351 | } |
352 | ||
353 | // ok, we've got all data we need, do blit it | |
354 | if ( ::StretchDIBits | |
355 | ( | |
356 | hdc, | |
357 | x, y, | |
358 | ds.dsBmih.biWidth, ds.dsBmih.biHeight, | |
359 | 0, 0, | |
360 | ds.dsBmih.biWidth, ds.dsBmih.biHeight, | |
361 | ds.dsBm.bmBits, | |
362 | (LPBITMAPINFO)&ds.dsBmih, | |
363 | DIB_RGB_COLORS, | |
364 | SRCCOPY | |
365 | ) == GDI_ERROR ) | |
366 | { | |
367 | wxLogLastError(wxT("StretchDIBits")); | |
f6081a04 | 368 | |
d71cc120 | 369 | return false; |
2f52b4e1 | 370 | } |
84968677 | 371 | |
d71cc120 | 372 | return true; |
4676948b | 373 | #else |
d71cc120 | 374 | return false; |
4676948b | 375 | #endif |
2f52b4e1 | 376 | } |
e11f2e16 | 377 | |
2f52b4e1 | 378 | void wxPrinterDC::DoDrawBitmap(const wxBitmap& bmp, |
4b7f2165 VZ |
379 | wxCoord x, wxCoord y, |
380 | bool useMask) | |
381 | { | |
382 | wxCHECK_RET( bmp.Ok(), _T("invalid bitmap in wxPrinterDC::DrawBitmap") ); | |
383 | ||
384 | int width = bmp.GetWidth(), | |
385 | height = bmp.GetHeight(); | |
386 | ||
2f52b4e1 VZ |
387 | if ( !(::GetDeviceCaps(GetHdc(), RASTERCAPS) & RC_STRETCHDIB) || |
388 | !DrawBitmapUsingStretchDIBits(GetHdc(), bmp, x, y) ) | |
4b7f2165 | 389 | { |
2f52b4e1 | 390 | // no support for StretchDIBits() or an error occured if we got here |
4b7f2165 VZ |
391 | wxMemoryDC memDC; |
392 | memDC.SelectObject(bmp); | |
393 | ||
394 | Blit(x, y, width, height, &memDC, 0, 0, wxCOPY, useMask); | |
395 | ||
396 | memDC.SelectObject(wxNullBitmap); | |
397 | } | |
398 | } | |
399 | ||
400 | bool wxPrinterDC::DoBlit(wxCoord xdest, wxCoord ydest, | |
401 | wxCoord width, wxCoord height, | |
402 | wxDC *source, | |
2eb10e2a | 403 | wxCoord WXUNUSED(xsrc), wxCoord WXUNUSED(ysrc), |
0cbff120 | 404 | int WXUNUSED(rop), bool useMask, |
d699f48b | 405 | wxCoord WXUNUSED(xsrcMask), wxCoord WXUNUSED(ysrcMask)) |
4b7f2165 | 406 | { |
2f52b4e1 VZ |
407 | wxBitmap& bmp = source->GetSelectedBitmap(); |
408 | wxMask *mask = useMask ? bmp.GetMask() : NULL; | |
409 | if ( mask ) | |
4b7f2165 | 410 | { |
0becd470 VZ |
411 | // If we are printing source colours are screen colours not printer |
412 | // colours and so we need copy the bitmap pixel by pixel. | |
4b7f2165 | 413 | RECT rect; |
2f52b4e1 VZ |
414 | HDC dcSrc = GetHdcOf(*source); |
415 | MemoryHDC dcMask(dcSrc); | |
416 | SelectInHDC selectMask(dcMask, (HBITMAP)mask->GetMaskBitmap()); | |
4b7f2165 | 417 | |
4b7f2165 VZ |
418 | for (int x = 0; x < width; x++) |
419 | { | |
420 | for (int y = 0; y < height; y++) | |
421 | { | |
2f52b4e1 | 422 | COLORREF cref = ::GetPixel(dcMask, x, y); |
4b7f2165 VZ |
423 | if (cref) |
424 | { | |
2f52b4e1 | 425 | HBRUSH brush = ::CreateSolidBrush(::GetPixel(dcSrc, x, y)); |
4b7f2165 VZ |
426 | rect.left = xdest + x; |
427 | rect.right = rect.left + 1; | |
33ac7e6f | 428 | rect.top = ydest + y; |
4b7f2165 VZ |
429 | rect.bottom = rect.top + 1; |
430 | ::FillRect(GetHdc(), &rect, brush); | |
431 | ::DeleteObject(brush); | |
432 | } | |
433 | } | |
434 | } | |
4b7f2165 VZ |
435 | } |
436 | else // no mask | |
437 | { | |
2f52b4e1 | 438 | if ( !(::GetDeviceCaps(GetHdc(), RASTERCAPS) & RC_STRETCHDIB) || |
e5c4c38b | 439 | !DrawBitmapUsingStretchDIBits(GetHdc(), bmp, xdest, ydest) ) |
4b7f2165 | 440 | { |
2f52b4e1 | 441 | // no support for StretchDIBits |
4b7f2165 | 442 | |
0becd470 VZ |
443 | // as we are printing, source colours are screen colours not |
444 | // printer colours and so we need copy the bitmap pixel by pixel. | |
2f52b4e1 | 445 | HDC dcSrc = GetHdcOf(*source); |
4b7f2165 VZ |
446 | RECT rect; |
447 | for (int y = 0; y < height; y++) | |
448 | { | |
0becd470 | 449 | // optimization: draw identical adjacent pixels together. |
4b7f2165 VZ |
450 | for (int x = 0; x < width; x++) |
451 | { | |
2f52b4e1 | 452 | COLORREF col = ::GetPixel(dcSrc, x, y); |
4b7f2165 VZ |
453 | HBRUSH brush = ::CreateSolidBrush( col ); |
454 | ||
455 | rect.left = xdest + x; | |
456 | rect.top = ydest + y; | |
2f52b4e1 VZ |
457 | while( (x + 1 < width) && |
458 | (::GetPixel(dcSrc, x + 1, y) == col ) ) | |
4b7f2165 VZ |
459 | { |
460 | ++x; | |
461 | } | |
462 | rect.right = xdest + x + 1; | |
463 | rect.bottom = rect.top + 1; | |
464 | ::FillRect((HDC) m_hDC, &rect, brush); | |
465 | ::DeleteObject(brush); | |
466 | } | |
467 | } | |
468 | } | |
469 | } | |
470 | ||
d71cc120 | 471 | return true; |
4b7f2165 | 472 | } |
f6bcfd97 BP |
473 | |
474 | #endif | |
475 | // wxUSE_PRINTING_ARCHITECTURE |