X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec758a20a2b166b2073e1c902cc745db01290f02..c2a738e372126950e5c70f72a3e8876f1ac89bf5:/include/wx/gtk1/dcscreen.h diff --git a/include/wx/gtk1/dcscreen.h b/include/wx/gtk1/dcscreen.h index c2be00de89..abbdb6b9a5 100644 --- a/include/wx/gtk1/dcscreen.h +++ b/include/wx/gtk1/dcscreen.h @@ -1,47 +1,39 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: dcscreen.h +// Name: wx/gtk1/dcscreen.h // Purpose: // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __GTKDCSCREENH__ #define __GTKDCSCREENH__ -#include "wx/dcclient.h" +#include "wx/gtk1/dcclient.h" //----------------------------------------------------------------------------- -// classes +// wxScreenDCImpl //----------------------------------------------------------------------------- -class wxScreenDC; +class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl +{ +public: + wxScreenDCImpl(wxScreenDC *owner); + virtual ~wxScreenDCImpl(); -//----------------------------------------------------------------------------- -// wxScreenDC -//----------------------------------------------------------------------------- + // implementation -class wxScreenDC: public wxPaintDC -{ - DECLARE_DYNAMIC_CLASS(wxScreenDC) + static GdkWindow *sm_overlayWindow; + static int sm_overlayWindowX; + static int sm_overlayWindowY; -public: - wxScreenDC(void); - ~wxScreenDC(void); - - static bool StartDrawingOnTop( wxWindow *window ); - static bool StartDrawingOnTop( wxRectangle *rect = (wxRectangle *) NULL ); - static bool EndDrawingOnTop(void); - - // implementation - - static GdkWindow *sm_overlayWindow; - static int sm_overlayWindowX; - static int sm_overlayWindowY; -}; +protected: + virtual void DoGetSize(int *width, int *height) const; -#endif +private: + DECLARE_DYNAMIC_CLASS(wxScreenDCImpl) +}; - // __GTKDCSCREENH__ +#endif // __GTKDCSCREENH__