X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/72cdf4c9b3ce92addf09cfb322f0c19bfb0f8744..79668caec9becf6ff5d40ba0479e5f2ccb6a3091:/include/wx/gtk1/dcscreen.h diff --git a/include/wx/gtk1/dcscreen.h b/include/wx/gtk1/dcscreen.h index b53d12c8a8..b1cc81a7e6 100644 --- a/include/wx/gtk1/dcscreen.h +++ b/include/wx/gtk1/dcscreen.h @@ -22,23 +22,27 @@ class wxScreenDC; // wxScreenDC //----------------------------------------------------------------------------- -class wxScreenDC: public wxPaintDC +class wxScreenDC : public wxPaintDC { - DECLARE_DYNAMIC_CLASS(wxScreenDC) - public: - wxScreenDC(); - ~wxScreenDC(); + wxScreenDC(); + virtual ~wxScreenDC(); + + static bool StartDrawingOnTop( wxWindow *window ); + static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ); + static bool EndDrawingOnTop(); + + // implementation - static bool StartDrawingOnTop( wxWindow *window ); - static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ); - static bool EndDrawingOnTop(); + static GdkWindow *sm_overlayWindow; + static int sm_overlayWindowX; + static int sm_overlayWindowY; - // implementation +protected: + virtual void DoGetSize(int *width, int *height) const; - static GdkWindow *sm_overlayWindow; - static int sm_overlayWindowX; - static int sm_overlayWindowY; +private: + DECLARE_DYNAMIC_CLASS(wxScreenDC) }; #endif