]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/dcscreen.h
Did much work on colors. It doesn't work and I guess
[wxWidgets.git] / include / wx / gtk1 / dcscreen.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dcscreen.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Created: 01/02/97
6 // Id:
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11
12 #ifndef __GTKDCSCREENH__
13 #define __GTKDCSCREENH__
14
15 #include "wx/dcclient.h"
16
17 class WXDLLEXPORT wxScreenDC: public wxPaintDC
18 {
19 DECLARE_DYNAMIC_CLASS(wxScreenDC)
20
21 public:
22 wxScreenDC(void);
23 ~wxScreenDC(void);
24
25 static bool StartDrawingOnTop( wxWindow *window );
26 static bool StartDrawingOnTop( wxRectangle *rect = (wxRectangle *) NULL );
27 static bool EndDrawingOnTop(void);
28 };
29
30 #endif
31 // __GTKDCSCREENH__
32