]>
Commit | Line | Data |
---|---|---|
83df96d6 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1b88201f | 2 | // Name: wx/x11/dcscreen.h |
83df96d6 JS |
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 | |
1b88201f | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_DCSCREEN_H_ | |
13 | #define _WX_DCSCREEN_H_ | |
14 | ||
83df96d6 | 15 | #include "wx/dcclient.h" |
e6514d0e | 16 | #include "wx/x11/dcclient.h" |
83df96d6 | 17 | |
3cd0b8c5 RR |
18 | //----------------------------------------------------------------------------- |
19 | // wxScreenDC | |
20 | //----------------------------------------------------------------------------- | |
21 | ||
e6514d0e | 22 | class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl |
83df96d6 | 23 | { |
83df96d6 | 24 | public: |
e6514d0e RR |
25 | wxScreenDCImpl( wxDC *owner); |
26 | virtual ~wxScreenDCImpl(); | |
3cd0b8c5 RR |
27 | |
28 | protected: | |
29 | virtual void DoGetSize(int *width, int *height) const; | |
30 | ||
83df96d6 | 31 | private: |
e6514d0e | 32 | DECLARE_CLASS(wxScreenDCImpl) |
83df96d6 JS |
33 | }; |
34 | ||
3cd0b8c5 | 35 | |
83df96d6 | 36 | #endif |
1b88201f | 37 | // _WX_DCSCREEN_H_ |