1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/dcscreen.h
3 // Purpose: wxScreenDC class
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_DCSCREEN_H_
12 #define _WX_DCSCREEN_H_
14 #include "wx/dcclient.h"
15 #include "wx/x11/dcclient.h"
17 //-----------------------------------------------------------------------------
19 //-----------------------------------------------------------------------------
21 class WXDLLIMPEXP_CORE wxScreenDCImpl
: public wxPaintDCImpl
24 wxScreenDCImpl( wxDC
*owner
);
25 virtual ~wxScreenDCImpl();
28 virtual void DoGetSize(int *width
, int *height
) const;
31 DECLARE_CLASS(wxScreenDCImpl
)