1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-19 20:14:35 -04:00
|
|
|
// Name: wx/gtk/dcscreen.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-12-06 11:22:00 -05:00
|
|
|
#ifndef _WX_GTKDCSCREEN_H_
|
|
|
|
#define _WX_GTKDCSCREEN_H_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2007-11-30 08:48:22 -05:00
|
|
|
#include "wx/dcscreen.h"
|
|
|
|
#include "wx/gtk/dcclient.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1998-10-26 05:56:58 -05:00
|
|
|
//-----------------------------------------------------------------------------
|
2007-11-30 08:48:22 -05:00
|
|
|
// wxScreenDCImpl
|
1998-10-26 05:56:58 -05:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-11-30 08:48:22 -05:00
|
|
|
class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1998-12-01 07:55:09 -05:00
|
|
|
public:
|
2007-11-30 08:48:22 -05:00
|
|
|
wxScreenDCImpl( wxScreenDC *owner );
|
|
|
|
~wxScreenDCImpl();
|
2000-10-30 11:43:37 -05:00
|
|
|
|
|
|
|
virtual void DoGetSize(int *width, int *height) const;
|
2007-10-23 18:19:34 -04:00
|
|
|
|
2007-12-06 11:22:00 -05:00
|
|
|
protected:
|
2007-09-23 07:27:41 -04:00
|
|
|
void Init();
|
2000-10-30 11:43:37 -05:00
|
|
|
|
2007-11-30 08:48:22 -05:00
|
|
|
DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2007-12-06 11:22:00 -05:00
|
|
|
#endif // _WX_GTKDCSCREEN_H_
|