]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/palmos/dcscreen.h | |
3 | // Purpose: wxScreenDC class | |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e1d63b79 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DCSCREEN_H_ | |
13 | #define _WX_DCSCREEN_H_ | |
14 | ||
e2fc40b4 VZ |
15 | #include "wx/dcscreen.h" |
16 | #include "wx/palmos/dc.h" | |
ffecfa5a | 17 | |
53a2db12 | 18 | class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPalmDCImpl |
ffecfa5a JS |
19 | { |
20 | public: | |
21 | // Create a DC representing the whole screen | |
e2fc40b4 | 22 | wxScreenDCImpl( wxScreenDC *owner ); |
ffecfa5a | 23 | |
e2fc40b4 | 24 | virtual void DoGetSize(int *w, int *h) const; |
ffecfa5a | 25 | |
e2fc40b4 | 26 | DECLARE_CLASS(wxScreenDCImpl) |
c0c133e1 | 27 | wxDECLARE_NO_COPY_CLASS(wxScreenDCImpl); |
ffecfa5a JS |
28 | }; |
29 | ||
30 | #endif | |
31 | // _WX_DCSCREEN_H_ | |
32 |