X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/57c208c5759da71a637f0f0f5b7d3dc3eda09c02..8d772832a04a3d2380ac6b3ffea6bfe6a72dcff6:/src/msw/dcscreen.cpp diff --git a/src/msw/dcscreen.cpp b/src/msw/dcscreen.cpp index 7960fbd3e8..511c3b25bc 100644 --- a/src/msw/dcscreen.cpp +++ b/src/msw/dcscreen.cpp @@ -21,21 +21,27 @@ #endif #ifndef WX_PRECOMP + #include "wx/string.h" + #include "wx/window.h" #endif +#include "wx/msw/private.h" + #include "wx/dcscreen.h" -#include -#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC) -#endif // Create a DC representing the whole screen wxScreenDC::wxScreenDC(void) { m_hDC = (WXHDC) ::GetDC((HWND) NULL); m_hDCCount ++; + + // the background mode is only used for text background + // and is set in DrawText() to OPAQUE as required, other- + // wise always TRANSPARENT, RR + ::SetBkMode( GetHdc(), TRANSPARENT ); } wxScreenDC::~wxScreenDC(void)