]>
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 | |
47d67540 | 48 | #if wxUSE_COMMON_DIALOGS |
65fd5cb0 RS |
49 | #if wxUSE_NORLANDER_HEADERS |
50 | #include <windows.h> | |
51 | #endif | |
a23fd0e1 | 52 | #include <commdlg.h> |
2bda0e17 KB |
53 | #endif |
54 | ||
55 | #ifndef __WIN32__ | |
a23fd0e1 | 56 | #include <print.h> |
2bda0e17 KB |
57 | #endif |
58 | ||
4286a5b5 RR |
59 | #include "wx/msw/private.h" |
60 | ||
2bda0e17 | 61 | #if !USE_SHARED_LIBRARY |
a23fd0e1 | 62 | IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject) |
2bda0e17 KB |
63 | #endif |
64 | ||
a23fd0e1 VZ |
65 | // --------------------------------------------------------------------------- |
66 | // constants | |
67 | // --------------------------------------------------------------------------- | |
68 | ||
42e69d6b VZ |
69 | static const int VIEWPORT_EXTENT = 1000; |
70 | ||
71 | static const int MM_POINTS = 9; | |
72 | static const int MM_METRIC = 10; | |
a23fd0e1 | 73 | |
a23fd0e1 VZ |
74 | // =========================================================================== |
75 | // implementation | |
76 | // =========================================================================== | |
77 | ||
78 | // --------------------------------------------------------------------------- | |
79 | // wxDC | |
80 | // --------------------------------------------------------------------------- | |
2bda0e17 KB |
81 | |
82 | // Default constructor | |
a23fd0e1 | 83 | wxDC::wxDC() |
2bda0e17 | 84 | { |
7bcb11d3 | 85 | m_canvas = NULL; |
a23fd0e1 | 86 | |
7bcb11d3 JS |
87 | m_oldBitmap = 0; |
88 | m_oldPen = 0; | |
89 | m_oldBrush = 0; | |
90 | m_oldFont = 0; | |
91 | m_oldPalette = 0; | |
a23fd0e1 | 92 | |
7bcb11d3 JS |
93 | m_bOwnsDC = FALSE; |
94 | m_hDC = 0; | |
a23fd0e1 | 95 | |
7bcb11d3 JS |
96 | m_windowExtX = VIEWPORT_EXTENT; |
97 | m_windowExtY = VIEWPORT_EXTENT; | |
a23fd0e1 | 98 | |
7bcb11d3 | 99 | m_hDCCount = 0; |
2bda0e17 KB |
100 | } |
101 | ||
102 | ||
a23fd0e1 | 103 | wxDC::~wxDC() |
2bda0e17 | 104 | { |
7bcb11d3 JS |
105 | if ( m_hDC != 0 ) { |
106 | SelectOldObjects(m_hDC); | |
107 | if ( m_bOwnsDC ) { | |
108 | if ( m_canvas == NULL ) | |
a23fd0e1 | 109 | ::DeleteDC(GetHdc()); |
7bcb11d3 | 110 | else |
a23fd0e1 | 111 | ::ReleaseDC((HWND)m_canvas->GetHWND(), GetHdc()); |
7bcb11d3 | 112 | } |
2bda0e17 | 113 | } |
a23fd0e1 | 114 | |
2bda0e17 KB |
115 | } |
116 | ||
117 | // This will select current objects out of the DC, | |
118 | // which is what you have to do before deleting the | |
119 | // DC. | |
120 | void wxDC::SelectOldObjects(WXHDC dc) | |
121 | { | |
7bcb11d3 | 122 | if (dc) |
2bda0e17 | 123 | { |
7bcb11d3 JS |
124 | if (m_oldBitmap) |
125 | { | |
126 | ::SelectObject((HDC) dc, (HBITMAP) m_oldBitmap); | |
127 | if (m_selectedBitmap.Ok()) | |
128 | { | |
129 | m_selectedBitmap.SetSelectedInto(NULL); | |
130 | } | |
131 | } | |
a23fd0e1 | 132 | m_oldBitmap = 0; |
7bcb11d3 JS |
133 | if (m_oldPen) |
134 | { | |
135 | ::SelectObject((HDC) dc, (HPEN) m_oldPen); | |
136 | } | |
a23fd0e1 | 137 | m_oldPen = 0; |
7bcb11d3 JS |
138 | if (m_oldBrush) |
139 | { | |
140 | ::SelectObject((HDC) dc, (HBRUSH) m_oldBrush); | |
141 | } | |
a23fd0e1 | 142 | m_oldBrush = 0; |
7bcb11d3 JS |
143 | if (m_oldFont) |
144 | { | |
145 | ::SelectObject((HDC) dc, (HFONT) m_oldFont); | |
146 | } | |
a23fd0e1 | 147 | m_oldFont = 0; |
7bcb11d3 JS |
148 | if (m_oldPalette) |
149 | { | |
150 | ::SelectPalette((HDC) dc, (HPALETTE) m_oldPalette, TRUE); | |
151 | } | |
a23fd0e1 | 152 | m_oldPalette = 0; |
2bda0e17 | 153 | } |
a23fd0e1 VZ |
154 | |
155 | m_brush = wxNullBrush; | |
7bcb11d3 JS |
156 | m_pen = wxNullPen; |
157 | m_palette = wxNullPalette; | |
158 | m_font = wxNullFont; | |
159 | m_backgroundBrush = wxNullBrush; | |
160 | m_selectedBitmap = wxNullBitmap; | |
2bda0e17 KB |
161 | } |
162 | ||
a23fd0e1 VZ |
163 | // --------------------------------------------------------------------------- |
164 | // clipping | |
165 | // --------------------------------------------------------------------------- | |
166 | ||
167 | void wxDC::DoSetClippingRegion(long cx, long cy, long cw, long ch) | |
2bda0e17 | 168 | { |
7bcb11d3 JS |
169 | m_clipping = TRUE; |
170 | m_clipX1 = (int)cx; | |
171 | m_clipY1 = (int)cy; | |
172 | m_clipX2 = (int)(cx + cw); | |
173 | m_clipY2 = (int)(cy + ch); | |
a23fd0e1 | 174 | |
7bcb11d3 | 175 | DoClipping((WXHDC) m_hDC); |
2bda0e17 KB |
176 | } |
177 | ||
a23fd0e1 | 178 | void wxDC::DoSetClippingRegionAsRegion(const wxRegion& region) |
a724d789 | 179 | { |
223d09f6 | 180 | wxCHECK_RET( region.GetHRGN(), wxT("invalid clipping region") ); |
a23fd0e1 | 181 | |
7bcb11d3 | 182 | wxRect box = region.GetBox(); |
a23fd0e1 | 183 | |
7bcb11d3 JS |
184 | m_clipping = TRUE; |
185 | m_clipX1 = box.x; | |
186 | m_clipY1 = box.y; | |
187 | m_clipX2 = box.x + box.width; | |
188 | m_clipY2 = box.y + box.height; | |
a23fd0e1 | 189 | |
1e6d9499 | 190 | #ifdef __WIN16__ |
a23fd0e1 | 191 | SelectClipRgn(GetHdc(), (HRGN) region.GetHRGN()); |
1e6d9499 | 192 | #else |
a23fd0e1 | 193 | ExtSelectClipRgn(GetHdc(), (HRGN) region.GetHRGN(), RGN_AND); |
1e6d9499 | 194 | #endif |
a724d789 JS |
195 | } |
196 | ||
2bda0e17 KB |
197 | void wxDC::DoClipping(WXHDC dc) |
198 | { | |
7bcb11d3 JS |
199 | if (m_clipping && dc) |
200 | { | |
201 | IntersectClipRect((HDC) dc, XLOG2DEV(m_clipX1), YLOG2DEV(m_clipY1), | |
a23fd0e1 | 202 | XLOG2DEV(m_clipX2), YLOG2DEV(m_clipY2)); |
7bcb11d3 | 203 | } |
2bda0e17 KB |
204 | } |
205 | ||
a23fd0e1 | 206 | void wxDC::DestroyClippingRegion() |
2bda0e17 | 207 | { |
7bcb11d3 JS |
208 | if (m_clipping && m_hDC) |
209 | { | |
210 | // TODO: this should restore the previous clipping region, | |
211 | // so that OnPaint processing works correctly, and the update clipping region | |
212 | // doesn't get destroyed after the first DestroyClippingRegion. | |
213 | HRGN rgn = CreateRectRgn(0, 0, 32000, 32000); | |
a23fd0e1 | 214 | SelectClipRgn(GetHdc(), rgn); |
7bcb11d3 JS |
215 | DeleteObject(rgn); |
216 | } | |
217 | m_clipping = FALSE; | |
2bda0e17 KB |
218 | } |
219 | ||
a23fd0e1 VZ |
220 | // --------------------------------------------------------------------------- |
221 | // query capabilities | |
222 | // --------------------------------------------------------------------------- | |
223 | ||
224 | bool wxDC::CanDrawBitmap() const | |
2bda0e17 | 225 | { |
7bcb11d3 | 226 | return TRUE; |
2bda0e17 KB |
227 | } |
228 | ||
a23fd0e1 | 229 | bool wxDC::CanGetTextExtent() const |
2bda0e17 | 230 | { |
7bcb11d3 | 231 | // What sort of display is it? |
a23fd0e1 VZ |
232 | int technology = ::GetDeviceCaps(GetHdc(), TECHNOLOGY); |
233 | ||
234 | return (technology == DT_RASDISPLAY) || (technology == DT_RASPRINTER); | |
2bda0e17 KB |
235 | } |
236 | ||
a23fd0e1 | 237 | int wxDC::GetDepth() const |
2bda0e17 | 238 | { |
a23fd0e1 | 239 | return (int)::GetDeviceCaps(GetHdc(), BITSPIXEL); |
2bda0e17 KB |
240 | } |
241 | ||
a23fd0e1 VZ |
242 | // --------------------------------------------------------------------------- |
243 | // drawing | |
244 | // --------------------------------------------------------------------------- | |
245 | ||
246 | void wxDC::Clear() | |
2bda0e17 | 247 | { |
7bcb11d3 | 248 | RECT rect; |
2506aab6 VZ |
249 | if ( m_canvas ) |
250 | { | |
7bcb11d3 | 251 | GetClientRect((HWND) m_canvas->GetHWND(), &rect); |
2506aab6 VZ |
252 | } |
253 | else | |
7bcb11d3 | 254 | { |
223d09f6 | 255 | wxCHECK_RET( m_selectedBitmap.Ok(), wxT("this DC can't be cleared") ); |
2506aab6 | 256 | |
7bcb11d3 JS |
257 | rect.left = 0; rect.top = 0; |
258 | rect.right = m_selectedBitmap.GetWidth(); | |
259 | rect.bottom = m_selectedBitmap.GetHeight(); | |
260 | } | |
2506aab6 | 261 | |
a23fd0e1 VZ |
262 | (void) ::SetMapMode(GetHdc(), MM_TEXT); |
263 | ||
264 | DWORD colour = GetBkColor(GetHdc()); | |
7bcb11d3 | 265 | HBRUSH brush = CreateSolidBrush(colour); |
a23fd0e1 | 266 | FillRect(GetHdc(), &rect, brush); |
7bcb11d3 | 267 | DeleteObject(brush); |
a23fd0e1 VZ |
268 | |
269 | ::SetMapMode(GetHdc(), MM_ANISOTROPIC); | |
270 | ::SetViewportExtEx(GetHdc(), VIEWPORT_EXTENT, VIEWPORT_EXTENT, NULL); | |
271 | ::SetWindowExtEx(GetHdc(), m_windowExtX, m_windowExtY, NULL); | |
272 | ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX, (int)m_deviceOriginY, NULL); | |
273 | ::SetWindowOrgEx(GetHdc(), (int)m_logicalOriginX, (int)m_logicalOriginY, NULL); | |
274 | } | |
275 | ||
276 | void wxDC::DoFloodFill(long x, long y, const wxColour& col, int style) | |
277 | { | |
278 | (void)ExtFloodFill(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), | |
279 | col.GetPixel(), | |
280 | style == wxFLOOD_SURFACE ? FLOODFILLSURFACE | |
281 | : FLOODFILLBORDER); | |
282 | ||
7bcb11d3 | 283 | CalcBoundingBox(x, y); |
2bda0e17 KB |
284 | } |
285 | ||
a23fd0e1 | 286 | bool wxDC::DoGetPixel(long x, long y, wxColour *col) const |
2bda0e17 | 287 | { |
7bcb11d3 JS |
288 | // added by steve 29.12.94 (copied from DrawPoint) |
289 | // returns TRUE for pixels in the color of the current pen | |
290 | // and FALSE for all other pixels colors | |
291 | // if col is non-NULL return the color of the pixel | |
a23fd0e1 | 292 | |
7bcb11d3 | 293 | // get the color of the pixel |
a23fd0e1 | 294 | COLORREF pixelcolor = ::GetPixel(GetHdc(), XLOG2DEV(x), YLOG2DEV(y)); |
7bcb11d3 JS |
295 | // get the color of the pen |
296 | COLORREF pencolor = 0x00ffffff; | |
297 | if (m_pen.Ok()) | |
298 | { | |
a23fd0e1 | 299 | pencolor = m_pen.GetColour().GetPixel(); |
7bcb11d3 | 300 | } |
a23fd0e1 | 301 | |
7bcb11d3 JS |
302 | // return the color of the pixel |
303 | if(col) | |
304 | col->Set(GetRValue(pixelcolor),GetGValue(pixelcolor),GetBValue(pixelcolor)); | |
a23fd0e1 | 305 | |
7bcb11d3 JS |
306 | // check, if color of the pixels is the same as the color |
307 | // of the current pen | |
308 | return(pixelcolor==pencolor); | |
2bda0e17 KB |
309 | } |
310 | ||
a23fd0e1 VZ |
311 | void wxDC::DoCrossHair(long x, long y) |
312 | { | |
313 | long x1 = x-VIEWPORT_EXTENT; | |
314 | long y1 = y-VIEWPORT_EXTENT; | |
315 | long x2 = x+VIEWPORT_EXTENT; | |
316 | long y2 = y+VIEWPORT_EXTENT; | |
317 | ||
318 | (void)MoveToEx(GetHdc(), XLOG2DEV(x1), YLOG2DEV(y), NULL); | |
319 | (void)LineTo(GetHdc(), XLOG2DEV(x2), YLOG2DEV(y)); | |
320 | ||
321 | (void)MoveToEx(GetHdc(), XLOG2DEV(x), YLOG2DEV(y1), NULL); | |
322 | (void)LineTo(GetHdc(), XLOG2DEV(x), YLOG2DEV(y2)); | |
323 | ||
7bcb11d3 JS |
324 | CalcBoundingBox(x1, y1); |
325 | CalcBoundingBox(x2, y2); | |
2bda0e17 KB |
326 | } |
327 | ||
a23fd0e1 | 328 | void wxDC::DoDrawLine(long x1, long y1, long x2, long y2) |
2bda0e17 | 329 | { |
a23fd0e1 VZ |
330 | (void)MoveToEx(GetHdc(), XLOG2DEV(x1), YLOG2DEV(y1), NULL); |
331 | (void)LineTo(GetHdc(), XLOG2DEV(x2), YLOG2DEV(y2)); | |
332 | ||
7bcb11d3 | 333 | /* MATTHEW: [6] New normalization */ |
2bda0e17 | 334 | #if WX_STANDARD_GRAPHICS |
a23fd0e1 | 335 | (void)LineTo(GetHdc(), XLOG2DEV(x2) + 1, YLOG2DEV(y2)); |
2bda0e17 | 336 | #endif |
a23fd0e1 | 337 | |
7bcb11d3 JS |
338 | CalcBoundingBox(x1, y1); |
339 | CalcBoundingBox(x2, y2); | |
2bda0e17 KB |
340 | } |
341 | ||
a23fd0e1 | 342 | void wxDC::DoDrawArc(long x1,long y1,long x2,long y2, long xc, long yc) |
2bda0e17 | 343 | { |
a23fd0e1 VZ |
344 | double dx = xc-x1; |
345 | double dy = yc-y1; | |
7bcb11d3 JS |
346 | double radius = (double)sqrt(dx*dx+dy*dy) ;; |
347 | if (x1==x2 && x2==y2) | |
348 | { | |
a23fd0e1 VZ |
349 | DrawEllipse(xc,yc,(long)(radius*2.0),(long)(radius*2.0)); |
350 | return; | |
7bcb11d3 | 351 | } |
a23fd0e1 VZ |
352 | |
353 | long xx1 = XLOG2DEV(x1); | |
354 | long yy1 = YLOG2DEV(y1); | |
355 | long xx2 = XLOG2DEV(x2); | |
356 | long yy2 = YLOG2DEV(y2); | |
357 | long xxc = XLOG2DEV(xc); | |
358 | long yyc = YLOG2DEV(yc); | |
359 | long ray = (long) sqrt(double((xxc-xx1)*(xxc-xx1)+(yyc-yy1)*(yyc-yy1))); | |
360 | ||
361 | (void)MoveToEx(GetHdc(), (int) xx1, (int) yy1, NULL); | |
7bcb11d3 JS |
362 | long xxx1 = (long) (xxc-ray); |
363 | long yyy1 = (long) (yyc-ray); | |
364 | long xxx2 = (long) (xxc+ray); | |
365 | long yyy2 = (long) (yyc+ray); | |
366 | if (m_brush.Ok() && m_brush.GetStyle() !=wxTRANSPARENT) | |
367 | { | |
368 | // Have to add 1 to bottom-right corner of rectangle | |
369 | // to make semi-circles look right (crooked line otherwise). | |
370 | // Unfortunately this is not a reliable method, depends | |
371 | // on the size of shape. | |
372 | // TODO: figure out why this happens! | |
a23fd0e1 VZ |
373 | Pie(GetHdc(),xxx1,yyy1,xxx2+1,yyy2+1, |
374 | xx1,yy1,xx2,yy2); | |
7bcb11d3 JS |
375 | } |
376 | else | |
a23fd0e1 VZ |
377 | Arc(GetHdc(),xxx1,yyy1,xxx2,yyy2, |
378 | xx1,yy1,xx2,yy2); | |
379 | ||
48c12cb1 PA |
380 | CalcBoundingBox((long)(xc-radius), (long)(yc-radius)); |
381 | CalcBoundingBox((long)(xc+radius), (long)(yc+radius)); | |
2bda0e17 KB |
382 | } |
383 | ||
a23fd0e1 | 384 | void wxDC::DoDrawPoint(long x, long y) |
2bda0e17 | 385 | { |
7bcb11d3 JS |
386 | COLORREF color = 0x00ffffff; |
387 | if (m_pen.Ok()) | |
388 | { | |
a23fd0e1 | 389 | color = m_pen.GetColour().GetPixel(); |
7bcb11d3 | 390 | } |
a23fd0e1 VZ |
391 | |
392 | SetPixel(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), color); | |
393 | ||
7bcb11d3 | 394 | CalcBoundingBox(x, y); |
2bda0e17 KB |
395 | } |
396 | ||
a23fd0e1 | 397 | void wxDC::DoDrawPolygon(int n, wxPoint points[], long xoffset, long yoffset,int fillStyle) |
2bda0e17 | 398 | { |
7bcb11d3 JS |
399 | // Do things less efficiently if we have offsets |
400 | if (xoffset != 0 || yoffset != 0) | |
6a6c0a8b | 401 | { |
7bcb11d3 JS |
402 | POINT *cpoints = new POINT[n]; |
403 | int i; | |
404 | for (i = 0; i < n; i++) | |
405 | { | |
406 | cpoints[i].x = (int)(points[i].x + xoffset); | |
407 | cpoints[i].y = (int)(points[i].y + yoffset); | |
a23fd0e1 | 408 | |
7bcb11d3 JS |
409 | CalcBoundingBox(cpoints[i].x, cpoints[i].y); |
410 | } | |
a23fd0e1 VZ |
411 | int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING); |
412 | (void)Polygon(GetHdc(), cpoints, n); | |
413 | SetPolyFillMode(GetHdc(),prev); | |
7bcb11d3 JS |
414 | delete[] cpoints; |
415 | } | |
416 | else | |
417 | { | |
418 | int i; | |
419 | for (i = 0; i < n; i++) | |
420 | CalcBoundingBox(points[i].x, points[i].y); | |
a23fd0e1 VZ |
421 | |
422 | int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING); | |
423 | (void)Polygon(GetHdc(), (POINT*) points, n); | |
424 | SetPolyFillMode(GetHdc(),prev); | |
6a6c0a8b | 425 | } |
2bda0e17 KB |
426 | } |
427 | ||
a23fd0e1 | 428 | void wxDC::DoDrawLines(int n, wxPoint points[], long xoffset, long yoffset) |
2bda0e17 | 429 | { |
7bcb11d3 JS |
430 | // Do things less efficiently if we have offsets |
431 | if (xoffset != 0 || yoffset != 0) | |
6a6c0a8b | 432 | { |
7bcb11d3 JS |
433 | POINT *cpoints = new POINT[n]; |
434 | int i; | |
435 | for (i = 0; i < n; i++) | |
436 | { | |
437 | cpoints[i].x = (int)(points[i].x + xoffset); | |
438 | cpoints[i].y = (int)(points[i].y + yoffset); | |
a23fd0e1 | 439 | |
7bcb11d3 JS |
440 | CalcBoundingBox(cpoints[i].x, cpoints[i].y); |
441 | } | |
a23fd0e1 | 442 | (void)Polyline(GetHdc(), cpoints, n); |
7bcb11d3 JS |
443 | delete[] cpoints; |
444 | } | |
445 | else | |
446 | { | |
447 | int i; | |
448 | for (i = 0; i < n; i++) | |
449 | CalcBoundingBox(points[i].x, points[i].y); | |
a23fd0e1 VZ |
450 | |
451 | (void)Polyline(GetHdc(), (POINT*) points, n); | |
6a6c0a8b | 452 | } |
2bda0e17 KB |
453 | } |
454 | ||
a23fd0e1 | 455 | void wxDC::DoDrawRectangle(long x, long y, long width, long height) |
2bda0e17 | 456 | { |
7bcb11d3 JS |
457 | long x2 = x + width; |
458 | long y2 = y + height; | |
a23fd0e1 | 459 | |
7bcb11d3 | 460 | /* MATTHEW: [6] new normalization */ |
2bda0e17 | 461 | #if WX_STANDARD_GRAPHICS |
7bcb11d3 | 462 | bool do_brush, do_pen; |
a23fd0e1 | 463 | |
7bcb11d3 JS |
464 | do_brush = m_brush.Ok() && m_brush.GetStyle() != wxTRANSPARENT; |
465 | do_pen = m_pen.Ok() && m_pen.GetStyle() != wxTRANSPARENT; | |
a23fd0e1 | 466 | |
7bcb11d3 JS |
467 | if (do_brush) { |
468 | HPEN orig_pen = NULL; | |
a23fd0e1 | 469 | |
7bcb11d3 | 470 | if (do_pen || !m_pen.Ok()) |
a23fd0e1 VZ |
471 | orig_pen = (HPEN) ::SelectObject(GetHdc(), (HPEN) ::GetStockObject(NULL_PEN)); |
472 | ||
473 | (void)Rectangle(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), | |
7bcb11d3 | 474 | XLOG2DEV(x2) + 1, YLOG2DEV(y2) + 1); |
a23fd0e1 | 475 | |
7bcb11d3 | 476 | if (do_pen || !m_pen.Ok()) |
a23fd0e1 | 477 | ::SelectObject(GetHdc() , orig_pen); |
7bcb11d3 JS |
478 | } |
479 | if (do_pen) { | |
480 | HBRUSH orig_brush = NULL; | |
a23fd0e1 | 481 | |
7bcb11d3 | 482 | if (do_brush || !m_brush.Ok()) |
a23fd0e1 VZ |
483 | orig_brush = (HBRUSH) ::SelectObject(GetHdc(), (HBRUSH) ::GetStockObject(NULL_BRUSH)); |
484 | ||
485 | (void)Rectangle(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), | |
7bcb11d3 | 486 | XLOG2DEV(x2), YLOG2DEV(y2)); |
a23fd0e1 | 487 | |
7bcb11d3 | 488 | if (do_brush || !m_brush.Ok()) |
a23fd0e1 | 489 | ::SelectObject(GetHdc(), orig_brush); |
7bcb11d3 | 490 | } |
2bda0e17 | 491 | #else |
a23fd0e1 | 492 | (void)Rectangle(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), XLOG2DEV(x2), YLOG2DEV(y2)); |
2bda0e17 | 493 | #endif |
a23fd0e1 | 494 | |
7bcb11d3 JS |
495 | CalcBoundingBox(x, y); |
496 | CalcBoundingBox(x2, y2); | |
2bda0e17 KB |
497 | } |
498 | ||
a23fd0e1 | 499 | void wxDC::DoDrawRoundedRectangle(long x, long y, long width, long height, double radius) |
2bda0e17 | 500 | { |
7bcb11d3 JS |
501 | // Now, a negative radius value is interpreted to mean |
502 | // 'the proportion of the smallest X or Y dimension' | |
a23fd0e1 | 503 | |
7bcb11d3 JS |
504 | if (radius < 0.0) |
505 | { | |
506 | double smallest = 0.0; | |
507 | if (width < height) | |
508 | smallest = width; | |
509 | else | |
510 | smallest = height; | |
511 | radius = (- radius * smallest); | |
512 | } | |
a23fd0e1 | 513 | |
7bcb11d3 JS |
514 | long x2 = (x+width); |
515 | long y2 = (y+height); | |
a23fd0e1 VZ |
516 | |
517 | (void)RoundRect(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), XLOG2DEV(x2), | |
25889d3c | 518 | YLOG2DEV(y2), (int) (2*XLOG2DEV(radius)), (int)( 2*YLOG2DEV(radius))); |
a23fd0e1 | 519 | |
7bcb11d3 JS |
520 | CalcBoundingBox(x, y); |
521 | CalcBoundingBox(x2, y2); | |
2bda0e17 KB |
522 | } |
523 | ||
a23fd0e1 | 524 | void wxDC::DoDrawEllipse(long x, long y, long width, long height) |
2bda0e17 | 525 | { |
7bcb11d3 JS |
526 | long x2 = (x+width); |
527 | long y2 = (y+height); | |
a23fd0e1 VZ |
528 | |
529 | (void)Ellipse(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), XLOG2DEV(x2), YLOG2DEV(y2)); | |
530 | ||
7bcb11d3 JS |
531 | CalcBoundingBox(x, y); |
532 | CalcBoundingBox(x2, y2); | |
2bda0e17 KB |
533 | } |
534 | ||
6f65e337 | 535 | // Chris Breeze 20/5/98: first implementation of DrawEllipticArc on Windows |
a23fd0e1 | 536 | void wxDC::DoDrawEllipticArc(long x,long y,long w,long h,double sa,double ea) |
6f65e337 | 537 | { |
7bcb11d3 JS |
538 | long x2 = (x+w); |
539 | long y2 = (y+h); | |
a23fd0e1 | 540 | |
7bcb11d3 JS |
541 | const double deg2rad = 3.14159265359 / 180.0; |
542 | int rx1 = XLOG2DEV(x+w/2); | |
543 | int ry1 = YLOG2DEV(y+h/2); | |
544 | int rx2 = rx1; | |
545 | int ry2 = ry1; | |
546 | rx1 += (int)(100.0 * abs(w) * cos(sa * deg2rad)); | |
547 | ry1 -= (int)(100.0 * abs(h) * m_signY * sin(sa * deg2rad)); | |
548 | rx2 += (int)(100.0 * abs(w) * cos(ea * deg2rad)); | |
549 | ry2 -= (int)(100.0 * abs(h) * m_signY * sin(ea * deg2rad)); | |
a23fd0e1 | 550 | |
7bcb11d3 JS |
551 | // draw pie with NULL_PEN first and then outline otherwise a line is |
552 | // drawn from the start and end points to the centre | |
a23fd0e1 | 553 | HPEN orig_pen = (HPEN) ::SelectObject(GetHdc(), (HPEN) ::GetStockObject(NULL_PEN)); |
7bcb11d3 JS |
554 | if (m_signY > 0) |
555 | { | |
a23fd0e1 | 556 | (void)Pie(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), XLOG2DEV(x2)+1, YLOG2DEV(y2)+1, |
7bcb11d3 JS |
557 | rx1, ry1, rx2, ry2); |
558 | } | |
559 | else | |
560 | { | |
a23fd0e1 | 561 | (void)Pie(GetHdc(), XLOG2DEV(x), YLOG2DEV(y)-1, XLOG2DEV(x2)+1, YLOG2DEV(y2), |
7bcb11d3 JS |
562 | rx1, ry1-1, rx2, ry2-1); |
563 | } | |
a23fd0e1 VZ |
564 | ::SelectObject(GetHdc(), orig_pen); |
565 | (void)Arc(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), XLOG2DEV(x2), YLOG2DEV(y2), | |
fd3f686c | 566 | rx1, ry1, rx2, ry2); |
a23fd0e1 | 567 | |
7bcb11d3 JS |
568 | CalcBoundingBox(x, y); |
569 | CalcBoundingBox(x2, y2); | |
6f65e337 JS |
570 | } |
571 | ||
a23fd0e1 | 572 | void wxDC::DoDrawIcon(const wxIcon& icon, long x, long y) |
2bda0e17 | 573 | { |
57c208c5 | 574 | #if defined(__WIN32__) && !defined(__SC__) && !defined(__TWIN32__) |
a23fd0e1 | 575 | ::DrawIconEx(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), (HICON) icon.GetHICON(), |
7bcb11d3 | 576 | icon.GetWidth(), icon.GetHeight(), 0, 0, DI_NORMAL); |
f60d0f94 | 577 | #else |
a23fd0e1 | 578 | ::DrawIcon(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), (HICON) icon.GetHICON()); |
f60d0f94 | 579 | #endif |
a23fd0e1 | 580 | |
7bcb11d3 JS |
581 | CalcBoundingBox(x, y); |
582 | CalcBoundingBox(x+icon.GetWidth(), y+icon.GetHeight()); | |
2bda0e17 KB |
583 | } |
584 | ||
a23fd0e1 | 585 | void wxDC::DoDrawBitmap( const wxBitmap &bmp, long x, long y, bool useMask ) |
f5419957 JS |
586 | { |
587 | if (!bmp.Ok()) | |
588 | return; | |
a23fd0e1 | 589 | |
f5419957 JS |
590 | // If we're not drawing transparently, and not drawing to a printer, |
591 | // optimize this function to use Windows functions. | |
592 | if (!useMask && !IsKindOf(CLASSINFO(wxPrinterDC))) | |
593 | { | |
a23fd0e1 | 594 | HDC cdc = GetHdc(); |
f5419957 JS |
595 | HDC memdc = ::CreateCompatibleDC( cdc ); |
596 | HBITMAP hbitmap = (HBITMAP) bmp.GetHBITMAP( ); | |
10fcf31a | 597 | |
223d09f6 | 598 | wxASSERT_MSG( hbitmap, wxT("bitmap is ok but HBITMAP is NULL?") ); |
10fcf31a | 599 | |
f5419957 JS |
600 | ::SelectObject( memdc, hbitmap ); |
601 | ::BitBlt( cdc, x, y, bmp.GetWidth(), bmp.GetHeight(), memdc, 0, 0, SRCCOPY); | |
f5419957 JS |
602 | ::DeleteDC( memdc ); |
603 | } | |
604 | else | |
605 | { | |
606 | // Rather than reproduce wxDC::Blit, let's do it at the wxWin API level | |
607 | wxMemoryDC memDC; | |
608 | memDC.SelectObject(bmp); | |
a23fd0e1 | 609 | |
f5419957 | 610 | /* Not sure if we need this. The mask should leave the |
7bcb11d3 JS |
611 | * masked areas as per the original background of this DC. |
612 | */ | |
613 | /* | |
f5419957 JS |
614 | // There might be transparent areas, so make these |
615 | // the same colour as this DC | |
616 | memDC.SetBackground(* GetBackground()); | |
617 | memDC.Clear(); | |
7bcb11d3 | 618 | */ |
a23fd0e1 | 619 | |
f5419957 | 620 | Blit(x, y, bmp.GetWidth(), bmp.GetHeight(), & memDC, 0, 0, wxCOPY, useMask); |
a23fd0e1 | 621 | |
f5419957 JS |
622 | memDC.SelectObject(wxNullBitmap); |
623 | } | |
624 | } | |
625 | ||
a23fd0e1 VZ |
626 | void wxDC::DoDrawText(const wxString& text, long x, long y) |
627 | { | |
628 | if (m_textForegroundColour.Ok()) | |
629 | SetTextColor(GetHdc(), m_textForegroundColour.GetPixel() ); | |
630 | ||
631 | DWORD old_background = 0; | |
632 | if (m_textBackgroundColour.Ok()) | |
633 | { | |
634 | old_background = SetBkColor(GetHdc(), m_textBackgroundColour.GetPixel() ); | |
635 | } | |
636 | ||
637 | if (m_backgroundMode == wxTRANSPARENT) | |
638 | SetBkMode(GetHdc(), TRANSPARENT); | |
639 | else | |
640 | SetBkMode(GetHdc(), OPAQUE); | |
641 | ||
837e5743 | 642 | (void)TextOut(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), WXSTRINGCAST text, wxStrlen(WXSTRINGCAST text)); |
a23fd0e1 VZ |
643 | |
644 | if (m_textBackgroundColour.Ok()) | |
645 | (void)SetBkColor(GetHdc(), old_background); | |
646 | ||
c45a644e RR |
647 | // background colour is used only for DrawText, otherwise |
648 | // always TRANSPARENT, RR | |
649 | SetBkMode(GetHdc(), TRANSPARENT); | |
650 | ||
a23fd0e1 VZ |
651 | CalcBoundingBox(x, y); |
652 | ||
653 | long w, h; | |
654 | GetTextExtent(text, &w, &h); | |
655 | CalcBoundingBox((x + w), (y + h)); | |
656 | } | |
657 | ||
658 | // --------------------------------------------------------------------------- | |
659 | // set GDI objects | |
660 | // --------------------------------------------------------------------------- | |
661 | ||
662 | void wxDC::SetPalette(const wxPalette& palette) | |
663 | { | |
664 | // Set the old object temporarily, in case the assignment deletes an object | |
665 | // that's not yet selected out. | |
666 | if (m_oldPalette) | |
667 | { | |
668 | ::SelectPalette(GetHdc(), (HPALETTE) m_oldPalette, TRUE); | |
669 | m_oldPalette = 0; | |
670 | } | |
671 | ||
672 | m_palette = palette; | |
673 | ||
674 | if (!m_palette.Ok()) | |
675 | { | |
676 | // Setting a NULL colourmap is a way of restoring | |
677 | // the original colourmap | |
678 | if (m_oldPalette) | |
679 | { | |
680 | ::SelectPalette(GetHdc(), (HPALETTE) m_oldPalette, TRUE); | |
681 | m_oldPalette = 0; | |
682 | } | |
683 | ||
684 | return; | |
685 | } | |
686 | ||
687 | if (m_palette.Ok() && m_palette.GetHPALETTE()) | |
688 | { | |
689 | HPALETTE oldPal = ::SelectPalette(GetHdc(), (HPALETTE) m_palette.GetHPALETTE(), TRUE); | |
690 | if (!m_oldPalette) | |
691 | m_oldPalette = (WXHPALETTE) oldPal; | |
692 | ||
693 | ::RealizePalette(GetHdc()); | |
694 | } | |
695 | } | |
696 | ||
2bda0e17 KB |
697 | void wxDC::SetFont(const wxFont& the_font) |
698 | { | |
7bcb11d3 JS |
699 | // Set the old object temporarily, in case the assignment deletes an object |
700 | // that's not yet selected out. | |
2bda0e17 | 701 | if (m_oldFont) |
34da0970 | 702 | { |
a23fd0e1 | 703 | ::SelectObject(GetHdc(), (HFONT) m_oldFont); |
7bcb11d3 JS |
704 | m_oldFont = 0; |
705 | } | |
a23fd0e1 | 706 | |
7bcb11d3 | 707 | m_font = the_font; |
a23fd0e1 | 708 | |
7bcb11d3 JS |
709 | if (!the_font.Ok()) |
710 | { | |
711 | if (m_oldFont) | |
a23fd0e1 VZ |
712 | ::SelectObject(GetHdc(), (HFONT) m_oldFont); |
713 | m_oldFont = 0; | |
7bcb11d3 | 714 | } |
a23fd0e1 | 715 | |
7bcb11d3 JS |
716 | if (m_font.Ok() && m_font.GetResourceHandle()) |
717 | { | |
a23fd0e1 | 718 | HFONT f = (HFONT) ::SelectObject(GetHdc(), (HFONT) m_font.GetResourceHandle()); |
7bcb11d3 JS |
719 | if (f == (HFONT) NULL) |
720 | { | |
223d09f6 | 721 | wxLogDebug(wxT("::SelectObject failed in wxDC::SetFont.")); |
7bcb11d3 JS |
722 | } |
723 | if (!m_oldFont) | |
724 | m_oldFont = (WXHFONT) f; | |
34da0970 | 725 | } |
2bda0e17 KB |
726 | } |
727 | ||
728 | void wxDC::SetPen(const wxPen& pen) | |
729 | { | |
7bcb11d3 JS |
730 | // Set the old object temporarily, in case the assignment deletes an object |
731 | // that's not yet selected out. | |
2bda0e17 | 732 | if (m_oldPen) |
2bda0e17 | 733 | { |
a23fd0e1 | 734 | ::SelectObject(GetHdc(), (HPEN) m_oldPen); |
7bcb11d3 JS |
735 | m_oldPen = 0; |
736 | } | |
a23fd0e1 | 737 | |
7bcb11d3 | 738 | m_pen = pen; |
a23fd0e1 | 739 | |
7bcb11d3 JS |
740 | if (!m_pen.Ok()) |
741 | { | |
742 | if (m_oldPen) | |
a23fd0e1 VZ |
743 | ::SelectObject(GetHdc(), (HPEN) m_oldPen); |
744 | m_oldPen = 0; | |
7bcb11d3 | 745 | } |
a23fd0e1 | 746 | |
7bcb11d3 JS |
747 | if (m_pen.Ok()) |
748 | { | |
749 | if (m_pen.GetResourceHandle()) | |
750 | { | |
a23fd0e1 | 751 | HPEN p = (HPEN) ::SelectObject(GetHdc(), (HPEN)m_pen.GetResourceHandle()); |
7bcb11d3 JS |
752 | if (!m_oldPen) |
753 | m_oldPen = (WXHPEN) p; | |
754 | } | |
2bda0e17 | 755 | } |
2bda0e17 KB |
756 | } |
757 | ||
758 | void wxDC::SetBrush(const wxBrush& brush) | |
759 | { | |
7bcb11d3 JS |
760 | // Set the old object temporarily, in case the assignment deletes an object |
761 | // that's not yet selected out. | |
2bda0e17 | 762 | if (m_oldBrush) |
2bda0e17 | 763 | { |
a23fd0e1 | 764 | ::SelectObject(GetHdc(), (HBRUSH) m_oldBrush); |
7bcb11d3 JS |
765 | m_oldBrush = 0; |
766 | } | |
a23fd0e1 | 767 | |
7bcb11d3 | 768 | m_brush = brush; |
a23fd0e1 | 769 | |
7bcb11d3 JS |
770 | if (!m_brush.Ok()) |
771 | { | |
772 | if (m_oldBrush) | |
a23fd0e1 VZ |
773 | ::SelectObject(GetHdc(), (HBRUSH) m_oldBrush); |
774 | m_oldBrush = 0; | |
7bcb11d3 | 775 | } |
a23fd0e1 | 776 | |
7bcb11d3 JS |
777 | if (m_brush.Ok()) |
778 | { | |
779 | if (m_brush.GetResourceHandle()) | |
780 | { | |
781 | HBRUSH b = 0; | |
a23fd0e1 | 782 | b = (HBRUSH) ::SelectObject(GetHdc(), (HBRUSH)m_brush.GetResourceHandle()); |
7bcb11d3 JS |
783 | if (!m_oldBrush) |
784 | m_oldBrush = (WXHBRUSH) b; | |
785 | } | |
2bda0e17 | 786 | } |
2bda0e17 KB |
787 | } |
788 | ||
2bda0e17 KB |
789 | void wxDC::SetBackground(const wxBrush& brush) |
790 | { | |
7bcb11d3 | 791 | m_backgroundBrush = brush; |
a23fd0e1 | 792 | |
7bcb11d3 JS |
793 | if (!m_backgroundBrush.Ok()) |
794 | return; | |
a23fd0e1 | 795 | |
7bcb11d3 | 796 | if (m_canvas) |
2bda0e17 | 797 | { |
7bcb11d3 JS |
798 | bool customColours = TRUE; |
799 | // If we haven't specified wxUSER_COLOURS, don't allow the panel/dialog box to | |
800 | // change background colours from the control-panel specified colours. | |
801 | if (m_canvas->IsKindOf(CLASSINFO(wxWindow)) && ((m_canvas->GetWindowStyleFlag() & wxUSER_COLOURS) != wxUSER_COLOURS)) | |
802 | customColours = FALSE; | |
a23fd0e1 | 803 | |
7bcb11d3 JS |
804 | if (customColours) |
805 | { | |
806 | if (m_backgroundBrush.GetStyle()==wxTRANSPARENT) | |
807 | { | |
cc2b7472 | 808 | m_canvas->SetTransparent(TRUE); |
7bcb11d3 JS |
809 | } |
810 | else | |
811 | { | |
812 | // New behaviour, 10/2/99: setting the background brush of a DC | |
813 | // doesn't affect the window background colour. However, | |
814 | // I'm leaving in the transparency setting because it's needed by | |
815 | // various controls (e.g. wxStaticText) to determine whether to draw | |
816 | // transparently or not. TODO: maybe this should be a new function | |
817 | // wxWindow::SetTransparency(). Should that apply to the child itself, or the | |
818 | // parent? | |
819 | // m_canvas->SetBackgroundColour(m_backgroundBrush.GetColour()); | |
cc2b7472 | 820 | m_canvas->SetTransparent(FALSE); |
7bcb11d3 JS |
821 | } |
822 | } | |
823 | } | |
a23fd0e1 | 824 | COLORREF new_color = m_backgroundBrush.GetColour().GetPixel(); |
7bcb11d3 | 825 | { |
a23fd0e1 | 826 | (void)SetBkColor(GetHdc(), new_color); |
2bda0e17 | 827 | } |
2bda0e17 KB |
828 | } |
829 | ||
830 | void wxDC::SetBackgroundMode(int mode) | |
831 | { | |
7bcb11d3 | 832 | m_backgroundMode = mode; |
a23fd0e1 | 833 | |
c45a644e RR |
834 | // SetBackgroundColour now only refers to text background |
835 | // and m_backgroundMode is used there | |
836 | ||
837 | /* | |
7bcb11d3 | 838 | if (m_backgroundMode == wxTRANSPARENT) |
a23fd0e1 | 839 | ::SetBkMode(GetHdc(), TRANSPARENT); |
7bcb11d3 | 840 | else |
c45a644e RR |
841 | ::SetBkMode(GetHdc(), OPAQUE); |
842 | */ | |
2bda0e17 KB |
843 | } |
844 | ||
845 | void wxDC::SetLogicalFunction(int function) | |
846 | { | |
7bcb11d3 | 847 | m_logicalFunction = function; |
a23fd0e1 | 848 | |
7bcb11d3 | 849 | SetRop((WXHDC) m_hDC); |
2bda0e17 KB |
850 | } |
851 | ||
852 | void wxDC::SetRop(WXHDC dc) | |
853 | { | |
7bcb11d3 JS |
854 | if (!dc || m_logicalFunction < 0) |
855 | return; | |
a23fd0e1 | 856 | |
7bcb11d3 JS |
857 | int c_rop; |
858 | // These may be wrong | |
859 | switch (m_logicalFunction) | |
860 | { | |
861 | // case wxXOR: c_rop = R2_XORPEN; break; | |
2bda0e17 KB |
862 | case wxXOR: c_rop = R2_NOTXORPEN; break; |
863 | case wxINVERT: c_rop = R2_NOT; break; | |
864 | case wxOR_REVERSE: c_rop = R2_MERGEPENNOT; break; | |
865 | case wxAND_REVERSE: c_rop = R2_MASKPENNOT; break; | |
866 | case wxCLEAR: c_rop = R2_WHITE; break; | |
867 | case wxSET: c_rop = R2_BLACK; break; | |
868 | case wxSRC_INVERT: c_rop = R2_NOTCOPYPEN; break; | |
869 | case wxOR_INVERT: c_rop = R2_MERGENOTPEN; break; | |
870 | case wxAND: c_rop = R2_MASKPEN; break; | |
871 | case wxOR: c_rop = R2_MERGEPEN; break; | |
872 | case wxAND_INVERT: c_rop = R2_MASKNOTPEN; break; | |
873 | case wxEQUIV: | |
874 | case wxNAND: | |
875 | case wxCOPY: | |
876 | default: | |
7bcb11d3 JS |
877 | c_rop = R2_COPYPEN; break; |
878 | } | |
879 | SetROP2((HDC) dc, c_rop); | |
2bda0e17 KB |
880 | } |
881 | ||
882 | bool wxDC::StartDoc(const wxString& message) | |
883 | { | |
7bcb11d3 | 884 | // We might be previewing, so return TRUE to let it continue. |
2bda0e17 | 885 | return TRUE; |
2bda0e17 KB |
886 | } |
887 | ||
a23fd0e1 | 888 | void wxDC::EndDoc() |
2bda0e17 | 889 | { |
2bda0e17 KB |
890 | } |
891 | ||
a23fd0e1 | 892 | void wxDC::StartPage() |
2bda0e17 | 893 | { |
2bda0e17 KB |
894 | } |
895 | ||
a23fd0e1 | 896 | void wxDC::EndPage() |
2bda0e17 | 897 | { |
2bda0e17 KB |
898 | } |
899 | ||
a23fd0e1 VZ |
900 | // --------------------------------------------------------------------------- |
901 | // text metrics | |
902 | // --------------------------------------------------------------------------- | |
903 | ||
904 | long wxDC::GetCharHeight() const | |
2bda0e17 | 905 | { |
7bcb11d3 | 906 | TEXTMETRIC lpTextMetric; |
a23fd0e1 VZ |
907 | |
908 | GetTextMetrics(GetHdc(), &lpTextMetric); | |
909 | ||
7bcb11d3 | 910 | return YDEV2LOGREL(lpTextMetric.tmHeight); |
2bda0e17 KB |
911 | } |
912 | ||
a23fd0e1 | 913 | long wxDC::GetCharWidth() const |
2bda0e17 | 914 | { |
7bcb11d3 | 915 | TEXTMETRIC lpTextMetric; |
a23fd0e1 VZ |
916 | |
917 | GetTextMetrics(GetHdc(), &lpTextMetric); | |
918 | ||
7bcb11d3 | 919 | return XDEV2LOGREL(lpTextMetric.tmAveCharWidth); |
2bda0e17 KB |
920 | } |
921 | ||
922 | void wxDC::GetTextExtent(const wxString& string, long *x, long *y, | |
a23fd0e1 VZ |
923 | long *descent, long *externalLeading, |
924 | wxFont *theFont) const | |
2bda0e17 | 925 | { |
7bcb11d3 JS |
926 | wxFont *fontToUse = (wxFont*) theFont; |
927 | if (!fontToUse) | |
928 | fontToUse = (wxFont*) &m_font; | |
a23fd0e1 | 929 | |
7bcb11d3 JS |
930 | SIZE sizeRect; |
931 | TEXTMETRIC tm; | |
a23fd0e1 | 932 | |
837e5743 | 933 | GetTextExtentPoint(GetHdc(), WXSTRINGCAST string, wxStrlen(WXSTRINGCAST string), &sizeRect); |
a23fd0e1 VZ |
934 | GetTextMetrics(GetHdc(), &tm); |
935 | ||
7bcb11d3 JS |
936 | if (x) *x = XDEV2LOGREL(sizeRect.cx); |
937 | if (y) *y = YDEV2LOGREL(sizeRect.cy); | |
938 | if (descent) *descent = tm.tmDescent; | |
939 | if (externalLeading) *externalLeading = tm.tmExternalLeading; | |
2bda0e17 KB |
940 | } |
941 | ||
942 | void wxDC::SetMapMode(int mode) | |
943 | { | |
7bcb11d3 | 944 | m_mappingMode = mode; |
a23fd0e1 | 945 | |
7bcb11d3 JS |
946 | int pixel_width = 0; |
947 | int pixel_height = 0; | |
948 | int mm_width = 0; | |
949 | int mm_height = 0; | |
a23fd0e1 VZ |
950 | |
951 | pixel_width = GetDeviceCaps(GetHdc(), HORZRES); | |
952 | pixel_height = GetDeviceCaps(GetHdc(), VERTRES); | |
953 | mm_width = GetDeviceCaps(GetHdc(), HORZSIZE); | |
954 | mm_height = GetDeviceCaps(GetHdc(), VERTSIZE); | |
955 | ||
7bcb11d3 | 956 | if ((pixel_width == 0) || (pixel_height == 0) || (mm_width == 0) || (mm_height == 0)) |
2bda0e17 | 957 | { |
7bcb11d3 | 958 | return; |
2bda0e17 | 959 | } |
a23fd0e1 | 960 | |
7bcb11d3 JS |
961 | double mm2pixelsX = pixel_width/mm_width; |
962 | double mm2pixelsY = pixel_height/mm_height; | |
a23fd0e1 | 963 | |
7bcb11d3 | 964 | switch (mode) |
2bda0e17 | 965 | { |
7bcb11d3 JS |
966 | case wxMM_TWIPS: |
967 | { | |
968 | m_logicalScaleX = (twips2mm * mm2pixelsX); | |
969 | m_logicalScaleY = (twips2mm * mm2pixelsY); | |
970 | break; | |
971 | } | |
972 | case wxMM_POINTS: | |
973 | { | |
974 | m_logicalScaleX = (pt2mm * mm2pixelsX); | |
975 | m_logicalScaleY = (pt2mm * mm2pixelsY); | |
976 | break; | |
977 | } | |
e3065973 | 978 | case wxMM_METRIC: |
7bcb11d3 JS |
979 | { |
980 | m_logicalScaleX = mm2pixelsX; | |
981 | m_logicalScaleY = mm2pixelsY; | |
982 | break; | |
983 | } | |
e3065973 | 984 | case wxMM_LOMETRIC: |
7bcb11d3 JS |
985 | { |
986 | m_logicalScaleX = (mm2pixelsX/10.0); | |
987 | m_logicalScaleY = (mm2pixelsY/10.0); | |
988 | break; | |
989 | } | |
2bda0e17 | 990 | default: |
e3065973 | 991 | case wxMM_TEXT: |
7bcb11d3 JS |
992 | { |
993 | m_logicalScaleX = 1.0; | |
994 | m_logicalScaleY = 1.0; | |
995 | break; | |
996 | } | |
2bda0e17 | 997 | } |
a23fd0e1 VZ |
998 | |
999 | if (::GetMapMode(GetHdc()) != MM_ANISOTROPIC) | |
1000 | ::SetMapMode(GetHdc(), MM_ANISOTROPIC); | |
1001 | ||
1002 | SetViewportExtEx(GetHdc(), VIEWPORT_EXTENT, VIEWPORT_EXTENT, NULL); | |
7bcb11d3 JS |
1003 | m_windowExtX = (int)MS_XDEV2LOGREL(VIEWPORT_EXTENT); |
1004 | m_windowExtY = (int)MS_YDEV2LOGREL(VIEWPORT_EXTENT); | |
a23fd0e1 VZ |
1005 | ::SetWindowExtEx(GetHdc(), m_windowExtX, m_windowExtY, NULL); |
1006 | ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX, (int)m_deviceOriginY, NULL); | |
1007 | ::SetWindowOrgEx(GetHdc(), (int)m_logicalOriginX, (int)m_logicalOriginY, NULL); | |
2bda0e17 KB |
1008 | } |
1009 | ||
1010 | void wxDC::SetUserScale(double x, double y) | |
1011 | { | |
7bcb11d3 JS |
1012 | m_userScaleX = x; |
1013 | m_userScaleY = y; | |
a23fd0e1 | 1014 | |
7bcb11d3 | 1015 | SetMapMode(m_mappingMode); |
2bda0e17 KB |
1016 | } |
1017 | ||
6f65e337 JS |
1018 | void wxDC::SetAxisOrientation(bool xLeftRight, bool yBottomUp) |
1019 | { | |
7bcb11d3 JS |
1020 | m_signX = xLeftRight ? 1 : -1; |
1021 | m_signY = yBottomUp ? -1 : 1; | |
a23fd0e1 | 1022 | |
7bcb11d3 | 1023 | SetMapMode(m_mappingMode); |
6f65e337 JS |
1024 | } |
1025 | ||
2bda0e17 KB |
1026 | void wxDC::SetSystemScale(double x, double y) |
1027 | { | |
a23fd0e1 VZ |
1028 | m_scaleX = x; |
1029 | m_scaleY = y; | |
1030 | ||
7bcb11d3 | 1031 | SetMapMode(m_mappingMode); |
2bda0e17 KB |
1032 | } |
1033 | ||
1034 | void wxDC::SetLogicalOrigin(long x, long y) | |
1035 | { | |
7bcb11d3 JS |
1036 | m_logicalOriginX = x; |
1037 | m_logicalOriginY = y; | |
a23fd0e1 VZ |
1038 | |
1039 | ::SetWindowOrgEx(GetHdc(), (int)m_logicalOriginX, (int)m_logicalOriginY, NULL); | |
2bda0e17 KB |
1040 | } |
1041 | ||
1042 | void wxDC::SetDeviceOrigin(long x, long y) | |
1043 | { | |
7bcb11d3 JS |
1044 | m_deviceOriginX = x; |
1045 | m_deviceOriginY = y; | |
2bda0e17 | 1046 | |
a23fd0e1 | 1047 | ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX, (int)m_deviceOriginY, NULL); |
2bda0e17 KB |
1048 | } |
1049 | ||
a23fd0e1 VZ |
1050 | // --------------------------------------------------------------------------- |
1051 | // coordinates transformations | |
1052 | // --------------------------------------------------------------------------- | |
2bda0e17 | 1053 | |
a23fd0e1 | 1054 | long wxDCBase::DeviceToLogicalX(long x) const |
2bda0e17 | 1055 | { |
a23fd0e1 | 1056 | return (long) (((x) - m_deviceOriginX)/(m_logicalScaleX*m_userScaleX*m_signX*m_scaleX) - m_logicalOriginX); |
2bda0e17 KB |
1057 | } |
1058 | ||
a23fd0e1 | 1059 | long wxDCBase::DeviceToLogicalXRel(long x) const |
2bda0e17 | 1060 | { |
a23fd0e1 | 1061 | return (long) ((x)/(m_logicalScaleX*m_userScaleX*m_signX*m_scaleX)); |
2bda0e17 KB |
1062 | } |
1063 | ||
a23fd0e1 | 1064 | long wxDCBase::DeviceToLogicalY(long y) const |
2bda0e17 | 1065 | { |
a23fd0e1 | 1066 | return (long) (((y) - m_deviceOriginY)/(m_logicalScaleY*m_userScaleY*m_signY*m_scaleY) - m_logicalOriginY); |
2bda0e17 KB |
1067 | } |
1068 | ||
a23fd0e1 | 1069 | long wxDCBase::DeviceToLogicalYRel(long y) const |
2bda0e17 | 1070 | { |
a23fd0e1 | 1071 | return (long) ((y)/(m_logicalScaleY*m_userScaleY*m_signY*m_scaleY)); |
2bda0e17 KB |
1072 | } |
1073 | ||
a23fd0e1 | 1074 | long wxDCBase::LogicalToDeviceX(long x) const |
2bda0e17 | 1075 | { |
a2b0fa12 | 1076 | return (long) ((x - m_logicalOriginX)*m_logicalScaleX*m_userScaleX*m_signX*m_scaleX + m_deviceOriginX); |
2bda0e17 KB |
1077 | } |
1078 | ||
a23fd0e1 | 1079 | long wxDCBase::LogicalToDeviceXRel(long x) const |
2bda0e17 | 1080 | { |
a2b0fa12 | 1081 | return (long) (x*m_logicalScaleX*m_userScaleX*m_signX*m_scaleX); |
2bda0e17 KB |
1082 | } |
1083 | ||
a23fd0e1 | 1084 | long wxDCBase::LogicalToDeviceY(long y) const |
2bda0e17 | 1085 | { |
a2b0fa12 | 1086 | return (long) ((y - m_logicalOriginY)*m_logicalScaleY*m_userScaleY*m_signY*m_scaleY + m_deviceOriginY); |
2bda0e17 KB |
1087 | } |
1088 | ||
a23fd0e1 | 1089 | long wxDCBase::LogicalToDeviceYRel(long y) const |
2bda0e17 | 1090 | { |
a2b0fa12 | 1091 | return (long) (y*m_logicalScaleY*m_userScaleY*m_signY*m_scaleY); |
2bda0e17 KB |
1092 | } |
1093 | ||
a23fd0e1 VZ |
1094 | // --------------------------------------------------------------------------- |
1095 | // bit blit | |
1096 | // --------------------------------------------------------------------------- | |
1097 | bool wxDC::DoBlit(long xdest, long ydest, long width, long height, | |
1098 | wxDC *source, long xsrc, long ysrc, int rop, bool useMask) | |
2bda0e17 | 1099 | { |
7bcb11d3 JS |
1100 | long xdest1 = xdest; |
1101 | long ydest1 = ydest; | |
1102 | long xsrc1 = xsrc; | |
1103 | long ysrc1 = ysrc; | |
a23fd0e1 | 1104 | |
7bcb11d3 JS |
1105 | // Chris Breeze 18/5/98: use text foreground/background colours |
1106 | // when blitting from 1-bit bitmaps | |
a23fd0e1 VZ |
1107 | COLORREF old_textground = ::GetTextColor(GetHdc()); |
1108 | COLORREF old_background = ::GetBkColor(GetHdc()); | |
7bcb11d3 JS |
1109 | if (m_textForegroundColour.Ok()) |
1110 | { | |
a23fd0e1 | 1111 | ::SetTextColor(GetHdc(), m_textForegroundColour.GetPixel() ); |
7bcb11d3 JS |
1112 | } |
1113 | if (m_textBackgroundColour.Ok()) | |
1114 | { | |
a23fd0e1 | 1115 | ::SetBkColor(GetHdc(), m_textBackgroundColour.GetPixel() ); |
7bcb11d3 | 1116 | } |
a23fd0e1 | 1117 | |
7bcb11d3 JS |
1118 | DWORD dwRop = rop == wxCOPY ? SRCCOPY : |
1119 | rop == wxCLEAR ? WHITENESS : | |
1120 | rop == wxSET ? BLACKNESS : | |
1121 | rop == wxINVERT ? DSTINVERT : | |
1122 | rop == wxAND ? MERGECOPY : | |
1123 | rop == wxOR ? MERGEPAINT : | |
1124 | rop == wxSRC_INVERT ? NOTSRCCOPY : | |
1125 | rop == wxXOR ? SRCINVERT : | |
1126 | rop == wxOR_REVERSE ? MERGEPAINT : | |
1127 | rop == wxAND_REVERSE ? SRCERASE : | |
1128 | rop == wxSRC_OR ? SRCPAINT : | |
1129 | rop == wxSRC_AND ? SRCAND : | |
1130 | SRCCOPY; | |
a23fd0e1 | 1131 | |
7bcb11d3 JS |
1132 | bool success = TRUE; |
1133 | if (useMask && source->m_selectedBitmap.Ok() && source->m_selectedBitmap.GetMask()) | |
1134 | { | |
a23fd0e1 | 1135 | |
2bda0e17 | 1136 | #if 0 // __WIN32__ |
7bcb11d3 | 1137 | // Not implemented under Win95 (or maybe a specific device?) |
a23fd0e1 | 1138 | if (MaskBlt(GetHdc(), xdest1, ydest1, (int)width, (int)height, |
2bda0e17 KB |
1139 | (HDC) source->m_hDC, xsrc1, ysrc1, (HBITMAP) source->m_selectedBitmap.GetMask()->GetMaskBitmap(), |
1140 | 0, 0, 0xAACC0020)) | |
7bcb11d3 JS |
1141 | { |
1142 | // Success | |
1143 | } | |
1144 | else | |
2bda0e17 | 1145 | #endif |
7bcb11d3 JS |
1146 | { |
1147 | // Old code | |
2bda0e17 | 1148 | #if 0 |
7bcb11d3 JS |
1149 | HDC dc_mask = CreateCompatibleDC((HDC) source->m_hDC); |
1150 | ::SelectObject(dc_mask, (HBITMAP) source->m_selectedBitmap.GetMask()->GetMaskBitmap()); | |
a23fd0e1 | 1151 | success = (BitBlt(GetHdc(), xdest1, ydest1, (int)width, (int)height, |
7bcb11d3 | 1152 | dc_mask, xsrc1, ysrc1, 0x00220326 /* NOTSRCAND */) != 0); |
a23fd0e1 | 1153 | success = (BitBlt(GetHdc(), xdest1, ydest1, (int)width, (int)height, |
7bcb11d3 JS |
1154 | (HDC) source->m_hDC, xsrc1, ysrc1, SRCPAINT) != 0); |
1155 | ::SelectObject(dc_mask, 0); | |
1156 | ::DeleteDC(dc_mask); | |
2bda0e17 | 1157 | #endif |
7bcb11d3 JS |
1158 | // New code from Chris Breeze, 15/7/98 |
1159 | // Blit bitmap with mask | |
a23fd0e1 | 1160 | |
7bcb11d3 JS |
1161 | if (IsKindOf(CLASSINFO(wxPrinterDC))) |
1162 | { | |
1163 | // If we are printing source colours are screen colours | |
1164 | // not printer colours and so we need copy the bitmap | |
1165 | // pixel by pixel. | |
1166 | RECT rect; | |
1167 | HDC dc_mask = ::CreateCompatibleDC((HDC) source->m_hDC); | |
1168 | HDC dc_src = (HDC) source->m_hDC; | |
a23fd0e1 | 1169 | |
7bcb11d3 JS |
1170 | ::SelectObject(dc_mask, (HBITMAP) source->m_selectedBitmap.GetMask()->GetMaskBitmap()); |
1171 | for (int x = 0; x < width; x++) | |
1172 | { | |
1173 | for (int y = 0; y < height; y++) | |
1174 | { | |
1175 | COLORREF cref = ::GetPixel(dc_mask, x, y); | |
1176 | if (cref) | |
1177 | { | |
1178 | HBRUSH brush = ::CreateSolidBrush(::GetPixel(dc_src, x, y)); | |
1179 | rect.left = xdest1 + x; rect.right = rect.left + 1; | |
1180 | rect.top = ydest1 + y; rect.bottom = rect.top + 1; | |
a23fd0e1 | 1181 | ::FillRect(GetHdc(), &rect, brush); |
7bcb11d3 JS |
1182 | ::DeleteObject(brush); |
1183 | } | |
1184 | } | |
1185 | } | |
1186 | ::SelectObject(dc_mask, 0); | |
1187 | ::DeleteDC(dc_mask); | |
1188 | } | |
1189 | else | |
1190 | { | |
1191 | // create a temp buffer bitmap and DCs to access it and the mask | |
1192 | HDC dc_mask = ::CreateCompatibleDC((HDC) source->m_hDC); | |
a23fd0e1 VZ |
1193 | HDC dc_buffer = ::CreateCompatibleDC(GetHdc()); |
1194 | HBITMAP buffer_bmap = ::CreateCompatibleBitmap(GetHdc(), width, height); | |
7bcb11d3 JS |
1195 | ::SelectObject(dc_mask, (HBITMAP) source->m_selectedBitmap.GetMask()->GetMaskBitmap()); |
1196 | ::SelectObject(dc_buffer, buffer_bmap); | |
a23fd0e1 | 1197 | |
7bcb11d3 JS |
1198 | // copy dest to buffer |
1199 | ::BitBlt(dc_buffer, 0, 0, (int)width, (int)height, | |
a23fd0e1 VZ |
1200 | GetHdc(), xdest1, ydest1, SRCCOPY); |
1201 | ||
7bcb11d3 JS |
1202 | // copy src to buffer using selected raster op |
1203 | ::BitBlt(dc_buffer, 0, 0, (int)width, (int)height, | |
1204 | (HDC) source->m_hDC, xsrc1, ysrc1, dwRop); | |
a23fd0e1 | 1205 | |
7bcb11d3 | 1206 | // set masked area in buffer to BLACK (pixel value 0) |
a23fd0e1 VZ |
1207 | COLORREF prevBkCol = ::SetBkColor(GetHdc(), RGB(255, 255, 255)); |
1208 | COLORREF prevCol = ::SetTextColor(GetHdc(), RGB(0, 0, 0)); | |
7bcb11d3 JS |
1209 | ::BitBlt(dc_buffer, 0, 0, (int)width, (int)height, |
1210 | dc_mask, xsrc1, ysrc1, SRCAND); | |
a23fd0e1 | 1211 | |
7bcb11d3 | 1212 | // set unmasked area in dest to BLACK |
a23fd0e1 VZ |
1213 | ::SetBkColor(GetHdc(), RGB(0, 0, 0)); |
1214 | ::SetTextColor(GetHdc(), RGB(255, 255, 255)); | |
1215 | ::BitBlt(GetHdc(), xdest1, ydest1, (int)width, (int)height, | |
7bcb11d3 | 1216 | dc_mask, xsrc1, ysrc1, SRCAND); |
a23fd0e1 VZ |
1217 | ::SetBkColor(GetHdc(), prevBkCol); // restore colours to original values |
1218 | ::SetTextColor(GetHdc(), prevCol); | |
1219 | ||
7bcb11d3 | 1220 | // OR buffer to dest |
a23fd0e1 | 1221 | success = (::BitBlt(GetHdc(), xdest1, ydest1, (int)width, (int)height, |
7bcb11d3 | 1222 | dc_buffer, 0, 0, SRCPAINT) != 0); |
a23fd0e1 | 1223 | |
7bcb11d3 JS |
1224 | // tidy up temporary DCs and bitmap |
1225 | ::SelectObject(dc_mask, 0); | |
1226 | ::DeleteDC(dc_mask); | |
1227 | ::SelectObject(dc_buffer, 0); | |
1228 | ::DeleteDC(dc_buffer); | |
1229 | ::DeleteObject(buffer_bmap); | |
1230 | } | |
1231 | } | |
1232 | } | |
1233 | else | |
1234 | { | |
fd3f686c VZ |
1235 | if (IsKindOf(CLASSINFO(wxPrinterDC))) |
1236 | { | |
7bcb11d3 | 1237 | // If we are printing, source colours are screen colours |
fd3f686c VZ |
1238 | // not printer colours and so we need copy the bitmap |
1239 | // pixel by pixel. | |
fd3f686c | 1240 | HDC dc_src = (HDC) source->m_hDC; |
7bcb11d3 | 1241 | RECT rect; |
fd3f686c VZ |
1242 | for (int x = 0; x < width; x++) |
1243 | { | |
1244 | for (int y = 0; y < height; y++) | |
1245 | { | |
7bcb11d3 JS |
1246 | HBRUSH brush = ::CreateSolidBrush(::GetPixel(dc_src, x, y)); |
1247 | rect.left = xdest1 + x; rect.right = rect.left + 1; | |
1248 | rect.top = ydest1 + y; rect.bottom = rect.top + 1; | |
a23fd0e1 | 1249 | ::FillRect(GetHdc(), &rect, brush); |
7bcb11d3 | 1250 | ::DeleteObject(brush); |
fd3f686c VZ |
1251 | } |
1252 | } | |
fd3f686c VZ |
1253 | } |
1254 | else | |
1255 | { | |
a23fd0e1 | 1256 | success = (BitBlt(GetHdc(), xdest1, ydest1, (int)width, (int)height, (HDC) source->m_hDC, |
7bcb11d3 | 1257 | xsrc1, ysrc1, dwRop) != 0); |
fd3f686c | 1258 | } |
400735a8 | 1259 | } |
a23fd0e1 VZ |
1260 | ::SetTextColor(GetHdc(), old_textground); |
1261 | ::SetBkColor(GetHdc(), old_background); | |
2bda0e17 | 1262 | |
a23fd0e1 | 1263 | return success; |
2bda0e17 KB |
1264 | } |
1265 | ||
a23fd0e1 | 1266 | void wxDC::DoGetSize(int *w, int *h) const |
2bda0e17 | 1267 | { |
a23fd0e1 VZ |
1268 | if ( w ) *w = ::GetDeviceCaps(GetHdc(), HORZRES); |
1269 | if ( h ) *h = ::GetDeviceCaps(GetHdc(), VERTRES); | |
2bda0e17 KB |
1270 | } |
1271 | ||
a23fd0e1 | 1272 | void wxDC::DoGetSizeMM(int *w, int *h) const |
2bda0e17 | 1273 | { |
a23fd0e1 VZ |
1274 | if ( w ) *w = ::GetDeviceCaps(GetHdc(), HORZSIZE); |
1275 | if ( h ) *h = ::GetDeviceCaps(GetHdc(), VERTSIZE); | |
7bcb11d3 | 1276 | } |
2bda0e17 | 1277 | |
a23fd0e1 | 1278 | wxSize wxDC::GetPPI() const |
7bcb11d3 | 1279 | { |
a23fd0e1 VZ |
1280 | int x = ::GetDeviceCaps(GetHdc(), LOGPIXELSX); |
1281 | int y = ::GetDeviceCaps(GetHdc(), LOGPIXELSY); | |
2bda0e17 | 1282 | |
a23fd0e1 | 1283 | return wxSize(x, y); |
2bda0e17 KB |
1284 | } |
1285 | ||
2bda0e17 KB |
1286 | // For use by wxWindows only, unless custom units are required. |
1287 | void wxDC::SetLogicalScale(double x, double y) | |
1288 | { | |
7bcb11d3 JS |
1289 | m_logicalScaleX = x; |
1290 | m_logicalScaleY = y; | |
2bda0e17 KB |
1291 | } |
1292 | ||
2bda0e17 | 1293 | #if WXWIN_COMPATIBILITY |
a23fd0e1 | 1294 | void wxDC::DoGetTextExtent(const wxString& string, float *x, float *y, |
7bcb11d3 JS |
1295 | float *descent, float *externalLeading, |
1296 | wxFont *theFont, bool use16bit) const | |
2bda0e17 KB |
1297 | { |
1298 | long x1, y1, descent1, externalLeading1; | |
fd3f686c VZ |
1299 | GetTextExtent(string, & x1, & y1, & descent1, & externalLeading1, theFont, use16bit); |
1300 | *x = x1; *y = y1; | |
2bda0e17 KB |
1301 | if (descent) |
1302 | *descent = descent1; | |
1303 | if (externalLeading) | |
1304 | *externalLeading = externalLeading1; | |
1305 | } | |
1306 | #endif | |
8b9518ee | 1307 | |
a23fd0e1 VZ |
1308 | // --------------------------------------------------------------------------- |
1309 | // spline drawing code | |
1310 | // --------------------------------------------------------------------------- | |
7b46ecac | 1311 | |
dfad0599 JS |
1312 | #if wxUSE_SPLINES |
1313 | ||
dfad0599 JS |
1314 | class wxSpline: public wxObject |
1315 | { | |
7bcb11d3 JS |
1316 | public: |
1317 | int type; | |
1318 | wxList *points; | |
a23fd0e1 | 1319 | |
7bcb11d3 | 1320 | wxSpline(wxList *list); |
a23fd0e1 VZ |
1321 | void DeletePoints(); |
1322 | ||
7bcb11d3 | 1323 | // Doesn't delete points |
a23fd0e1 | 1324 | ~wxSpline(); |
dfad0599 JS |
1325 | }; |
1326 | ||
dfad0599 JS |
1327 | void wx_draw_open_spline(wxDC *dc, wxSpline *spline); |
1328 | ||
1329 | void wx_quadratic_spline(double a1, double b1, double a2, double b2, | |
1330 | double a3, double b3, double a4, double b4); | |
a23fd0e1 | 1331 | void wx_clear_stack(); |
dfad0599 | 1332 | int wx_spline_pop(double *x1, double *y1, double *x2, double *y2, double *x3, |
7bcb11d3 | 1333 | double *y3, double *x4, double *y4); |
dfad0599 | 1334 | void wx_spline_push(double x1, double y1, double x2, double y2, double x3, double y3, |
7bcb11d3 | 1335 | double x4, double y4); |
dfad0599 JS |
1336 | static bool wx_spline_add_point(double x, double y); |
1337 | static void wx_spline_draw_point_array(wxDC *dc); | |
1338 | wxSpline *wx_make_spline(int x1, int y1, int x2, int y2, int x3, int y3); | |
1339 | ||
a23fd0e1 | 1340 | void wxDC::DoDrawSpline(wxList *list) |
dfad0599 | 1341 | { |
7bcb11d3 | 1342 | wxSpline spline(list); |
a23fd0e1 | 1343 | |
7bcb11d3 | 1344 | wx_draw_open_spline(this, &spline); |
dfad0599 JS |
1345 | } |
1346 | ||
dfad0599 JS |
1347 | wxList wx_spline_point_list; |
1348 | ||
1349 | void wx_draw_open_spline(wxDC *dc, wxSpline *spline) | |
1350 | { | |
1351 | wxPoint *p; | |
1352 | double cx1, cy1, cx2, cy2, cx3, cy3, cx4, cy4; | |
1353 | double x1, y1, x2, y2; | |
a23fd0e1 | 1354 | |
dfad0599 JS |
1355 | wxNode *node = spline->points->First(); |
1356 | p = (wxPoint *)node->Data(); | |
a23fd0e1 | 1357 | |
dfad0599 JS |
1358 | x1 = p->x; |
1359 | y1 = p->y; | |
a23fd0e1 | 1360 | |
dfad0599 JS |
1361 | node = node->Next(); |
1362 | p = (wxPoint *)node->Data(); | |
a23fd0e1 | 1363 | |
dfad0599 JS |
1364 | x2 = p->x; |
1365 | y2 = p->y; | |
1366 | cx1 = (double)((x1 + x2) / 2); | |
1367 | cy1 = (double)((y1 + y2) / 2); | |
1368 | cx2 = (double)((cx1 + x2) / 2); | |
1369 | cy2 = (double)((cy1 + y2) / 2); | |
a23fd0e1 | 1370 | |
dfad0599 | 1371 | wx_spline_add_point(x1, y1); |
a23fd0e1 | 1372 | |
dfad0599 JS |
1373 | while ((node = node->Next()) != NULL) |
1374 | { | |
1375 | p = (wxPoint *)node->Data(); | |
7bcb11d3 JS |
1376 | x1 = x2; |
1377 | y1 = y2; | |
1378 | x2 = p->x; | |
1379 | y2 = p->y; | |
dfad0599 JS |
1380 | cx4 = (double)(x1 + x2) / 2; |
1381 | cy4 = (double)(y1 + y2) / 2; | |
1382 | cx3 = (double)(x1 + cx4) / 2; | |
1383 | cy3 = (double)(y1 + cy4) / 2; | |
a23fd0e1 | 1384 | |
dfad0599 | 1385 | wx_quadratic_spline(cx1, cy1, cx2, cy2, cx3, cy3, cx4, cy4); |
a23fd0e1 | 1386 | |
7bcb11d3 JS |
1387 | cx1 = cx4; |
1388 | cy1 = cy4; | |
dfad0599 JS |
1389 | cx2 = (double)(cx1 + x2) / 2; |
1390 | cy2 = (double)(cy1 + y2) / 2; | |
1391 | } | |
a23fd0e1 | 1392 | |
dfad0599 JS |
1393 | wx_spline_add_point((double)wx_round(cx1), (double)wx_round(cy1)); |
1394 | wx_spline_add_point(x2, y2); | |
a23fd0e1 | 1395 | |
dfad0599 | 1396 | wx_spline_draw_point_array(dc); |
a23fd0e1 | 1397 | |
dfad0599 JS |
1398 | } |
1399 | ||
1400 | /********************* CURVES FOR SPLINES ***************************** | |
1401 | ||
7bcb11d3 | 1402 | The following spline drawing routine is from |
a23fd0e1 | 1403 | |
fd3f686c VZ |
1404 | "An Algorithm for High-Speed Curve Generation" |
1405 | by George Merrill Chaikin, | |
1406 | Computer Graphics and Image Processing, 3, Academic Press, | |
1407 | 1974, 346-349. | |
a23fd0e1 | 1408 | |
7bcb11d3 | 1409 | and |
a23fd0e1 | 1410 | |
7bcb11d3 JS |
1411 | "On Chaikin's Algorithm" by R. F. Riesenfeld, |
1412 | Computer Graphics and Image Processing, 4, Academic Press, | |
1413 | 1975, 304-310. | |
a23fd0e1 | 1414 | |
dfad0599 JS |
1415 | ***********************************************************************/ |
1416 | ||
fd3f686c VZ |
1417 | #define half(z1, z2) ((z1+z2)/2.0) |
1418 | #define THRESHOLD 5 | |
dfad0599 JS |
1419 | |
1420 | /* iterative version */ | |
1421 | ||
1422 | void wx_quadratic_spline(double a1, double b1, double a2, double b2, double a3, double b3, double a4, | |
7bcb11d3 | 1423 | double b4) |
dfad0599 JS |
1424 | { |
1425 | register double xmid, ymid; | |
1426 | double x1, y1, x2, y2, x3, y3, x4, y4; | |
a23fd0e1 | 1427 | |
dfad0599 JS |
1428 | wx_clear_stack(); |
1429 | wx_spline_push(a1, b1, a2, b2, a3, b3, a4, b4); | |
a23fd0e1 | 1430 | |
dfad0599 JS |
1431 | while (wx_spline_pop(&x1, &y1, &x2, &y2, &x3, &y3, &x4, &y4)) { |
1432 | xmid = (double)half(x2, x3); | |
1433 | ymid = (double)half(y2, y3); | |
7bcb11d3 JS |
1434 | if (fabs(x1 - xmid) < THRESHOLD && fabs(y1 - ymid) < THRESHOLD && |
1435 | fabs(xmid - x4) < THRESHOLD && fabs(ymid - y4) < THRESHOLD) { | |
dfad0599 JS |
1436 | wx_spline_add_point((double)wx_round(x1), (double)wx_round(y1)); |
1437 | wx_spline_add_point((double)wx_round(xmid), (double)wx_round(ymid)); | |
7bcb11d3 | 1438 | } else { |
dfad0599 | 1439 | wx_spline_push(xmid, ymid, (double)half(xmid, x3), (double)half(ymid, y3), |
7bcb11d3 | 1440 | (double)half(x3, x4), (double)half(y3, y4), x4, y4); |
dfad0599 | 1441 | wx_spline_push(x1, y1, (double)half(x1, x2), (double)half(y1, y2), |
7bcb11d3 JS |
1442 | (double)half(x2, xmid), (double)half(y2, ymid), xmid, ymid); |
1443 | } | |
dfad0599 JS |
1444 | } |
1445 | } | |
1446 | ||
1447 | ||
1448 | /* utilities used by spline drawing routines */ | |
1449 | ||
1450 | ||
1451 | typedef struct wx_spline_stack_struct { | |
1452 | double x1, y1, x2, y2, x3, y3, x4, y4; | |
1453 | } | |
7bcb11d3 | 1454 | Stack; |
dfad0599 JS |
1455 | |
1456 | #define SPLINE_STACK_DEPTH 20 | |
1457 | static Stack wx_spline_stack[SPLINE_STACK_DEPTH]; | |
1458 | static Stack *wx_stack_top; | |
1459 | static int wx_stack_count; | |
1460 | ||
a23fd0e1 | 1461 | void wx_clear_stack() |
dfad0599 JS |
1462 | { |
1463 | wx_stack_top = wx_spline_stack; | |
1464 | wx_stack_count = 0; | |
1465 | } | |
1466 | ||
1467 | void wx_spline_push(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4) | |
1468 | { | |
1469 | wx_stack_top->x1 = x1; | |
1470 | wx_stack_top->y1 = y1; | |
1471 | wx_stack_top->x2 = x2; | |
1472 | wx_stack_top->y2 = y2; | |
1473 | wx_stack_top->x3 = x3; | |
1474 | wx_stack_top->y3 = y3; | |
1475 | wx_stack_top->x4 = x4; | |
1476 | wx_stack_top->y4 = y4; | |
1477 | wx_stack_top++; | |
1478 | wx_stack_count++; | |
1479 | } | |
1480 | ||
1481 | int wx_spline_pop(double *x1, double *y1, double *x2, double *y2, | |
1482 | double *x3, double *y3, double *x4, double *y4) | |
1483 | { | |
1484 | if (wx_stack_count == 0) | |
7bcb11d3 | 1485 | return (0); |
dfad0599 JS |
1486 | wx_stack_top--; |
1487 | wx_stack_count--; | |
1488 | *x1 = wx_stack_top->x1; | |
1489 | *y1 = wx_stack_top->y1; | |
1490 | *x2 = wx_stack_top->x2; | |
1491 | *y2 = wx_stack_top->y2; | |
1492 | *x3 = wx_stack_top->x3; | |
1493 | *y3 = wx_stack_top->y3; | |
1494 | *x4 = wx_stack_top->x4; | |
1495 | *y4 = wx_stack_top->y4; | |
1496 | return (1); | |
1497 | } | |
1498 | ||
1499 | static bool wx_spline_add_point(double x, double y) | |
1500 | { | |
a23fd0e1 | 1501 | wxPoint *point = new wxPoint; |
7bcb11d3 JS |
1502 | point->x = (int) x; |
1503 | point->y = (int) y; | |
1504 | wx_spline_point_list.Append((wxObject*)point); | |
1505 | return TRUE; | |
dfad0599 JS |
1506 | } |
1507 | ||
1508 | static void wx_spline_draw_point_array(wxDC *dc) | |
1509 | { | |
7bcb11d3 JS |
1510 | dc->DrawLines(&wx_spline_point_list, 0, 0); |
1511 | wxNode *node = wx_spline_point_list.First(); | |
1512 | while (node) | |
1513 | { | |
1514 | wxPoint *point = (wxPoint *)node->Data(); | |
1515 | delete point; | |
1516 | delete node; | |
1517 | node = wx_spline_point_list.First(); | |
1518 | } | |
dfad0599 JS |
1519 | } |
1520 | ||
1521 | wxSpline::wxSpline(wxList *list) | |
1522 | { | |
7bcb11d3 | 1523 | points = list; |
dfad0599 JS |
1524 | } |
1525 | ||
a23fd0e1 | 1526 | wxSpline::~wxSpline() |
dfad0599 JS |
1527 | { |
1528 | } | |
1529 | ||
a23fd0e1 | 1530 | void wxSpline::DeletePoints() |
dfad0599 | 1531 | { |
7bcb11d3 JS |
1532 | for(wxNode *node = points->First(); node; node = points->First()) |
1533 | { | |
1534 | wxPoint *point = (wxPoint *)node->Data(); | |
1535 | delete point; | |
1536 | delete node; | |
1537 | } | |
1538 | delete points; | |
dfad0599 JS |
1539 | } |
1540 | ||
1541 | ||
1542 | #endif // wxUSE_SPLINES | |
7b46ecac | 1543 |