projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
remove erase(const_iterator) overload, it should have never existed as const_iterator...
[wxWidgets.git]
/
include
/
wx
/
gtk
/
dcscreen.h
diff --git
a/include/wx/gtk/dcscreen.h
b/include/wx/gtk/dcscreen.h
index 11efd6630cb9dcd6c21391e7f6c80a5b24da1de0..fecc443bdb7a2ae0a5d9d0fd41f4aa8bb5da954c 100644
(file)
--- a/
include/wx/gtk/dcscreen.h
+++ b/
include/wx/gtk/dcscreen.h
@@
-4,48
+4,31
@@
// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
-// Licence: wxWi
dget
s licence
+// Licence: wxWi
ndow
s licence
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-#ifndef _
_GTKDCSCREENH_
_
-#define _
_GTKDCSCREENH_
_
+#ifndef _
WX_GTKDCSCREEN_H
_
+#define _
WX_GTKDCSCREEN_H
_
-#include "wx/dcclient.h"
+#include "wx/dcscreen.h"
+#include "wx/gtk/dcclient.h"
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
-//
classes
+//
wxScreenDCImpl
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
-class wxScreenDC;
-
-//-----------------------------------------------------------------------------
-// wxScreenDC
-//-----------------------------------------------------------------------------
-
-class wxScreenDC : public wxPaintDC
+class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
{
public:
{
public:
- wxScreenDC();
- virtual ~wxScreenDC();
-
- static bool StartDrawingOnTop( wxWindow *window );
- static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL );
- static bool EndDrawingOnTop();
+ wxScreenDCImpl( wxScreenDC *owner );
+ ~wxScreenDCImpl();
- // implementation
-
- static GdkWindow *sm_overlayWindow;
- static int sm_overlayWindowX;
- static int sm_overlayWindowY;
+ virtual void DoGetSize(int *width, int *height) const;
protected:
protected:
- v
irtual void DoGetSize(int *width, int *height) const
;
+ v
oid Init()
;
-private:
- DECLARE_DYNAMIC_CLASS(wxScreenDC)
+ DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
};
};
-#endif
-
- // __GTKDCSCREENH__
-
+#endif // _WX_GTKDCSCREEN_H_