]> git.saurik.com Git - wxWidgets.git/blob - include/wx/x11/dcscreen.h
Add wxDEPRECATED_MSG() and use it in a couple of places.
[wxWidgets.git] / include / wx / x11 / dcscreen.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/dcscreen.h
3 // Purpose: wxScreenDC class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 17/09/98
7 // Copyright: (c) Julian Smart
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/x11/dcclient.h"
16
17 //-----------------------------------------------------------------------------
18 // wxScreenDC
19 //-----------------------------------------------------------------------------
20
21 class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl
22 {
23 public:
24 wxScreenDCImpl( wxDC *owner);
25 virtual ~wxScreenDCImpl();
26
27 protected:
28 virtual void DoGetSize(int *width, int *height) const;
29
30 private:
31 DECLARE_CLASS(wxScreenDCImpl)
32 };
33
34
35 #endif
36 // _WX_DCSCREEN_H_