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