initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
34
libs/wxWidgets-3.3.1/include/wx/qt/dcmemory.h
Normal file
34
libs/wxWidgets-3.3.1/include/wx/qt/dcmemory.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/qt/dcmemory.h
|
||||
// Author: Peter Most, Javier Torres, Mariano Reingart
|
||||
// Copyright: (c) 2010 wxWidgets dev team
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_QT_DCMEMORY_H_
|
||||
#define _WX_QT_DCMEMORY_H_
|
||||
|
||||
#include "wx/qt/dcclient.h"
|
||||
|
||||
class WXDLLIMPEXP_CORE wxMemoryDCImpl : public wxQtDCImpl
|
||||
{
|
||||
public:
|
||||
wxMemoryDCImpl( wxMemoryDC *owner );
|
||||
wxMemoryDCImpl( wxMemoryDC *owner, wxBitmap& bitmap );
|
||||
wxMemoryDCImpl( wxMemoryDC *owner, wxDC *dc );
|
||||
~wxMemoryDCImpl();
|
||||
|
||||
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const override;
|
||||
virtual void DoSelect(const wxBitmap& bitmap) override;
|
||||
|
||||
virtual const wxBitmap& GetSelectedBitmap() const override;
|
||||
virtual wxBitmap& GetSelectedBitmap() override;
|
||||
|
||||
private:
|
||||
wxBitmap m_selected;
|
||||
|
||||
wxDECLARE_CLASS(wxMemoryDCImpl);
|
||||
wxDECLARE_NO_COPY_CLASS(wxMemoryDCImpl);
|
||||
};
|
||||
|
||||
#endif // _WX_QT_DCMEMORY_H_
|
||||
Reference in New Issue
Block a user