]> 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 5cb1991fe9e6ef0bbbd3f0b42cc438db70475d70..abbdb6b9a58739f747799e35f6763c7959d96355 100644 (file)
@@ -1,32 +1,39 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        dcscreen.h
+// Name:        wx/gtk1/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/gtk1/dcclient.h"
+
+//-----------------------------------------------------------------------------
+// wxScreenDCImpl
+//-----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxScreenDC: public wxPaintDC
+class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl
 {
-  DECLARE_DYNAMIC_CLASS(wxScreenDC)
+public:
+    wxScreenDCImpl(wxScreenDC *owner);
+    virtual ~wxScreenDCImpl();
+
+    // implementation
+
+    static GdkWindow  *sm_overlayWindow;
+    static int         sm_overlayWindowX;
+    static int         sm_overlayWindowY;
 
- public:
-  wxScreenDC(void);
-  ~wxScreenDC(void);
+protected:
+    virtual void DoGetSize(int *width, int *height) const;
 
-  static bool StartDrawingOnTop( wxWindow *window );
-  static bool StartDrawingOnTop( wxRectangle *rect = NULL );
-  static bool EndDrawingOnTop(void);
+private:
+    DECLARE_DYNAMIC_CLASS(wxScreenDCImpl)
 };
 
-#endif
-    // __GTKDCSCREENH__
+#endif // __GTKDCSCREENH__