]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/dcscreen.h
ensure that dialog gripper is always positioned below the other children, even if...
[wxWidgets.git] / include / wx / gtk1 / dcscreen.h
index c0136643c038af76dc61b943d6c1a50ce713666d..abbdb6b9a58739f747799e35f6763c7959d96355 100644 (file)
@@ -1,47 +1,39 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        dcscreen.h
+// Name:        wx/gtk1/dcscreen.h
 // Purpose:
 // Author:      Robert Roebling
 // Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __GTKDCSCREENH__
 #define __GTKDCSCREENH__
 
-#include "wx/dcclient.h"
+#include "wx/gtk1/dcclient.h"
 
 //-----------------------------------------------------------------------------
-// classes
+// wxScreenDCImpl
 //-----------------------------------------------------------------------------
 
-class wxScreenDC;
+class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl
+{
+public:
+    wxScreenDCImpl(wxScreenDC *owner);
+    virtual ~wxScreenDCImpl();
 
-//-----------------------------------------------------------------------------
-// wxScreenDC
-//-----------------------------------------------------------------------------
+    // implementation
 
-class wxScreenDC: public wxPaintDC
-{
-  DECLARE_DYNAMIC_CLASS(wxScreenDC)
-
- public:
-  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;
-};
+    static GdkWindow  *sm_overlayWindow;
+    static int         sm_overlayWindowX;
+    static int         sm_overlayWindowY;
+
+protected:
+    virtual void DoGetSize(int *width, int *height) const;
 
-#endif
+private:
+    DECLARE_DYNAMIC_CLASS(wxScreenDCImpl)
+};
 
-    // __GTKDCSCREENH__
+#endif // __GTKDCSCREENH__