X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c78e7c70271608b076b1dbed201b1204e6898d4..08793a6da98205967a5ed81b2124726f19cae39f:/src/qt/dcscreen.cpp diff --git a/src/qt/dcscreen.cpp b/src/qt/dcscreen.cpp index cb263fc426..cea4a7c792 100644 --- a/src/qt/dcscreen.cpp +++ b/src/qt/dcscreen.cpp @@ -1,10 +1,11 @@ ///////////////////////////////////////////////////////////////////////////// // 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 ///////////////////////////////////////////////////////////////////////////// @@ -13,35 +14,17 @@ #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; -};