]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dcscreen.h | |
3 | // Purpose: wxScreenDC base header | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Julian Smart | |
99d80019 JS |
8 | // Licence: wxWindows Licence |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
34138703 JS |
11 | #ifndef _WX_DCSCREEN_H_BASE_ |
12 | #define _WX_DCSCREEN_H_BASE_ | |
c801d85f | 13 | |
e45689df | 14 | #include "wx/defs.h" |
ab171e95 RR |
15 | #include "wx/dc.h" |
16 | ||
888dde65 | 17 | class WXDLLIMPEXP_CORE wxScreenDC : public wxDC |
ab171e95 RR |
18 | { |
19 | public: | |
20 | wxScreenDC(); | |
21 | ||
4f37154e RR |
22 | static bool StartDrawingOnTop(wxWindow * WXUNUSED(window)) |
23 | { return true; } | |
24 | static bool StartDrawingOnTop(wxRect * WXUNUSED(rect) = NULL) | |
25 | { return true; } | |
03647350 | 26 | static bool EndDrawingOnTop() |
4f37154e RR |
27 | { return true; } |
28 | ||
ab171e95 RR |
29 | private: |
30 | DECLARE_DYNAMIC_CLASS(wxScreenDC) | |
31 | }; | |
32 | ||
c8ddadff | 33 | |
c801d85f | 34 | #endif |
34138703 | 35 | // _WX_DCSCREEN_H_BASE_ |