]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: dc.cpp | |
3 | // Purpose: wxDC 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 | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // =========================================================================== | |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
21 | #pragma implementation "dc.h" | |
22 | #endif | |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/window.h" | |
33 | #include "wx/dc.h" | |
34 | #include "wx/utils.h" | |
35 | #include "wx/dialog.h" | |
36 | #include "wx/app.h" | |
37 | #include "wx/bitmap.h" | |
38 | #include "wx/dcmemory.h" | |
39 | #include "wx/log.h" | |
40 | #include "wx/icon.h" | |
41 | #endif | |
42 | ||
43 | #include "wx/dcprint.h" | |
44 | ||
45 | #include <string.h> | |
46 | #include <math.h> | |
47 | ||
48 | #include "wx/msw/private.h" // needs to be before #include <commdlg.h> | |
49 | ||
50 | #if wxUSE_COMMON_DIALOGS | |
51 | #include <commdlg.h> | |
52 | #endif | |
53 | ||
54 | #ifndef __WIN32__ | |
55 | #include <print.h> | |
56 | #endif | |
57 | ||
58 | IMPLEMENT_ABSTRACT_CLASS(wxDC, wxDCBase) | |
59 | ||
60 | // --------------------------------------------------------------------------- | |
61 | // constants | |
62 | // --------------------------------------------------------------------------- | |
63 | ||
64 | static const int VIEWPORT_EXTENT = 1000; | |
65 | ||
66 | static const int MM_POINTS = 9; | |
67 | static const int MM_METRIC = 10; | |
68 | ||
69 | // usually this is defined in math.h | |
70 | #ifndef M_PI | |
71 | static const double M_PI = 3.14159265358979323846; | |
72 | #endif // M_PI | |
73 | ||
74 | // ROPs which don't have standard names (see "Ternary Raster Operations" in the | |
75 | // MSDN docs for how this and other numbers in wxDC::Blit() are obtained) | |
76 | #define DSTCOPY 0x00AA0029 // a.k.a. NOP operation | |
77 | ||
78 | // --------------------------------------------------------------------------- | |
79 | // private functions | |
80 | // --------------------------------------------------------------------------- | |
81 | ||
82 | // convert degrees to radians | |
83 | static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; } | |
84 | ||
85 | // ---------------------------------------------------------------------------- | |
86 | // private classes | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
89 | // instead of duplicating the same code which sets and then restores text | |
90 | // colours in each wxDC method working with wxSTIPPLE_MASK_OPAQUE brushes, | |
91 | // encapsulate this in a small helper class | |
92 | ||
93 | // wxColourChanger: changes the text colours in the ctor if required and | |
94 | // restores them in the dtor | |
95 | class wxColourChanger | |
96 | { | |
97 | public: | |
98 | wxColourChanger(wxDC& dc); | |
99 | ~wxColourChanger(); | |
100 | ||
101 | private: | |
102 | wxDC& m_dc; | |
103 | ||
104 | COLORREF m_colFgOld, m_colBgOld; | |
105 | ||
106 | bool m_changed; | |
107 | }; | |
108 | ||
109 | // =========================================================================== | |
110 | // implementation | |
111 | // =========================================================================== | |
112 | ||
113 | // ---------------------------------------------------------------------------- | |
114 | // wxColourChanger | |
115 | // ---------------------------------------------------------------------------- | |
116 | ||
117 | wxColourChanger::wxColourChanger(wxDC& dc) : m_dc(dc) | |
118 | { | |
119 | if ( dc.GetBrush().GetStyle() == wxSTIPPLE_MASK_OPAQUE ) | |
120 | { | |
121 | HDC hdc = GetHdcOf(dc); | |
122 | m_colFgOld = ::GetTextColor(hdc); | |
123 | m_colBgOld = ::GetBkColor(hdc); | |
124 | ||
125 | // note that Windows convention is opposite to wxWindows one, this is | |
126 | // why text colour becomes the background one and vice versa | |
127 | const wxColour& colFg = dc.GetTextForeground(); | |
128 | if ( colFg.Ok() ) | |
129 | { | |
130 | ::SetBkColor(hdc, colFg.GetPixel()); | |
131 | } | |
132 | ||
133 | const wxColour& colBg = dc.GetTextBackground(); | |
134 | if ( colBg.Ok() ) | |
135 | { | |
136 | ::SetTextColor(hdc, colBg.GetPixel()); | |
137 | } | |
138 | ||
139 | SetBkMode(hdc, | |
140 | dc.GetBackgroundMode() == wxTRANSPARENT ? TRANSPARENT | |
141 | : OPAQUE); | |
142 | ||
143 | // flag which telsl us to undo changes in the dtor | |
144 | m_changed = TRUE; | |
145 | } | |
146 | else | |
147 | { | |
148 | // nothing done, nothing to undo | |
149 | m_changed = FALSE; | |
150 | } | |
151 | } | |
152 | ||
153 | wxColourChanger::~wxColourChanger() | |
154 | { | |
155 | if ( m_changed ) | |
156 | { | |
157 | // restore the colours we changed | |
158 | HDC hdc = GetHdcOf(m_dc); | |
159 | ||
160 | ::SetBkMode(hdc, TRANSPARENT); | |
161 | ::SetTextColor(hdc, m_colFgOld); | |
162 | ::SetBkColor(hdc, m_colBgOld); | |
163 | } | |
164 | } | |
165 | ||
166 | // --------------------------------------------------------------------------- | |
167 | // wxDC | |
168 | // --------------------------------------------------------------------------- | |
169 | ||
170 | // Default constructor | |
171 | wxDC::wxDC() | |
172 | { | |
173 | m_canvas = NULL; | |
174 | ||
175 | m_oldBitmap = 0; | |
176 | m_oldPen = 0; | |
177 | m_oldBrush = 0; | |
178 | m_oldFont = 0; | |
179 | m_oldPalette = 0; | |
180 | ||
181 | m_bOwnsDC = FALSE; | |
182 | m_hDC = 0; | |
183 | ||
184 | m_windowExtX = VIEWPORT_EXTENT; | |
185 | m_windowExtY = VIEWPORT_EXTENT; | |
186 | } | |
187 | ||
188 | ||
189 | wxDC::~wxDC() | |
190 | { | |
191 | if ( m_hDC != 0 ) | |
192 | { | |
193 | SelectOldObjects(m_hDC); | |
194 | ||
195 | // if we own the HDC, we delete it, otherwise we just release it | |
196 | ||
197 | if ( m_bOwnsDC ) | |
198 | { | |
199 | ::DeleteDC(GetHdc()); | |
200 | } | |
201 | else // we don't own our HDC | |
202 | { | |
203 | if (m_canvas) | |
204 | { | |
205 | ::ReleaseDC(GetHwndOf(m_canvas), GetHdc()); | |
206 | } | |
207 | else | |
208 | { | |
209 | // Must have been a wxScreenDC | |
210 | ::ReleaseDC((HWND) NULL, GetHdc()); | |
211 | } | |
212 | } | |
213 | } | |
214 | } | |
215 | ||
216 | // This will select current objects out of the DC, | |
217 | // which is what you have to do before deleting the | |
218 | // DC. | |
219 | void wxDC::SelectOldObjects(WXHDC dc) | |
220 | { | |
221 | if (dc) | |
222 | { | |
223 | if (m_oldBitmap) | |
224 | { | |
225 | ::SelectObject((HDC) dc, (HBITMAP) m_oldBitmap); | |
226 | if (m_selectedBitmap.Ok()) | |
227 | { | |
228 | m_selectedBitmap.SetSelectedInto(NULL); | |
229 | } | |
230 | } | |
231 | m_oldBitmap = 0; | |
232 | if (m_oldPen) | |
233 | { | |
234 | ::SelectObject((HDC) dc, (HPEN) m_oldPen); | |
235 | } | |
236 | m_oldPen = 0; | |
237 | if (m_oldBrush) | |
238 | { | |
239 | ::SelectObject((HDC) dc, (HBRUSH) m_oldBrush); | |
240 | } | |
241 | m_oldBrush = 0; | |
242 | if (m_oldFont) | |
243 | { | |
244 | ::SelectObject((HDC) dc, (HFONT) m_oldFont); | |
245 | } | |
246 | m_oldFont = 0; | |
247 | if (m_oldPalette) | |
248 | { | |
249 | ::SelectPalette((HDC) dc, (HPALETTE) m_oldPalette, TRUE); | |
250 | } | |
251 | m_oldPalette = 0; | |
252 | } | |
253 | ||
254 | m_brush = wxNullBrush; | |
255 | m_pen = wxNullPen; | |
256 | m_palette = wxNullPalette; | |
257 | m_font = wxNullFont; | |
258 | m_backgroundBrush = wxNullBrush; | |
259 | m_selectedBitmap = wxNullBitmap; | |
260 | } | |
261 | ||
262 | // --------------------------------------------------------------------------- | |
263 | // clipping | |
264 | // --------------------------------------------------------------------------- | |
265 | ||
266 | #define DO_SET_CLIPPING_BOX() \ | |
267 | { \ | |
268 | RECT rect; \ | |
269 | \ | |
270 | GetClipBox(GetHdc(), &rect); \ | |
271 | \ | |
272 | m_clipX1 = (wxCoord) XDEV2LOG(rect.left); \ | |
273 | m_clipY1 = (wxCoord) YDEV2LOG(rect.top); \ | |
274 | m_clipX2 = (wxCoord) XDEV2LOG(rect.right); \ | |
275 | m_clipY2 = (wxCoord) YDEV2LOG(rect.bottom); \ | |
276 | } | |
277 | ||
278 | void wxDC::DoSetClippingRegion(wxCoord cx, wxCoord cy, wxCoord cw, wxCoord ch) | |
279 | { | |
280 | m_clipping = TRUE; | |
281 | ||
282 | HRGN hrgn = ::CreateRectRgn(XLOG2DEV(cx), YLOG2DEV(cy), | |
283 | XLOG2DEV(cx + cw), YLOG2DEV(cy + ch)); | |
284 | if ( !hrgn ) | |
285 | { | |
286 | wxLogLastError(_T("CreateRectRgn")); | |
287 | } | |
288 | else | |
289 | { | |
290 | if ( ::SelectClipRgn(GetHdc(), hrgn) == ERROR ) | |
291 | { | |
292 | wxLogLastError(_T("SelectClipRgn")); | |
293 | } | |
294 | ||
295 | DO_SET_CLIPPING_BOX() | |
296 | } | |
297 | } | |
298 | ||
299 | void wxDC::DoSetClippingRegionAsRegion(const wxRegion& region) | |
300 | { | |
301 | wxCHECK_RET( region.GetHRGN(), wxT("invalid clipping region") ); | |
302 | ||
303 | m_clipping = TRUE; | |
304 | ||
305 | #ifdef __WIN16__ | |
306 | SelectClipRgn(GetHdc(), (HRGN) region.GetHRGN()); | |
307 | #else | |
308 | ExtSelectClipRgn(GetHdc(), (HRGN) region.GetHRGN(), RGN_AND); | |
309 | #endif | |
310 | ||
311 | DO_SET_CLIPPING_BOX() | |
312 | } | |
313 | ||
314 | void wxDC::DestroyClippingRegion() | |
315 | { | |
316 | if (m_clipping && m_hDC) | |
317 | { | |
318 | // TODO: this should restore the previous clipping region, | |
319 | // so that OnPaint processing works correctly, and the update clipping region | |
320 | // doesn't get destroyed after the first DestroyClippingRegion. | |
321 | HRGN rgn = CreateRectRgn(0, 0, 32000, 32000); | |
322 | SelectClipRgn(GetHdc(), rgn); | |
323 | DeleteObject(rgn); | |
324 | } | |
325 | m_clipping = FALSE; | |
326 | } | |
327 | ||
328 | // --------------------------------------------------------------------------- | |
329 | // query capabilities | |
330 | // --------------------------------------------------------------------------- | |
331 | ||
332 | bool wxDC::CanDrawBitmap() const | |
333 | { | |
334 | return TRUE; | |
335 | } | |
336 | ||
337 | bool wxDC::CanGetTextExtent() const | |
338 | { | |
339 | // What sort of display is it? | |
340 | int technology = ::GetDeviceCaps(GetHdc(), TECHNOLOGY); | |
341 | ||
342 | return (technology == DT_RASDISPLAY) || (technology == DT_RASPRINTER); | |
343 | } | |
344 | ||
345 | int wxDC::GetDepth() const | |
346 | { | |
347 | return (int)::GetDeviceCaps(GetHdc(), BITSPIXEL); | |
348 | } | |
349 | ||
350 | // --------------------------------------------------------------------------- | |
351 | // drawing | |
352 | // --------------------------------------------------------------------------- | |
353 | ||
354 | void wxDC::Clear() | |
355 | { | |
356 | RECT rect; | |
357 | if ( m_canvas ) | |
358 | { | |
359 | GetClientRect((HWND) m_canvas->GetHWND(), &rect); | |
360 | } | |
361 | else | |
362 | { | |
363 | // No, I think we should simply ignore this if printing on e.g. | |
364 | // a printer DC. | |
365 | // wxCHECK_RET( m_selectedBitmap.Ok(), wxT("this DC can't be cleared") ); | |
366 | if (!m_selectedBitmap.Ok()) | |
367 | return; | |
368 | ||
369 | rect.left = 0; rect.top = 0; | |
370 | rect.right = m_selectedBitmap.GetWidth(); | |
371 | rect.bottom = m_selectedBitmap.GetHeight(); | |
372 | } | |
373 | ||
374 | (void) ::SetMapMode(GetHdc(), MM_TEXT); | |
375 | ||
376 | DWORD colour = GetBkColor(GetHdc()); | |
377 | HBRUSH brush = CreateSolidBrush(colour); | |
378 | FillRect(GetHdc(), &rect, brush); | |
379 | DeleteObject(brush); | |
380 | ||
381 | ::SetMapMode(GetHdc(), MM_ANISOTROPIC); | |
382 | ::SetViewportExtEx(GetHdc(), VIEWPORT_EXTENT, VIEWPORT_EXTENT, NULL); | |
383 | ::SetWindowExtEx(GetHdc(), m_windowExtX, m_windowExtY, NULL); | |
384 | ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX, (int)m_deviceOriginY, NULL); | |
385 | ::SetWindowOrgEx(GetHdc(), (int)m_logicalOriginX, (int)m_logicalOriginY, NULL); | |
386 | } | |
387 | ||
388 | void wxDC::DoFloodFill(wxCoord x, wxCoord y, const wxColour& col, int style) | |
389 | { | |
390 | if ( !::ExtFloodFill(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), | |
391 | col.GetPixel(), | |
392 | style == wxFLOOD_SURFACE ? FLOODFILLSURFACE | |
393 | : FLOODFILLBORDER) ) | |
394 | { | |
395 | // quoting from the MSDN docs: | |
396 | // | |
397 | // Following are some of the reasons this function might fail: | |
398 | // | |
399 | // * The filling could not be completed. | |
400 | // * The specified point has the boundary color specified by the | |
401 | // crColor parameter (if FLOODFILLBORDER was requested). | |
402 | // * The specified point does not have the color specified by | |
403 | // crColor (if FLOODFILLSURFACE was requested) | |
404 | // * The point is outside the clipping region that is, it is not | |
405 | // visible on the device. | |
406 | // | |
407 | wxLogLastError(wxT("ExtFloodFill")); | |
408 | } | |
409 | ||
410 | CalcBoundingBox(x, y); | |
411 | } | |
412 | ||
413 | bool wxDC::DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const | |
414 | { | |
415 | wxCHECK_MSG( col, FALSE, _T("NULL colour parameter in wxDC::GetPixel") ); | |
416 | ||
417 | // get the color of the pixel | |
418 | COLORREF pixelcolor = ::GetPixel(GetHdc(), XLOG2DEV(x), YLOG2DEV(y)); | |
419 | ||
420 | wxRGBToColour(*col, pixelcolor); | |
421 | ||
422 | return TRUE; | |
423 | } | |
424 | ||
425 | void wxDC::DoCrossHair(wxCoord x, wxCoord y) | |
426 | { | |
427 | wxCoord x1 = x-VIEWPORT_EXTENT; | |
428 | wxCoord y1 = y-VIEWPORT_EXTENT; | |
429 | wxCoord x2 = x+VIEWPORT_EXTENT; | |
430 | wxCoord y2 = y+VIEWPORT_EXTENT; | |
431 | ||
432 | (void)MoveToEx(GetHdc(), XLOG2DEV(x1), YLOG2DEV(y), NULL); | |
433 | (void)LineTo(GetHdc(), XLOG2DEV(x2), YLOG2DEV(y)); | |
434 | ||
435 | (void)MoveToEx(GetHdc(), XLOG2DEV(x), YLOG2DEV(y1), NULL); | |
436 | (void)LineTo(GetHdc(), XLOG2DEV(x), YLOG2DEV(y2)); | |
437 | ||
438 | CalcBoundingBox(x1, y1); | |
439 | CalcBoundingBox(x2, y2); | |
440 | } | |
441 | ||
442 | void wxDC::DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2) | |
443 | { | |
444 | (void)MoveToEx(GetHdc(), XLOG2DEV(x1), YLOG2DEV(y1), NULL); | |
445 | (void)LineTo(GetHdc(), XLOG2DEV(x2), YLOG2DEV(y2)); | |
446 | ||
447 | // Normalization: Windows doesn't draw the last point of the line. | |
448 | // But apparently neither does GTK+, so we take it out again. | |
449 | // (void)LineTo(GetHdc(), XLOG2DEV(x2) + 1, YLOG2DEV(y2)); | |
450 | ||
451 | CalcBoundingBox(x1, y1); | |
452 | CalcBoundingBox(x2, y2); | |
453 | } | |
454 | ||
455 | // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1) | |
456 | // and ending at (x2, y2) | |
457 | void wxDC::DoDrawArc(wxCoord x1, wxCoord y1, | |
458 | wxCoord x2, wxCoord y2, | |
459 | wxCoord xc, wxCoord yc) | |
460 | { | |
461 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling | |
462 | ||
463 | double dx = xc - x1; | |
464 | double dy = yc - y1; | |
465 | double radius = (double)sqrt(dx*dx+dy*dy); | |
466 | wxCoord r = (wxCoord)radius; | |
467 | ||
468 | // treat the special case of full circle separately | |
469 | if ( x1 == x2 && y1 == y2 ) | |
470 | { | |
471 | DrawEllipse(xc - r, yc - r, 2*r, 2*r); | |
472 | return; | |
473 | } | |
474 | ||
475 | wxCoord xx1 = XLOG2DEV(x1); | |
476 | wxCoord yy1 = YLOG2DEV(y1); | |
477 | wxCoord xx2 = XLOG2DEV(x2); | |
478 | wxCoord yy2 = YLOG2DEV(y2); | |
479 | wxCoord xxc = XLOG2DEV(xc); | |
480 | wxCoord yyc = YLOG2DEV(yc); | |
481 | wxCoord ray = (wxCoord) sqrt(double((xxc-xx1)*(xxc-xx1)+(yyc-yy1)*(yyc-yy1))); | |
482 | ||
483 | wxCoord xxx1 = (wxCoord) (xxc-ray); | |
484 | wxCoord yyy1 = (wxCoord) (yyc-ray); | |
485 | wxCoord xxx2 = (wxCoord) (xxc+ray); | |
486 | wxCoord yyy2 = (wxCoord) (yyc+ray); | |
487 | ||
488 | if ( m_brush.Ok() && m_brush.GetStyle() != wxTRANSPARENT ) | |
489 | { | |
490 | // Have to add 1 to bottom-right corner of rectangle | |
491 | // to make semi-circles look right (crooked line otherwise). | |
492 | // Unfortunately this is not a reliable method, depends | |
493 | // on the size of shape. | |
494 | // TODO: figure out why this happens! | |
495 | Pie(GetHdc(),xxx1,yyy1,xxx2+1,yyy2+1, xx1,yy1,xx2,yy2); | |
496 | } | |
497 | else | |
498 | { | |
499 | Arc(GetHdc(),xxx1,yyy1,xxx2,yyy2, xx1,yy1,xx2,yy2); | |
500 | } | |
501 | ||
502 | CalcBoundingBox(xc - r, yc - r); | |
503 | CalcBoundingBox(xc + r, yc + r); | |
504 | } | |
505 | ||
506 | void wxDC::DoDrawCheckMark(wxCoord x1, wxCoord y1, | |
507 | wxCoord width, wxCoord height) | |
508 | { | |
509 | wxCoord x2 = x1 + width, | |
510 | y2 = y1 + height; | |
511 | ||
512 | #if defined(__WIN32__) && !defined(__SC__) | |
513 | RECT rect; | |
514 | rect.left = x1; | |
515 | rect.top = y1; | |
516 | rect.right = x2; | |
517 | rect.bottom = y2; | |
518 | ||
519 | DrawFrameControl(GetHdc(), &rect, DFC_MENU, DFCS_MENUCHECK); | |
520 | #else // Win16 | |
521 | // In WIN16, draw a cross | |
522 | HPEN blackPen = ::CreatePen(PS_SOLID, 1, RGB(0, 0, 0)); | |
523 | HPEN whiteBrush = (HPEN)::GetStockObject(WHITE_BRUSH); | |
524 | HPEN hPenOld = (HPEN)::SelectObject(GetHdc(), blackPen); | |
525 | HPEN hBrushOld = (HPEN)::SelectObject(GetHdc(), whiteBrush); | |
526 | ::SetROP2(GetHdc(), R2_COPYPEN); | |
527 | Rectangle(GetHdc(), x1, y1, x2, y2); | |
528 | MoveTo(GetHdc(), x1, y1); | |
529 | LineTo(GetHdc(), x2, y2); | |
530 | MoveTo(GetHdc(), x2, y1); | |
531 | LineTo(GetHdc(), x1, y2); | |
532 | ::SelectObject(GetHdc(), hPenOld); | |
533 | ::SelectObject(GetHdc(), hBrushOld); | |
534 | ::DeleteObject(blackPen); | |
535 | #endif // Win32/16 | |
536 | ||
537 | CalcBoundingBox(x1, y1); | |
538 | CalcBoundingBox(x2, y2); | |
539 | } | |
540 | ||
541 | void wxDC::DoDrawPoint(wxCoord x, wxCoord y) | |
542 | { | |
543 | COLORREF color = 0x00ffffff; | |
544 | if (m_pen.Ok()) | |
545 | { | |
546 | color = m_pen.GetColour().GetPixel(); | |
547 | } | |
548 | ||
549 | SetPixel(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), color); | |
550 | ||
551 | CalcBoundingBox(x, y); | |
552 | } | |
553 | ||
554 | void wxDC::DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset,int fillStyle) | |
555 | { | |
556 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling | |
557 | ||
558 | // Do things less efficiently if we have offsets | |
559 | if (xoffset != 0 || yoffset != 0) | |
560 | { | |
561 | POINT *cpoints = new POINT[n]; | |
562 | int i; | |
563 | for (i = 0; i < n; i++) | |
564 | { | |
565 | cpoints[i].x = (int)(points[i].x + xoffset); | |
566 | cpoints[i].y = (int)(points[i].y + yoffset); | |
567 | ||
568 | CalcBoundingBox(cpoints[i].x, cpoints[i].y); | |
569 | } | |
570 | int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING); | |
571 | (void)Polygon(GetHdc(), cpoints, n); | |
572 | SetPolyFillMode(GetHdc(),prev); | |
573 | delete[] cpoints; | |
574 | } | |
575 | else | |
576 | { | |
577 | int i; | |
578 | for (i = 0; i < n; i++) | |
579 | CalcBoundingBox(points[i].x, points[i].y); | |
580 | ||
581 | int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING); | |
582 | (void)Polygon(GetHdc(), (POINT*) points, n); | |
583 | SetPolyFillMode(GetHdc(),prev); | |
584 | } | |
585 | } | |
586 | ||
587 | void wxDC::DoDrawLines(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset) | |
588 | { | |
589 | // Do things less efficiently if we have offsets | |
590 | if (xoffset != 0 || yoffset != 0) | |
591 | { | |
592 | POINT *cpoints = new POINT[n]; | |
593 | int i; | |
594 | for (i = 0; i < n; i++) | |
595 | { | |
596 | cpoints[i].x = (int)(points[i].x + xoffset); | |
597 | cpoints[i].y = (int)(points[i].y + yoffset); | |
598 | ||
599 | CalcBoundingBox(cpoints[i].x, cpoints[i].y); | |
600 | } | |
601 | (void)Polyline(GetHdc(), cpoints, n); | |
602 | delete[] cpoints; | |
603 | } | |
604 | else | |
605 | { | |
606 | int i; | |
607 | for (i = 0; i < n; i++) | |
608 | CalcBoundingBox(points[i].x, points[i].y); | |
609 | ||
610 | (void)Polyline(GetHdc(), (POINT*) points, n); | |
611 | } | |
612 | } | |
613 | ||
614 | void wxDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height) | |
615 | { | |
616 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling | |
617 | ||
618 | wxCoord x2 = x + width; | |
619 | wxCoord y2 = y + height; | |
620 | ||
621 | if ((m_logicalFunction == wxCOPY) && (m_pen.GetStyle() == wxTRANSPARENT)) | |
622 | { | |
623 | RECT rect; | |
624 | rect.left = XLOG2DEV(x); | |
625 | rect.top = YLOG2DEV(y); | |
626 | rect.right = XLOG2DEV(x2); | |
627 | rect.bottom = YLOG2DEV(y2); | |
628 | (void)FillRect(GetHdc(), &rect, (HBRUSH)m_brush.GetResourceHandle() ); | |
629 | } | |
630 | else | |
631 | { | |
632 | // Windows draws the filled rectangles without outline (i.e. drawn with a | |
633 | // transparent pen) one pixel smaller in both directions and we want them | |
634 | // to have the same size regardless of which pen is used - adjust | |
635 | ||
636 |