X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..243ef54b39f83d4a805dbeaa5ea80232ac66a1b8:/include/wx/gtk1/dcscreen.h?ds=sidebyside diff --git a/include/wx/gtk1/dcscreen.h b/include/wx/gtk1/dcscreen.h index 5cb1991fe9..abbdb6b9a5 100644 --- a/include/wx/gtk1/dcscreen.h +++ b/include/wx/gtk1/dcscreen.h @@ -1,32 +1,39 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: dcscreen.h +// Name: wx/gtk1/dcscreen.h // Purpose: // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem -// Licence: wxWindows licence +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - #ifndef __GTKDCSCREENH__ #define __GTKDCSCREENH__ -#include "wx/dcclient.h" +#include "wx/gtk1/dcclient.h" + +//----------------------------------------------------------------------------- +// wxScreenDCImpl +//----------------------------------------------------------------------------- -class WXDLLEXPORT wxScreenDC: public wxPaintDC +class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl { - DECLARE_DYNAMIC_CLASS(wxScreenDC) +public: + wxScreenDCImpl(wxScreenDC *owner); + virtual ~wxScreenDCImpl(); + + // implementation + + static GdkWindow *sm_overlayWindow; + static int sm_overlayWindowX; + static int sm_overlayWindowY; - public: - wxScreenDC(void); - ~wxScreenDC(void); +protected: + virtual void DoGetSize(int *width, int *height) const; - static bool StartDrawingOnTop( wxWindow *window ); - static bool StartDrawingOnTop( wxRectangle *rect = NULL ); - static bool EndDrawingOnTop(void); +private: + DECLARE_DYNAMIC_CLASS(wxScreenDCImpl) }; -#endif - // __GTKDCSCREENH__ +#endif // __GTKDCSCREENH__