1998-08-08 09:19:47 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dcscreen.h
|
|
|
|
// Purpose: wxScreenDC class
|
|
|
|
// Author: AUTHOR
|
|
|
|
// Modified by:
|
|
|
|
// Created: ??/??/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) AUTHOR
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DCSCREEN_H_
|
|
|
|
#define _WX_DCSCREEN_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "dcscreen.h"
|
|
|
|
#endif
|
|
|
|
|
1998-08-09 16:31:10 +00:00
|
|
|
#include "wx/dcclient.h"
|
1998-08-08 09:19:47 +00:00
|
|
|
|
1998-11-30 12:52:58 +00:00
|
|
|
class WXDLLEXPORT wxScreenDC: public wxWindowDC
|
1998-08-08 09:19:47 +00:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxScreenDC)
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Create a DC representing the whole screen
|
|
|
|
wxScreenDC();
|
|
|
|
~wxScreenDC();
|
|
|
|
|
|
|
|
// Compatibility with X's requirements for
|
|
|
|
// drawing on top of all windows
|
|
|
|
static bool StartDrawingOnTop(wxWindow* WXUNUSED(window)) { return TRUE; }
|
1998-12-03 10:13:41 +00:00
|
|
|
static bool StartDrawingOnTop(wxRect* WXUNUSED(rect) = NULL) { return TRUE; }
|
1998-08-08 09:19:47 +00:00
|
|
|
static bool EndDrawingOnTop() { return TRUE; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_DCSCREEN_H_
|
|
|
|
|