X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e4161a2a08e622ba55f66610e26892f5fda37e6f..49b3c4dfca81bf36134ab2c22b1d6c265f5ba150:/include/wx/gtk/dcscreen.h diff --git a/include/wx/gtk/dcscreen.h b/include/wx/gtk/dcscreen.h index 1e8a9425ac..fecc443bdb 100644 --- a/include/wx/gtk/dcscreen.h +++ b/include/wx/gtk/dcscreen.h @@ -7,47 +7,28 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __GTKDCSCREENH__ -#define __GTKDCSCREENH__ +#ifndef _WX_GTKDCSCREEN_H_ +#define _WX_GTKDCSCREEN_H_ -#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: + wxScreenDCImpl( wxScreenDC *owner ); + ~wxScreenDCImpl(); -#if wxUSE_NEW_DC - wxGTKScreenImplDC( wxScreenDC *owner ); -#else - wxScreenDC(); -#endif - - ~wxGTKScreenImplDC(); - - static bool StartDrawingOnTop(wxWindow * WXUNUSED(window)) - { return true; } - static bool StartDrawingOnTop(wxRect * WXUNUSED(rect) = NULL) - { return true; } - static bool EndDrawingOnTop() { return true; } - - -protected: virtual void DoGetSize(int *width, int *height) const; +protected: void Init(); -private: - DECLARE_ABSTRACT_CLASS(wxGTKScreenImplDC) + DECLARE_ABSTRACT_CLASS(wxScreenDCImpl) }; -#endif // __GTKDCSCREENH__ - +#endif // _WX_GTKDCSCREEN_H_