X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/513b47e9b7faf61ed20bb00541c793d163ac307b..ea6cbf486a3be57fd10283b3cd65a34e193d3d6c:/include/wx/mac/carbon/dcscreen.h diff --git a/include/wx/mac/carbon/dcscreen.h b/include/wx/mac/carbon/dcscreen.h index 052f5fb7b8..a97d66554e 100644 --- a/include/wx/mac/carbon/dcscreen.h +++ b/include/wx/mac/carbon/dcscreen.h @@ -13,25 +13,20 @@ #define _WX_DCSCREEN_H_ #include "wx/dcclient.h" +#include "wx/mac/carbon/dcclient.h" -class WXDLLEXPORT wxScreenDC: public wxWindowDC +class WXDLLIMPEXP_CORE wxScreenDCImpl: public wxWindowDCImpl { - DECLARE_DYNAMIC_CLASS(wxScreenDC) +public: + wxScreenDCImpl( wxDC *owner ); + virtual ~wxScreenDCImpl(); - public: - // Create a DC representing the whole screen - wxScreenDC(); - virtual ~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: -#if wxMAC_USE_CORE_GRAPHICS - void* m_overlayWindow; -#endif +private: + void* m_overlayWindow; + +private: + DECLARE_CLASS(wxScreenDCImpl) + DECLARE_NO_COPY_CLASS(wxScreenDCImpl) }; #endif