X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/32b8ec418aee4e38877d4cb79e2984c766dcc358..333e57d578e9e0fb6555452b5a53698ffd85ee69:/include/wx/mgl/dcscreen.h diff --git a/include/wx/mgl/dcscreen.h b/include/wx/mgl/dcscreen.h index 9b650b7d28..a60a4f2cac 100644 --- a/include/wx/mgl/dcscreen.h +++ b/include/wx/mgl/dcscreen.h @@ -3,39 +3,34 @@ // Purpose: // Author: Vaclav Slavik // Id: $Id$ -// Copyright: (c) 2001 Vaclav Slavik +// 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 WXDLLEXPORT wxScreenDC: public wxDC { public: - wxScreenDC() {} - ~wxScreenDC() {} + wxScreenDC(); + virtual ~wxScreenDC(); - static bool StartDrawingOnTop( wxWindow *window ) {} - static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ) {} - static bool EndDrawingOnTop() {} + static bool StartDrawingOnTop(wxWindow *WXUNUSED(window)) { return TRUE; } + static bool StartDrawingOnTop(wxRect *WXUNUSED(rect) = NULL) { return TRUE; } + static bool EndDrawingOnTop() { return TRUE; } private: DECLARE_DYNAMIC_CLASS(wxScreenDC)