X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f7b34a878bbcb2f71a0c7694e2a3bec51460218..835165d576b66441987b78519e6ef1fe74ea795a:/include/wx/mgl/dcscreen.h?ds=sidebyside diff --git a/include/wx/mgl/dcscreen.h b/include/wx/mgl/dcscreen.h index b1c429aa17..6b5fd171cd 100644 --- a/include/wx/mgl/dcscreen.h +++ b/include/wx/mgl/dcscreen.h @@ -1,42 +1,37 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: dcscreen.h +// Name: wx/mgl/dcscreen.h // Purpose: // Author: Vaclav Slavik // Id: $Id$ -// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) +// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __WX_DCSCREEN_H__ #define __WX_DCSCREEN_H__ -#ifdef __GNUG__ -#pragma interface "dcscreen.h" -#endif - #include "wx/dcclient.h" //----------------------------------------------------------------------------- // classes //----------------------------------------------------------------------------- -class WXDLLEXPORT wxScreenDC; +class WXDLLIMPEXP_FWD_CORE wxScreenDC; //----------------------------------------------------------------------------- // wxScreenDC //----------------------------------------------------------------------------- -//FIXME_MGL -class WXDLLEXPORT wxScreenDC: public wxPaintDC +class WXDLLIMPEXP_CORE wxScreenDC: public wxDC { public: - wxScreenDC() {} - ~wxScreenDC() {} + wxScreenDC(); + virtual ~wxScreenDC(); + + static bool StartDrawingOnTop(wxWindow *WXUNUSED(window)) { return TRUE; } + static bool StartDrawingOnTop(wxRect *WXUNUSED(rect) = NULL) { return TRUE; } + static bool EndDrawingOnTop() { return TRUE; } - static bool StartDrawingOnTop( wxWindow *window ) {} - static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ) {} - static bool EndDrawingOnTop() {} - private: DECLARE_DYNAMIC_CLASS(wxScreenDC) };