projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add GTK3-specific code for DrawItemSelectionRect(), fixes drawing selected tree contr...
[wxWidgets.git]
/
include
/
wx
/
gtk
/
dcscreen.h
diff --git
a/include/wx/gtk/dcscreen.h
b/include/wx/gtk/dcscreen.h
index 5cb1991fe9e6ef0bbbd3f0b42cc438db70475d70..83084aeadccac4b1be15e1a6b2c7dca50b6fc3b4 100644
(file)
--- a/
include/wx/gtk/dcscreen.h
+++ b/
include/wx/gtk/dcscreen.h
@@
-1,32
+1,34
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: dcscreen.h
+// Name:
wx/gtk/
dcscreen.h
// Purpose:
// Author: Robert Roebling
// 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 _WX_GTKDCSCREEN_H_
+#define _WX_GTKDCSCREEN_H_
-#i
fndef __GTKDCSCREENH__
-#
define __GTKDCSCREENH__
+#i
nclude "wx/dcscreen.h"
+#
include "wx/gtk/dcclient.h"
-#include "wx/dcclient.h"
+//-----------------------------------------------------------------------------
+// wxScreenDCImpl
+//-----------------------------------------------------------------------------
-class WXDLL
EXPORT wxScreenDC: public wxPaintDC
+class WXDLL
IMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
{
{
- DECLARE_DYNAMIC_CLASS(wxScreenDC)
+public:
+ wxScreenDCImpl( wxScreenDC *owner );
+ ~wxScreenDCImpl();
- public:
- wxScreenDC(void);
- ~wxScreenDC(void);
+ virtual void DoGetSize(int *width, int *height) const;
- static bool StartDrawingOnTop( wxWindow *window );
- static bool StartDrawingOnTop( wxRectangle *rect = NULL );
- static bool EndDrawingOnTop(void);
-};
+private:
+ void Init();
-#endif
- // __GTKDCSCREENH__
+ DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
+};
+#endif // _WX_GTKDCSCREEN_H_