]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
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 | |
fd3f686c | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
a23fd0e1 VZ |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
a23fd0e1 | 21 | #pragma implementation "dc.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
a23fd0e1 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
4286a5b5 | 32 | #include "wx/window.h" |
a23fd0e1 VZ |
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" | |
0c589ad0 | 39 | #include "wx/log.h" |
4286a5b5 | 40 | #include "wx/icon.h" |
2bda0e17 KB |
41 | #endif |
42 | ||
43 | #include "wx/dcprint.h" | |
2bda0e17 KB |
44 | |
45 | #include <string.h> | |
46 | #include <math.h> | |
2bda0e17 | 47 | |
a58a12e9 VZ |
48 | #include "wx/msw/private.h" // needs to be before #include <commdlg.h> |
49 | ||
47d67540 | 50 | #if wxUSE_COMMON_DIALOGS |
a23fd0e1 | 51 | #include <commdlg.h> |
2bda0e17 KB |
52 | #endif |
53 | ||
54 | #ifndef __WIN32__ | |
a23fd0e1 | 55 | #include <print.h> |
2bda0e17 KB |
56 | #endif |
57 | ||
5acb7b3e | 58 | IMPLEMENT_ABSTRACT_CLASS(wxDC, wxDCBase) |
2bda0e17 | 59 | |
a23fd0e1 VZ |
60 | // --------------------------------------------------------------------------- |
61 | // constants | |
62 | // --------------------------------------------------------------------------- | |
63 | ||
42e69d6b VZ |
64 | static const int VIEWPORT_EXTENT = 1000; |
65 | ||
66 | static const int MM_POINTS = 9; | |
67 | static const int MM_METRIC = 10; | |
a23fd0e1 | 68 | |
4314ec48 VZ |
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 | ||
4aff28fc VZ |
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 | ||
4314ec48 VZ |
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 | ||
f6bcfd97 BP |
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 | ||
a23fd0e1 VZ |
109 | // =========================================================================== |
110 | // implementation | |
111 | // =========================================================================== | |
112 | ||
f6bcfd97 BP |
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 | ||
a23fd0e1 VZ |
166 | // --------------------------------------------------------------------------- |
167 | // wxDC | |
168 | // --------------------------------------------------------------------------- | |
2bda0e17 KB |
169 | |
170 | // Default constructor | |
a23fd0e1 | 171 | wxDC::wxDC() |
2bda0e17 | 172 | { |
7bcb11d3 | 173 | m_canvas = NULL; |
a23fd0e1 | 174 | |
7bcb11d3 JS |
175 | m_oldBitmap = 0; |
176 | m_oldPen = 0; | |
177 | m_oldBrush = 0; | |
178 | m_oldFont = 0; | |
179 | m_oldPalette = 0; | |
a23fd0e1 | 180 | |
7bcb11d3 JS |
181 | m_bOwnsDC = FALSE; |
182 | m_hDC = 0; | |
a23fd0e1 | 183 | |
7bcb11d3 JS |
184 | m_windowExtX = VIEWPORT_EXTENT; |
185 | m_windowExtY = VIEWPORT_EXTENT; | |
2bda0e17 KB |
186 | } |
187 | ||
188 | ||
a23fd0e1 | 189 | wxDC::~wxDC() |
2bda0e17 | 190 | { |
7ba4fbeb VZ |
191 | if ( m_hDC != 0 ) |
192 | { | |
7bcb11d3 | 193 | SelectOldObjects(m_hDC); |
7ba4fbeb VZ |
194 | |
195 | // if we own the HDC, we delete it, otherwise we just release it | |
196 | ||
197 | if ( m_bOwnsDC ) | |
198 | { | |
199 | ::DeleteDC(GetHdc()); | |
7bcb11d3 | 200 | } |
7ba4fbeb VZ |
201 | else // we don't own our HDC |
202 | { | |
db400410 JS |
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 | } | |
7ba4fbeb VZ |
212 | } |
213 | } | |
2bda0e17 KB |
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 | { | |
7bcb11d3 | 221 | if (dc) |
2bda0e17 | 222 | { |
7bcb11d3 JS |
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 | } | |
a23fd0e1 | 231 | m_oldBitmap = 0; |
7bcb11d3 JS |
232 | if (m_oldPen) |
233 | { | |
234 | ::SelectObject((HDC) dc, (HPEN) m_oldPen); | |
235 | } | |
a23fd0e1 | 236 | m_oldPen = 0; |
7bcb11d3 JS |
237 | if (m_oldBrush) |
238 | { | |
239 | ::SelectObject((HDC) dc, (HBRUSH) m_oldBrush); | |
240 | } | |
a23fd0e1 | 241 | m_oldBrush = 0; |
7bcb11d3 JS |
242 | if (m_oldFont) |
243 | { | |
244 | ::SelectObject((HDC) dc, (HFONT) m_oldFont); | |
245 | } | |
a23fd0e1 | 246 | m_oldFont = 0; |
7bcb11d3 JS |
247 | if (m_oldPalette) |
248 | { | |
249 | ::SelectPalette((HDC) dc, (HPALETTE) m_oldPalette, TRUE); | |
250 | } | |
a23fd0e1 | 251 | m_oldPalette = 0; |
2bda0e17 | 252 | } |
a23fd0e1 VZ |
253 | |
254 | m_brush = wxNullBrush; | |
7bcb11d3 JS |
255 | m_pen = wxNullPen; |
256 | m_palette = wxNullPalette; | |
257 | m_font = wxNullFont; | |
258 | m_backgroundBrush = wxNullBrush; | |
259 | m_selectedBitmap = wxNullBitmap; | |
2bda0e17 KB |
260 | } |
261 | ||
a23fd0e1 VZ |
262 | // --------------------------------------------------------------------------- |
263 | // clipping | |
264 | // --------------------------------------------------------------------------- | |
265 | ||
f547e9bb RL |
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 | ||
72cdf4c9 | 278 | void wxDC::DoSetClippingRegion(wxCoord cx, wxCoord cy, wxCoord cw, wxCoord ch) |
2bda0e17 | 279 | { |
7bcb11d3 | 280 | m_clipping = TRUE; |
f547e9bb RL |
281 | IntersectClipRect(GetHdc(), XLOG2DEV(cx), YLOG2DEV(cy), |
282 | XLOG2DEV(cx + cw), YLOG2DEV(cy + ch)); | |
283 | DO_SET_CLIPPING_BOX() | |
2bda0e17 KB |
284 | } |
285 | ||
a23fd0e1 | 286 | void wxDC::DoSetClippingRegionAsRegion(const wxRegion& region) |
a724d789 | 287 | { |
223d09f6 | 288 | wxCHECK_RET( region.GetHRGN(), wxT("invalid clipping region") ); |
a23fd0e1 | 289 | |
7bcb11d3 | 290 | m_clipping = TRUE; |
a23fd0e1 | 291 | |
1e6d9499 | 292 | #ifdef __WIN16__ |
a23fd0e1 | 293 | SelectClipRgn(GetHdc(), (HRGN) region.GetHRGN()); |
1e6d9499 | 294 | #else |
a23fd0e1 | 295 | ExtSelectClipRgn(GetHdc(), (HRGN) region.GetHRGN(), RGN_AND); |
1e6d9499 | 296 | #endif |
a724d789 | 297 | |
f547e9bb | 298 | DO_SET_CLIPPING_BOX() |
2bda0e17 KB |
299 | } |
300 | ||
a23fd0e1 | 301 | void wxDC::DestroyClippingRegion() |
2bda0e17 | 302 | { |
7bcb11d3 JS |
303 | if (m_clipping && m_hDC) |
304 | { | |
305 | // TODO: this should restore the previous clipping region, | |
306 | // so that OnPaint processing works correctly, and the update clipping region | |
307 | // doesn't get destroyed after the first DestroyClippingRegion. | |
308 | HRGN rgn = CreateRectRgn(0, 0, 32000, 32000); | |
a23fd0e1 | 309 | SelectClipRgn(GetHdc(), rgn); |
7bcb11d3 JS |
310 | DeleteObject(rgn); |
311 | } | |
312 | m_clipping = FALSE; | |
2bda0e17 KB |
313 | } |
314 | ||
a23fd0e1 VZ |
315 | // --------------------------------------------------------------------------- |
316 | // query capabilities | |
317 | // --------------------------------------------------------------------------- | |
318 | ||
319 | bool wxDC::CanDrawBitmap() const | |
2bda0e17 | 320 | { |
7bcb11d3 | 321 | return TRUE; |
2bda0e17 KB |
322 | } |
323 | ||
a23fd0e1 | 324 | bool wxDC::CanGetTextExtent() const |
2bda0e17 | 325 | { |
7bcb11d3 | 326 | // What sort of display is it? |
a23fd0e1 VZ |
327 | int technology = ::GetDeviceCaps(GetHdc(), TECHNOLOGY); |
328 | ||
329 | return (technology == DT_RASDISPLAY) || (technology == DT_RASPRINTER); | |
2bda0e17 KB |
330 | } |
331 | ||
a23fd0e1 | 332 | int wxDC::GetDepth() const |
2bda0e17 | 333 | { |
a23fd0e1 | 334 | return (int)::GetDeviceCaps(GetHdc(), BITSPIXEL); |
2bda0e17 KB |
335 | } |
336 | ||
a23fd0e1 VZ |
337 | // --------------------------------------------------------------------------- |
338 | // drawing | |
339 | // --------------------------------------------------------------------------- | |
340 | ||
341 | void wxDC::Clear() | |
2bda0e17 | 342 | { |
7bcb11d3 | 343 | RECT rect; |
2506aab6 VZ |
344 | if ( m_canvas ) |
345 | { | |
7bcb11d3 | 346 | GetClientRect((HWND) m_canvas->GetHWND(), &rect); |
2506aab6 VZ |
347 | } |
348 | else | |
7bcb11d3 | 349 | { |
eaeb6a3c JS |
350 | // No, I think we should simply ignore this if printing on e.g. |
351 | // a printer DC. | |
352 | // wxCHECK_RET( m_selectedBitmap.Ok(), wxT("this DC can't be cleared") ); | |
353 | if (!m_selectedBitmap.Ok()) | |
354 | return; | |
2506aab6 | 355 | |
7bcb11d3 JS |
356 | rect.left = 0; rect.top = 0; |
357 | rect.right = m_selectedBitmap.GetWidth(); | |
358 | rect.bottom = m_selectedBitmap.GetHeight(); | |
359 | } | |
2506aab6 | 360 | |
a23fd0e1 VZ |
361 | (void) ::SetMapMode(GetHdc(), MM_TEXT); |
362 | ||
363 | DWORD colour = GetBkColor(GetHdc()); | |
7bcb11d3 | 364 | HBRUSH brush = CreateSolidBrush(colour); |
a23fd0e1 | 365 | FillRect(GetHdc(), &rect, brush); |
7bcb11d3 | 366 | DeleteObject(brush); |
a23fd0e1 VZ |
367 | |
368 | ::SetMapMode(GetHdc(), MM_ANISOTROPIC); | |
369 | ::SetViewportExtEx(GetHdc(), VIEWPORT_EXTENT, VIEWPORT_EXTENT, NULL); | |
370 | ::SetWindowExtEx(GetHdc(), m_windowExtX, m_windowExtY, NULL); | |
371 | ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX, (int)m_deviceOriginY, NULL); | |
372 | ::SetWindowOrgEx(GetHdc(), (int)m_logicalOriginX, (int)m_logicalOriginY, NULL); | |
373 | } | |
374 | ||
72cdf4c9 | 375 | void wxDC::DoFloodFill(wxCoord x, wxCoord y, const wxColour& col, int style) |
a23fd0e1 | 376 | { |
0bafad0c VZ |
377 | if ( !::ExtFloodFill(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), |
378 | col.GetPixel(), | |
379 | style == wxFLOOD_SURFACE ? FLOODFILLSURFACE | |
380 | : FLOODFILLBORDER) ) | |
381 | { | |
382 | // quoting from the MSDN docs: | |
383 | // | |
384 | // Following are some of the reasons this function might fail: | |
385 | // | |
386 | // * The filling could not be completed. | |
387 | // * The specified point has the boundary color specified by the | |
388 | // crColor parameter (if FLOODFILLBORDER was requested). | |
389 | // * The specified point does not have the color specified by | |
390 | // crColor (if FLOODFILLSURFACE was requested) | |
391 | // * The point is outside the clipping region that is, it is not | |
392 | // visible on the device. | |
393 | // | |
f6bcfd97 | 394 | wxLogLastError(wxT("ExtFloodFill")); |
0bafad0c | 395 | } |
a23fd0e1 | 396 | |
7bcb11d3 | 397 | CalcBoundingBox(x, y); |
2bda0e17 KB |
398 | } |
399 | ||
72cdf4c9 | 400 | bool wxDC::DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const |
2bda0e17 | 401 | { |
f6bcfd97 BP |
402 | wxCHECK_MSG( col, FALSE, _T("NULL colour parameter in wxDC::GetPixel") ); |
403 | ||
7bcb11d3 | 404 | // get the color of the pixel |
a23fd0e1 | 405 | COLORREF pixelcolor = ::GetPixel(GetHdc(), XLOG2DEV(x), YLOG2DEV(y)); |
0bafad0c | 406 | |
f6bcfd97 | 407 | wxRGBToColour(*col, pixelcolor); |
dc1efb1d JS |
408 | |
409 | return TRUE; | |
2bda0e17 KB |
410 | } |
411 | ||
72cdf4c9 | 412 | void wxDC::DoCrossHair(wxCoord x, wxCoord y) |
a23fd0e1 | 413 | { |
72cdf4c9 VZ |
414 | wxCoord x1 = x-VIEWPORT_EXTENT; |
415 | wxCoord y1 = y-VIEWPORT_EXTENT; | |
416 | wxCoord x2 = x+VIEWPORT_EXTENT; | |
417 | wxCoord y2 = y+VIEWPORT_EXTENT; | |
a23fd0e1 VZ |
418 | |
419 | (void)MoveToEx(GetHdc(), XLOG2DEV(x1), YLOG2DEV(y), NULL); | |
420 | (void)LineTo(GetHdc(), XLOG2DEV(x2), YLOG2DEV(y)); | |
421 | ||
422 | (void)MoveToEx(GetHdc(), XLOG2DEV(x), YLOG2DEV(y1), NULL); | |
423 | (void)LineTo(GetHdc(), XLOG2DEV(x), YLOG2DEV(y2)); | |
424 | ||
7bcb11d3 JS |
425 | CalcBoundingBox(x1, y1); |
426 | CalcBoundingBox(x2, y2); | |
2bda0e17 KB |
427 | } |
428 | ||
72cdf4c9 | 429 | void wxDC::DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2) |
2bda0e17 | 430 | { |
a23fd0e1 VZ |
431 | (void)MoveToEx(GetHdc(), XLOG2DEV(x1), YLOG2DEV(y1), NULL); |
432 | (void)LineTo(GetHdc(), XLOG2DEV(x2), YLOG2DEV(y2)); | |
433 | ||
058939fc JS |
434 | // Normalization: Windows doesn't draw the last point of the line. |
435 | // But apparently neither does GTK+, so we take it out again. | |
436 | // (void)LineTo(GetHdc(), XLOG2DEV(x2) + 1, YLOG2DEV(y2)); | |
a23fd0e1 | 437 | |
7bcb11d3 JS |
438 | CalcBoundingBox(x1, y1); |
439 | CalcBoundingBox(x2, y2); | |
2bda0e17 KB |
440 | } |
441 | ||
f6bcfd97 BP |
442 | // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1) |
443 | // and ending at (x2, y2) | |
444 | void wxDC::DoDrawArc(wxCoord x1, wxCoord y1, | |
445 | wxCoord x2, wxCoord y2, | |
446 | wxCoord xc, wxCoord yc) | |
2bda0e17 | 447 | { |
f6bcfd97 | 448 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling |
2d8a5cb1 | 449 | |
f6bcfd97 BP |
450 | double dx = xc - x1; |
451 | double dy = yc - y1; | |
452 | double radius = (double)sqrt(dx*dx+dy*dy); | |
453 | wxCoord r = (wxCoord)radius; | |
2d8a5cb1 | 454 | |
f6bcfd97 BP |
455 | // treat the special case of full circle separately |
456 | if ( x1 == x2 && y1 == y2 ) | |
7bcb11d3 | 457 | { |
f6bcfd97 | 458 | DrawEllipse(xc - r, yc - r, 2*r, 2*r); |
a23fd0e1 | 459 | return; |
7bcb11d3 | 460 | } |
a23fd0e1 | 461 | |
72cdf4c9 VZ |
462 | wxCoord xx1 = XLOG2DEV(x1); |
463 | wxCoord yy1 = YLOG2DEV(y1); | |
464 | wxCoord xx2 = XLOG2DEV(x2); | |
465 | wxCoord yy2 = YLOG2DEV(y2); | |
466 | wxCoord xxc = XLOG2DEV(xc); | |
467 | wxCoord yyc = YLOG2DEV(yc); | |
468 | wxCoord ray = (wxCoord) sqrt(double((xxc-xx1)*(xxc-xx1)+(yyc-yy1)*(yyc-yy1))); | |
a23fd0e1 | 469 | |
72cdf4c9 VZ |
470 | wxCoord xxx1 = (wxCoord) (xxc-ray); |
471 | wxCoord yyy1 = (wxCoord) (yyc-ray); | |
472 | wxCoord xxx2 = (wxCoord) (xxc+ray); | |
473 | wxCoord yyy2 = (wxCoord) (yyc+ray); | |
f6bcfd97 BP |
474 | |
475 | if ( m_brush.Ok() && m_brush.GetStyle() != wxTRANSPARENT ) | |
7bcb11d3 JS |
476 | { |
477 | // Have to add 1 to bottom-right corner of rectangle | |
478 | // to make semi-circles look right (crooked line otherwise). | |
479 | // Unfortunately this is not a reliable method, depends | |
480 | // on the size of shape. | |
481 | // TODO: figure out why this happens! | |
f6bcfd97 | 482 | Pie(GetHdc(),xxx1,yyy1,xxx2+1,yyy2+1, xx1,yy1,xx2,yy2); |
7bcb11d3 JS |
483 | } |
484 | else | |
2d8a5cb1 | 485 | { |
f6bcfd97 | 486 | Arc(GetHdc(),xxx1,yyy1,xxx2,yyy2, xx1,yy1,xx2,yy2); |
2d8a5cb1 | 487 | } |
f6bcfd97 BP |
488 | |
489 | CalcBoundingBox(xc - r, yc - r); | |
490 | CalcBoundingBox(xc + r, yc + r); | |
2bda0e17 KB |
491 | } |
492 | ||
cd9da200 VZ |
493 | void wxDC::DoDrawCheckMark(wxCoord x1, wxCoord y1, |
494 | wxCoord width, wxCoord height) | |
495 | { | |
496 | wxCoord x2 = x1 + width, | |
497 | y2 = y1 + height; | |
498 | ||
499 | #if defined(__WIN32__) && !defined(__SC__) | |
500 | RECT rect; | |
501 | rect.left = x1; | |
502 | rect.top = y1; | |
503 | rect.right = x2; | |
504 | rect.bottom = y2; | |
505 | ||
506 | DrawFrameControl(GetHdc(), &rect, DFC_MENU, DFCS_MENUCHECK); | |
507 | #else // Win16 | |
508 | // In WIN16, draw a cross | |
509 | HPEN blackPen = ::CreatePen(PS_SOLID, 1, RGB(0, 0, 0)); | |
510 | HPEN whiteBrush = (HPEN)::GetStockObject(WHITE_BRUSH); | |
e06b9569 JS |
511 | HPEN hPenOld = (HPEN)::SelectObject(GetHdc(), blackPen); |
512 | HPEN hBrushOld = (HPEN)::SelectObject(GetHdc(), whiteBrush); | |
cd9da200 VZ |
513 | ::SetROP2(GetHdc(), R2_COPYPEN); |
514 | Rectangle(GetHdc(), x1, y1, x2, y2); | |
515 | MoveTo(GetHdc(), x1, y1); | |
516 | LineTo(GetHdc(), x2, y2); | |
517 | MoveTo(GetHdc(), x2, y1); | |
518 | LineTo(GetHdc(), x1, y2); | |
519 | ::SelectObject(GetHdc(), hPenOld); | |
520 | ::SelectObject(GetHdc(), hBrushOld); | |
521 | ::DeleteObject(blackPen); | |
522 | #endif // Win32/16 | |
523 | ||
524 | CalcBoundingBox(x1, y1); | |
525 | CalcBoundingBox(x2, y2); | |
526 | } | |
527 | ||
72cdf4c9 | 528 | void wxDC::DoDrawPoint(wxCoord x, wxCoord y) |
2bda0e17 | 529 | { |
7bcb11d3 JS |
530 | COLORREF color = 0x00ffffff; |
531 | if (m_pen.Ok()) | |
532 | { | |
a23fd0e1 | 533 | color = m_pen.GetColour().GetPixel(); |
7bcb11d3 | 534 | } |
a23fd0e1 VZ |
535 | |
536 | SetPixel(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), color); | |
537 | ||
7bcb11d3 | 538 | CalcBoundingBox(x, y); |
2bda0e17 KB |
539 | } |
540 | ||
72cdf4c9 | 541 | void wxDC::DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset,int fillStyle) |
2bda0e17 | 542 | { |
f6bcfd97 | 543 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling |
de2d2cdc | 544 | |
7bcb11d3 JS |
545 | // Do things less efficiently if we have offsets |
546 | if (xoffset != 0 || yoffset != 0) | |
6a6c0a8b | 547 | { |
7bcb11d3 JS |
548 | POINT *cpoints = new POINT[n]; |
549 | int i; | |
550 | for (i = 0; i < n; i++) | |
551 | { | |
552 | cpoints[i].x = (int)(points[i].x + xoffset); | |
553 | cpoints[i].y = (int)(points[i].y + yoffset); | |
a23fd0e1 | 554 | |
7bcb11d3 JS |
555 | CalcBoundingBox(cpoints[i].x, cpoints[i].y); |
556 | } | |
a23fd0e1 VZ |
557 | int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING); |
558 | (void)Polygon(GetHdc(), cpoints, n); | |
559 | SetPolyFillMode(GetHdc(),prev); | |
7bcb11d3 JS |
560 | delete[] cpoints; |
561 | } | |
562 | else | |
563 | { | |
564 | int i; | |
565 | for (i = 0; i < n; i++) | |
566 | CalcBoundingBox(points[i].x, points[i].y); | |
a23fd0e1 VZ |
567 | |
568 | int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING); | |
569 | (void)Polygon(GetHdc(), (POINT*) points, n); | |
570 | SetPolyFillMode(GetHdc(),prev); | |
6a6c0a8b | 571 | } |
2bda0e17 KB |
572 | } |
573 | ||
72cdf4c9 | 574 | void wxDC::DoDrawLines(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset) |
2bda0e17 | 575 | { |
7bcb11d3 JS |
576 | // Do things less efficiently if we have offsets |
577 | if (xoffset != 0 || yoffset != 0) | |
6a6c0a8b | 578 | { |
7bcb11d3 JS |
579 | POINT *cpoints = new POINT[n]; |
580 | int i; | |
581 | for (i = 0; i < n; i++) | |
582 | { | |
583 | cpoints[i].x = (int)(points[i].x + xoffset); | |
584 | cpoints[i].y = (int)(points[i].y + yoffset); | |
a23fd0e1 | 585 | |
7bcb11d3 JS |
586 | CalcBoundingBox(cpoints[i].x, cpoints[i].y); |
587 | } | |
a23fd0e1 | 588 | (void)Polyline(GetHdc(), cpoints, n); |
7bcb11d3 JS |
589 | delete[] cpoints; |
590 | } | |
591 | else | |
592 | { | |
593 | int i; | |
594 | for (i = 0; i < n; i++) | |
595 | CalcBoundingBox(points[i].x, points[i].y); | |
a23fd0e1 VZ |
596 | |
597 | (void)Polyline(GetHdc(), (POINT*) points, n); | |
6a6c0a8b | 598 | } |
2bda0e17 KB |
599 | } |
600 | ||
72cdf4c9 | 601 | void wxDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height) |
2bda0e17 | 602 | { |
f6bcfd97 | 603 | wxColourChanger cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling |
de2d2cdc | 604 | |
72cdf4c9 VZ |
605 | wxCoord x2 = x + width; |
606 | wxCoord y2 = y + height; | |
a23fd0e1 | 607 | |
5456b916 | 608 | if ((m_logicalFunction == wxCOPY) && (m_pen.GetStyle() == wxTRANSPARENT)) |
0bafad0c | 609 | { |
7299b1b2 | 610 | RECT rect; |
5456b916 RR |
611 | rect.left = XLOG2DEV(x); |
612 | rect.top = YLOG2DEV(y); | |
613 | rect.right = XLOG2DEV(x2); | |
7299b1b2 RD |
614 | rect.bottom = YLOG2DEV(y2); |
615 | (void)FillRect(GetHdc(), &rect, (HBRUSH)m_brush.GetResourceHandle() ); | |
5456b916 RR |
616 | } |
617 | else | |
618 | { | |
619 | // Windows draws the filled rectangles without outline (i.e. drawn with a | |
620 | // transparent pen) one pixel smaller in both directions and we want them | |
f6bcfd97 | 621 | // to have the same size regardless of which pen is used - adjust |
5456b916 RR |
622 | |
623 |