]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/gtk/dcscreen.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
dbf858b5 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
512cfcc3 PC |
10 | #ifndef _WX_GTKDCSCREEN_H_ |
11 | #define _WX_GTKDCSCREEN_H_ | |
c801d85f | 12 | |
888dde65 RR |
13 | #include "wx/dcscreen.h" |
14 | #include "wx/gtk/dcclient.h" | |
c801d85f | 15 | |
dbf858b5 | 16 | //----------------------------------------------------------------------------- |
888dde65 | 17 | // wxScreenDCImpl |
dbf858b5 RR |
18 | //----------------------------------------------------------------------------- |
19 | ||
888dde65 | 20 | class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl |
c801d85f | 21 | { |
ec758a20 | 22 | public: |
888dde65 RR |
23 | wxScreenDCImpl( wxScreenDC *owner ); |
24 | ~wxScreenDCImpl(); | |
376aa62a | 25 | |
376aa62a | 26 | virtual void DoGetSize(int *width, int *height) const; |
e4161a2a | 27 | |
512cfcc3 | 28 | protected: |
ab171e95 | 29 | void Init(); |
376aa62a | 30 | |
888dde65 | 31 | DECLARE_ABSTRACT_CLASS(wxScreenDCImpl) |
c801d85f KB |
32 | }; |
33 | ||
512cfcc3 | 34 | #endif // _WX_GTKDCSCREEN_H_ |