]> git.saurik.com Git - wxWidgets.git/blame - 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
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcscreen.h
3// Purpose:
4// Author: Robert Roebling
dbf858b5
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#ifndef __GTKDCSCREENH__
11#define __GTKDCSCREENH__
12
888dde65
RR
13#include "wx/dcscreen.h"
14#include "wx/gtk/dcclient.h"
c801d85f 15
dbf858b5 16//-----------------------------------------------------------------------------
888dde65 17// wxScreenDCImpl
dbf858b5
RR
18//-----------------------------------------------------------------------------
19
888dde65 20class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
c801d85f 21{
ec758a20 22public:
888dde65
RR
23 wxScreenDCImpl( wxScreenDC *owner );
24 ~wxScreenDCImpl();
376aa62a
VZ
25
26protected:
27 virtual void DoGetSize(int *width, int *height) const;
e4161a2a 28
ab171e95 29 void Init();
376aa62a 30
20e05ffb 31private:
888dde65 32 DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
c801d85f
KB
33};
34
e4161a2a 35#endif // __GTKDCSCREENH__
c801d85f 36