1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dcscreen.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1998-05-20 10:01:55 -04:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKDCSCREENH__
|
|
|
|
#define __GTKDCSCREENH__
|
|
|
|
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
|
1998-10-26 05:56:58 -05:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxScreenDC;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxScreenDC
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxScreenDC: public wxPaintDC
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxScreenDC)
|
|
|
|
|
1998-12-01 07:55:09 -05:00
|
|
|
public:
|
1998-05-20 10:01:55 -04:00
|
|
|
wxScreenDC(void);
|
|
|
|
~wxScreenDC(void);
|
|
|
|
|
|
|
|
static bool StartDrawingOnTop( wxWindow *window );
|
1998-12-03 05:13:41 -05:00
|
|
|
static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL );
|
1998-05-20 10:01:55 -04:00
|
|
|
static bool EndDrawingOnTop(void);
|
1998-10-26 05:56:58 -05:00
|
|
|
|
|
|
|
// implementation
|
|
|
|
|
|
|
|
static GdkWindow *sm_overlayWindow;
|
|
|
|
static int sm_overlayWindowX;
|
|
|
|
static int sm_overlayWindowY;
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-10-26 05:56:58 -05:00
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
// __GTKDCSCREENH__
|
|
|
|
|