X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/72cdf4c9b3ce92addf09cfb322f0c19bfb0f8744..380740af5dd112601916704a6d78d1112ebb31b5:/include/wx/gtk1/dcscreen.h diff --git a/include/wx/gtk1/dcscreen.h b/include/wx/gtk1/dcscreen.h index b53d12c8a8..932b26a22a 100644 --- a/include/wx/gtk1/dcscreen.h +++ b/include/wx/gtk1/dcscreen.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: dcscreen.h +// Name: wx/gtk1/dcscreen.h // Purpose: // Author: Robert Roebling // Id: $Id$ @@ -16,29 +16,33 @@ // classes //----------------------------------------------------------------------------- -class wxScreenDC; +class WXDLLIMPEXP_FWD_CORE wxScreenDC; //----------------------------------------------------------------------------- // wxScreenDC //----------------------------------------------------------------------------- -class wxScreenDC: public wxPaintDC +class WXDLLIMPEXP_CORE 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