]> git.saurik.com Git - wxWidgets.git/blobdiff - src/qt/dcscreen.cpp
fix for assert when setting tooltip for a readonly combo
[wxWidgets.git] / src / qt / dcscreen.cpp
index cb263fc426cefdc2c7daf72a4bdf0a53efb1441f..cea4a7c792c9323f0b9e60e2fc37698b38f0c589 100644 (file)
@@ -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
 /////////////////////////////////////////////////////////////////////////////
 
 #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;
-};