/////////////////////////////////////////////////////////////////////////////
// Name: dcscreen.cpp
-// Purpose:
-// Author: Robert Roebling
-// Created: 01/02/97
-// Id:
-// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Purpose: wxScreenDC class
+// Author: AUTHOR
+// Modified by:
+// Created: ??/??/98
+// RCS-ID: $Id$
+// Copyright: (c) AUTHOR
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#endif
#include "wx/dcscreen.h"
-#include "wx/window.h"
-//-----------------------------------------------------------------------------
-// wxScreenDC
-//-----------------------------------------------------------------------------
+IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxPaintDC)
-IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxPaintDC)
-
-wxScreenDC::wxScreenDC(void)
-{
- m_ok = FALSE;
-};
-
-wxScreenDC::~wxScreenDC(void)
+// Create a DC representing the whole screen
+wxScreenDC::wxScreenDC()
{
- EndDrawingOnTop();
-};
+ // TODO
+}
-bool wxScreenDC::StartDrawingOnTop( wxWindow *WXUNUSED(window) )
+wxScreenDC::~wxScreenDC()
{
- return TRUE;
-};
+ // TODO
+}
-bool wxScreenDC::StartDrawingOnTop( wxRectangle *WXUNUSED(rect) )
-{
- return TRUE;
-};
-
-bool wxScreenDC::EndDrawingOnTop(void)
-{
- return TRUE;
-};