]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
8ef94bfc | 2 | // Name: wx/gtk1/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 | ||
c801d85f KB |
10 | #ifndef __GTKDCSCREENH__ |
11 | #define __GTKDCSCREENH__ | |
12 | ||
10d30222 | 13 | #include "wx/gtk1/dcclient.h" |
c801d85f | 14 | |
dbf858b5 | 15 | //----------------------------------------------------------------------------- |
10d30222 | 16 | // wxScreenDCImpl |
dbf858b5 RR |
17 | //----------------------------------------------------------------------------- |
18 | ||
10d30222 | 19 | class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl |
c801d85f | 20 | { |
ec758a20 | 21 | public: |
10d30222 VZ |
22 | wxScreenDCImpl(wxScreenDC *owner); |
23 | virtual ~wxScreenDCImpl(); | |
20e05ffb RR |
24 | |
25 | // implementation | |
376aa62a | 26 | |
20e05ffb RR |
27 | static GdkWindow *sm_overlayWindow; |
28 | static int sm_overlayWindowX; | |
29 | static int sm_overlayWindowY; | |
376aa62a VZ |
30 | |
31 | protected: | |
32 | virtual void DoGetSize(int *width, int *height) const; | |
33 | ||
20e05ffb | 34 | private: |
10d30222 | 35 | DECLARE_DYNAMIC_CLASS(wxScreenDCImpl) |
c801d85f KB |
36 | }; |
37 | ||
10d30222 | 38 | #endif // __GTKDCSCREENH__ |
c801d85f | 39 |