X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/376aa62a5d8ead9dc9d0ab3af6628862a21137ed..31fb3cfe02f5ed82c47b80d264e84b8207a456b4:/include/wx/gtk1/dcscreen.h diff --git a/include/wx/gtk1/dcscreen.h b/include/wx/gtk1/dcscreen.h index b1cc81a7e6..abbdb6b9a5 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$ @@ -10,27 +10,17 @@ #ifndef __GTKDCSCREENH__ #define __GTKDCSCREENH__ -#include "wx/dcclient.h" +#include "wx/gtk1/dcclient.h" //----------------------------------------------------------------------------- -// classes +// wxScreenDCImpl //----------------------------------------------------------------------------- -class wxScreenDC; - -//----------------------------------------------------------------------------- -// wxScreenDC -//----------------------------------------------------------------------------- - -class wxScreenDC : public wxPaintDC +class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl { public: - wxScreenDC(); - virtual ~wxScreenDC(); - - static bool StartDrawingOnTop( wxWindow *window ); - static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ); - static bool EndDrawingOnTop(); + wxScreenDCImpl(wxScreenDC *owner); + virtual ~wxScreenDCImpl(); // implementation @@ -42,10 +32,8 @@ protected: virtual void DoGetSize(int *width, int *height) const; private: - DECLARE_DYNAMIC_CLASS(wxScreenDC) + DECLARE_DYNAMIC_CLASS(wxScreenDCImpl) }; -#endif - - // __GTKDCSCREENH__ +#endif // __GTKDCSCREENH__