2001-06-26 21:05:06 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dcscreen.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Id: $Id$
|
2002-02-14 20:30:34 +00:00
|
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 21:05:06 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __WX_DCSCREEN_H__
|
|
|
|
#define __WX_DCSCREEN_H__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-06-26 21:05:06 +00:00
|
|
|
#pragma interface "dcscreen.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxScreenDC;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxScreenDC
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2001-08-01 22:57:11 +00:00
|
|
|
class WXDLLEXPORT wxScreenDC: public wxDC
|
2001-06-26 21:05:06 +00:00
|
|
|
{
|
|
|
|
public:
|
2001-08-01 22:57:11 +00:00
|
|
|
wxScreenDC();
|
2002-01-26 00:24:06 +00:00
|
|
|
~wxScreenDC();
|
2001-06-26 21:05:06 +00:00
|
|
|
|
2001-08-01 22:57:11 +00:00
|
|
|
static bool StartDrawingOnTop(wxWindow *WXUNUSED(window)) { return TRUE; }
|
|
|
|
static bool StartDrawingOnTop(wxRect *WXUNUSED(rect) = NULL) { return TRUE; }
|
|
|
|
static bool EndDrawingOnTop() { return TRUE; }
|
2001-06-26 21:05:06 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxScreenDC)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// __WX_DCSCREEN_H__
|
|
|
|
|