]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/dcscreen.h
check that the version of __sync_sub_and_fetch that returns a value is supported...
[wxWidgets.git] / include / wx / gtk / dcscreen.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dcscreen.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef __GTKDCSCREENH__
11 #define __GTKDCSCREENH__
12
13 #include "wx/dcscreen.h"
14 #include "wx/gtk/dcclient.h"
15
16 //-----------------------------------------------------------------------------
17 // wxScreenDCImpl
18 //-----------------------------------------------------------------------------
19
20 class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
21 {
22 public:
23 wxScreenDCImpl( wxScreenDC *owner );
24 ~wxScreenDCImpl();
25
26 protected:
27 virtual void DoGetSize(int *width, int *height) const;
28
29 void Init();
30
31 private:
32 DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
33 };
34
35 #endif // __GTKDCSCREENH__
36