X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad81651f00edc6f489d9b6a0839d316a964fd521..2adaf5969faf352d740f267b1a4ef79a2cf75980:/src/os2/dcscreen.cpp diff --git a/src/os2/dcscreen.cpp b/src/os2/dcscreen.cpp index 5eaa7dc200..3b3c6314b8 100644 --- a/src/os2/dcscreen.cpp +++ b/src/os2/dcscreen.cpp @@ -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" @@ -31,11 +35,9 @@ IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC) // 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 -}