]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/dcscreen.h
Make list consistent with tree in terms of Vetoed changes closing the inline edit...
[wxWidgets.git] / include / wx / gtk / dcscreen.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcscreen.h
3// Purpose:
4// Author: Robert Roebling
dbf858b5
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 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
19class wxScreenDC;
20
21//-----------------------------------------------------------------------------
22// wxScreenDC
23//-----------------------------------------------------------------------------
24
376aa62a 25class wxScreenDC : public wxPaintDC
c801d85f 26{
ec758a20 27public:
20e05ffb 28 wxScreenDC();
376aa62a 29 virtual ~wxScreenDC();
20e05ffb
RR
30
31 static bool StartDrawingOnTop( wxWindow *window );
32 static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL );
33 static bool EndDrawingOnTop();
34
35 // implementation
376aa62a 36
20e05ffb
RR
37 static GdkWindow *sm_overlayWindow;
38 static int sm_overlayWindowX;
39 static int sm_overlayWindowY;
376aa62a
VZ
40
41protected:
42 virtual void DoGetSize(int *width, int *height) const;
43
20e05ffb
RR
44private:
45 DECLARE_DYNAMIC_CLASS(wxScreenDC)
c801d85f
KB
46};
47
48#endif
dbf858b5 49
c801d85f
KB
50 // __GTKDCSCREENH__
51