X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/16e93305f2bae16652b6750dffe3bcf05c20d839..153530afb595110592776c461e52be99b1559439:/include/wx/gtk/dcscreen.h?ds=sidebyside diff --git a/include/wx/gtk/dcscreen.h b/include/wx/gtk/dcscreen.h index 34a90bc599..e5c1fea746 100644 --- a/include/wx/gtk/dcscreen.h +++ b/include/wx/gtk/dcscreen.h @@ -1,47 +1,34 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: dcscreen.h +// Name: wx/gtk/dcscreen.h // Purpose: // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// 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" //----------------------------------------------------------------------------- -// classes +// wxScreenDCImpl //----------------------------------------------------------------------------- -class wxScreenDC; - -//----------------------------------------------------------------------------- -// wxScreenDC -//----------------------------------------------------------------------------- - -class wxScreenDC: public wxPaintDC +class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl { - DECLARE_DYNAMIC_CLASS(wxScreenDC) - public: - wxScreenDC(void); - ~wxScreenDC(void); - - static bool StartDrawingOnTop( wxWindow *window ); - static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ); - static bool EndDrawingOnTop(void); - - // implementation - - static GdkWindow *sm_overlayWindow; - static int sm_overlayWindowX; - static int sm_overlayWindowY; -}; + wxScreenDCImpl( wxScreenDC *owner ); + ~wxScreenDCImpl(); -#endif + virtual void DoGetSize(int *width, int *height) const; - // __GTKDCSCREENH__ +protected: + void Init(); + + DECLARE_ABSTRACT_CLASS(wxScreenDCImpl) +}; +#endif // _WX_GTKDCSCREEN_H_