X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3c7fc996a73e9f6a83067bc28a3c5581a3fee65..53cdd2c11d11b6286936b93158b157610b169edd:/include/wx/motif/dcscreen.h diff --git a/include/wx/motif/dcscreen.h b/include/wx/motif/dcscreen.h index 8c270b511c..58fe2381c6 100644 --- a/include/wx/motif/dcscreen.h +++ b/include/wx/motif/dcscreen.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: wx/motif/dcscreen.h -// Purpose: wxScreenDC class +// Purpose: wxScreenDCImpl class // Author: Julian Smart // Modified by: // Created: 17/09/98 @@ -12,16 +12,14 @@ #ifndef _WX_DCSCREEN_H_ #define _WX_DCSCREEN_H_ -#include "wx/dcclient.h" +#include "wx/motif/dcclient.h" -class WXDLLEXPORT wxScreenDC: public wxWindowDC +class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl { - DECLARE_DYNAMIC_CLASS(wxScreenDC) - public: // Create a DC representing the whole screen - wxScreenDC(); - virtual ~wxScreenDC(); + wxScreenDCImpl(wxScreenDC *owner); + virtual ~wxScreenDCImpl(); // Compatibility with X's requirements for // drawing on top of all windows @@ -37,7 +35,8 @@ private: // constructor. static int sm_overlayWindowX; static int sm_overlayWindowY; + + DECLARE_DYNAMIC_CLASS(wxScreenDCImpl) }; -#endif -// _WX_DCSCREEN_H_ +#endif // _WX_DCSCREEN_H_