1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/dcscreen.h
3 // Purpose: wxScreenDC class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DCSCREEN_H_
13 #define _WX_DCSCREEN_H_
15 #include "wx/dcclient.h"
16 #include "wx/x11/dcclient.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 class WXDLLIMPEXP_CORE wxScreenDCImpl
: public wxPaintDCImpl
25 wxScreenDCImpl( wxDC
*owner
);
26 virtual ~wxScreenDCImpl();
29 virtual void DoGetSize(int *width
, int *height
) const;
32 DECLARE_CLASS(wxScreenDCImpl
)