| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: wx/x11/dcscreen.h |
| 3 | // Purpose: wxScreenDC class |
| 4 | // Author: Julian Smart |
| 5 | // Modified by: |
| 6 | // Created: 17/09/98 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Julian Smart |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_DCSCREEN_H_ |
| 13 | #define _WX_DCSCREEN_H_ |
| 14 | |
| 15 | #include "wx/dcclient.h" |
| 16 | #include "wx/x11/dcclient.h" |
| 17 | |
| 18 | //----------------------------------------------------------------------------- |
| 19 | // wxScreenDC |
| 20 | //----------------------------------------------------------------------------- |
| 21 | |
| 22 | class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl |
| 23 | { |
| 24 | public: |
| 25 | wxScreenDCImpl( wxDC *owner); |
| 26 | virtual ~wxScreenDCImpl(); |
| 27 | |
| 28 | protected: |
| 29 | virtual void DoGetSize(int *width, int *height) const; |
| 30 | |
| 31 | private: |
| 32 | DECLARE_CLASS(wxScreenDCImpl) |
| 33 | }; |
| 34 | |
| 35 | |
| 36 | #endif |
| 37 | // _WX_DCSCREEN_H_ |