]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/dc.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
21 #pragma implementation "dc.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/window.h"
35 #include "wx/dialog.h"
37 #include "wx/bitmap.h"
38 #include "wx/dcmemory.h"
43 #include "wx/dcprint.h"
48 #include "wx/msw/private.h" // needs to be before #include <commdlg.h>
50 #if wxUSE_COMMON_DIALOGS
58 IMPLEMENT_ABSTRACT_CLASS(wxDC
, wxDCBase
)
60 // ---------------------------------------------------------------------------
62 // ---------------------------------------------------------------------------
64 static const int VIEWPORT_EXTENT
= 1000;
66 static const int MM_POINTS
= 9;
67 static const int MM_METRIC
= 10;
69 // usually this is defined in math.h
71 static const double M_PI
= 3.14159265358979323846;
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
78 // ---------------------------------------------------------------------------
80 // ---------------------------------------------------------------------------
82 // convert degrees to radians
83 static inline double DegToRad(double deg
) { return (deg
* M_PI
) / 180.0; }
85 // ----------------------------------------------------------------------------
87 // ----------------------------------------------------------------------------
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
93 // wxColourChanger: changes the text colours in the ctor if required and
94 // restores them in the dtor
98 wxColourChanger(wxDC
& dc
);
104 COLORREF m_colFgOld
, m_colBgOld
;
109 // ===========================================================================
111 // ===========================================================================
113 // ----------------------------------------------------------------------------
115 // ----------------------------------------------------------------------------
117 wxColourChanger::wxColourChanger(wxDC
& dc
) : m_dc(dc
)
119 if ( dc
.GetBrush().GetStyle() == wxSTIPPLE_MASK_OPAQUE
)
121 HDC hdc
= GetHdcOf(dc
);
122 m_colFgOld
= ::GetTextColor(hdc
);
123 m_colBgOld
= ::GetBkColor(hdc
);
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();
130 ::SetBkColor(hdc
, colFg
.GetPixel());
133 const wxColour
& colBg
= dc
.GetTextBackground();
136 ::SetTextColor(hdc
, colBg
.GetPixel());
140 dc
.GetBackgroundMode() == wxTRANSPARENT
? TRANSPARENT
143 // flag which telsl us to undo changes in the dtor
148 // nothing done, nothing to undo
153 wxColourChanger::~wxColourChanger()
157 // restore the colours we changed
158 HDC hdc
= GetHdcOf(m_dc
);
160 ::SetBkMode(hdc
, TRANSPARENT
);
161 ::SetTextColor(hdc
, m_colFgOld
);
162 ::SetBkColor(hdc
, m_colBgOld
);
166 // ---------------------------------------------------------------------------
168 // ---------------------------------------------------------------------------
170 // Default constructor
184 m_windowExtX
= VIEWPORT_EXTENT
;
185 m_windowExtY
= VIEWPORT_EXTENT
;
193 SelectOldObjects(m_hDC
);
195 // if we own the HDC, we delete it, otherwise we just release it
199 ::DeleteDC(GetHdc());
201 else // we don't own our HDC
205 ::ReleaseDC(GetHwndOf(m_canvas
), GetHdc());
209 // Must have been a wxScreenDC
210 ::ReleaseDC((HWND
) NULL
, GetHdc());
216 // This will select current objects out of the DC,
217 // which is what you have to do before deleting the
219 void wxDC::SelectOldObjects(WXHDC dc
)
225 ::SelectObject((HDC
) dc
, (HBITMAP
) m_oldBitmap
);
226 if (m_selectedBitmap
.Ok())
228 m_selectedBitmap
.SetSelectedInto(NULL
);
234 ::SelectObject((HDC
) dc
, (HPEN
) m_oldPen
);
239 ::SelectObject((HDC
) dc
, (HBRUSH
) m_oldBrush
);
244 ::SelectObject((HDC
) dc
, (HFONT
) m_oldFont
);
249 ::SelectPalette((HDC
) dc
, (HPALETTE
) m_oldPalette
, TRUE
);
254 m_brush
= wxNullBrush
;
256 m_palette
= wxNullPalette
;
258 m_backgroundBrush
= wxNullBrush
;
259 m_selectedBitmap
= wxNullBitmap
;
262 // ---------------------------------------------------------------------------
264 // ---------------------------------------------------------------------------
266 #define DO_SET_CLIPPING_BOX() \
270 GetClipBox(GetHdc(), &rect); \
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); \
278 void wxDC::DoSetClippingRegion(wxCoord cx
, wxCoord cy
, wxCoord cw
, wxCoord ch
)
281 IntersectClipRect(GetHdc(), XLOG2DEV(cx
), YLOG2DEV(cy
),
282 XLOG2DEV(cx
+ cw
), YLOG2DEV(cy
+ ch
));
283 DO_SET_CLIPPING_BOX()
286 void wxDC::DoSetClippingRegionAsRegion(const wxRegion
& region
)
288 wxCHECK_RET( region
.GetHRGN(), wxT("invalid clipping region") );
293 SelectClipRgn(GetHdc(), (HRGN
) region
.GetHRGN());
295 ExtSelectClipRgn(GetHdc(), (HRGN
) region
.GetHRGN(), RGN_AND
);
298 DO_SET_CLIPPING_BOX()
301 void wxDC::DestroyClippingRegion()
303 if (m_clipping
&& m_hDC
)
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);
309 SelectClipRgn(GetHdc(), rgn
);
315 // ---------------------------------------------------------------------------
316 // query capabilities
317 // ---------------------------------------------------------------------------
319 bool wxDC::CanDrawBitmap() const
324 bool wxDC::CanGetTextExtent() const
326 // What sort of display is it?
327 int technology
= ::GetDeviceCaps(GetHdc(), TECHNOLOGY
);
329 return (technology
== DT_RASDISPLAY
) || (technology
== DT_RASPRINTER
);
332 int wxDC::GetDepth() const
334 return (int)::GetDeviceCaps(GetHdc(), BITSPIXEL
);
337 // ---------------------------------------------------------------------------
339 // ---------------------------------------------------------------------------
346 GetClientRect((HWND
) m_canvas
->GetHWND(), &rect
);
350 // No, I think we should simply ignore this if printing on e.g.
352 // wxCHECK_RET( m_selectedBitmap.Ok(), wxT("this DC can't be cleared") );
353 if (!m_selectedBitmap
.Ok())
356 rect
.left
= 0; rect
.top
= 0;
357 rect
.right
= m_selectedBitmap
.GetWidth();
358 rect
.bottom
= m_selectedBitmap
.GetHeight();
361 (void) ::SetMapMode(GetHdc(), MM_TEXT
);
363 DWORD colour
= GetBkColor(GetHdc());
364 HBRUSH brush
= CreateSolidBrush(colour
);
365 FillRect(GetHdc(), &rect
, brush
);
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
);
375 void wxDC::DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
, int style
)
377 if ( !::ExtFloodFill(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
),
379 style
== wxFLOOD_SURFACE
? FLOODFILLSURFACE
382 // quoting from the MSDN docs:
384 // Following are some of the reasons this function might fail:
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.
394 wxLogLastError(wxT("ExtFloodFill"));
397 CalcBoundingBox(x
, y
);
400 bool wxDC::DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
402 wxCHECK_MSG( col
, FALSE
, _T("NULL colour parameter in wxDC::GetPixel") );
404 // get the color of the pixel
405 COLORREF pixelcolor
= ::GetPixel(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
));
407 wxRGBToColour(*col
, pixelcolor
);
412 void wxDC::DoCrossHair(wxCoord x
, wxCoord y
)
414 wxCoord x1
= x
-VIEWPORT_EXTENT
;
415 wxCoord y1
= y
-VIEWPORT_EXTENT
;
416 wxCoord x2
= x
+VIEWPORT_EXTENT
;
417 wxCoord y2
= y
+VIEWPORT_EXTENT
;
419 (void)MoveToEx(GetHdc(), XLOG2DEV(x1
), YLOG2DEV(y
), NULL
);
420 (void)LineTo(GetHdc(), XLOG2DEV(x2
), YLOG2DEV(y
));
422 (void)MoveToEx(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y1
), NULL
);
423 (void)LineTo(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y2
));
425 CalcBoundingBox(x1
, y1
);
426 CalcBoundingBox(x2
, y2
);
429 void wxDC::DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
431 (void)MoveToEx(GetHdc(), XLOG2DEV(x1
), YLOG2DEV(y1
), NULL
);
432 (void)LineTo(GetHdc(), XLOG2DEV(x2
), YLOG2DEV(y2
));
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));
438 CalcBoundingBox(x1
, y1
);
439 CalcBoundingBox(x2
, y2
);
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
)
448 wxColourChanger
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
452 double radius
= (double)sqrt(dx
*dx
+dy
*dy
);
453 wxCoord r
= (wxCoord
)radius
;
455 // treat the special case of full circle separately
456 if ( x1
== x2
&& y1
== y2
)
458 DrawEllipse(xc
- r
, yc
- r
, 2*r
, 2*r
);
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
)));
470 wxCoord xxx1
= (wxCoord
) (xxc
-ray
);
471 wxCoord yyy1
= (wxCoord
) (yyc
-ray
);
472 wxCoord xxx2
= (wxCoord
) (xxc
+ray
);
473 wxCoord yyy2
= (wxCoord
) (yyc
+ray
);
475 if ( m_brush
.Ok() && m_brush
.GetStyle() != wxTRANSPARENT
)
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!
482 Pie(GetHdc(),xxx1
,yyy1
,xxx2
+1,yyy2
+1, xx1
,yy1
,xx2
,yy2
);
486 Arc(GetHdc(),xxx1
,yyy1
,xxx2
,yyy2
, xx1
,yy1
,xx2
,yy2
);
489 CalcBoundingBox(xc
- r
, yc
- r
);
490 CalcBoundingBox(xc
+ r
, yc
+ r
);
493 void wxDC::DoDrawCheckMark(wxCoord x1
, wxCoord y1
,
494 wxCoord width
, wxCoord height
)
496 wxCoord x2
= x1
+ width
,
499 #if defined(__WIN32__) && !defined(__SC__)
506 DrawFrameControl(GetHdc(), &rect
, DFC_MENU
, DFCS_MENUCHECK
);
508 // In WIN16, draw a cross
509 HPEN blackPen
= ::CreatePen(PS_SOLID
, 1, RGB(0, 0, 0));
510 HPEN whiteBrush
= (HPEN
)::GetStockObject(WHITE_BRUSH
);
511 HPEN hPenOld
= (HPEN
)::SelectObject(GetHdc(), blackPen
);
512 HPEN hBrushOld
= (HPEN
)::SelectObject(GetHdc(), whiteBrush
);
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
);
524 CalcBoundingBox(x1
, y1
);
525 CalcBoundingBox(x2
, y2
);
528 void wxDC::DoDrawPoint(wxCoord x
, wxCoord y
)
530 COLORREF color
= 0x00ffffff;
533 color
= m_pen
.GetColour().GetPixel();
536 SetPixel(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), color
);
538 CalcBoundingBox(x
, y
);
541 void wxDC::DoDrawPolygon(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
,int fillStyle
)
543 wxColourChanger
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
545 // Do things less efficiently if we have offsets
546 if (xoffset
!= 0 || yoffset
!= 0)
548 POINT
*cpoints
= new POINT
[n
];
550 for (i
= 0; i
< n
; i
++)
552 cpoints
[i
].x
= (int)(points
[i
].x
+ xoffset
);
553 cpoints
[i
].y
= (int)(points
[i
].y
+ yoffset
);
555 CalcBoundingBox(cpoints
[i
].x
, cpoints
[i
].y
);
557 int prev
= SetPolyFillMode(GetHdc(),fillStyle
==wxODDEVEN_RULE
?ALTERNATE
:WINDING
);
558 (void)Polygon(GetHdc(), cpoints
, n
);
559 SetPolyFillMode(GetHdc(),prev
);
565 for (i
= 0; i
< n
; i
++)
566 CalcBoundingBox(points
[i
].x
, points
[i
].y
);
568 int prev
= SetPolyFillMode(GetHdc(),fillStyle
==wxODDEVEN_RULE
?ALTERNATE
:WINDING
);
569 (void)Polygon(GetHdc(), (POINT
*) points
, n
);
570 SetPolyFillMode(GetHdc(),prev
);
574 void wxDC::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
576 // Do things less efficiently if we have offsets
577 if (xoffset
!= 0 || yoffset
!= 0)
579 POINT
*cpoints
= new POINT
[n
];
581 for (i
= 0; i
< n
; i
++)
583 cpoints
[i
].x
= (int)(points
[i
].x
+ xoffset
);
584 cpoints
[i
].y
= (int)(points
[i
].y
+ yoffset
);
586 CalcBoundingBox(cpoints
[i
].x
, cpoints
[i
].y
);
588 (void)Polyline(GetHdc(), cpoints
, n
);
594 for (i
= 0; i
< n
; i
++)
595 CalcBoundingBox(points
[i
].x
, points
[i
].y
);
597 (void)Polyline(GetHdc(), (POINT
*) points
, n
);
601 void wxDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
603 wxColourChanger
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
605 wxCoord x2
= x
+ width
;
606 wxCoord y2
= y
+ height
;
608 if ((m_logicalFunction
== wxCOPY
) && (m_pen
.GetStyle() == wxTRANSPARENT
))
611 rect
.left
= XLOG2DEV(x
);
612 rect
.top
= YLOG2DEV(y
);
613 rect
.right
= XLOG2DEV(x2
);
614 rect
.bottom
= YLOG2DEV(y2
);
615 (void)FillRect(GetHdc(), &rect
, (HBRUSH
)m_brush
.GetResourceHandle() );
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
621 // to have the same size regardless of which pen is used - adjust
623 // I wonder if this shouldn´t be done after the LOG2DEV() conversions. RR.
624 if ( m_pen
.GetStyle() == wxTRANSPARENT
)
630 (void)Rectangle(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
634 CalcBoundingBox(x
, y
);
635 CalcBoundingBox(x2
, y2
);
638 void wxDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
640 wxColourChanger
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
642 // Now, a negative radius value is interpreted to mean
643 // 'the proportion of the smallest X or Y dimension'
647 double smallest
= 0.0;
652 radius
= (- radius
* smallest
);
655 wxCoord x2
= (x
+width
);
656 wxCoord y2
= (y
+height
);
658 // Windows draws the filled rectangles without outline (i.e. drawn with a
659 // transparent pen) one pixel smaller in both directions and we want them
660 // to have the same size regardless of which pen is used - adjust
661 if ( m_pen
.GetStyle() == wxTRANSPARENT
)
667 (void)RoundRect(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
),
668 YLOG2DEV(y2
), (int) (2*XLOG2DEV(radius
)), (int)( 2*YLOG2DEV(radius
)));
670 CalcBoundingBox(x
, y
);
671 CalcBoundingBox(x2
, y2
);
674 void wxDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
676 wxColourChanger
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
678 wxCoord x2
= (x
+width
);
679 wxCoord y2
= (y
+height
);
681 (void)Ellipse(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
683 CalcBoundingBox(x
, y
);
684 CalcBoundingBox(x2
, y2
);
687 // Chris Breeze 20/5/98: first implementation of DrawEllipticArc on Windows
688 void wxDC::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
690 wxColourChanger
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
695 int rx1
= XLOG2DEV(x
+w
/2);
696 int ry1
= YLOG2DEV(y
+h
/2);
703 rx1
+= (int)(100.0 * abs(w
) * cos(sa
));
704 ry1
-= (int)(100.0 * abs(h
) * m_signY
* sin(sa
));
705 rx2
+= (int)(100.0 * abs(w
) * cos(ea
));
706 ry2
-= (int)(100.0 * abs(h
) * m_signY
* sin(ea
));
708 // draw pie with NULL_PEN first and then outline otherwise a line is
709 // drawn from the start and end points to the centre
710 HPEN hpenOld
= (HPEN
) ::SelectObject(GetHdc(), (HPEN
) ::GetStockObject(NULL_PEN
));
713 (void)Pie(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
)+1, YLOG2DEV(y2
)+1,
718 (void)Pie(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
)-1, XLOG2DEV(x2
)+1, YLOG2DEV(y2
),
719 rx1
, ry1
-1, rx2
, ry2
-1);
722 ::SelectObject(GetHdc(), hpenOld
);
724 (void)Arc(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
),
727 CalcBoundingBox(x
, y
);
728 CalcBoundingBox(x2
, y2
);
731 void wxDC::DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
733 wxCHECK_RET( icon
.Ok(), wxT("invalid icon in DrawIcon") );
736 ::DrawIconEx(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), GetHiconOf(icon
), icon
.GetWidth(), icon
.GetHeight(), 0, NULL
, DI_NORMAL
);
738 ::DrawIcon(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), GetHiconOf(icon
));
741 CalcBoundingBox(x
, y
);
742 CalcBoundingBox(x
+ icon
.GetWidth(), y
+ icon
.GetHeight());
745 void wxDC::DoDrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
747 wxCHECK_RET( bmp
.Ok(), _T("invalid bitmap in wxDC::DrawBitmap") );
749 int width
= bmp
.GetWidth(),
750 height
= bmp
.GetHeight();
752 HBITMAP hbmpMask
= 0;
756 wxMask
*mask
= bmp
.GetMask();
758 hbmpMask
= (HBITMAP
)mask
->GetMaskBitmap();
762 // don't give assert here because this would break existing
763 // programs - just silently ignore useMask parameter
771 HDC hdcMem
= ::CreateCompatibleDC(GetHdc());
772 ::SelectObject(hdcMem
, GetHbitmapOf(bmp
));
774 // use MaskBlt() with ROP which doesn't do anything to dst in the mask
776 bool ok
= ::MaskBlt(GetHdc(), x
, y
, width
, height
,
779 MAKEROP4(SRCCOPY
, DSTCOPY
)) != 0;
785 // Rather than reproduce wxDC::Blit, let's do it at the wxWin API
788 memDC
.SelectObject(bmp
);
790 Blit(x
, y
, width
, height
, &memDC
, 0, 0, wxCOPY
, useMask
);
792 memDC
.SelectObject(wxNullBitmap
);
795 else // no mask, just use BitBlt()
798 HDC memdc
= ::CreateCompatibleDC( cdc
);
799 HBITMAP hbitmap
= (HBITMAP
) bmp
.GetHBITMAP( );
801 wxASSERT_MSG( hbitmap
, wxT("bitmap is ok but HBITMAP is NULL?") );
803 COLORREF old_textground
= ::GetTextColor(GetHdc());
804 COLORREF old_background
= ::GetBkColor(GetHdc());
805 if (m_textForegroundColour
.Ok())
807 ::SetTextColor(GetHdc(), m_textForegroundColour
.GetPixel() );
809 if (m_textBackgroundColour
.Ok())
811 ::SetBkColor(GetHdc(), m_textBackgroundColour
.GetPixel() );
814 ::SelectObject( memdc
, hbitmap
);
815 ::BitBlt( cdc
, x
, y
, width
, height
, memdc
, 0, 0, SRCCOPY
);
818 ::SetTextColor(GetHdc(), old_textground
);
819 ::SetBkColor(GetHdc(), old_background
);
823 void wxDC::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
825 DrawAnyText(text
, x
, y
);
827 // update the bounding box
828 CalcBoundingBox(x
, y
);
831 GetTextExtent(text
, &w
, &h
);
832 CalcBoundingBox(x
+ w
, y
+ h
);
835 void wxDC::DrawAnyText(const wxString
& text
, wxCoord x
, wxCoord y
)
837 // prepare for drawing the text
838 if ( m_textForegroundColour
.Ok() )
839 SetTextColor(GetHdc(), m_textForegroundColour
.GetPixel());
841 DWORD old_background
= 0;
842 if ( m_textBackgroundColour
.Ok() )
844 old_background
= SetBkColor(GetHdc(), m_textBackgroundColour
.GetPixel() );
847 SetBkMode(GetHdc(), m_backgroundMode
== wxTRANSPARENT
? TRANSPARENT
850 if ( ::TextOut(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
),
851 text
.c_str(), text
.length()) == 0 )
853 wxLogLastError(wxT("TextOut"));
856 // restore the old parameters (text foreground colour may be left because
857 // it never is set to anything else, but background should remain
858 // transparent even if we just drew an opaque string)
859 if ( m_textBackgroundColour
.Ok() )
860 (void)SetBkColor(GetHdc(), old_background
);
862 SetBkMode(GetHdc(), TRANSPARENT
);
865 void wxDC::DoDrawRotatedText(const wxString
& text
,
866 wxCoord x
, wxCoord y
,
869 // we test that we have some font because otherwise we should still use the
870 // "else" part below to avoid that DrawRotatedText(angle = 180) and
871 // DrawRotatedText(angle = 0) use different fonts (we can't use the default
872 // font for drawing rotated fonts unfortunately)
873 if ( (angle
== 0.0) && m_font
.Ok() )
875 DoDrawText(text
, x
, y
);
879 // NB: don't take DEFAULT_GUI_FONT because it's not TrueType and so
880 // can't have non zero orientation/escapement
881 wxFont font
= m_font
.Ok() ? m_font
: *wxNORMAL_FONT
;
882 HFONT hfont
= (HFONT
)font
.GetResourceHandle();
884 if ( ::GetObject(hfont
, sizeof(lf
), &lf
) == 0 )
886 wxLogLastError(wxT("GetObject(hfont)"));
889 // GDI wants the angle in tenth of degree
890 long angle10
= (long)(angle
* 10);
891 lf
.lfEscapement
= angle10
;
892 lf
. lfOrientation
= angle10
;
894 hfont
= ::CreateFontIndirect(&lf
);
897 wxLogLastError(wxT("CreateFont"));
901 HFONT hfontOld
= (HFONT
)::SelectObject(GetHdc(), hfont
);
903 DrawAnyText(text
, x
, y
);
905 (void)::SelectObject(GetHdc(), hfontOld
);
906 (void)::DeleteObject(hfont
);
909 // call the bounding box by adding all four vertices of the rectangle
910 // containing the text to it (simpler and probably not slower than
911 // determining which of them is really topmost/leftmost/...)
913 GetTextExtent(text
, &w
, &h
);
915 double rad
= DegToRad(angle
);
917 // "upper left" and "upper right"
918 CalcBoundingBox(x
, y
);
919 CalcBoundingBox(x
+ w
*cos(rad
), y
- h
*sin(rad
));
921 // "bottom left" and "bottom right"
922 x
+= (wxCoord
)(h
*sin(rad
));
923 y
+= (wxCoord
)(h
*cos(rad
));
924 CalcBoundingBox(x
, y
);
925 CalcBoundingBox(x
+ h
*sin(rad
), y
+ h
*cos(rad
));
929 // ---------------------------------------------------------------------------
931 // ---------------------------------------------------------------------------
933 void wxDC::SetPalette(const wxPalette
& palette
)
935 // Set the old object temporarily, in case the assignment deletes an object
936 // that's not yet selected out.
939 ::SelectPalette(GetHdc(), (HPALETTE
) m_oldPalette
, TRUE
);
947 // Setting a NULL colourmap is a way of restoring
948 // the original colourmap
951 ::SelectPalette(GetHdc(), (HPALETTE
) m_oldPalette
, TRUE
);
958 if (m_palette
.Ok() && m_palette
.GetHPALETTE())
960 HPALETTE oldPal
= ::SelectPalette(GetHdc(), (HPALETTE
) m_palette
.GetHPALETTE(), TRUE
);
962 m_oldPalette
= (WXHPALETTE
) oldPal
;
964 ::RealizePalette(GetHdc());
968 void wxDC::SetFont(const wxFont
& the_font
)
970 // Set the old object temporarily, in case the assignment deletes an object
971 // that's not yet selected out.
974 ::SelectObject(GetHdc(), (HFONT
) m_oldFont
);
983 ::SelectObject(GetHdc(), (HFONT
) m_oldFont
);
987 if (m_font
.Ok() && m_font
.GetResourceHandle())
989 HFONT f
= (HFONT
) ::SelectObject(GetHdc(), (HFONT
) m_font
.GetResourceHandle());
990 if (f
== (HFONT
) NULL
)
992 wxLogDebug(wxT("::SelectObject failed in wxDC::SetFont."));
995 m_oldFont
= (WXHFONT
) f
;
999 void wxDC::SetPen(const wxPen
& pen
)
1001 // Set the old object temporarily, in case the assignment deletes an object
1002 // that's not yet selected out.
1005 ::SelectObject(GetHdc(), (HPEN
) m_oldPen
);
1014 ::SelectObject(GetHdc(), (HPEN
) m_oldPen
);
1020 if (m_pen
.GetResourceHandle())
1022 HPEN p
= (HPEN
) ::SelectObject(GetHdc(), (HPEN
)m_pen
.GetResourceHandle());
1024 m_oldPen
= (WXHPEN
) p
;
1029 void wxDC::SetBrush(const wxBrush
& brush
)
1031 // Set the old object temporarily, in case the assignment deletes an object
1032 // that's not yet selected out.
1035 ::SelectObject(GetHdc(), (HBRUSH
) m_oldBrush
);
1044 ::SelectObject(GetHdc(), (HBRUSH
) m_oldBrush
);
1050 // to make sure the brush is alligned with the logical coordinates
1051 wxBitmap
*stipple
= m_brush
.GetStipple();
1052 if ( stipple
&& stipple
->Ok() )
1055 ::SetBrushOrgEx(GetHdc(),
1056 m_deviceOriginX
% stipple
->GetWidth(),
1057 m_deviceOriginY
% stipple
->GetHeight(),
1058 NULL
); // don't need previous brush origin
1060 ::SetBrushOrg(GetHdc(),
1061 m_deviceOriginX
% stipple
->GetWidth(),
1062 m_deviceOriginY
% stipple
->GetHeight());
1066 if ( m_brush
.GetResourceHandle() )
1069 b
= (HBRUSH
) ::SelectObject(GetHdc(), (HBRUSH
)m_brush
.GetResourceHandle());
1071 m_oldBrush
= (WXHBRUSH
) b
;
1076 void wxDC::SetBackground(const wxBrush
& brush
)
1078 m_backgroundBrush
= brush
;
1080 if (!m_backgroundBrush
.Ok())
1085 bool customColours
= TRUE
;
1086 // If we haven't specified wxUSER_COLOURS, don't allow the panel/dialog box to
1087 // change background colours from the control-panel specified colours.
1088 if (m_canvas
->IsKindOf(CLASSINFO(wxWindow
)) && ((m_canvas
->GetWindowStyleFlag() & wxUSER_COLOURS
) != wxUSER_COLOURS
))
1089 customColours
= FALSE
;
1093 if (m_backgroundBrush
.GetStyle()==wxTRANSPARENT
)
1095 m_canvas
->SetTransparent(TRUE
);
1099 // New behaviour, 10/2/99: setting the background brush of a DC
1100 // doesn't affect the window background colour. However,
1101 // I'm leaving in the transparency setting because it's needed by
1102 // various controls (e.g. wxStaticText) to determine whether to draw
1103 // transparently or not. TODO: maybe this should be a new function
1104 // wxWindow::SetTransparency(). Should that apply to the child itself, or the
1106 // m_canvas->SetBackgroundColour(m_backgroundBrush.GetColour());
1107 m_canvas
->SetTransparent(FALSE
);
1111 COLORREF new_color
= m_backgroundBrush
.GetColour().GetPixel();
1113 (void)SetBkColor(GetHdc(), new_color
);
1117 void wxDC::SetBackgroundMode(int mode
)
1119 m_backgroundMode
= mode
;
1121 // SetBackgroundColour now only refers to text background
1122 // and m_backgroundMode is used there
1125 if (m_backgroundMode == wxTRANSPARENT)
1126 ::SetBkMode(GetHdc(), TRANSPARENT);
1128 ::SetBkMode(GetHdc(), OPAQUE);
1129 Last change: AC 29 Jan 101 8:54 pm
1133 void wxDC::SetLogicalFunction(int function
)
1135 m_logicalFunction
= function
;
1140 void wxDC::SetRop(WXHDC dc
)
1142 if ( !dc
|| m_logicalFunction
< 0 )
1147 switch (m_logicalFunction
)
1149 case wxCLEAR
: rop
= R2_BLACK
; break;
1150 case wxXOR
: rop
= R2_XORPEN
; break;
1151 case wxINVERT
: rop
= R2_NOT
; break;
1152 case wxOR_REVERSE
: rop
= R2_MERGEPENNOT
; break;
1153 case wxAND_REVERSE
: rop
= R2_MASKPENNOT
; break;
1154 case wxCOPY
: rop
= R2_COPYPEN
; break;
1155 case wxAND
: rop
= R2_MASKPEN
; break;
1156 case wxAND_INVERT
: rop
= R2_MASKNOTPEN
; break;
1157 case wxNO_OP
: rop
= R2_NOP
; break;
1158 case wxNOR
: rop
= R2_NOTMERGEPEN
; break;
1159 case wxEQUIV
: rop
= R2_NOTXORPEN
; break;
1160 case wxSRC_INVERT
: rop
= R2_NOTCOPYPEN
; break;
1161 case wxOR_INVERT
: rop
= R2_MERGENOTPEN
; break;
1162 case wxNAND
: rop
= R2_NOTMASKPEN
; break;
1163 case wxOR
: rop
= R2_MERGEPEN
; break;
1164 case wxSET
: rop
= R2_WHITE
; break;
1167 wxFAIL_MSG( wxT("unsupported logical function") );
1171 SetROP2(GetHdc(), rop
);
1174 bool wxDC::StartDoc(const wxString
& WXUNUSED(message
))
1176 // We might be previewing, so return TRUE to let it continue.
1184 void wxDC::StartPage()
1188 void wxDC::EndPage()
1192 // ---------------------------------------------------------------------------
1194 // ---------------------------------------------------------------------------
1196 wxCoord
wxDC::GetCharHeight() const
1198 TEXTMETRIC lpTextMetric
;
1200 GetTextMetrics(GetHdc(), &lpTextMetric
);
1202 return YDEV2LOGREL(lpTextMetric
.tmHeight
);
1205 wxCoord
wxDC::GetCharWidth() const
1207 TEXTMETRIC lpTextMetric
;
1209 GetTextMetrics(GetHdc(), &lpTextMetric
);
1211 return XDEV2LOGREL(lpTextMetric
.tmAveCharWidth
);
1214 void wxDC::DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
1215 wxCoord
*descent
, wxCoord
*externalLeading
,
1221 wxASSERT_MSG( font
->Ok(), _T("invalid font in wxDC::GetTextExtent") );
1223 hfontOld
= (HFONT
)::SelectObject(GetHdc(), GetHfontOf(*font
));
1225 else // don't change the font
1233 GetTextExtentPoint(GetHdc(), string
, string
.length(), &sizeRect
);
1234 GetTextMetrics(GetHdc(), &tm
);
1236 if (x
) *x
= XDEV2LOGREL(sizeRect
.cx
);
1237 if (y
) *y
= YDEV2LOGREL(sizeRect
.cy
);
1238 if (descent
) *descent
= tm
.tmDescent
;
1239 if (externalLeading
) *externalLeading
= tm
.tmExternalLeading
;
1243 ::SelectObject(GetHdc(), hfontOld
);
1247 void wxDC::SetMapMode(int mode
)
1249 m_mappingMode
= mode
;
1251 int pixel_width
= 0;
1252 int pixel_height
= 0;
1256 pixel_width
= GetDeviceCaps(GetHdc(), HORZRES
);
1257 pixel_height
= GetDeviceCaps(GetHdc(), VERTRES
);
1258 mm_width
= GetDeviceCaps(GetHdc(), HORZSIZE
);
1259 mm_height
= GetDeviceCaps(GetHdc(), VERTSIZE
);
1261 if ((pixel_width
== 0) || (pixel_height
== 0) || (mm_width
== 0) || (mm_height
== 0))
1266 double mm2pixelsX
= pixel_width
/mm_width
;
1267 double mm2pixelsY
= pixel_height
/mm_height
;
1273 m_logicalScaleX
= (twips2mm
* mm2pixelsX
);
1274 m_logicalScaleY
= (twips2mm
* mm2pixelsY
);
1279 m_logicalScaleX
= (pt2mm
* mm2pixelsX
);
1280 m_logicalScaleY
= (pt2mm
* mm2pixelsY
);
1285 m_logicalScaleX
= mm2pixelsX
;
1286 m_logicalScaleY
= mm2pixelsY
;
1291 m_logicalScaleX
= (mm2pixelsX
/10.0);
1292 m_logicalScaleY
= (mm2pixelsY
/10.0);
1298 m_logicalScaleX
= 1.0;
1299 m_logicalScaleY
= 1.0;
1304 if (::GetMapMode(GetHdc()) != MM_ANISOTROPIC
)
1305 ::SetMapMode(GetHdc(), MM_ANISOTROPIC
);
1307 SetViewportExtEx(GetHdc(), VIEWPORT_EXTENT
, VIEWPORT_EXTENT
, NULL
);
1308 m_windowExtX
= (int)MS_XDEV2LOGREL(VIEWPORT_EXTENT
);
1309 m_windowExtY
= (int)MS_YDEV2LOGREL(VIEWPORT_EXTENT
);
1310 ::SetWindowExtEx(GetHdc(), m_windowExtX
, m_windowExtY
, NULL
);
1311 ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX
, (int)m_deviceOriginY
, NULL
);
1312 ::SetWindowOrgEx(GetHdc(), (int)m_logicalOriginX
, (int)m_logicalOriginY
, NULL
);
1315 void wxDC::SetUserScale(double x
, double y
)
1320 SetMapMode(m_mappingMode
);
1323 void wxDC::SetAxisOrientation(bool xLeftRight
, bool yBottomUp
)
1325 m_signX
= xLeftRight
? 1 : -1;
1326 m_signY
= yBottomUp
? -1 : 1;
1328 SetMapMode(m_mappingMode
);
1331 void wxDC::SetSystemScale(double x
, double y
)
1336 SetMapMode(m_mappingMode
);
1339 void wxDC::SetLogicalOrigin(wxCoord x
, wxCoord y
)
1341 m_logicalOriginX
= x
;
1342 m_logicalOriginY
= y
;
1344 ::SetWindowOrgEx(GetHdc(), (int)m_logicalOriginX
, (int)m_logicalOriginY
, NULL
);
1347 void wxDC::SetDeviceOrigin(wxCoord x
, wxCoord y
)
1349 m_deviceOriginX
= x
;
1350 m_deviceOriginY
= y
;
1352 ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX
, (int)m_deviceOriginY
, NULL
);
1355 // ---------------------------------------------------------------------------
1356 // coordinates transformations
1357 // ---------------------------------------------------------------------------
1359 wxCoord
wxDCBase::DeviceToLogicalX(wxCoord x
) const
1361 double xRel
= x
- m_deviceOriginX
;
1362 xRel
/= m_logicalScaleX
*m_userScaleX
*m_signX
*m_scaleX
;
1363 return (wxCoord
)(xRel
+ m_logicalOriginX
);
1366 wxCoord
wxDCBase::DeviceToLogicalXRel(wxCoord x
) const
1368 return (wxCoord
) ((x
)/(m_logicalScaleX
*m_userScaleX
*m_signX
*m_scaleX
));
1371 wxCoord
wxDCBase::DeviceToLogicalY(wxCoord y
) const
1373 double yRel
= y
- m_deviceOriginY
;
1374 yRel
/= m_logicalScaleY
*m_userScaleY
*m_signY
*m_scaleY
;
1375 return (wxCoord
)(yRel
+ m_logicalOriginY
);
1378 wxCoord
wxDCBase::DeviceToLogicalYRel(wxCoord y
) const
1380 return (wxCoord
) ((y
)/(m_logicalScaleY
*m_userScaleY
*m_signY
*m_scaleY
));
1383 wxCoord
wxDCBase::LogicalToDeviceX(wxCoord x
) const
1385 return (wxCoord
) ((x
- m_logicalOriginX
)*m_logicalScaleX
*m_userScaleX
*m_signX
*m_scaleX
+ m_deviceOriginX
);
1388 wxCoord
wxDCBase::LogicalToDeviceXRel(wxCoord x
) const
1390 return (wxCoord
) (x
*m_logicalScaleX
*m_userScaleX
*m_signX
*m_scaleX
);
1393 wxCoord
wxDCBase::LogicalToDeviceY(wxCoord y
) const
1395 return (wxCoord
) ((y
- m_logicalOriginY
)*m_logicalScaleY
*m_userScaleY
*m_signY
*m_scaleY
+ m_deviceOriginY
);
1398 wxCoord
wxDCBase::LogicalToDeviceYRel(wxCoord y
) const
1400 return (wxCoord
) (y
*m_logicalScaleY
*m_userScaleY
*m_signY
*m_scaleY
);
1403 // ---------------------------------------------------------------------------
1405 // ---------------------------------------------------------------------------
1407 bool wxDC::DoBlit(wxCoord xdest
, wxCoord ydest
,
1408 wxCoord width
, wxCoord height
,
1409 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
1410 int rop
, bool useMask
)
1412 wxMask
*mask
= NULL
;
1415 const wxBitmap
& bmp
= source
->m_selectedBitmap
;
1416 mask
= bmp
.GetMask();
1418 if ( !(bmp
.Ok() && mask
&& mask
->GetMaskBitmap()) )
1420 // don't give assert here because this would break existing
1421 // programs - just silently ignore useMask parameter
1426 COLORREF old_textground
= ::GetTextColor(GetHdc());
1427 COLORREF old_background
= ::GetBkColor(GetHdc());
1428 if (m_textForegroundColour
.Ok())
1430 ::SetTextColor(GetHdc(), m_textForegroundColour
.GetPixel() );
1432 if (m_textBackgroundColour
.Ok())
1434 ::SetBkColor(GetHdc(), m_textBackgroundColour
.GetPixel() );
1437 DWORD dwRop
= SRCCOPY
;
1440 case wxXOR
: dwRop
= SRCINVERT
; break;
1441 case wxINVERT
: dwRop
= DSTINVERT
; break;
1442 case wxOR_REVERSE
: dwRop
= 0x00DD0228; break;
1443 case wxAND_REVERSE
: dwRop
= SRCERASE
; break;
1444 case wxCLEAR
: dwRop
= BLACKNESS
; break;
1445 case wxSET
: dwRop
= WHITENESS
; break;
1446 case wxOR_INVERT
: dwRop
= MERGEPAINT
; break;
1447 case wxAND
: dwRop
= SRCAND
; break;
1448 case wxOR
: dwRop
= SRCPAINT
; break;
1449 case wxEQUIV
: dwRop
= 0x00990066; break;
1450 case wxNAND
: dwRop
= 0x007700E6; break;
1451 case wxAND_INVERT
: dwRop
= 0x00220326; break;
1452 case wxCOPY
: dwRop
= SRCCOPY
; break;
1453 case wxNO_OP
: dwRop
= DSTCOPY
; break;
1454 case wxSRC_INVERT
: dwRop
= NOTSRCCOPY
; break;
1455 case wxNOR
: dwRop
= NOTSRCCOPY
; break;
1457 wxFAIL_MSG( wxT("unsupported logical function") );
1466 // we want the part of the image corresponding to the mask to be
1467 // transparent, so use "DSTCOPY" ROP for the mask points (the usual
1468 // meaning of fg and bg is inverted which corresponds to wxWin notion
1469 // of the mask which is also contrary to the Windows one)
1470 success
= ::MaskBlt(GetHdc(), xdest
, ydest
, width
, height
,
1471 GetHdcOf(*source
), xsrc
, ysrc
,
1472 (HBITMAP
)mask
->GetMaskBitmap(), xsrc
, ysrc
,
1473 MAKEROP4(dwRop
, DSTCOPY
)) != 0;
1478 // Blit bitmap with mask
1480 // create a temp buffer bitmap and DCs to access it and the mask
1481 HDC dc_mask
= ::CreateCompatibleDC(GetHdcOf(*source
));
1482 HDC dc_buffer
= ::CreateCompatibleDC(GetHdc());
1483 HBITMAP buffer_bmap
= ::CreateCompatibleBitmap(GetHdc(), width
, height
);
1484 ::SelectObject(dc_mask
, (HBITMAP
) mask
->GetMaskBitmap());
1485 ::SelectObject(dc_buffer
, buffer_bmap
);
1487 // copy dest to buffer
1488 if ( !::BitBlt(dc_buffer
, 0, 0, (int)width
, (int)height
,
1489 GetHdc(), xdest
, ydest
, SRCCOPY
) )
1491 wxLogLastError(wxT("BitBlt"));
1494 // copy src to buffer using selected raster op
1495 if ( !::BitBlt(dc_buffer
, 0, 0, (int)width
, (int)height
,
1496 GetHdcOf(*source
), xsrc
, ysrc
, dwRop
) )
1498 wxLogLastError(wxT("BitBlt"));
1501 // set masked area in buffer to BLACK (pixel value 0)
1502 COLORREF prevBkCol
= ::SetBkColor(GetHdc(), RGB(255, 255, 255));
1503 COLORREF prevCol
= ::SetTextColor(GetHdc(), RGB(0, 0, 0));
1504 if ( !::BitBlt(dc_buffer
, 0, 0, (int)width
, (int)height
,
1505 dc_mask
, xsrc
, ysrc
, SRCAND
) )
1507 wxLogLastError(wxT("BitBlt"));
1510 // set unmasked area in dest to BLACK
1511 ::SetBkColor(GetHdc(), RGB(0, 0, 0));
1512 ::SetTextColor(GetHdc(), RGB(255, 255, 255));
1513 if ( !::BitBlt(GetHdc(), xdest
, ydest
, (int)width
, (int)height
,
1514 dc_mask
, xsrc
, ysrc
, SRCAND
) )
1516 wxLogLastError(wxT("BitBlt"));
1518 ::SetBkColor(GetHdc(), prevBkCol
); // restore colours to original values
1519 ::SetTextColor(GetHdc(), prevCol
);
1521 // OR buffer to dest
1522 success
= ::BitBlt(GetHdc(), xdest
, ydest
,
1523 (int)width
, (int)height
,
1524 dc_buffer
, 0, 0, SRCPAINT
) != 0;
1527 wxLogLastError(wxT("BitBlt"));
1530 // tidy up temporary DCs and bitmap
1531 ::SelectObject(dc_mask
, 0);
1532 ::DeleteDC(dc_mask
);
1533 ::SelectObject(dc_buffer
, 0);
1534 ::DeleteDC(dc_buffer
);
1535 ::DeleteObject(buffer_bmap
);
1538 else // no mask, just BitBlt() it
1540 success
= ::BitBlt(GetHdc(), xdest
, ydest
,
1541 (int)width
, (int)height
,
1542 GetHdcOf(*source
), xsrc
, ysrc
, dwRop
) != 0;
1545 wxLogLastError(wxT("BitBlt"));
1548 ::SetTextColor(GetHdc(), old_textground
);
1549 ::SetBkColor(GetHdc(), old_background
);
1554 void wxDC::DoGetSize(int *w
, int *h
) const
1556 if ( w
) *w
= ::GetDeviceCaps(GetHdc(), HORZRES
);
1557 if ( h
) *h
= ::GetDeviceCaps(GetHdc(), VERTRES
);
1560 void wxDC::DoGetSizeMM(int *w
, int *h
) const
1562 if ( w
) *w
= ::GetDeviceCaps(GetHdc(), HORZSIZE
);
1563 if ( h
) *h
= ::GetDeviceCaps(GetHdc(), VERTSIZE
);
1566 wxSize
wxDC::GetPPI() const
1568 int x
= ::GetDeviceCaps(GetHdc(), LOGPIXELSX
);
1569 int y
= ::GetDeviceCaps(GetHdc(), LOGPIXELSY
);
1571 return wxSize(x
, y
);
1574 // For use by wxWindows only, unless custom units are required.
1575 void wxDC::SetLogicalScale(double x
, double y
)
1577 m_logicalScaleX
= x
;
1578 m_logicalScaleY
= y
;
1581 #if WXWIN_COMPATIBILITY
1582 void wxDC::DoGetTextExtent(const wxString
& string
, float *x
, float *y
,
1583 float *descent
, float *externalLeading
,
1584 wxFont
*theFont
, bool use16bit
) const
1586 wxCoord x1
, y1
, descent1
, externalLeading1
;
1587 GetTextExtent(string
, & x1
, & y1
, & descent1
, & externalLeading1
, theFont
, use16bit
);
1590 *descent
= descent1
;
1591 if (externalLeading
)
1592 *externalLeading
= externalLeading1
;