| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: dcscreen.h |
| 3 | // Purpose: wxScreenDC class |
| 4 | // Author: Julian Smart |
| 5 | // Modified by: |
| 6 | // Created: 17/09/98 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Julian Smart |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_DCSCREEN_H_ |
| 13 | #define _WX_DCSCREEN_H_ |
| 14 | |
| 15 | #ifdef __GNUG__ |
| 16 | #pragma interface "dcscreen.h" |
| 17 | #endif |
| 18 | |
| 19 | #include "wx/dcclient.h" |
| 20 | |
| 21 | //----------------------------------------------------------------------------- |
| 22 | // wxScreenDC |
| 23 | //----------------------------------------------------------------------------- |
| 24 | |
| 25 | class wxScreenDC : public wxPaintDC |
| 26 | { |
| 27 | public: |
| 28 | wxScreenDC(); |
| 29 | virtual ~wxScreenDC(); |
| 30 | |
| 31 | static bool StartDrawingOnTop( wxWindow *window ); |
| 32 | static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ); |
| 33 | static bool EndDrawingOnTop(); |
| 34 | |
| 35 | // implementation |
| 36 | |
| 37 | static WXWindow *sm_overlayWindow; |
| 38 | static int sm_overlayWindowX; |
| 39 | static int sm_overlayWindowY; |
| 40 | |
| 41 | protected: |
| 42 | virtual void DoGetSize(int *width, int *height) const; |
| 43 | |
| 44 | private: |
| 45 | DECLARE_DYNAMIC_CLASS(wxScreenDC) |
| 46 | }; |
| 47 | |
| 48 | |
| 49 | #endif |
| 50 | // _WX_DCSCREEN_H_ |
| 51 | |