X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fb46a9a6c6f291806a5fecbb848930c344e17e11..c9eee7f035ebc6b5c044475d508b018ae9fb5bc2:/include/wx/os2/dcscreen.h diff --git a/include/wx/os2/dcscreen.h b/include/wx/os2/dcscreen.h index 44b929bc04..6ffaaf35b5 100644 --- a/include/wx/os2/dcscreen.h +++ b/include/wx/os2/dcscreen.h @@ -12,27 +12,32 @@ #ifndef _WX_DCSCREEN_H_ #define _WX_DCSCREEN_H_ -#ifdef __GNUG__ -#pragma interface "dcscreen.h" -#endif - #include "wx/dcclient.h" class WXDLLEXPORT wxScreenDC: public wxWindowDC { - DECLARE_DYNAMIC_CLASS(wxScreenDC) - public: - // Create a DC representing the whole screen - wxScreenDC(); - ~wxScreenDC(); - - // Compatibility with X's requirements for - // drawing on top of all windows - static bool StartDrawingOnTop(wxWindow* WXUNUSED(window)) { return TRUE; } - static bool StartDrawingOnTop(wxRect* WXUNUSED(rect) = NULL) { return TRUE; } - static bool EndDrawingOnTop() { return TRUE; } -}; + // + // Create a DC representing the whole screen + // + wxScreenDC(); + + // + // Compatibility with X's requirements for + // drawing on top of all windows + // + static bool StartDrawingOnTop(wxWindow* WXUNUSED(pWindow)) { return TRUE; } + static bool StartDrawingOnTop(wxRect* WXUNUSED(prect) = NULL) { return TRUE; } + static bool EndDrawingOnTop() { return TRUE; } + +protected: + virtual void DoGetSize( int* pnWidth + ,int* pnHeight + ) const; + +private: + DECLARE_DYNAMIC_CLASS(wxScreenDC) +}; // end of CLASS wxScreenDC #endif // _WX_DCSCREEN_H_