1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/dc.cpp
3 // Purpose: wxDC class for MSW port
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/msw/wrapcdlg.h"
30 #include "wx/window.h"
32 #include "wx/dialog.h"
34 #include "wx/bitmap.h"
35 #include "wx/dcmemory.h"
38 #include "wx/dcprint.h"
39 #include "wx/module.h"
42 #include "wx/msw/dc.h"
43 #include "wx/sysopt.h"
44 #include "wx/dynlib.h"
46 #ifdef wxHAS_RAW_BITMAP
47 #include "wx/rawbmp.h"
57 #define AC_SRC_ALPHA 1
64 /* Quaternary raster codes */
66 #define MAKEROP4(fore,back) (DWORD)((((back) << 8) & 0xFF000000) | (fore))
69 // apparently with MicroWindows it is possible that HDC is 0 so we have to
70 // check for this ourselves
72 #define WXMICROWIN_CHECK_HDC if ( !GetHDC() ) return;
73 #define WXMICROWIN_CHECK_HDC_RET(x) if ( !GetHDC() ) return x;
75 #define WXMICROWIN_CHECK_HDC
76 #define WXMICROWIN_CHECK_HDC_RET(x)
79 IMPLEMENT_ABSTRACT_CLASS(wxMSWDCImpl
, wxDCImpl
)
81 // ---------------------------------------------------------------------------
83 // ---------------------------------------------------------------------------
85 static const int VIEWPORT_EXTENT
= 1000;
87 // ROPs which don't have standard names (see "Ternary Raster Operations" in the
88 // MSDN docs for how this and other numbers in wxDC::Blit() are obtained)
89 #define DSTCOPY 0x00AA0029 // a.k.a. NOP operation
91 // ----------------------------------------------------------------------------
92 // macros for logical <-> device coords conversion
93 // ----------------------------------------------------------------------------
96 We currently let Windows do all the translations itself so these macros are
97 not really needed (any more) but keep them to enhance readability of the
98 code by allowing to see where are the logical and where are the device
103 #define XLOG2DEV(x) ((x-m_logicalOriginX)*m_signX)
104 #define YLOG2DEV(y) ((y-m_logicalOriginY)*m_signY)
105 #define XDEV2LOG(x) ((x)*m_signX+m_logicalOriginX)
106 #define YDEV2LOG(y) ((y)*m_signY+m_logicalOriginY)
108 #define XLOG2DEV(x) (x)
109 #define YLOG2DEV(y) (y)
110 #define XDEV2LOG(x) (x)
111 #define YDEV2LOG(y) (y)
114 // ---------------------------------------------------------------------------
116 // ---------------------------------------------------------------------------
118 // convert degrees to radians
119 static inline double DegToRad(double deg
) { return (deg
* M_PI
) / 180.0; }
121 // call AlphaBlend() to blit contents of hdcSrc to hdcDst using alpha
123 // NB: bmpSrc is the bitmap selected in hdcSrc, it is not really needed
124 // to pass it to this function but as we already have it at the point
125 // of call anyhow we do
127 // return true if we could draw the bitmap in one way or the other, false
129 static bool AlphaBlt(HDC hdcDst
,
130 int x
, int y
, int dstWidth
, int dstHeight
,
132 int srcWidth
, int srcHeight
,
134 const wxBitmap
& bmp
);
136 #ifdef wxHAS_RAW_BITMAP
138 // our (limited) AlphaBlend() replacement for Windows versions not providing it
140 wxAlphaBlend(HDC hdcDst
, int xDst
, int yDst
,
141 int dstWidth
, int dstHeight
,
143 int srcWidth
, int srcHeight
,
144 const wxBitmap
& bmpSrc
);
146 #endif // wxHAS_RAW_BITMAP
148 // ----------------------------------------------------------------------------
150 // ----------------------------------------------------------------------------
152 // various classes to change some DC property temporarily
154 // text background and foreground colours
155 class wxTextColoursChanger
158 wxTextColoursChanger(HDC hdc
, const wxMSWDCImpl
& dc
)
161 Change(dc
.GetTextForeground(), dc
.GetTextBackground());
164 wxTextColoursChanger(HDC hdc
, const wxColour
& colFg
, const wxColour
& colBg
)
167 Change(colFg
, colBg
);
170 ~wxTextColoursChanger()
172 if ( m_oldColFg
!= CLR_INVALID
)
173 ::SetTextColor(m_hdc
, m_oldColFg
);
174 if ( m_oldColBg
!= CLR_INVALID
)
175 ::SetBkColor(m_hdc
, m_oldColBg
);
179 // this ctor doesn't change mode immediately, call Change() later to do it
181 wxTextColoursChanger(HDC hdc
)
185 m_oldColBg
= CLR_INVALID
;
188 void Change(const wxColour
& colFg
, const wxColour
& colBg
)
192 m_oldColFg
= ::SetTextColor(m_hdc
, colFg
.GetPixel());
193 if ( m_oldColFg
== CLR_INVALID
)
195 wxLogLastError(_T("SetTextColor"));
200 m_oldColFg
= CLR_INVALID
;
205 m_oldColBg
= ::SetBkColor(m_hdc
, colBg
.GetPixel());
206 if ( m_oldColBg
== CLR_INVALID
)
208 wxLogLastError(_T("SetBkColor"));
213 m_oldColBg
= CLR_INVALID
;
222 DECLARE_NO_COPY_CLASS(wxTextColoursChanger
)
226 class wxBkModeChanger
229 // set background mode to opaque if mode != wxBRUSHSTYLE_TRANSPARENT
230 wxBkModeChanger(HDC hdc
, int mode
)
239 ::SetBkMode(m_hdc
, m_oldMode
);
243 // this ctor doesn't change mode immediately, call Change() later to do it
245 wxBkModeChanger(HDC hdc
) : m_hdc(hdc
) { m_oldMode
= 0; }
247 void Change(int mode
)
249 m_oldMode
= ::SetBkMode(m_hdc
, mode
== wxBRUSHSTYLE_TRANSPARENT
254 wxLogLastError(_T("SetBkMode"));
262 DECLARE_NO_COPY_CLASS(wxBkModeChanger
)
265 // instead of duplicating the same code which sets and then restores text
266 // colours in each wxDC method working with wxSTIPPLE_MASK_OPAQUE brushes,
267 // encapsulate this in a small helper class
269 // wxBrushAttrsSetter: changes the text colours in the ctor if required and
270 // restores them in the dtor
271 class wxBrushAttrsSetter
: private wxBkModeChanger
,
272 private wxTextColoursChanger
275 wxBrushAttrsSetter(wxMSWDCImpl
& dc
);
278 DECLARE_NO_COPY_CLASS(wxBrushAttrsSetter
)
281 // this class saves the old stretch blit mode during its life time
282 class StretchBltModeChanger
285 StretchBltModeChanger(HDC hdc
,
286 int WXUNUSED_IN_WINCE(mode
))
290 m_modeOld
= ::SetStretchBltMode(m_hdc
, mode
);
292 wxLogLastError(_T("SetStretchBltMode"));
296 ~StretchBltModeChanger()
299 if ( !::SetStretchBltMode(m_hdc
, m_modeOld
) )
300 wxLogLastError(_T("SetStretchBltMode"));
309 DECLARE_NO_COPY_CLASS(StretchBltModeChanger
)
312 #if wxUSE_DYNLIB_CLASS
314 // helper class to cache dynamically loaded libraries and not attempt reloading
316 class wxOnceOnlyDLLLoader
319 // ctor argument must be a literal string as we don't make a copy of it!
320 wxOnceOnlyDLLLoader(const wxChar
*dllName
)
326 // return the symbol with the given name or NULL if the DLL not loaded
327 // or symbol not present
328 void *GetSymbol(const wxChar
*name
)
330 // we're prepared to handle errors here
335 m_dll
.Load(m_dllName
);
337 // reset the name whether we succeeded or failed so that we don't
338 // try again the next time
342 return m_dll
.IsLoaded() ? m_dll
.GetSymbol(name
) : NULL
;
347 if ( m_dll
.IsLoaded() )
354 wxDynamicLibrary m_dll
;
355 const wxChar
*m_dllName
;
358 static wxOnceOnlyDLLLoader
wxMSIMG32DLL(_T("msimg32"));
360 // we must ensure that DLLs are unloaded before the static objects cleanup time
361 // because we may hit the notorious DllMain() dead lock in this case if wx is
362 // used as a DLL (attempting to unload another DLL from inside DllMain() hangs
363 // under Windows because it tries to reacquire the same lock)
364 class wxGDIDLLsCleanupModule
: public wxModule
367 virtual bool OnInit() { return true; }
368 virtual void OnExit() { wxMSIMG32DLL
.Unload(); }
371 DECLARE_DYNAMIC_CLASS(wxGDIDLLsCleanupModule
)
374 IMPLEMENT_DYNAMIC_CLASS(wxGDIDLLsCleanupModule
, wxModule
)
376 #endif // wxUSE_DYNLIB_CLASS
378 // ===========================================================================
380 // ===========================================================================
382 // ----------------------------------------------------------------------------
383 // wxBrushAttrsSetter
384 // ----------------------------------------------------------------------------
386 wxBrushAttrsSetter::wxBrushAttrsSetter(wxMSWDCImpl
& dc
)
387 : wxBkModeChanger(GetHdcOf(dc
)),
388 wxTextColoursChanger(GetHdcOf(dc
))
390 const wxBrush
& brush
= dc
.GetBrush();
391 if ( brush
.IsOk() && brush
.GetStyle() == wxBRUSHSTYLE_STIPPLE_MASK_OPAQUE
)
393 // note that Windows convention is opposite to wxWidgets one, this is
394 // why text colour becomes the background one and vice versa
395 wxTextColoursChanger::Change(dc
.GetTextBackground(),
396 dc
.GetTextForeground());
398 wxBkModeChanger::Change(dc
.GetBackgroundMode());
402 // ---------------------------------------------------------------------------
404 // ---------------------------------------------------------------------------
406 wxMSWDCImpl::wxMSWDCImpl( wxDC
*owner
, WXHDC hDC
) :
413 wxMSWDCImpl::~wxMSWDCImpl()
417 SelectOldObjects(m_hDC
);
419 // if we own the HDC, we delete it, otherwise we just release it
423 ::DeleteDC(GetHdc());
425 else // we don't own our HDC
429 ::ReleaseDC(GetHwndOf(m_window
), GetHdc());
433 // Must have been a wxScreenDC
434 ::ReleaseDC((HWND
) NULL
, GetHdc());
440 // This will select current objects out of the DC,
441 // which is what you have to do before deleting the
443 void wxMSWDCImpl::SelectOldObjects(WXHDC dc
)
449 ::SelectObject((HDC
) dc
, (HBITMAP
) m_oldBitmap
);
451 if (m_selectedBitmap
.IsOk())
453 m_selectedBitmap
.SetSelectedInto(NULL
);
460 ::SelectObject((HDC
) dc
, (HPEN
) m_oldPen
);
465 ::SelectObject((HDC
) dc
, (HBRUSH
) m_oldBrush
);
470 ::SelectObject((HDC
) dc
, (HFONT
) m_oldFont
);
477 ::SelectPalette((HDC
) dc
, (HPALETTE
) m_oldPalette
, FALSE
);
480 #endif // wxUSE_PALETTE
483 m_brush
= wxNullBrush
;
486 m_palette
= wxNullPalette
;
487 #endif // wxUSE_PALETTE
489 m_backgroundBrush
= wxNullBrush
;
490 m_selectedBitmap
= wxNullBitmap
;
493 // ---------------------------------------------------------------------------
495 // ---------------------------------------------------------------------------
497 void wxMSWDCImpl::UpdateClipBox()
502 ::GetClipBox(GetHdc(), &rect
);
504 m_clipX1
= (wxCoord
) XDEV2LOG(rect
.left
);
505 m_clipY1
= (wxCoord
) YDEV2LOG(rect
.top
);
506 m_clipX2
= (wxCoord
) XDEV2LOG(rect
.right
);
507 m_clipY2
= (wxCoord
) YDEV2LOG(rect
.bottom
);
511 wxMSWDCImpl::DoGetClippingBox(wxCoord
*x
, wxCoord
*y
, wxCoord
*w
, wxCoord
*h
) const
513 // check if we should try to retrieve the clipping region possibly not set
514 // by our SetClippingRegion() but preset by Windows:this can only happen
515 // when we're associated with an existing HDC usign SetHDC(), see there
516 if ( m_clipping
&& !m_clipX1
&& !m_clipX2
)
518 wxMSWDCImpl
*self
= wxConstCast(this, wxMSWDCImpl
);
519 self
->UpdateClipBox();
521 if ( !m_clipX1
&& !m_clipX2
)
522 self
->m_clipping
= false;
525 wxDCImpl::DoGetClippingBox(x
, y
, w
, h
);
528 // common part of DoSetClippingRegion() and DoSetClippingRegionAsRegion()
529 void wxMSWDCImpl::SetClippingHrgn(WXHRGN hrgn
)
531 wxCHECK_RET( hrgn
, wxT("invalid clipping region") );
535 // note that we combine the new clipping region with the existing one: this
536 // is compatible with what the other ports do and is the documented
537 // behaviour now (starting with 2.3.3)
538 #if defined(__WXWINCE__)
540 if ( !::GetClipBox(GetHdc(), &rectClip
) )
543 // GetClipBox returns logical coordinates, so transform to device
544 rectClip
.left
= LogicalToDeviceX(rectClip
.left
);
545 rectClip
.top
= LogicalToDeviceY(rectClip
.top
);
546 rectClip
.right
= LogicalToDeviceX(rectClip
.right
);
547 rectClip
.bottom
= LogicalToDeviceY(rectClip
.bottom
);
549 HRGN hrgnDest
= ::CreateRectRgn(0, 0, 0, 0);
550 HRGN hrgnClipOld
= ::CreateRectRgn(rectClip
.left
, rectClip
.top
,
551 rectClip
.right
, rectClip
.bottom
);
553 if ( ::CombineRgn(hrgnDest
, hrgnClipOld
, (HRGN
)hrgn
, RGN_AND
) != ERROR
)
555 ::SelectClipRgn(GetHdc(), hrgnDest
);
558 ::DeleteObject(hrgnClipOld
);
559 ::DeleteObject(hrgnDest
);
561 if ( ::ExtSelectClipRgn(GetHdc(), (HRGN
)hrgn
, RGN_AND
) == ERROR
)
563 wxLogLastError(_T("ExtSelectClipRgn"));
567 #endif // WinCE/!WinCE
574 void wxMSWDCImpl::DoSetClippingRegion(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
576 // the region coords are always the device ones, so do the translation
579 // FIXME: possible +/-1 error here, to check!
580 HRGN hrgn
= ::CreateRectRgn(LogicalToDeviceX(x
),
582 LogicalToDeviceX(x
+ w
),
583 LogicalToDeviceY(y
+ h
));
586 wxLogLastError(_T("CreateRectRgn"));
590 SetClippingHrgn((WXHRGN
)hrgn
);
592 ::DeleteObject(hrgn
);
596 void wxMSWDCImpl::DoSetClippingRegionAsRegion(const wxRegion
& region
)
598 SetClippingHrgn(region
.GetHRGN());
601 void wxMSWDCImpl::DestroyClippingRegion()
605 if (m_clipping
&& m_hDC
)
608 // On a PocketPC device (not necessarily emulator), resetting
609 // the clip region as per the old method causes bad display
610 // problems. In fact setting a null region is probably OK
611 // on desktop WIN32 also, since the WIN32 docs imply that the user
612 // clipping region is independent from the paint clipping region.
613 ::SelectClipRgn(GetHdc(), 0);
615 // TODO: this should restore the previous clipping region,
616 // so that OnPaint processing works correctly, and the update
617 // clipping region doesn't get destroyed after the first
618 // DestroyClippingRegion.
619 HRGN rgn
= CreateRectRgn(0, 0, 32000, 32000);
620 ::SelectClipRgn(GetHdc(), rgn
);
625 wxDCImpl::DestroyClippingRegion();
628 // ---------------------------------------------------------------------------
629 // query capabilities
630 // ---------------------------------------------------------------------------
632 bool wxMSWDCImpl::CanDrawBitmap() const
637 bool wxMSWDCImpl::CanGetTextExtent() const
639 #ifdef __WXMICROWIN__
640 // TODO Extend MicroWindows' GetDeviceCaps function
643 // What sort of display is it?
644 int technology
= ::GetDeviceCaps(GetHdc(), TECHNOLOGY
);
646 return (technology
== DT_RASDISPLAY
) || (technology
== DT_RASPRINTER
);
650 int wxMSWDCImpl::GetDepth() const
652 WXMICROWIN_CHECK_HDC_RET(16)
654 return (int)::GetDeviceCaps(GetHdc(), BITSPIXEL
);
657 // ---------------------------------------------------------------------------
659 // ---------------------------------------------------------------------------
661 void wxMSWDCImpl::Clear()
668 GetClientRect((HWND
) m_window
->GetHWND(), &rect
);
672 // No, I think we should simply ignore this if printing on e.g.
674 // wxCHECK_RET( m_selectedBitmap.IsOk(), wxT("this DC can't be cleared") );
675 if (!m_selectedBitmap
.IsOk())
678 rect
.left
= -m_deviceOriginX
; rect
.top
= -m_deviceOriginY
;
679 rect
.right
= m_selectedBitmap
.GetWidth()-m_deviceOriginX
;
680 rect
.bottom
= m_selectedBitmap
.GetHeight()-m_deviceOriginY
;
684 (void) ::SetMapMode(GetHdc(), MM_TEXT
);
687 DWORD colour
= ::GetBkColor(GetHdc());
688 HBRUSH brush
= ::CreateSolidBrush(colour
);
689 ::FillRect(GetHdc(), &rect
, brush
);
690 ::DeleteObject(brush
);
692 RealizeScaleAndOrigin();
695 bool wxMSWDCImpl::DoFloodFill(wxCoord
WXUNUSED_IN_WINCE(x
),
696 wxCoord
WXUNUSED_IN_WINCE(y
),
697 const wxColour
& WXUNUSED_IN_WINCE(col
),
698 int WXUNUSED_IN_WINCE(style
))
703 WXMICROWIN_CHECK_HDC_RET(false)
705 bool success
= (0 != ::ExtFloodFill(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
),
707 style
== wxFLOOD_SURFACE
? FLOODFILLSURFACE
708 : FLOODFILLBORDER
) ) ;
711 // quoting from the MSDN docs:
713 // Following are some of the reasons this function might fail:
715 // * The filling could not be completed.
716 // * The specified point has the boundary color specified by the
717 // crColor parameter (if FLOODFILLBORDER was requested).
718 // * The specified point does not have the color specified by
719 // crColor (if FLOODFILLSURFACE was requested)
720 // * The point is outside the clipping region that is, it is not
721 // visible on the device.
723 wxLogLastError(wxT("ExtFloodFill"));
726 CalcBoundingBox(x
, y
);
732 bool wxMSWDCImpl::DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
734 WXMICROWIN_CHECK_HDC_RET(false)
736 wxCHECK_MSG( col
, false, _T("NULL colour parameter in wxMSWDCImpl::GetPixel") );
738 // get the color of the pixel
739 COLORREF pixelcolor
= ::GetPixel(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
));
741 wxRGBToColour(*col
, pixelcolor
);
746 void wxMSWDCImpl::DoCrossHair(wxCoord x
, wxCoord y
)
750 wxCoord x1
= x
-VIEWPORT_EXTENT
;
751 wxCoord y1
= y
-VIEWPORT_EXTENT
;
752 wxCoord x2
= x
+VIEWPORT_EXTENT
;
753 wxCoord y2
= y
+VIEWPORT_EXTENT
;
755 wxDrawLine(GetHdc(), XLOG2DEV(x1
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y
));
756 wxDrawLine(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y1
), XLOG2DEV(x
), YLOG2DEV(y2
));
758 CalcBoundingBox(x1
, y1
);
759 CalcBoundingBox(x2
, y2
);
762 void wxMSWDCImpl::DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
766 wxDrawLine(GetHdc(), XLOG2DEV(x1
), YLOG2DEV(y1
), XLOG2DEV(x2
), YLOG2DEV(y2
));
768 CalcBoundingBox(x1
, y1
);
769 CalcBoundingBox(x2
, y2
);
772 // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1)
773 // and ending at (x2, y2)
774 void wxMSWDCImpl::DoDrawArc(wxCoord x1
, wxCoord y1
,
775 wxCoord x2
, wxCoord y2
,
776 wxCoord xc
, wxCoord yc
)
779 // Slower emulation since WinCE doesn't support Pie and Arc
780 double r
= sqrt( (x1
-xc
)*(x1
-xc
) + (y1
-yc
)*(y1
-yc
) );
781 double sa
= acos((x1
-xc
)/r
)/M_PI
*180; // between 0 and 180
782 if( y1
>yc
) sa
= -sa
; // below center
783 double ea
= atan2(yc
-y2
, x2
-xc
)/M_PI
*180;
784 DoDrawEllipticArcRot( xc
-r
, yc
-r
, 2*r
, 2*r
, sa
, ea
);
789 wxBrushAttrsSetter
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
793 double radius
= (double)sqrt(dx
*dx
+dy
*dy
);
794 wxCoord r
= (wxCoord
)radius
;
796 // treat the special case of full circle separately
797 if ( x1
== x2
&& y1
== y2
)
799 GetOwner()->DrawEllipse(xc
- r
, yc
- r
, 2*r
, 2*r
);
803 wxCoord xx1
= XLOG2DEV(x1
);
804 wxCoord yy1
= YLOG2DEV(y1
);
805 wxCoord xx2
= XLOG2DEV(x2
);
806 wxCoord yy2
= YLOG2DEV(y2
);
807 wxCoord xxc
= XLOG2DEV(xc
);
808 wxCoord yyc
= YLOG2DEV(yc
);
809 wxCoord ray
= (wxCoord
) sqrt(double((xxc
-xx1
)*(xxc
-xx1
)+(yyc
-yy1
)*(yyc
-yy1
)));
811 wxCoord xxx1
= (wxCoord
) (xxc
-ray
);
812 wxCoord yyy1
= (wxCoord
) (yyc
-ray
);
813 wxCoord xxx2
= (wxCoord
) (xxc
+ray
);
814 wxCoord yyy2
= (wxCoord
) (yyc
+ray
);
816 if ( m_brush
.IsOk() && m_brush
.GetStyle() != wxBRUSHSTYLE_TRANSPARENT
)
818 // Have to add 1 to bottom-right corner of rectangle
819 // to make semi-circles look right (crooked line otherwise).
820 // Unfortunately this is not a reliable method, depends
821 // on the size of shape.
822 // TODO: figure out why this happens!
823 Pie(GetHdc(),xxx1
,yyy1
,xxx2
+1,yyy2
+1, xx1
,yy1
,xx2
,yy2
);
827 Arc(GetHdc(),xxx1
,yyy1
,xxx2
,yyy2
, xx1
,yy1
,xx2
,yy2
);
830 CalcBoundingBox(xc
- r
, yc
- r
);
831 CalcBoundingBox(xc
+ r
, yc
+ r
);
835 void wxMSWDCImpl::DoDrawCheckMark(wxCoord x1
, wxCoord y1
,
836 wxCoord width
, wxCoord height
)
838 // cases when we don't have DrawFrameControl()
839 #if defined(__SYMANTEC__) || defined(__WXMICROWIN__)
840 return wxDCBase::DoDrawCheckMark(x1
, y1
, width
, height
);
842 wxCoord x2
= x1
+ width
,
852 DrawFrameControl(GetHdc(), &rect
, DFC_BUTTON
, DFCS_BUTTONCHECK
| DFCS_CHECKED
);
854 DrawFrameControl(GetHdc(), &rect
, DFC_MENU
, DFCS_MENUCHECK
);
857 CalcBoundingBox(x1
, y1
);
858 CalcBoundingBox(x2
, y2
);
859 #endif // Microwin/Normal
862 void wxMSWDCImpl::DoDrawPoint(wxCoord x
, wxCoord y
)
866 COLORREF color
= 0x00ffffff;
869 color
= m_pen
.GetColour().GetPixel();
872 SetPixel(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), color
);
874 CalcBoundingBox(x
, y
);
877 void wxMSWDCImpl::DoDrawPolygon(int n
,
881 int WXUNUSED_IN_WINCE(fillStyle
))
885 wxBrushAttrsSetter
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
887 // Do things less efficiently if we have offsets
888 if (xoffset
!= 0 || yoffset
!= 0)
890 POINT
*cpoints
= new POINT
[n
];
892 for (i
= 0; i
< n
; i
++)
894 cpoints
[i
].x
= (int)(points
[i
].x
+ xoffset
);
895 cpoints
[i
].y
= (int)(points
[i
].y
+ yoffset
);
897 CalcBoundingBox(cpoints
[i
].x
, cpoints
[i
].y
);
900 int prev
= SetPolyFillMode(GetHdc(),fillStyle
==wxODDEVEN_RULE
?ALTERNATE
:WINDING
);
902 (void)Polygon(GetHdc(), cpoints
, n
);
904 SetPolyFillMode(GetHdc(),prev
);
911 for (i
= 0; i
< n
; i
++)
912 CalcBoundingBox(points
[i
].x
, points
[i
].y
);
915 int prev
= SetPolyFillMode(GetHdc(),fillStyle
==wxODDEVEN_RULE
?ALTERNATE
:WINDING
);
917 (void)Polygon(GetHdc(), (POINT
*) points
, n
);
919 SetPolyFillMode(GetHdc(),prev
);
925 wxMSWDCImpl::DoDrawPolyPolygon(int n
,
933 wxDCImpl::DoDrawPolyPolygon(n
, count
, points
, xoffset
, yoffset
, fillStyle
);
937 wxBrushAttrsSetter
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
939 for (i
= cnt
= 0; i
< n
; i
++)
942 // Do things less efficiently if we have offsets
943 if (xoffset
!= 0 || yoffset
!= 0)
945 POINT
*cpoints
= new POINT
[cnt
];
946 for (i
= 0; i
< cnt
; i
++)
948 cpoints
[i
].x
= (int)(points
[i
].x
+ xoffset
);
949 cpoints
[i
].y
= (int)(points
[i
].y
+ yoffset
);
951 CalcBoundingBox(cpoints
[i
].x
, cpoints
[i
].y
);
954 int prev
= SetPolyFillMode(GetHdc(),fillStyle
==wxODDEVEN_RULE
?ALTERNATE
:WINDING
);
956 (void)PolyPolygon(GetHdc(), cpoints
, count
, n
);
958 SetPolyFillMode(GetHdc(),prev
);
964 for (i
= 0; i
< cnt
; i
++)
965 CalcBoundingBox(points
[i
].x
, points
[i
].y
);
968 int prev
= SetPolyFillMode(GetHdc(),fillStyle
==wxODDEVEN_RULE
?ALTERNATE
:WINDING
);
970 (void)PolyPolygon(GetHdc(), (POINT
*) points
, count
, n
);
972 SetPolyFillMode(GetHdc(),prev
);
979 void wxMSWDCImpl::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
983 // Do things less efficiently if we have offsets
984 if (xoffset
!= 0 || yoffset
!= 0)
986 POINT
*cpoints
= new POINT
[n
];
988 for (i
= 0; i
< n
; i
++)
990 cpoints
[i
].x
= (int)(points
[i
].x
+ xoffset
);
991 cpoints
[i
].y
= (int)(points
[i
].y
+ yoffset
);
993 CalcBoundingBox(cpoints
[i
].x
, cpoints
[i
].y
);
995 (void)Polyline(GetHdc(), cpoints
, n
);
1001 for (i
= 0; i
< n
; i
++)
1002 CalcBoundingBox(points
[i
].x
, points
[i
].y
);
1004 (void)Polyline(GetHdc(), (POINT
*) points
, n
);
1008 void wxMSWDCImpl::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1010 WXMICROWIN_CHECK_HDC
1012 wxBrushAttrsSetter
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
1014 wxCoord x2
= x
+ width
;
1015 wxCoord y2
= y
+ height
;
1017 wxCoord x2dev
= XLOG2DEV(x2
),
1018 y2dev
= YLOG2DEV(y2
);
1020 // Windows (but not Windows CE) draws the filled rectangles without outline
1021 // (i.e. drawn with a transparent pen) one pixel smaller in both directions
1022 // and we want them to have the same size regardless of which pen is used
1024 if ( m_pen
.IsOk() && m_pen
.GetStyle() == wxPENSTYLE_TRANSPARENT
)
1029 #endif // !__WXWINCE__
1031 (void)Rectangle(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), x2dev
, y2dev
);
1033 CalcBoundingBox(x
, y
);
1034 CalcBoundingBox(x2
, y2
);
1037 void wxMSWDCImpl::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
1039 WXMICROWIN_CHECK_HDC
1041 wxBrushAttrsSetter
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
1043 // Now, a negative radius value is interpreted to mean
1044 // 'the proportion of the smallest X or Y dimension'
1048 double smallest
= (width
< height
) ? width
: height
;
1049 radius
= (- radius
* smallest
);
1052 wxCoord x2
= (x
+width
);
1053 wxCoord y2
= (y
+height
);
1055 // Windows draws the filled rectangles without outline (i.e. drawn with a
1056 // transparent pen) one pixel smaller in both directions and we want them
1057 // to have the same size regardless of which pen is used - adjust
1058 if ( m_pen
.GetStyle() == wxPENSTYLE_TRANSPARENT
)
1064 (void)RoundRect(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
),
1065 YLOG2DEV(y2
), (int) (2*XLOG2DEV(radius
)), (int)( 2*YLOG2DEV(radius
)));
1067 CalcBoundingBox(x
, y
);
1068 CalcBoundingBox(x2
, y2
);
1071 void wxMSWDCImpl::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1073 WXMICROWIN_CHECK_HDC
1075 wxBrushAttrsSetter
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
1077 wxCoord x2
= (x
+width
);
1078 wxCoord y2
= (y
+height
);
1080 (void)Ellipse(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
1082 CalcBoundingBox(x
, y
);
1083 CalcBoundingBox(x2
, y2
);
1086 #if wxUSE_SPLINES && !defined(__WXWINCE__)
1087 void wxMSWDCImpl::DoDrawSpline(const wxPointList
*points
)
1089 // quadratic b-spline to cubic bezier spline conversion
1091 // quadratic spline with control points P0,P1,P2
1092 // P(s) = P0*(1-s)^2 + P1*2*(1-s)*s + P2*s^2
1094 // bezier spline with control points B0,B1,B2,B3
1095 // B(s) = B0*(1-s)^3 + B1*3*(1-s)^2*s + B2*3*(1-s)*s^2 + B3*s^3
1097 // control points of bezier spline calculated from b-spline
1099 // B1 = (2*P1 + P0)/3
1100 // B2 = (2*P1 + P2)/3
1103 WXMICROWIN_CHECK_HDC
1105 wxASSERT_MSG( points
, wxT("NULL pointer to spline points?") );
1107 const size_t n_points
= points
->GetCount();
1108 wxASSERT_MSG( n_points
> 2 , wxT("incomplete list of spline points?") );
1110 const size_t n_bezier_points
= n_points
* 3 + 1;
1111 POINT
*lppt
= (POINT
*)malloc(n_bezier_points
*sizeof(POINT
));
1112 size_t bezier_pos
= 0;
1113 wxCoord x1
, y1
, x2
, y2
, cx1
, cy1
, cx4
, cy4
;
1115 wxPointList::compatibility_iterator node
= points
->GetFirst();
1116 wxPoint
*p
= node
->GetData();
1117 lppt
[ bezier_pos
].x
= x1
= p
->x
;
1118 lppt
[ bezier_pos
].y
= y1
= p
->y
;
1120 lppt
[ bezier_pos
] = lppt
[ bezier_pos
-1 ];
1123 node
= node
->GetNext();
1124 p
= node
->GetData();
1128 cx1
= ( x1
+ x2
) / 2;
1129 cy1
= ( y1
+ y2
) / 2;
1130 lppt
[ bezier_pos
].x
= XLOG2DEV(cx1
);
1131 lppt
[ bezier_pos
].y
= YLOG2DEV(cy1
);
1133 lppt
[ bezier_pos
] = lppt
[ bezier_pos
-1 ];
1137 while ((node
= node
->GetNext()) != NULL
)
1139 while ((node
= node
->GetNext()))
1140 #endif // !wxUSE_STL
1142 p
= (wxPoint
*)node
->GetData();
1147 cx4
= (x1
+ x2
) / 2;
1148 cy4
= (y1
+ y2
) / 2;
1149 // B0 is B3 of previous segment
1151 lppt
[ bezier_pos
].x
= XLOG2DEV((x1
*2+cx1
)/3);
1152 lppt
[ bezier_pos
].y
= YLOG2DEV((y1
*2+cy1
)/3);
1155 lppt
[ bezier_pos
].x
= XLOG2DEV((x1
*2+cx4
)/3);
1156 lppt
[ bezier_pos
].y
= YLOG2DEV((y1
*2+cy4
)/3);
1159 lppt
[ bezier_pos
].x
= XLOG2DEV(cx4
);
1160 lppt
[ bezier_pos
].y
= YLOG2DEV(cy4
);
1166 lppt
[ bezier_pos
] = lppt
[ bezier_pos
-1 ];
1168 lppt
[ bezier_pos
].x
= XLOG2DEV(x2
);
1169 lppt
[ bezier_pos
].y
= YLOG2DEV(y2
);
1171 lppt
[ bezier_pos
] = lppt
[ bezier_pos
-1 ];
1174 ::PolyBezier( GetHdc(), lppt
, bezier_pos
);
1178 #endif // wxUSE_SPLINES
1180 // Chris Breeze 20/5/98: first implementation of DrawEllipticArc on Windows
1181 void wxMSWDCImpl::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
1184 DoDrawEllipticArcRot( x
, y
, w
, h
, sa
, ea
);
1187 WXMICROWIN_CHECK_HDC
1189 wxBrushAttrsSetter
cc(*this); // needed for wxSTIPPLE_MASK_OPAQUE handling
1194 int rx1
= XLOG2DEV(x
+w
/2);
1195 int ry1
= YLOG2DEV(y
+h
/2);
1202 rx1
+= (int)(100.0 * abs(w
) * cos(sa
));
1203 ry1
-= (int)(100.0 * abs(h
) * m_signY
* sin(sa
));
1204 rx2
+= (int)(100.0 * abs(w
) * cos(ea
));
1205 ry2
-= (int)(100.0 * abs(h
) * m_signY
* sin(ea
));
1207 // Swap start and end positions if the end angle is less than the start angle.
1218 // draw pie with NULL_PEN first and then outline otherwise a line is
1219 // drawn from the start and end points to the centre
1220 HPEN hpenOld
= (HPEN
) ::SelectObject(GetHdc(), (HPEN
) ::GetStockObject(NULL_PEN
));
1223 (void)Pie(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
)+1, YLOG2DEV(y2
)+1,
1224 rx1
, ry1
, rx2
, ry2
);
1228 (void)Pie(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
)-1, XLOG2DEV(x2
)+1, YLOG2DEV(y2
),
1229 rx1
, ry1
-1, rx2
, ry2
-1);
1232 ::SelectObject(GetHdc(), hpenOld
);
1234 (void)Arc(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
),
1235 rx1
, ry1
, rx2
, ry2
);
1237 CalcBoundingBox(x
, y
);
1238 CalcBoundingBox(x2
, y2
);
1242 void wxMSWDCImpl::DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
1244 WXMICROWIN_CHECK_HDC
1246 wxCHECK_RET( icon
.IsOk(), wxT("invalid icon in DrawIcon") );
1249 ::DrawIconEx(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), GetHiconOf(icon
), icon
.GetWidth(), icon
.GetHeight(), 0, NULL
, DI_NORMAL
);
1251 ::DrawIcon(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), GetHiconOf(icon
));
1254 CalcBoundingBox(x
, y
);
1255 CalcBoundingBox(x
+ icon
.GetWidth(), y
+ icon
.GetHeight());
1258 void wxMSWDCImpl::DoDrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
1260 WXMICROWIN_CHECK_HDC
1262 wxCHECK_RET( bmp
.IsOk(), _T("invalid bitmap in wxMSWDCImpl::DrawBitmap") );
1264 int width
= bmp
.GetWidth(),
1265 height
= bmp
.GetHeight();
1267 HBITMAP hbmpMask
= 0;
1270 HPALETTE oldPal
= 0;
1271 #endif // wxUSE_PALETTE
1273 if ( bmp
.HasAlpha() )
1276 SelectInHDC
select(hdcMem
, GetHbitmapOf(bmp
));
1278 if ( AlphaBlt(GetHdc(), x
, y
, width
, height
, 0, 0, width
, height
, hdcMem
, bmp
) )
1284 wxMask
*mask
= bmp
.GetMask();
1286 hbmpMask
= (HBITMAP
)mask
->GetMaskBitmap();
1290 // don't give assert here because this would break existing
1291 // programs - just silently ignore useMask parameter
1298 // use MaskBlt() with ROP which doesn't do anything to dst in the mask
1300 // On some systems, MaskBlt succeeds yet is much much slower
1301 // than the wxWidgets fall-back implementation. So we need
1302 // to be able to switch this on and off at runtime.
1304 #if wxUSE_SYSTEM_OPTIONS
1305 if (wxSystemOptions::GetOptionInt(wxT("no-maskblt")) == 0)
1309 HDC hdcMem
= ::CreateCompatibleDC(GetHdc());
1310 HGDIOBJ hOldBitmap
= ::SelectObject(hdcMem
, GetHbitmapOf(bmp
));
1312 wxPalette
*pal
= bmp
.GetPalette();
1313 if ( pal
&& ::GetDeviceCaps(cdc
,BITSPIXEL
) <= 8 )
1315 oldPal
= ::SelectPalette(hdcMem
, GetHpaletteOf(*pal
), FALSE
);
1316 ::RealizePalette(hdcMem
);
1318 #endif // wxUSE_PALETTE
1320 ok
= ::MaskBlt(cdc
, x
, y
, width
, height
,
1323 MAKEROP4(SRCCOPY
, DSTCOPY
)) != 0;
1327 ::SelectPalette(hdcMem
, oldPal
, FALSE
);
1328 #endif // wxUSE_PALETTE
1330 ::SelectObject(hdcMem
, hOldBitmap
);
1337 // Rather than reproduce wxMSWDCImpl::Blit, let's do it at the wxWin API
1341 memDC
.SelectObjectAsSource(bmp
);
1343 GetOwner()->Blit(x
, y
, width
, height
, &memDC
, 0, 0, wxCOPY
, useMask
);
1345 memDC
.SelectObject(wxNullBitmap
);
1348 else // no mask, just use BitBlt()
1351 HDC memdc
= ::CreateCompatibleDC( cdc
);
1352 HBITMAP hbitmap
= (HBITMAP
) bmp
.GetHBITMAP( );
1354 wxASSERT_MSG( hbitmap
, wxT("bitmap is ok but HBITMAP is NULL?") );
1356 wxTextColoursChanger
textCol(GetHdc(), *this);
1359 wxPalette
*pal
= bmp
.GetPalette();
1360 if ( pal
&& ::GetDeviceCaps(cdc
,BITSPIXEL
) <= 8 )
1362 oldPal
= ::SelectPalette(memdc
, GetHpaletteOf(*pal
), FALSE
);
1363 ::RealizePalette(memdc
);
1365 #endif // wxUSE_PALETTE
1367 HGDIOBJ hOldBitmap
= ::SelectObject( memdc
, hbitmap
);
1368 ::BitBlt( cdc
, x
, y
, width
, height
, memdc
, 0, 0, SRCCOPY
);
1372 ::SelectPalette(memdc
, oldPal
, FALSE
);
1373 #endif // wxUSE_PALETTE
1375 ::SelectObject( memdc
, hOldBitmap
);
1376 ::DeleteDC( memdc
);
1380 void wxMSWDCImpl::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
1382 WXMICROWIN_CHECK_HDC
1384 DrawAnyText(text
, x
, y
);
1386 // update the bounding box
1387 CalcBoundingBox(x
, y
);
1390 GetOwner()->GetTextExtent(text
, &w
, &h
);
1391 CalcBoundingBox(x
+ w
, y
+ h
);
1394 void wxMSWDCImpl::DrawAnyText(const wxString
& text
, wxCoord x
, wxCoord y
)
1396 WXMICROWIN_CHECK_HDC
1398 // prepare for drawing the text
1399 wxTextColoursChanger
textCol(GetHdc(), *this);
1401 wxBkModeChanger
bkMode(GetHdc(), m_backgroundMode
);
1403 if ( ::ExtTextOut(GetHdc(), XLOG2DEV(x
), YLOG2DEV(y
), 0, NULL
,
1404 text
.c_str(), text
.length(), NULL
) == 0 )
1406 wxLogLastError(wxT("TextOut"));
1410 void wxMSWDCImpl::DoDrawRotatedText(const wxString
& text
,
1411 wxCoord x
, wxCoord y
,
1414 WXMICROWIN_CHECK_HDC
1416 // we test that we have some font because otherwise we should still use the
1417 // "else" part below to avoid that DrawRotatedText(angle = 180) and
1418 // DrawRotatedText(angle = 0) use different fonts (we can't use the default
1419 // font for drawing rotated fonts unfortunately)
1420 if ( (angle
== 0.0) && m_font
.IsOk() )
1422 DoDrawText(text
, x
, y
);
1424 #ifndef __WXMICROWIN__
1427 // NB: don't take DEFAULT_GUI_FONT (a.k.a. wxSYS_DEFAULT_GUI_FONT)
1428 // because it's not TrueType and so can't have non zero
1429 // orientation/escapement under Win9x
1430 wxFont font
= m_font
.IsOk() ? m_font
: *wxSWISS_FONT
;
1431 HFONT hfont
= (HFONT
)font
.GetResourceHandle();
1433 if ( ::GetObject(hfont
, sizeof(lf
), &lf
) == 0 )
1435 wxLogLastError(wxT("GetObject(hfont)"));
1438 // GDI wants the angle in tenth of degree
1439 long angle10
= (long)(angle
* 10);
1440 lf
.lfEscapement
= angle10
;
1441 lf
. lfOrientation
= angle10
;
1443 hfont
= ::CreateFontIndirect(&lf
);
1446 wxLogLastError(wxT("CreateFont"));
1450 HFONT hfontOld
= (HFONT
)::SelectObject(GetHdc(), hfont
);
1452 DrawAnyText(text
, x
, y
);
1454 (void)::SelectObject(GetHdc(), hfontOld
);
1455 (void)::DeleteObject(hfont
);
1458 // call the bounding box by adding all four vertices of the rectangle
1459 // containing the text to it (simpler and probably not slower than
1460 // determining which of them is really topmost/leftmost/...)
1462 GetOwner()->GetTextExtent(text
, &w
, &h
);
1464 double rad
= DegToRad(angle
);
1466 // "upper left" and "upper right"
1467 CalcBoundingBox(x
, y
);
1468 CalcBoundingBox(x
+ wxCoord(w
*cos(rad
)), y
- wxCoord(w
*sin(rad
)));
1470 // "bottom left" and "bottom right"
1471 x
+= (wxCoord
)(h
*sin(rad
));
1472 y
+= (wxCoord
)(h
*cos(rad
));
1473 CalcBoundingBox(x
, y
);
1474 CalcBoundingBox(x
+ wxCoord(w
*cos(rad
)), y
- wxCoord(w
*sin(rad
)));
1479 // ---------------------------------------------------------------------------
1481 // ---------------------------------------------------------------------------
1485 void wxMSWDCImpl::DoSelectPalette(bool realize
)
1487 WXMICROWIN_CHECK_HDC
1489 // Set the old object temporarily, in case the assignment deletes an object
1490 // that's not yet selected out.
1493 ::SelectPalette(GetHdc(), (HPALETTE
) m_oldPalette
, FALSE
);
1497 if ( m_palette
.IsOk() )
1499 HPALETTE oldPal
= ::SelectPalette(GetHdc(),
1500 GetHpaletteOf(m_palette
),
1503 m_oldPalette
= (WXHPALETTE
) oldPal
;
1506 ::RealizePalette(GetHdc());
1510 void wxMSWDCImpl::SetPalette(const wxPalette
& palette
)
1512 if ( palette
.IsOk() )
1514 m_palette
= palette
;
1515 DoSelectPalette(true);
1519 void wxMSWDCImpl::InitializePalette()
1521 if ( wxDisplayDepth() <= 8 )
1523 // look for any window or parent that has a custom palette. If any has
1524 // one then we need to use it in drawing operations
1525 wxWindow
*win
= m_window
->GetAncestorWithCustomPalette();
1527 m_hasCustomPalette
= win
&& win
->HasCustomPalette();
1528 if ( m_hasCustomPalette
)
1530 m_palette
= win
->GetPalette();
1532 // turn on MSW translation for this palette
1538 #endif // wxUSE_PALETTE
1540 // SetFont/Pen/Brush() really ask to be implemented as a single template
1541 // function... but doing it is not worth breaking OpenWatcom build <sigh>
1543 void wxMSWDCImpl::SetFont(const wxFont
& font
)
1545 WXMICROWIN_CHECK_HDC
1547 if ( font
== m_font
)
1552 HGDIOBJ hfont
= ::SelectObject(GetHdc(), GetHfontOf(font
));
1553 if ( hfont
== HGDI_ERROR
)
1555 wxLogLastError(_T("SelectObject(font)"));
1560 m_oldFont
= (WXHFONT
)hfont
;
1565 else // invalid font, reset the current font
1569 if ( ::SelectObject(GetHdc(), (HPEN
) m_oldFont
) == HGDI_ERROR
)
1571 wxLogLastError(_T("SelectObject(old font)"));
1577 m_font
= wxNullFont
;
1581 void wxMSWDCImpl::SetPen(const wxPen
& pen
)
1583 WXMICROWIN_CHECK_HDC
1590 HGDIOBJ hpen
= ::SelectObject(GetHdc(), GetHpenOf(pen
));
1591 if ( hpen
== HGDI_ERROR
)
1593 wxLogLastError(_T("SelectObject(pen)"));
1598 m_oldPen
= (WXHPEN
)hpen
;
1603 else // invalid pen, reset the current pen
1607 if ( ::SelectObject(GetHdc(), (HPEN
) m_oldPen
) == HGDI_ERROR
)
1609 wxLogLastError(_T("SelectObject(old pen)"));
1619 void wxMSWDCImpl::SetBrush(const wxBrush
& brush
)
1621 WXMICROWIN_CHECK_HDC
1623 if ( brush
== m_brush
)
1628 // we must make sure the brush is aligned with the logical coordinates
1629 // before selecting it
1630 wxBitmap
*stipple
= brush
.GetStipple();
1631 if ( stipple
&& stipple
->IsOk() )
1633 if ( !::SetBrushOrgEx
1636 m_deviceOriginX
% stipple
->GetWidth(),
1637 m_deviceOriginY
% stipple
->GetHeight(),
1638 NULL
// [out] previous brush origin
1641 wxLogLastError(_T("SetBrushOrgEx()"));
1645 HGDIOBJ hbrush
= ::SelectObject(GetHdc(), GetHbrushOf(brush
));
1646 if ( hbrush
== HGDI_ERROR
)
1648 wxLogLastError(_T("SelectObject(brush)"));
1653 m_oldBrush
= (WXHBRUSH
)hbrush
;
1658 else // invalid brush, reset the current brush
1662 if ( ::SelectObject(GetHdc(), (HPEN
) m_oldBrush
) == HGDI_ERROR
)
1664 wxLogLastError(_T("SelectObject(old brush)"));
1670 m_brush
= wxNullBrush
;
1674 void wxMSWDCImpl::SetBackground(const wxBrush
& brush
)
1676 WXMICROWIN_CHECK_HDC
1678 m_backgroundBrush
= brush
;
1680 if ( m_backgroundBrush
.IsOk() )
1682 (void)SetBkColor(GetHdc(), m_backgroundBrush
.GetColour().GetPixel());
1686 void wxMSWDCImpl::SetBackgroundMode(int mode
)
1688 WXMICROWIN_CHECK_HDC
1690 m_backgroundMode
= mode
;
1692 // SetBackgroundColour now only refers to text background
1693 // and m_backgroundMode is used there
1696 void wxMSWDCImpl::SetLogicalFunction(int function
)
1698 WXMICROWIN_CHECK_HDC
1700 m_logicalFunction
= function
;
1705 void wxMSWDCImpl::SetRop(WXHDC dc
)
1707 if ( !dc
|| m_logicalFunction
< 0 )
1712 switch (m_logicalFunction
)
1714 case wxCLEAR
: rop
= R2_BLACK
; break;
1715 case wxXOR
: rop
= R2_XORPEN
; break;
1716 case wxINVERT
: rop
= R2_NOT
; break;
1717 case wxOR_REVERSE
: rop
= R2_MERGEPENNOT
; break;
1718 case wxAND_REVERSE
: rop
= R2_MASKPENNOT
; break;
1719 case wxCOPY
: rop
= R2_COPYPEN
; break;
1720 case wxAND
: rop
= R2_MASKPEN
; break;
1721 case wxAND_INVERT
: rop
= R2_MASKNOTPEN
; break;
1722 case wxNO_OP
: rop
= R2_NOP
; break;
1723 case wxNOR
: rop
= R2_NOTMERGEPEN
; break;
1724 case wxEQUIV
: rop
= R2_NOTXORPEN
; break;
1725 case wxSRC_INVERT
: rop
= R2_NOTCOPYPEN
; break;
1726 case wxOR_INVERT
: rop
= R2_MERGENOTPEN
; break;
1727 case wxNAND
: rop
= R2_NOTMASKPEN
; break;
1728 case wxOR
: rop
= R2_MERGEPEN
; break;
1729 case wxSET
: rop
= R2_WHITE
; break;
1732 wxFAIL_MSG( wxT("unsupported logical function") );
1736 SetROP2(GetHdc(), rop
);
1739 bool wxMSWDCImpl::StartDoc(const wxString
& WXUNUSED(message
))
1741 // We might be previewing, so return true to let it continue.
1745 void wxMSWDCImpl::EndDoc()
1749 void wxMSWDCImpl::StartPage()
1753 void wxMSWDCImpl::EndPage()
1757 // ---------------------------------------------------------------------------
1759 // ---------------------------------------------------------------------------
1761 wxCoord
wxMSWDCImpl::GetCharHeight() const
1763 WXMICROWIN_CHECK_HDC_RET(0)
1765 TEXTMETRIC lpTextMetric
;
1767 GetTextMetrics(GetHdc(), &lpTextMetric
);
1769 return lpTextMetric
.tmHeight
;
1772 wxCoord
wxMSWDCImpl::GetCharWidth() const
1774 WXMICROWIN_CHECK_HDC_RET(0)
1776 TEXTMETRIC lpTextMetric
;
1778 GetTextMetrics(GetHdc(), &lpTextMetric
);
1780 return lpTextMetric
.tmAveCharWidth
;
1783 void wxMSWDCImpl::DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
1784 wxCoord
*descent
, wxCoord
*externalLeading
,
1785 const wxFont
*font
) const
1787 #ifdef __WXMICROWIN__
1792 if (descent
) *descent
= 0;
1793 if (externalLeading
) *externalLeading
= 0;
1796 #endif // __WXMICROWIN__
1801 wxASSERT_MSG( font
->IsOk(), _T("invalid font in wxMSWDCImpl::GetTextExtent") );
1803 hfontOld
= (HFONT
)::SelectObject(GetHdc(), GetHfontOf(*font
));
1805 else // don't change the font
1811 const size_t len
= string
.length();
1812 if ( !::GetTextExtentPoint32(GetHdc(), string
.wx_str(), len
, &sizeRect
) )
1814 wxLogLastError(_T("GetTextExtentPoint32()"));
1817 #if !defined(_WIN32_WCE) || (_WIN32_WCE >= 400)
1818 // the result computed by GetTextExtentPoint32() may be too small as it
1819 // accounts for under/overhang of the first/last character while we want
1820 // just the bounding rect for this string so adjust the width as needed
1821 // (using API not available in 2002 SDKs of WinCE)
1825 const wxChar chFirst
= *string
.begin();
1826 if ( ::GetCharABCWidths(GetHdc(), chFirst
, chFirst
, &width
) )
1828 if ( width
.abcA
< 0 )
1829 sizeRect
.cx
-= width
.abcA
;
1833 const wxChar chLast
= *string
.rbegin();
1834 ::GetCharABCWidths(GetHdc(), chLast
, chLast
, &width
);
1836 //else: we already have the width of the last character
1838 if ( width
.abcC
< 0 )
1839 sizeRect
.cx
-= width
.abcC
;
1841 //else: GetCharABCWidths() failed, not a TrueType font?
1843 #endif // !defined(_WIN32_WCE) || (_WIN32_WCE >= 400)
1846 ::GetTextMetrics(GetHdc(), &tm
);
1853 *descent
= tm
.tmDescent
;
1854 if (externalLeading
)
1855 *externalLeading
= tm
.tmExternalLeading
;
1859 ::SelectObject(GetHdc(), hfontOld
);
1864 // Each element of the array will be the width of the string up to and
1865 // including the coresoponding character in text.
1867 bool wxMSWDCImpl::DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const
1869 static int maxLenText
= -1;
1870 static int maxWidth
= -1;
1873 int stlen
= text
.length();
1875 if (maxLenText
== -1)
1877 // Win9x and WinNT+ have different limits
1878 int version
= wxGetOsVersion();
1879 maxLenText
= version
== wxOS_WINDOWS_NT
? 65535 : 8192;
1880 maxWidth
= version
== wxOS_WINDOWS_NT
? INT_MAX
: 32767;
1884 widths
.Add(0, stlen
); // fill the array with zeros
1888 if (!::GetTextExtentExPoint(GetHdc(),
1889 text
.c_str(), // string to check
1890 wxMin(stlen
, maxLenText
),
1892 &fit
, // [out] count of chars
1894 &widths
[0], // array to fill
1898 wxLogLastError(wxT("GetTextExtentExPoint"));
1905 void wxMSWDCImpl::RealizeScaleAndOrigin()
1907 // although it may seem wasteful to always use MM_ANISOTROPIC here instead
1908 // of using MM_TEXT if there is no scaling, benchmarking doesn't detect any
1909 // noticeable difference between these mapping modes
1911 ::SetMapMode(GetHdc(), MM_ANISOTROPIC
);
1913 int width
= DeviceToLogicalXRel(VIEWPORT_EXTENT
)*m_signX
,
1914 height
= DeviceToLogicalYRel(VIEWPORT_EXTENT
)*m_signY
;
1916 ::SetViewportExtEx(GetHdc(), VIEWPORT_EXTENT
, VIEWPORT_EXTENT
, NULL
);
1917 ::SetWindowExtEx(GetHdc(), width
, height
, NULL
);
1919 ::SetViewportOrgEx(GetHdc(), m_deviceOriginX
, m_deviceOriginY
, NULL
);
1920 ::SetWindowOrgEx(GetHdc(), m_logicalOriginX
, m_logicalOriginY
, NULL
);
1924 void wxMSWDCImpl::SetMapMode(int mode
)
1926 WXMICROWIN_CHECK_HDC
1928 m_mappingMode
= mode
;
1930 if ( mode
== wxMM_TEXT
)
1933 m_logicalScaleY
= 1.0;
1935 else // need to do some calculations
1937 int pixel_width
= ::GetDeviceCaps(GetHdc(), HORZRES
),
1938 pixel_height
= ::GetDeviceCaps(GetHdc(), VERTRES
),
1939 mm_width
= ::GetDeviceCaps(GetHdc(), HORZSIZE
),
1940 mm_height
= ::GetDeviceCaps(GetHdc(), VERTSIZE
);
1942 if ( (mm_width
== 0) || (mm_height
== 0) )
1944 // we can't calculate mm2pixels[XY] then!
1948 double mm2pixelsX
= (double)pixel_width
/ mm_width
,
1949 mm2pixelsY
= (double)pixel_height
/ mm_height
;
1954 m_logicalScaleX
= twips2mm
* mm2pixelsX
;
1955 m_logicalScaleY
= twips2mm
* mm2pixelsY
;
1959 m_logicalScaleX
= pt2mm
* mm2pixelsX
;
1960 m_logicalScaleY
= pt2mm
* mm2pixelsY
;
1964 m_logicalScaleX
= mm2pixelsX
;
1965 m_logicalScaleY
= mm2pixelsY
;
1969 m_logicalScaleX
= mm2pixelsX
/ 10.0;
1970 m_logicalScaleY
= mm2pixelsY
/ 10.0;
1974 wxFAIL_MSG( _T("unknown mapping mode in SetMapMode") );
1978 ComputeScaleAndOrigin();
1980 RealizeScaleAndOrigin();
1983 void wxMSWDCImpl::SetUserScale(double x
, double y
)
1985 WXMICROWIN_CHECK_HDC
1987 if ( x
== m_userScaleX
&& y
== m_userScaleY
)
1990 wxDCImpl::SetUserScale(x
,y
);
1992 RealizeScaleAndOrigin();
1995 void wxMSWDCImpl::SetAxisOrientation(bool xLeftRight
,
1998 WXMICROWIN_CHECK_HDC
2000 int signX
= xLeftRight
? 1 : -1,
2001 signY
= yBottomUp
? -1 : 1;
2003 if (signX
== m_signX
&& signY
== m_signY
)
2006 wxDCImpl::SetAxisOrientation( xLeftRight
, yBottomUp
);
2008 RealizeScaleAndOrigin();
2011 void wxMSWDCImpl::SetLogicalOrigin(wxCoord x
, wxCoord y
)
2013 WXMICROWIN_CHECK_HDC
2015 if ( x
== m_logicalOriginX
&& y
== m_logicalOriginY
)
2018 wxDCImpl::SetLogicalOrigin( x
, y
);
2020 RealizeScaleAndOrigin();
2023 // For use by wxWidgets only, unless custom units are required.
2024 void wxMSWDCImpl::SetLogicalScale(double x
, double y
)
2026 WXMICROWIN_CHECK_HDC
2028 wxDCImpl::SetLogicalScale(x
,y
);
2031 void wxMSWDCImpl::SetDeviceOrigin(wxCoord x
, wxCoord y
)
2033 WXMICROWIN_CHECK_HDC
2035 if ( x
== m_deviceOriginX
&& y
== m_deviceOriginY
)
2038 wxDCImpl::SetDeviceOrigin( x
, y
);
2040 ::SetViewportOrgEx(GetHdc(), (int)m_deviceOriginX
, (int)m_deviceOriginY
, NULL
);
2043 // ---------------------------------------------------------------------------
2045 // ---------------------------------------------------------------------------
2047 bool wxMSWDCImpl::DoBlit(wxCoord dstX
, wxCoord dstY
,
2048 wxCoord dstWidth
, wxCoord dstHeight
,
2050 wxCoord srcX
, wxCoord srcY
,
2051 int rop
, bool useMask
,
2052 wxCoord srcMaskX
, wxCoord srcMaskY
)
2054 return DoStretchBlit(dstX
, dstY
, dstWidth
, dstHeight
, source
, srcX
, srcY
, dstWidth
, dstHeight
, rop
, useMask
, srcMaskX
, srcMaskY
);
2057 bool wxMSWDCImpl::DoStretchBlit(wxCoord xdest
, wxCoord ydest
,
2058 wxCoord dstWidth
, wxCoord dstHeight
,
2060 wxCoord xsrc
, wxCoord ysrc
,
2061 wxCoord srcWidth
, wxCoord srcHeight
,
2062 int rop
, bool useMask
,
2063 wxCoord xsrcMask
, wxCoord ysrcMask
)
2065 wxCHECK_MSG( source
, false, _T("wxMSWDCImpl::Blit(): NULL wxDC pointer") );
2067 WXMICROWIN_CHECK_HDC_RET(false)
2069 wxMSWDCImpl
*implSrc
= wxDynamicCast( source
->GetImpl(), wxMSWDCImpl
);
2072 // TODO: Do we want to be able to blit from other DCs too?
2076 const HDC hdcSrc
= GetHdcOf(*implSrc
);
2078 // if either the source or destination has alpha channel, we must use
2079 // AlphaBlt() as other function don't handle it correctly
2080 const wxBitmap
& bmpSrc
= implSrc
->GetSelectedBitmap();
2081 if ( bmpSrc
.IsOk() && (bmpSrc
.HasAlpha() ||
2082 (m_selectedBitmap
.IsOk() && m_selectedBitmap
.HasAlpha())) )
2084 if ( AlphaBlt(GetHdc(), xdest
, ydest
, dstWidth
, dstHeight
,
2085 xsrc
, ysrc
, srcWidth
, srcHeight
, hdcSrc
, bmpSrc
) )
2089 wxMask
*mask
= NULL
;
2092 mask
= bmpSrc
.GetMask();
2094 if ( !(bmpSrc
.IsOk() && mask
&& mask
->GetMaskBitmap()) )
2096 // don't give assert here because this would break existing
2097 // programs - just silently ignore useMask parameter
2102 if (xsrcMask
== -1 && ysrcMask
== -1)
2104 xsrcMask
= xsrc
; ysrcMask
= ysrc
;
2107 wxTextColoursChanger
textCol(GetHdc(), *this);
2112 case wxXOR
: dwRop
= SRCINVERT
; break;
2113 case wxINVERT
: dwRop
= DSTINVERT
; break;
2114 case wxOR_REVERSE
: dwRop
= 0x00DD0228; break;
2115 case wxAND_REVERSE
: dwRop
= SRCERASE
; break;
2116 case wxCLEAR
: dwRop
= BLACKNESS
; break;
2117 case wxSET
: dwRop
= WHITENESS
; break;
2118 case wxOR_INVERT
: dwRop
= MERGEPAINT
; break;
2119 case wxAND
: dwRop
= SRCAND
; break;
2120 case wxOR
: dwRop
= SRCPAINT
; break;
2121 case wxEQUIV
: dwRop
= 0x00990066; break;
2122 case wxNAND
: dwRop
= 0x007700E6; break;
2123 case wxAND_INVERT
: dwRop
= 0x00220326; break;
2124 case wxCOPY
: dwRop
= SRCCOPY
; break;
2125 case wxNO_OP
: dwRop
= DSTCOPY
; break;
2126 case wxSRC_INVERT
: dwRop
= NOTSRCCOPY
; break;
2127 case wxNOR
: dwRop
= NOTSRCCOPY
; break;
2129 wxFAIL_MSG( wxT("unsupported logical function") );
2133 bool success
= false;
2138 // we want the part of the image corresponding to the mask to be
2139 // transparent, so use "DSTCOPY" ROP for the mask points (the usual
2140 // meaning of fg and bg is inverted which corresponds to wxWin notion
2141 // of the mask which is also contrary to the Windows one)
2143 // On some systems, MaskBlt succeeds yet is much much slower
2144 // than the wxWidgets fall-back implementation. So we need
2145 // to be able to switch this on and off at runtime.
2146 #if wxUSE_SYSTEM_OPTIONS
2147 if (wxSystemOptions::GetOptionInt(wxT("no-maskblt")) == 0)
2150 if ( dstWidth
== srcWidth
&& dstHeight
== srcHeight
)
2155 xdest
, ydest
, dstWidth
, dstHeight
,
2158 (HBITMAP
)mask
->GetMaskBitmap(),
2160 MAKEROP4(dwRop
, DSTCOPY
)
2168 // Blit bitmap with mask
2171 HBITMAP buffer_bmap
;
2173 #if wxUSE_DC_CACHEING
2174 // create a temp buffer bitmap and DCs to access it and the mask
2175 wxDCCacheEntry
* dcCacheEntry1
= FindDCInCache(NULL
, hdcSrc
);
2176 dc_mask
= (HDC
) dcCacheEntry1
->m_dc
;
2178 wxDCCacheEntry
* dcCacheEntry2
= FindDCInCache(dcCacheEntry1
, GetHDC());
2179 dc_buffer
= (HDC
) dcCacheEntry2
->m_dc
;
2181 wxDCCacheEntry
* bitmapCacheEntry
= FindBitmapInCache(GetHDC(),
2182 dstWidth
, dstHeight
);
2184 buffer_bmap
= (HBITMAP
) bitmapCacheEntry
->m_bitmap
;
2185 #else // !wxUSE_DC_CACHEING
2186 // create a temp buffer bitmap and DCs to access it and the mask
2187 dc_mask
= ::CreateCompatibleDC(hdcSrc
);
2188 dc_buffer
= ::CreateCompatibleDC(GetHdc());
2189 buffer_bmap
= ::CreateCompatibleBitmap(GetHdc(), dstWidth
, dstHeight
);
2190 #endif // wxUSE_DC_CACHEING/!wxUSE_DC_CACHEING
2191 HGDIOBJ hOldMaskBitmap
= ::SelectObject(dc_mask
, (HBITMAP
) mask
->GetMaskBitmap());
2192 HGDIOBJ hOldBufferBitmap
= ::SelectObject(dc_buffer
, buffer_bmap
);
2194 // copy dest to buffer
2195 if ( !::BitBlt(dc_buffer
, 0, 0, dstWidth
, dstHeight
,
2196 GetHdc(), xdest
, ydest
, SRCCOPY
) )
2198 wxLogLastError(wxT("BitBlt"));
2202 StretchBltModeChanger
changeMode(dc_buffer
, COLORONCOLOR
);
2205 // copy src to buffer using selected raster op
2206 if ( !::StretchBlt(dc_buffer
, 0, 0, dstWidth
, dstHeight
,
2207 hdcSrc
, xsrc
, ysrc
, srcWidth
, srcHeight
, dwRop
) )
2209 wxLogLastError(wxT("StretchBlt"));
2212 // set masked area in buffer to BLACK
2214 wxTextColoursChanger
textCol2(GetHdc(), *wxBLACK
, *wxWHITE
);
2215 if ( !::StretchBlt(dc_buffer
, 0, 0, dstWidth
, dstHeight
,
2216 dc_mask
, xsrcMask
, ysrcMask
,
2217 srcWidth
, srcHeight
, SRCAND
) )
2219 wxLogLastError(wxT("StretchBlt"));
2222 // set unmasked area in dest to BLACK
2223 ::SetBkColor(GetHdc(), RGB(0, 0, 0));
2224 ::SetTextColor(GetHdc(), RGB(255, 255, 255));
2225 if ( !::StretchBlt(GetHdc(), xdest
, ydest
, dstWidth
, dstHeight
,
2226 dc_mask
, xsrcMask
, ysrcMask
,
2227 srcWidth
, srcHeight
, SRCAND
) )
2229 wxLogLastError(wxT("StretchBlt"));
2231 } // restore the original text and background colours
2233 // OR buffer to dest
2234 success
= ::BitBlt(GetHdc(), xdest
, ydest
, dstWidth
, dstHeight
,
2235 dc_buffer
, 0, 0, SRCPAINT
) != 0;
2238 wxLogLastError(wxT("BitBlt"));
2241 // tidy up temporary DCs and bitmap
2242 ::SelectObject(dc_mask
, hOldMaskBitmap
);
2243 ::SelectObject(dc_buffer
, hOldBufferBitmap
);
2245 #if !wxUSE_DC_CACHEING
2247 ::DeleteDC(dc_mask
);
2248 ::DeleteDC(dc_buffer
);
2249 ::DeleteObject(buffer_bmap
);
2254 else // no mask, just BitBlt() it
2256 // if we already have a DIB, draw it using StretchDIBits(), otherwise
2257 // use StretchBlt() if available and finally fall back to BitBlt()
2259 // FIXME: use appropriate WinCE functions
2261 const int caps
= ::GetDeviceCaps(GetHdc(), RASTERCAPS
);
2262 if ( bmpSrc
.IsOk() && (caps
& RC_STRETCHDIB
) )
2267 if ( ::GetObject(GetHbitmapOf(bmpSrc
),
2269 &ds
) == sizeof(ds
) )
2271 StretchBltModeChanger
changeMode(GetHdc(), COLORONCOLOR
);
2273 // Figure out what co-ordinate system we're supposed to specify
2275 const LONG hDIB
= ds
.dsBmih
.biHeight
;
2279 ysrc
= hDIB
- (ysrc
+ dstHeight
);
2282 if ( ::StretchDIBits(GetHdc(),
2284 dstWidth
, dstHeight
,
2286 srcWidth
, srcHeight
,
2288 (LPBITMAPINFO
)&ds
.dsBmih
,
2291 ) == (int)GDI_ERROR
)
2293 // On Win9x this API fails most (all?) of the time, so
2294 // logging it becomes quite distracting. Since it falls
2295 // back to the code below this is not really serious, so
2297 //wxLogLastError(wxT("StretchDIBits"));
2306 if ( !success
&& (caps
& RC_STRETCHBLT
) )
2311 StretchBltModeChanger
changeMode(GetHdc(), COLORONCOLOR
);
2317 xdest
, ydest
, dstWidth
, dstHeight
,
2319 xsrc
, ysrc
, srcWidth
, srcHeight
,
2323 wxLogLastError(_T("StretchBlt"));
2333 if ( !::BitBlt(GetHdc(), xdest
, ydest
, dstWidth
, dstHeight
,
2334 hdcSrc
, xsrc
, ysrc
, dwRop
) )
2336 wxLogLastError(_T("BitBlt"));
2348 void wxMSWDCImpl::GetDeviceSize(int *width
, int *height
) const
2350 WXMICROWIN_CHECK_HDC
2353 *width
= ::GetDeviceCaps(GetHdc(), HORZRES
);
2355 *height
= ::GetDeviceCaps(GetHdc(), VERTRES
);
2358 void wxMSWDCImpl::DoGetSizeMM(int *w
, int *h
) const
2360 WXMICROWIN_CHECK_HDC
2362 // if we implement it in terms of DoGetSize() instead of directly using the
2363 // results returned by GetDeviceCaps(HORZ/VERTSIZE) as was done before, it
2364 // will also work for wxWindowDC and wxClientDC even though their size is
2365 // not the same as the total size of the screen
2366 int wPixels
, hPixels
;
2367 DoGetSize(&wPixels
, &hPixels
);
2371 int wTotal
= ::GetDeviceCaps(GetHdc(), HORZRES
);
2373 wxCHECK_RET( wTotal
, _T("0 width device?") );
2375 *w
= (wPixels
* ::GetDeviceCaps(GetHdc(), HORZSIZE
)) / wTotal
;
2380 int hTotal
= ::GetDeviceCaps(GetHdc(), VERTRES
);
2382 wxCHECK_RET( hTotal
, _T("0 height device?") );
2384 *h
= (hPixels
* ::GetDeviceCaps(GetHdc(), VERTSIZE
)) / hTotal
;
2388 wxSize
wxMSWDCImpl::GetPPI() const
2390 WXMICROWIN_CHECK_HDC_RET(wxSize(0,0))
2392 int x
= ::GetDeviceCaps(GetHdc(), LOGPIXELSX
);
2393 int y
= ::GetDeviceCaps(GetHdc(), LOGPIXELSY
);
2395 return wxSize(x
, y
);
2398 // ----------------------------------------------------------------------------
2400 // ----------------------------------------------------------------------------
2402 #if wxUSE_DC_CACHEING
2405 * This implementation is a bit ugly and uses the old-fashioned wxList class, so I will
2406 * improve it in due course, either using arrays, or simply storing pointers to one
2407 * entry for the bitmap, and two for the DCs. -- JACS
2410 wxObjectList
wxMSWDCImpl::sm_bitmapCache
;
2411 wxObjectList
wxMSWDCImpl::sm_dcCache
;
2413 wxDCCacheEntry::wxDCCacheEntry(WXHBITMAP hBitmap
, int w
, int h
, int depth
)
2422 wxDCCacheEntry::wxDCCacheEntry(WXHDC hDC
, int depth
)
2431 wxDCCacheEntry::~wxDCCacheEntry()
2434 ::DeleteObject((HBITMAP
) m_bitmap
);
2436 ::DeleteDC((HDC
) m_dc
);
2439 wxDCCacheEntry
* wxMSWDCImpl::FindBitmapInCache(WXHDC dc
, int w
, int h
)
2441 int depth
= ::GetDeviceCaps((HDC
) dc
, PLANES
) * ::GetDeviceCaps((HDC
) dc
, BITSPIXEL
);
2442 wxList::compatibility_iterator node
= sm_bitmapCache
.GetFirst();
2445 wxDCCacheEntry
* entry
= (wxDCCacheEntry
*) node
->GetData();
2447 if (entry
->m_depth
== depth
)
2449 if (entry
->m_width
< w
|| entry
->m_height
< h
)
2451 ::DeleteObject((HBITMAP
) entry
->m_bitmap
);
2452 entry
->m_bitmap
= (WXHBITMAP
) ::CreateCompatibleBitmap((HDC
) dc
, w
, h
);
2453 if ( !entry
->m_bitmap
)
2455 wxLogLastError(wxT("CreateCompatibleBitmap"));
2457 entry
->m_width
= w
; entry
->m_height
= h
;
2463 node
= node
->GetNext();
2465 WXHBITMAP hBitmap
= (WXHBITMAP
) ::CreateCompatibleBitmap((HDC
) dc
, w
, h
);
2468 wxLogLastError(wxT("CreateCompatibleBitmap"));
2470 wxDCCacheEntry
* entry
= new wxDCCacheEntry(hBitmap
, w
, h
, depth
);
2471 AddToBitmapCache(entry
);
2475 wxDCCacheEntry
* wxMSWDCImpl::FindDCInCache(wxDCCacheEntry
* notThis
, WXHDC dc
)
2477 int depth
= ::GetDeviceCaps((HDC
) dc
, PLANES
) * ::GetDeviceCaps((HDC
) dc
, BITSPIXEL
);
2478 wxList::compatibility_iterator node
= sm_dcCache
.GetFirst();
2481 wxDCCacheEntry
* entry
= (wxDCCacheEntry
*) node
->GetData();
2483 // Don't return the same one as we already have
2484 if (!notThis
|| (notThis
!= entry
))
2486 if (entry
->m_depth
== depth
)
2492 node
= node
->GetNext();
2494 WXHDC hDC
= (WXHDC
) ::CreateCompatibleDC((HDC
) dc
);
2497 wxLogLastError(wxT("CreateCompatibleDC"));
2499 wxDCCacheEntry
* entry
= new wxDCCacheEntry(hDC
, depth
);
2500 AddToDCCache(entry
);
2504 void wxMSWDCImpl::AddToBitmapCache(wxDCCacheEntry
* entry
)
2506 sm_bitmapCache
.Append(entry
);
2509 void wxMSWDCImpl::AddToDCCache(wxDCCacheEntry
* entry
)
2511 sm_dcCache
.Append(entry
);
2514 void wxMSWDCImpl::ClearCache()
2516 WX_CLEAR_LIST(wxList
, sm_dcCache
);
2517 WX_CLEAR_LIST(wxList
, sm_bitmapCache
);
2520 // Clean up cache at app exit
2521 class wxDCModule
: public wxModule
2524 virtual bool OnInit() { return true; }
2525 virtual void OnExit() { wxMSWDCImpl::ClearCache(); }
2528 DECLARE_DYNAMIC_CLASS(wxDCModule
)
2531 IMPLEMENT_DYNAMIC_CLASS(wxDCModule
, wxModule
)
2533 #endif // wxUSE_DC_CACHEING
2535 // ----------------------------------------------------------------------------
2536 // alpha channel support
2537 // ----------------------------------------------------------------------------
2539 static bool AlphaBlt(HDC hdcDst
,
2540 int x
, int y
, int dstWidth
, int dstHeight
,
2542 int srcWidth
, int srcHeight
,
2544 const wxBitmap
& bmp
)
2546 wxASSERT_MSG( bmp
.IsOk() && bmp
.HasAlpha(), _T("AlphaBlt(): invalid bitmap") );
2547 wxASSERT_MSG( hdcDst
&& hdcSrc
, _T("AlphaBlt(): invalid HDC") );
2549 // do we have AlphaBlend() and company in the headers?
2550 #if defined(AC_SRC_OVER) && wxUSE_DYNLIB_CLASS
2551 // yes, now try to see if we have it during run-time
2552 typedef BOOL (WINAPI
*AlphaBlend_t
)(HDC
,int,int,int,int,
2553 HDC
,int,int,int,int,
2557 pfnAlphaBlend
= (AlphaBlend_t
)wxMSIMG32DLL
.GetSymbol(_T("AlphaBlend"));
2558 if ( pfnAlphaBlend
)
2561 bf
.BlendOp
= AC_SRC_OVER
;
2563 bf
.SourceConstantAlpha
= 0xff;
2564 bf
.AlphaFormat
= AC_SRC_ALPHA
;
2566 if ( pfnAlphaBlend(hdcDst
, x
, y
, dstWidth
, dstHeight
,
2567 hdcSrc
, srcX
, srcY
, srcWidth
, srcHeight
,
2570 // skip wxAlphaBlend() call below
2574 wxLogLastError(_T("AlphaBlend"));
2577 wxUnusedVar(hdcSrc
);
2578 #endif // defined(AC_SRC_OVER)
2580 // AlphaBlend() unavailable of failed: use our own (probably much slower)
2582 #ifdef wxHAS_RAW_BITMAP
2583 wxAlphaBlend(hdcDst
, x
, y
, dstWidth
, dstHeight
, srcX
, srcY
, srcWidth
, srcHeight
, bmp
);
2586 #else // !wxHAS_RAW_BITMAP
2587 // no wxAlphaBlend() neither, fall back to using simple BitBlt() (we lose
2588 // alpha but at least something will be shown like this)
2591 #endif // wxHAS_RAW_BITMAP/!wxHAS_RAW_BITMAP
2595 // wxAlphaBlend: our fallback if ::AlphaBlend() is unavailable
2596 #ifdef wxHAS_RAW_BITMAP
2599 wxAlphaBlend(HDC hdcDst
, int xDst
, int yDst
,
2600 int dstWidth
, int dstHeight
,
2602 int srcWidth
, int srcHeight
,
2603 const wxBitmap
& bmpSrc
)
2605 // get the destination DC pixels
2606 wxBitmap
bmpDst(dstWidth
, dstHeight
, 32 /* force creating RGBA DIB */);
2608 SelectInHDC
select(hdcMem
, GetHbitmapOf(bmpDst
));
2610 if ( !::BitBlt(hdcMem
, 0, 0, dstWidth
, dstHeight
, hdcDst
, xDst
, yDst
, SRCCOPY
) )
2612 wxLogLastError(_T("BitBlt"));
2615 // combine them with the source bitmap using alpha
2616 wxAlphaPixelData
dataDst(bmpDst
),
2617 dataSrc((wxBitmap
&)bmpSrc
);
2619 wxCHECK_RET( dataDst
&& dataSrc
,
2620 _T("failed to get raw data in wxAlphaBlend") );
2622 wxAlphaPixelData::Iterator
pDst(dataDst
),
2626 for ( int y
= 0; y
< dstHeight
; y
++ )
2628 wxAlphaPixelData::Iterator pDstRowStart
= pDst
;
2630 for ( int x
= 0; x
< dstWidth
; x
++ )
2632 // source is point sampled, Alpha StretchBlit is ugly on Win95
2633 // (but does not impact performance)
2634 pSrc
.MoveTo(dataSrc
, srcX
+ (srcWidth
*x
/dstWidth
), srcY
+ (srcHeight
*y
/dstHeight
));
2636 // note that source bitmap uses premultiplied alpha (as required by
2637 // the real AlphaBlend)
2638 const unsigned beta
= 255 - pSrc
.Alpha();
2640 pDst
.Red() = pSrc
.Red() + (beta
* pDst
.Red() + 127) / 255;
2641 pDst
.Blue() = pSrc
.Blue() + (beta
* pDst
.Blue() + 127) / 255;
2642 pDst
.Green() = pSrc
.Green() + (beta
* pDst
.Green() + 127) / 255;
2647 pDst
= pDstRowStart
;
2648 pDst
.OffsetY(dataDst
, 1);
2651 // and finally blit them back to the destination DC
2652 if ( !::BitBlt(hdcDst
, xDst
, yDst
, dstWidth
, dstHeight
, hdcMem
, 0, 0, SRCCOPY
) )
2654 wxLogLastError(_T("BitBlt"));
2658 #endif // wxHAS_RAW_BITMAP
2660 void wxMSWDCImpl::DoGradientFillLinear (const wxRect
& rect
,
2661 const wxColour
& initialColour
,
2662 const wxColour
& destColour
,
2663 wxDirection nDirection
)
2665 // use native function if we have compile-time support it and can load it
2666 // during run-time (linking to it statically would make the program
2667 // unusable on earlier Windows versions)
2668 #if defined(GRADIENT_FILL_RECT_H) && wxUSE_DYNLIB_CLASS
2670 (WINAPI
*GradientFill_t
)(HDC
, PTRIVERTEX
, ULONG
, PVOID
, ULONG
, ULONG
);
2671 static GradientFill_t pfnGradientFill
=
2672 (GradientFill_t
)wxMSIMG32DLL
.GetSymbol(_T("GradientFill"));
2674 if ( pfnGradientFill
)
2676 GRADIENT_RECT grect
;
2677 grect
.UpperLeft
= 0;
2678 grect
.LowerRight
= 1;
2680 // invert colours direction if not filling from left-to-right or
2682 int firstVertex
= nDirection
== wxNORTH
|| nDirection
== wxWEST
? 1 : 0;
2684 // one vertex for upper left and one for upper-right
2685 TRIVERTEX vertices
[2];
2687 vertices
[0].x
= rect
.GetLeft();
2688 vertices
[0].y
= rect
.GetTop();
2689 vertices
[1].x
= rect
.GetRight()+1;
2690 vertices
[1].y
= rect
.GetBottom()+1;
2692 vertices
[firstVertex
].Red
= (COLOR16
)(initialColour
.Red() << 8);
2693 vertices
[firstVertex
].Green
= (COLOR16
)(initialColour
.Green() << 8);
2694 vertices
[firstVertex
].Blue
= (COLOR16
)(initialColour
.Blue() << 8);
2695 vertices
[firstVertex
].Alpha
= 0;
2696 vertices
[1 - firstVertex
].Red
= (COLOR16
)(destColour
.Red() << 8);
2697 vertices
[1 - firstVertex
].Green
= (COLOR16
)(destColour
.Green() << 8);
2698 vertices
[1 - firstVertex
].Blue
= (COLOR16
)(destColour
.Blue() << 8);
2699 vertices
[1 - firstVertex
].Alpha
= 0;
2701 if ( (*pfnGradientFill
)
2708 nDirection
== wxWEST
|| nDirection
== wxEAST
2709 ? GRADIENT_FILL_RECT_H
2710 : GRADIENT_FILL_RECT_V
2713 // skip call of the base class version below
2717 wxLogLastError(_T("GradientFill"));
2719 #endif // wxUSE_DYNLIB_CLASS
2721 wxDCImpl::DoGradientFillLinear(rect
, initialColour
, destColour
, nDirection
);
2724 #if wxUSE_DYNLIB_CLASS
2726 static DWORD
wxGetDCLayout(HDC hdc
)
2728 typedef DWORD (WINAPI
*GetLayout_t
)(HDC
);
2730 wxDL_INIT_FUNC(s_pfn
, GetLayout
, wxDynamicLibrary(_T("gdi32.dll")));
2732 return s_pfnGetLayout
? s_pfnGetLayout(hdc
) : (DWORD
)-1;
2735 wxLayoutDirection
wxMSWDCImpl::GetLayoutDirection() const
2737 DWORD layout
= wxGetDCLayout(GetHdc());
2739 if ( layout
== (DWORD
)-1 )
2740 return wxLayout_Default
;
2742 return layout
& LAYOUT_RTL
? wxLayout_RightToLeft
: wxLayout_LeftToRight
;
2745 void wxMSWDCImpl::SetLayoutDirection(wxLayoutDirection dir
)
2747 typedef DWORD (WINAPI
*SetLayout_t
)(HDC
, DWORD
);
2749 wxDL_INIT_FUNC(s_pfn
, SetLayout
, wxDynamicLibrary(_T("gdi32.dll")));
2750 if ( !s_pfnSetLayout
)
2753 if ( dir
== wxLayout_Default
)
2755 dir
= wxTheApp
->GetLayoutDirection();
2756 if ( dir
== wxLayout_Default
)
2760 DWORD layout
= wxGetDCLayout(GetHdc());
2761 if ( dir
== wxLayout_RightToLeft
)
2762 layout
|= LAYOUT_RTL
;
2764 layout
&= ~LAYOUT_RTL
;
2766 s_pfnSetLayout(GetHdc(), layout
);
2769 #else // !wxUSE_DYNLIB_CLASS
2771 // we can't provide RTL support without dynamic loading, so stub it out
2772 wxLayoutDirection
wxMSWDCImpl::GetLayoutDirection() const
2774 return wxLayout_Default
;
2777 void wxMSWDCImpl::SetLayoutDirection(wxLayoutDirection
WXUNUSED(dir
))
2781 #endif // wxUSE_DYNLIB_CLASS/!wxUSE_DYNLIB_CLASS