mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 21:31:25 +00:00
27 lines
721 B
C++
27 lines
721 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/dcscreen.h
|
|
// Author: Sean D'Epagnier
|
|
// Copyright: (c) Sean D'Epagnier
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_DCSCREEN_H_
|
|
#define _WX_QT_DCSCREEN_H_
|
|
|
|
#include "wx/qt/dcclient.h"
|
|
|
|
class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
|
|
{
|
|
public:
|
|
wxScreenDCImpl( wxScreenDC *owner );
|
|
|
|
~wxScreenDCImpl();
|
|
|
|
protected:
|
|
virtual void DoGetSize(int *width, int *height) const wxOVERRIDE;
|
|
virtual QPixmap *GetQPixmap() wxOVERRIDE;
|
|
|
|
wxDECLARE_ABSTRACT_CLASS(wxScreenDCImpl);
|
|
};
|
|
|
|
#endif // _WX_QT_DCSCREEN_H_
|