]>
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, wxObject) | |
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 | m_hDCCount = 0; | |
188 | } | |
189 | ||
190 | ||
191 | wxDC::~wxDC() | |
192 | { | |
193 | if ( m_hDC != 0 ) { | |
194 | SelectOldObjects(m_hDC); | |
195 | if ( m_bOwnsDC ) { | |
196 | if ( m_canvas == NULL ) | |
197 | ::DeleteDC(GetHdc()); | |
198 | else | |
199 | ::ReleaseDC((HWND)m_canvas->GetHWND(), GetHdc()); | |
200 | } | |
201 | } | |
202 | ||
203 | } | |
204 | ||
205 | // This will select current objects out of the DC, | |
206 | // which is what you have to do before deleting the | |
207 | // DC. | |
208 | void wxDC::SelectOldObjects(WXHDC dc) | |
209 | { | |
210 | if (dc) | |
211 | { | |
212 | if (m_oldBitmap) | |
213 | { | |
214 | ::SelectObject((HDC) dc, (HBITMAP) m_oldBitmap); | |
215 | if (m_selectedBitmap.Ok()) | |
216 | { | |
217 | m_selectedBitmap.SetSelectedInto(NULL); | |
218 | } | |
219 | } | |
220 | m_oldBitmap = 0; | |
221 | if (m_oldPen) | |
222 | { | |
223 | ::SelectObject((HDC) dc, (HPEN) m_oldPen); | |
224 | } | |
225 | m_oldPen = 0; | |
226 | if (m_oldBrush) | |
227 | { | |
228 | ::SelectObject((HDC) dc, (HBRUSH) m_oldBrush); | |
229 | } | |
230 | m_oldBrush = 0; | |
231 | if (m_oldFont) | |
232 | { | |
233 | ::SelectObject((HDC) dc, (HFONT) m_oldFont); | |
234 | } | |
235 | m_oldFont = 0; | |
236 | if (m_oldPalette) | |
237 | { | |
238 | ::SelectPalette((HDC) dc, (HPALETTE) m_oldPalette, TRUE); | |
239 | } | |
240 | m_oldPalette = 0; | |
241 | } | |
242 | ||
243 | m_brush = wxNullBrush; | |
244 | m_pen = wxNullPen; | |
245 | m_palette = wxNullPalette; | |
246 | m_font = wxNullFont; | |
247 | m_backgroundBrush = wxNullBrush; | |
248 | m_selectedBitmap = wxNullBitmap; | |
249 | } | |
250 | ||
251 | // --------------------------------------------------------------------------- | |
252 | // clipping | |
253 | // --------------------------------------------------------------------------- | |
254 | ||
255 | #define DO_SET_CLIPPING_BOX() \ | |
256 | { \ | |
257 | RECT rect; \ | |
258 | \ | |
259 | GetClipBox(GetHdc(), &rect); \ | |
260 | \ | |
261 | m_clipX1 = (wxCoord) XDEV2LOG(rect.left); \ | |
262 | m_clipY1 = (wxCoord) YDEV2LOG(rect.top); \ | |
263 | m_clipX2 = (wxCoord) XDEV2LOG(rect.right); \ | |
264 | m_clipY2 = (wxCoord) YDEV2LOG(rect.bottom); \ | |
265 | } | |
266 | ||
267 | void wxDC::DoSetClippingRegion(wxCoord cx, wxCoord cy, wxCoord cw, wxCoord ch) | |
268 | { | |
269 | m_clipping = TRUE; | |
270 | IntersectClipRect(GetHdc(), XLOG2DEV(cx), YLOG2DEV(cy), | |
271 | XLOG2DEV(cx + cw), YLOG2DEV(cy + ch)); | |
272 | DO_SET_CLIPPING_BOX() | |
273 | } | |
274 | ||
275 | void wxDC::DoSetClippingRegionAsRegion(const wxRegion& region) | |
276 | { | |
277 | wxCHECK_RET( region.GetHRGN(), wxT("invalid clipping region") ); | |
278 | ||
279 | m_clipping = TRUE; | |
280 | ||
281 | #ifdef __WIN16__ | |
282 | SelectClipRgn(GetHdc(), (HRGN) region.GetHRGN()); | |
283 | #else | |
284 | ExtSelectClipRgn(GetHdc(), (HRGN) region.GetHRGN(), RGN_AND); | |
285 | #endif | |
286 | ||
287 | DO_SET_CLIPPING_BOX() | |
288 | } | |
289 | ||
290 | void wxDC::DestroyClippingRegion() | |
291 | { | |
292 | if (m_clipping && m_hDC) | |
293 | { | |
294 | // TODO: this should restore the previous clipping region, | |
295 | // so that OnPaint processing works correctly, and the update clipping region | |
296 | // doesn't get destroyed after the first DestroyClippingRegion. | |
297 | HRGN rgn = CreateRectRgn(0, 0, 32000, 32000); | |
298 | SelectClipRgn(GetHdc(), rgn); | |
299 | DeleteObject(rgn); | |
300 | } | |
301 | m_clipping = FALSE; | |
302 | } | |
303 | ||
304 | // --------------------------------------------------------------------------- | |
305 | // query capabilities | |
306 | // --------------------------------------------------------------------------- | |
307 | ||
308 | bool wxDC::CanDrawBitmap() const | |
309 | { | |
310 | return TRUE; | |
311 | } | |
312 | ||
313 | bool wxDC::CanGetTextExtent() const | |
314 | { | |
315 | // What sort of display is it? | |
316 | int technology = ::GetDeviceCaps(GetHdc(), TECHNOLOGY); | |
317 | ||
318 | return (technology == DT_RASDISPLAY) || (technology == DT_RASPRINTER); | |
319 | } | |
320 | ||
321 | int wxDC::GetDepth() const | |
322 | { | |
323 | return (int)::GetDeviceCaps(GetHdc(), BITSPIXEL); | |
324 | } | |
325 | ||
326 | // --------------------------------------------------------------------------- | |
327 | // drawing | |
328 | // --------------------------------------------------------------------------- | |
329 | ||
330 | void wxDC::Clear() | |
331 | { | |
332 | RECT rect; | |
333 | if ( m_canvas ) | |
334 | { | |
335 | GetClientRect((HWND) m_canvas->GetHWND(), &rect); | |
336 | } | |
337 | else | |
338 | { | |
339 | // No, I think we should simply ignore this if printing on e.g. | |
340 | // a printer DC. | |
341 | // wxCHECK_RET( m_selectedBitmap.Ok(), wxT("this DC can't be cleared") ); | |
342 | if (!m_selectedBitmap.Ok()) | |
343 | return; | |
344 | ||
345 | rect.left = 0; rect.top = 0; | |
346 | rect.right = m_selectedBitmap.GetWidth(); | |
347 | rect.bottom = m_selectedBitmap.GetHeight(); | |
348 | } | |
349 | ||
350 | (void) ::SetMapMode(GetHdc(), MM_TEXT); | |
351 | ||
352 | DWORD colour = GetBkColor(GetHdc()); | |
353 | HBRUSH brush = CreateSolidBrush(colour); | |
354 | FillRect(GetHdc(), &rect, brush); | |
355 | DeleteObject(brush); | |
356 | ||
357 | ::SetMapMode(GetHdc(), MM_ANISOTROPIC); | |
358 | ::SetViewportExtEx(GetHdc(), VIEWPORT_EXTENT, VIEWPORT_EXTENT, NULL); | |
359 | ::SetWindowExtEx(GetHdc(), m_windowExtX, m_windowExtY, NULL); | |
360 | ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX, (int)m_deviceOriginY, NULL); | |
361 | ::SetWindowOrgEx(GetHdc(), (int)m_logicalOriginX, (int)m_logicalOriginY, NULL); | |
362 | } | |
363 | ||
364 | void wxDC::DoFloodFill(wxCoord x, wxCoord y, const wxColour& col, int style) | |
365 | { | |
366 | if ( !::ExtFloodFill(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), | |
367 | col.GetPixel(), | |
368 | style == wxFLOOD_SURFACE ? FLOODFILLSURFACE | |
369 | : FLOODFILLBORDER) ) | |
370 | { | |
371 | // quoting from the MSDN docs: | |
372 | // | |
373 | // Following are some of the reasons this function might fail: | |
374 | // | |
375 | // * The filling could not be completed. | |
376 | // * The specified point has the boundary color specified by the | |
377 | // crColor parameter (if FLOODFILLBORDER was requested). | |
378 | // * The specified point does not have the color specified by | |
379 | // crColor (if FLOODFILLSURFACE was requested) | |
380 | // * The point is outside the clipping region that is, it is not | |
381 | // visible on the device. | |
382 | // | |
383 | wxLogLastError(wxT("ExtFloodFill")); | |
384 | } | |
385 | ||
386 | CalcBoundingBox(x, y); | |
387 | } | |
388 | ||
389 | bool wxDC::DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const | |
390 | { | |
391 | wxCHECK_MSG( col, FALSE, _T("NULL colour parameter in wxDC::GetPixel") ); | |
392 | ||
393 | // get the color of the pixel | |
394 | COLORREF pixelcolor = ::GetPixel(GetHdc(), XLOG2DEV(x), YLOG2DEV(y)); | |
395 | ||
396 | wxRGBToColour(*col, pixelcolor); | |
397 | ||
398 | return TRUE; | |
399 | } | |
400 | ||
401 | void wxDC::DoCrossHair(wxCoord x, wxCoord y) | |
402 | { | |
403 | wxCoord x1 = x-VIEWPORT_EXTENT; | |
404 | wxCoord y1 = y-VIEWPORT_EXTENT; | |
405 | wxCoord x2 = x+VIEWPORT_EXTENT; | |
406 | wxCoord y2 = y+VIEWPORT_EXTENT; | |
407 | ||
408 | (void)MoveToEx(GetHdc(), XLOG2DEV(x1), YLOG2DEV(y), NULL); | |
409 | (void)LineTo(GetHdc(), XLOG2DEV(x2), YLOG2DEV(y)); | |
410 | ||
411 | (void)MoveToEx(GetHdc(), XLOG2DEV(x), YLOG2DEV(y1), NULL); | |
412 | (void)LineTo(GetHdc(), XLOG2DEV(x), YLOG2DEV(y2)); | |
413 | ||
414 | CalcBoundingBox(x1, y1); | |
415 | CalcBoundingBox(x2, y2); | |
416 | } | |
417 | ||
418 | void wxDC::DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2) | |
419 | { | |
420 | (void)MoveToEx(GetHdc(), XLOG2DEV(x1), YLOG2DEV(y1), NULL); | |
421 | (void)LineTo(GetHdc(), XLOG2DEV(x2), YLOG2DEV(y2)); | |
422 | ||
423 | // Normalization: Windows doesn't draw the last point of the line. | |
424 | // But apparently neither does GTK+, so we take it out again. | |
425 | // (void)LineTo(GetHdc(), XLOG2DEV(x2) + 1, YLOG2DEV(y2)); | |
426 | ||
427 | CalcBoundingBox(x1, y1); | |
428 | CalcBoundingBox(x2, y2); | |
429 | } | |
430 | ||
431 | // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1) | |
432 | // and ending at (x2, y2) | |
433 | void wxDC::DoDrawArc(wxCoord x1, wxCoord y1, | |
434 | wxCoord x2, wxCoord y2, | |
435 | wxCoord xc, wxCoord yc) | |
436 | { | |
437 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling | |
438 | ||
439 | double dx = xc - x1; | |
440 | double dy = yc - y1; | |
441 | double radius = (double)sqrt(dx*dx+dy*dy); | |
442 | wxCoord r = (wxCoord)radius; | |
443 | ||
444 | // treat the special case of full circle separately | |
445 | if ( x1 == x2 && y1 == y2 ) | |
446 | { | |
447 | DrawEllipse(xc - r, yc - r, 2*r, 2*r); | |
448 | return; | |
449 | } | |
450 | ||
451 | wxCoord xx1 = XLOG2DEV(x1); | |
452 | wxCoord yy1 = YLOG2DEV(y1); | |
453 | wxCoord xx2 = XLOG2DEV(x2); | |
454 | wxCoord yy2 = YLOG2DEV(y2); | |
455 | wxCoord xxc = XLOG2DEV(xc); | |
456 | wxCoord yyc = YLOG2DEV(yc); | |
457 | wxCoord ray = (wxCoord) sqrt(double((xxc-xx1)*(xxc-xx1)+(yyc-yy1)*(yyc-yy1))); | |
458 | ||
459 | wxCoord xxx1 = (wxCoord) (xxc-ray); | |
460 | wxCoord yyy1 = (wxCoord) (yyc-ray); | |
461 | wxCoord xxx2 = (wxCoord) (xxc+ray); | |
462 | wxCoord yyy2 = (wxCoord) (yyc+ray); | |
463 | ||
464 | if ( m_brush.Ok() && m_brush.GetStyle() != wxTRANSPARENT ) | |
465 | { | |
466 | // Have to add 1 to bottom-right corner of rectangle | |
467 | // to make semi-circles look right (crooked line otherwise). | |
468 | // Unfortunately this is not a reliable method, depends | |
469 | // on the size of shape. | |
470 | // TODO: figure out why this happens! | |
471 | Pie(GetHdc(),xxx1,yyy1,xxx2+1,yyy2+1, xx1,yy1,xx2,yy2); | |
472 | } | |
473 | else | |
474 | { | |
475 | Arc(GetHdc(),xxx1,yyy1,xxx2,yyy2, xx1,yy1,xx2,yy2); | |
476 | } | |
477 | ||
478 | CalcBoundingBox(xc - r, yc - r); | |
479 | CalcBoundingBox(xc + r, yc + r); | |
480 | } | |
481 | ||
482 | void wxDC::DoDrawCheckMark(wxCoord x1, wxCoord y1, | |
483 | wxCoord width, wxCoord height) | |
484 | { | |
485 | wxCoord x2 = x1 + width, | |
486 | y2 = y1 + height; | |
487 | ||
488 | #if defined(__WIN32__) && !defined(__SC__) | |
489 | RECT rect; | |
490 | rect.left = x1; | |
491 | rect.top = y1; | |
492 | rect.right = x2; | |
493 | rect.bottom = y2; | |
494 | ||
495 | DrawFrameControl(GetHdc(), &rect, DFC_MENU, DFCS_MENUCHECK); | |
496 | #else // Win16 | |
497 | // In WIN16, draw a cross | |
498 | HPEN blackPen = ::CreatePen(PS_SOLID, 1, RGB(0, 0, 0)); | |
499 | HPEN whiteBrush = (HPEN)::GetStockObject(WHITE_BRUSH); | |
500 | HPEN hPenOld = (HPEN)::SelectObject(GetHdc(), blackPen); | |
501 | HPEN hBrushOld = (HPEN)::SelectObject(GetHdc(), whiteBrush); | |
502 | ::SetROP2(GetHdc(), R2_COPYPEN); | |
503 | Rectangle(GetHdc(), x1, y1, x2, y2); | |
504 | MoveTo(GetHdc(), x1, y1); | |
505 | LineTo(GetHdc(), x2, y2); | |
506 | MoveTo(GetHdc(), x2, y1); | |
507 | LineTo(GetHdc(), x1, y2); | |
508 | ::SelectObject(GetHdc(), hPenOld); | |
509 | ::SelectObject(GetHdc(), hBrushOld); | |
510 | ::DeleteObject(blackPen); | |
511 | #endif // Win32/16 | |
512 | ||
513 | CalcBoundingBox(x1, y1); | |
514 | CalcBoundingBox(x2, y2); | |
515 | } | |
516 | ||
517 | void wxDC::DoDrawPoint(wxCoord x, wxCoord y) | |
518 | { | |
519 | COLORREF color = 0x00ffffff; | |
520 | if (m_pen.Ok()) | |
521 | { | |
522 | color = m_pen.GetColour().GetPixel(); | |
523 | } | |
524 | ||
525 | SetPixel(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), color); | |
526 | ||
527 | CalcBoundingBox(x, y); | |
528 | } | |
529 | ||
530 | void wxDC::DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset,int fillStyle) | |
531 | { | |
532 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling | |
533 | ||
534 | // Do things less efficiently if we have offsets | |
535 | if (xoffset != 0 || yoffset != 0) | |
536 | { | |
537 | POINT *cpoints = new POINT[n]; | |
538 | int i; | |
539 | for (i = 0; i < n; i++) | |
540 | { | |
541 | cpoints[i].x = (int)(points[i].x + xoffset); | |
542 | cpoints[i].y = (int)(points[i].y + yoffset); | |
543 | ||
544 | CalcBoundingBox(cpoints[i].x, cpoints[i].y); | |
545 | } | |
546 | int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING); | |
547 | (void)Polygon(GetHdc(), cpoints, n); | |
548 | SetPolyFillMode(GetHdc(),prev); | |
549 | delete[] cpoints; | |
550 | } | |
551 | else | |
552 | { | |
553 | int i; | |
554 | for (i = 0; i < n; i++) | |
555 | CalcBoundingBox(points[i].x, points[i].y); | |
556 | ||
557 | int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING); | |
558 | (void)Polygon(GetHdc(), (POINT*) points, n); | |
559 | SetPolyFillMode(GetHdc(),prev); | |
560 | } | |
561 | } | |
562 | ||
563 | void wxDC::DoDrawLines(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset) | |
564 | { | |
565 | // Do things less efficiently if we have offsets | |
566 | if (xoffset != 0 || yoffset != 0) | |
567 | { | |
568 | POINT *cpoints = new POINT[n]; | |
569 | int i; | |
570 | for (i = 0; i < n; i++) | |
571 | { | |
572 | cpoints[i].x = (int)(points[i].x + xoffset); | |
573 | cpoints[i].y = (int)(points[i].y + yoffset); | |
574 | ||
575 | CalcBoundingBox(cpoints[i].x, cpoints[i].y); | |
576 | } | |
577 | (void)Polyline(GetHdc(), cpoints, n); | |
578 | delete[] cpoints; | |
579 | } | |
580 | else | |
581 | { | |
582 | int i; | |
583 | for (i = 0; i < n; i++) | |
584 | CalcBoundingBox(points[i].x, points[i].y); | |
585 | ||
586 | (void)Polyline(GetHdc(), (POINT*) points, n); | |
587 | } | |
588 | } | |
589 | ||
590 | void wxDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height) | |
591 | { | |
592 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling | |
593 | ||
594 | wxCoord x2 = x + width; | |
595 | wxCoord y2 = y + height; | |
596 | ||
597 | if ((m_logicalFunction == wxCOPY) && (m_pen.GetStyle() == wxTRANSPARENT)) | |
598 | { | |
599 | RECT rect; | |
600 | rect.left = XLOG2DEV(x); | |
601 | rect.top = YLOG2DEV(y); | |
602 | rect.right = XLOG2DEV(x2); | |
603 | rect.bottom = YLOG2DEV(y2); | |
604 | (void)FillRect(GetHdc(), &rect, (HBRUSH)m_brush.GetResourceHandle() ); | |
605 | } | |
606 | else | |
607 | { | |
608 | // Windows draws the filled rectangles without outline (i.e. drawn with a | |
609 | // transparent pen) one pixel smaller in both directions and we want them | |
610 | // to have the same size regardless of which pen is used - adjust | |
611 | ||
612 |