X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab171e95021482a8a0c0e24ebe050fa0181e7af0..9d5507f7a2701395e1d5c121bd877bb9066ee6ea:/include/wx/gtk/dcscreen.h?ds=sidebyside diff --git a/include/wx/gtk/dcscreen.h b/include/wx/gtk/dcscreen.h index 79ed9959a9..5f9538b4ce 100644 --- a/include/wx/gtk/dcscreen.h +++ b/include/wx/gtk/dcscreen.h @@ -10,44 +10,27 @@ #ifndef __GTKDCSCREENH__ #define __GTKDCSCREENH__ -#include "wx/dcclient.h" +#include "wx/dcscreen.h" +#include "wx/gtk/dcclient.h" //----------------------------------------------------------------------------- -// wxScreenDC +// wxScreenDCImpl //----------------------------------------------------------------------------- -#if wxUSE_NEW_DC -class WXDLLIMPEXP_CORE wxGTKScreenImplDC : public wxGTKWindowImplDC -#else -#define wxGTKScreenImplDC wxScreenDC -class WXDLLIMPEXP_CORE wxScreenDC : public wxWindowDC -#endif +class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl { public: - -#if wxUSE_NEW_DC - wxGTKScreenImplDC( wxScreenDC *owner ); -#else - wxScreenDC(); -#endif - - ~wxGTKScreenImplDC(); - - static bool StartDrawingOnTop( wxWindow *window ) { return true; } - static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ) { return true; } - static bool EndDrawingOnTop() { return true; } - + wxScreenDCImpl( wxScreenDC *owner ); + ~wxScreenDCImpl(); protected: virtual void DoGetSize(int *width, int *height) const; - + void Init(); private: - DECLARE_ABSTRACT_CLASS(wxGTKScreenImplDC) + DECLARE_ABSTRACT_CLASS(wxScreenDCImpl) }; -#endif - - // __GTKDCSCREENH__ +#endif // __GTKDCSCREENH__