X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..0685aa9eb65aae0c930ef2a001002ac217cf5ce1:/include/wx/mac/carbon/dcscreen.h diff --git a/include/wx/mac/carbon/dcscreen.h b/include/wx/mac/carbon/dcscreen.h index c1da01e7ef..a687ee80a4 100644 --- a/include/wx/mac/carbon/dcscreen.h +++ b/include/wx/mac/carbon/dcscreen.h @@ -13,21 +13,20 @@ #define _WX_DCSCREEN_H_ #include "wx/dcclient.h" +#include "wx/mac/carbon/dcclient.h" -class WXDLLEXPORT wxScreenDC: public wxWindowDC +class WXDLLEXPORT wxScreenDCImpl: public wxWindowDCImpl { - DECLARE_DYNAMIC_CLASS(wxScreenDC) +public: + wxScreenDCImpl( wxDC *owner ); + virtual ~wxScreenDCImpl(); - 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; } +private: + void* m_overlayWindow; + +private: + DECLARE_CLASS(wxScreenDCImpl) + DECLARE_NO_COPY_CLASS(wxScreenDCImpl) }; #endif