X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec758a20a2b166b2073e1c902cc745db01290f02..12bdd77c85888f29ed94e23ba28d31d99a522598:/include/wx/gtk1/dcscreen.h diff --git a/include/wx/gtk1/dcscreen.h b/include/wx/gtk1/dcscreen.h index c2be00de89..b1cc81a7e6 100644 --- a/include/wx/gtk1/dcscreen.h +++ b/include/wx/gtk1/dcscreen.h @@ -4,7 +4,7 @@ // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __GTKDCSCREENH__ @@ -22,23 +22,27 @@ class wxScreenDC; // wxScreenDC //----------------------------------------------------------------------------- -class wxScreenDC: public wxPaintDC +class wxScreenDC : public wxPaintDC { - 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; + wxScreenDC(); + virtual ~wxScreenDC(); + + static bool StartDrawingOnTop( wxWindow *window ); + static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ); + static bool EndDrawingOnTop(); + + // implementation + + static GdkWindow *sm_overlayWindow; + static int sm_overlayWindowX; + static int sm_overlayWindowY; + +protected: + virtual void DoGetSize(int *width, int *height) const; + +private: + DECLARE_DYNAMIC_CLASS(wxScreenDC) }; #endif