]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/dcscreen.cpp
use UNIX wxDir if available
[wxWidgets.git] / src / os2 / dcscreen.cpp
index 58fc9b97cfefabf3d354555a7c6f801d32ef0b22..3b3c6314b8c30917450f208ccc7635927d3d1407 100644 (file)
@@ -9,6 +9,10 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
+#ifdef __GNUG__
+#pragma implementation "dcscreen.h"
+#endif
+
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
 
 #include "wx/dcscreen.h"
 
-#if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC)
-#endif
 
 // Create a DC representing the whole screen
 wxScreenDC::wxScreenDC()
 {
-    // TODO
-}
+    m_hDC = ::WinOpenWindowDC(HWND_DESKTOP);
+    m_hPS = ::WinGetScreenPS(HWND_DESKTOP);
+    ::GpiSetBackMix(m_hPS, BM_LEAVEALONE);
+} // end of wxScreenDC::wxScreenDC()
 
-wxScreenDC::~wxScreenDC()
-{
-    // TODO
-}