]> 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 79ed9959a907b048e5786b07b3fd594fba007788..5f9538b4ce21408bf521cb7f66d0fad039e6dd71 100644 (file)
 #ifndef __GTKDCSCREENH__
 #define __GTKDCSCREENH__
 
-#include "wx/dcclient.h"
+#include "wx/dcscreen.h"
+#include "wx/gtk/dcclient.h"
 
 //-----------------------------------------------------------------------------
-// wxScreenDC
+// wxScreenDCImpl
 //-----------------------------------------------------------------------------
 
-#if wxUSE_NEW_DC
-class WXDLLIMPEXP_CORE wxGTKScreenImplDC : public wxGTKWindowImplDC
-#else
-#define wxGTKScreenImplDC wxScreenDC
-class WXDLLIMPEXP_CORE wxScreenDC : public wxWindowDC
-#endif
+class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
 {
 public:
-
-#if wxUSE_NEW_DC
-    wxGTKScreenImplDC( wxScreenDC *owner );
-#else
-    wxScreenDC();
-#endif
-
-    ~wxGTKScreenImplDC();
-
-    static bool StartDrawingOnTop( wxWindow *window ) { return true; }
-    static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ) { return true; }
-    static bool EndDrawingOnTop() { return true; }
-
+    wxScreenDCImpl( wxScreenDC *owner );
+    ~wxScreenDCImpl();
 
 protected:
     virtual void DoGetSize(int *width, int *height) const;
-    
+
     void Init();
 
 private:
-    DECLARE_ABSTRACT_CLASS(wxGTKScreenImplDC)
+    DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
 };
 
-#endif
-
-    // __GTKDCSCREENH__
+#endif // __GTKDCSCREENH__