]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dcscreen.h
check that the version of __sync_sub_and_fetch that returns a value is supported...
[wxWidgets.git] / include / wx / gtk / dcscreen.h
index fdbb7344cc2e6803fc75cf6edacc6cada361cdee..5f9538b4ce21408bf521cb7f66d0fad039e6dd71 100644 (file)
@@ -2,31 +2,35 @@
 // Name:        dcscreen.h
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
-// Licence:    wxWindows licence
+// Id:          $Id$
+// Copyright:   (c) 1998 Robert Roebling
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-
 #ifndef __GTKDCSCREENH__
 #define __GTKDCSCREENH__
 
-#include "wx/dcclient.h"
+#include "wx/dcscreen.h"
+#include "wx/gtk/dcclient.h"
+
+//-----------------------------------------------------------------------------
+// wxScreenDCImpl
+//-----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxScreenDC: public wxPaintDC
+class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
 {
-  DECLARE_DYNAMIC_CLASS(wxScreenDC)
+public:
+    wxScreenDCImpl( wxScreenDC *owner );
+    ~wxScreenDCImpl();
+
+protected:
+    virtual void DoGetSize(int *width, int *height) const;
 
- public:
-  wxScreenDC(void);
-  ~wxScreenDC(void);
+    void Init();
 
-  static bool StartDrawingOnTop( wxWindow *window );
-  static bool StartDrawingOnTop( wxRectangle *rect = (wxRectangle *) NULL );
-  static bool EndDrawingOnTop(void);
+private:
+    DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
 };
 
-#endif
-    // __GTKDCSCREENH__
+#endif // __GTKDCSCREENH__