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