]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dcscreen.cpp
added wxHTML
[wxWidgets.git] / src / msw / dcscreen.cpp
index 7960fbd3e81185ab9a1b32e51ed00eb8830d8604..65f897ccf38dd4fbdadd3e91c2da715272f15f70 100644 (file)
 #endif
 
 #ifndef WX_PRECOMP
+   #include "wx/string.h"
+   #include "wx/window.h"
 #endif
 
+#include "wx/msw/private.h"
+
 #include "wx/dcscreen.h"
 
-#include <windows.h>
 
 #if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC)
@@ -36,6 +39,11 @@ 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)