X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/16e93305f2bae16652b6750dffe3bcf05c20d839..533bedbf307fd324ebc864ad1b5292977c4fa7bc:/include/wx/gtk/dcscreen.h diff --git a/include/wx/gtk/dcscreen.h b/include/wx/gtk/dcscreen.h index 34a90bc599..3b23ae3204 100644 --- a/include/wx/gtk/dcscreen.h +++ b/include/wx/gtk/dcscreen.h @@ -4,7 +4,7 @@ // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __GTKDCSCREENH__ @@ -16,29 +16,33 @@ // classes //----------------------------------------------------------------------------- -class wxScreenDC; +class WXDLLIMPEXP_CORE wxScreenDC; //----------------------------------------------------------------------------- // wxScreenDC //----------------------------------------------------------------------------- -class wxScreenDC: public wxPaintDC +class WXDLLIMPEXP_CORE wxScreenDC : public wxPaintDC { - DECLARE_DYNAMIC_CLASS(wxScreenDC) - public: - wxScreenDC(void); - ~wxScreenDC(void); - - static bool StartDrawingOnTop( wxWindow *window ); - static bool StartDrawingOnTop( wxRect *rect = (wxRect *) 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