]> git.saurik.com Git - wxWidgets.git/blob - include/wx/osx/dcscreen.h
Add wxDEPRECATED_MSG() and use it in a couple of places.
[wxWidgets.git] / include / wx / osx / dcscreen.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/dcscreen.h
3 // Purpose: wxScreenDC class
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // Copyright: (c) Stefan Csomor
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_DCSCREEN_H_
12 #define _WX_DCSCREEN_H_
13
14 #include "wx/dcclient.h"
15 #include "wx/osx/dcclient.h"
16
17 class WXDLLIMPEXP_CORE wxScreenDCImpl: public wxWindowDCImpl
18 {
19 public:
20 wxScreenDCImpl( wxDC *owner );
21 virtual ~wxScreenDCImpl();
22
23 virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
24 private:
25 void* m_overlayWindow;
26
27 private:
28 DECLARE_CLASS(wxScreenDCImpl)
29 wxDECLARE_NO_COPY_CLASS(wxScreenDCImpl);
30 };
31
32 #endif
33 // _WX_DCSCREEN_H_
34