]>
Commit | Line | Data |
---|---|---|
32b8ec41 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcscreen.h | |
3 | // Purpose: | |
4 | // Author: Vaclav Slavik | |
5 | // Id: $Id$ | |
52750c2e | 6 | // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) |
32b8ec41 VZ |
7 | // Licence: wxWindows licence |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef __WX_DCSCREEN_H__ | |
11 | #define __WX_DCSCREEN_H__ | |
12 | ||
12028905 | 13 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
32b8ec41 VZ |
14 | #pragma interface "dcscreen.h" |
15 | #endif | |
16 | ||
17 | #include "wx/dcclient.h" | |
18 | ||
19 | //----------------------------------------------------------------------------- | |
20 | // classes | |
21 | //----------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxScreenDC; | |
24 | ||
25 | //----------------------------------------------------------------------------- | |
26 | // wxScreenDC | |
27 | //----------------------------------------------------------------------------- | |
28 | ||
a4bbc9f7 | 29 | class WXDLLEXPORT wxScreenDC: public wxDC |
32b8ec41 VZ |
30 | { |
31 | public: | |
a4bbc9f7 | 32 | wxScreenDC(); |
69830d1f | 33 | ~wxScreenDC(); |
32b8ec41 | 34 | |
a4bbc9f7 VS |
35 | static bool StartDrawingOnTop(wxWindow *WXUNUSED(window)) { return TRUE; } |
36 | static bool StartDrawingOnTop(wxRect *WXUNUSED(rect) = NULL) { return TRUE; } | |
37 | static bool EndDrawingOnTop() { return TRUE; } | |
32b8ec41 VZ |
38 | |
39 | private: | |
40 | DECLARE_DYNAMIC_CLASS(wxScreenDC) | |
41 | }; | |
42 | ||
43 | #endif | |
44 | ||
45 | // __WX_DCSCREEN_H__ | |
46 |