- wxScreenDC(void);
- ~wxScreenDC(void);
-
- static bool StartDrawingOnTop( wxWindow *window );
- static bool StartDrawingOnTop( wxRectangle *rect = (wxRectangle *) NULL );
- static bool EndDrawingOnTop(void);
-
- // implementation
-
- static GdkWindow *sm_overlayWindow;
- static int sm_overlayWindowX;
- static int sm_overlayWindowY;
+
+#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; }
+
+
+protected:
+ virtual void DoGetSize(int *width, int *height) const;
+
+ void Init();
+
+private:
+ DECLARE_ABSTRACT_CLASS(wxGTKScreenImplDC)