X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dbf858b5d69f53efd3950cae99322f54355aa983..5bdcb1f3248ebcac6c73e314e752c13dee8776c7:/include/wx/gtk/dcscreen.h?ds=sidebyside diff --git a/include/wx/gtk/dcscreen.h b/include/wx/gtk/dcscreen.h index c0136643c0..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( wxRectangle *rect = (wxRectangle *) NULL ); - static bool EndDrawingOnTop(void); - - // implementation - - static GdkWindow *sm_overlayWindow; - static int sm_overlayWindowX; - static int sm_overlayWindowY; -}; +public: + wxScreenDCImpl( wxScreenDC *owner ); + ~wxScreenDCImpl(); + + virtual void DoGetSize(int *width, int *height) const; -#endif +protected: + void Init(); - // __GTKDCSCREENH__ + DECLARE_ABSTRACT_CLASS(wxScreenDCImpl) +}; +#endif // _WX_GTKDCSCREEN_H_