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