X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c78e7c70271608b076b1dbed201b1204e6898d4..b3031762e87338b20e682af9278731aec1d123c6:/src/qt/dcscreen.cpp diff --git a/src/qt/dcscreen.cpp b/src/qt/dcscreen.cpp index cb263fc426..04bbf4f353 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,19 @@ #endif #include "wx/dcscreen.h" -#include "wx/window.h" -//----------------------------------------------------------------------------- -// wxScreenDC -//----------------------------------------------------------------------------- - -IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxPaintDC) - -wxScreenDC::wxScreenDC(void) -{ - m_ok = FALSE; -}; - -wxScreenDC::~wxScreenDC(void) -{ - EndDrawingOnTop(); -}; +#if !USE_SHARED_LIBRARY +IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxPaintDC) +#endif -bool wxScreenDC::StartDrawingOnTop( wxWindow *WXUNUSED(window) ) +// Create a DC representing the whole screen +wxScreenDC::wxScreenDC() { - return TRUE; -}; + // TODO +} -bool wxScreenDC::StartDrawingOnTop( wxRectangle *WXUNUSED(rect) ) +wxScreenDC::~wxScreenDC() { - return TRUE; -}; + // TODO +} -bool wxScreenDC::EndDrawingOnTop(void) -{ - return TRUE; -};