]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcscreen.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
dbf858b5 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
72cdf4c9 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
c801d85f KB |
10 | #ifndef __GTKDCSCREENH__ |
11 | #define __GTKDCSCREENH__ | |
12 | ||
13 | #include "wx/dcclient.h" | |
14 | ||
dbf858b5 RR |
15 | //----------------------------------------------------------------------------- |
16 | // classes | |
17 | //----------------------------------------------------------------------------- | |
18 | ||
19 | class wxScreenDC; | |
20 | ||
21 | //----------------------------------------------------------------------------- | |
22 | // wxScreenDC | |
23 | //----------------------------------------------------------------------------- | |
24 | ||
25 | class wxScreenDC: public wxPaintDC | |
c801d85f KB |
26 | { |
27 | DECLARE_DYNAMIC_CLASS(wxScreenDC) | |
28 | ||
ec758a20 | 29 | public: |
72cdf4c9 VZ |
30 | wxScreenDC(); |
31 | ~wxScreenDC(); | |
c801d85f KB |
32 | |
33 | static bool StartDrawingOnTop( wxWindow *window ); | |
16e93305 | 34 | static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ); |
72cdf4c9 VZ |
35 | static bool EndDrawingOnTop(); |
36 | ||
dbf858b5 | 37 | // implementation |
72cdf4c9 | 38 | |
dbf858b5 RR |
39 | static GdkWindow *sm_overlayWindow; |
40 | static int sm_overlayWindowX; | |
41 | static int sm_overlayWindowY; | |
c801d85f KB |
42 | }; |
43 | ||
44 | #endif | |
dbf858b5 | 45 | |
c801d85f KB |
46 | // __GTKDCSCREENH__ |
47 |