This is a combination of running clang-tidy with modernize-use-nullptr check for some ports (GTK, X11, OSX) and manual changes to the ports for which it couldn't be used easily (MSW, DFB) and also manually updating the docs. Also replace NULL with null or nullptr in the comments as this is more consistent with the use of nullptr in the code and makes it simpler to grep for the remaining occurrences of NULL itself. And also use null in the assert messages. Only a few occurrences of "NULL" are still left in non-C files, mostly corresponding to unclear comments or string output which it might not be safe to change.
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/msw/dcmemory.h
|
|
// Purpose: wxMemoryDC class
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 01/02/97
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_DCMEMORY_H_
|
|
#define _WX_DCMEMORY_H_
|
|
|
|
#include "wx/dcmemory.h"
|
|
#include "wx/msw/dc.h"
|
|
|
|
class WXDLLIMPEXP_CORE wxMemoryDCImpl: public wxMSWDCImpl
|
|
{
|
|
public:
|
|
wxMemoryDCImpl( wxMemoryDC *owner );
|
|
wxMemoryDCImpl( wxMemoryDC *owner, wxBitmap& bitmap );
|
|
wxMemoryDCImpl( wxMemoryDC *owner, wxDC *dc ); // Create compatible DC
|
|
|
|
// override some base class virtuals
|
|
virtual wxSize GetPPI() const override;
|
|
virtual void SetFont(const wxFont& font) override;
|
|
|
|
virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height) override;
|
|
virtual void DoGetSize(int* width, int* height) const override;
|
|
virtual void DoSelect(const wxBitmap& bitmap) override;
|
|
|
|
virtual wxBitmap DoGetAsBitmap(const wxRect* subrect) const override
|
|
{ return subrect == nullptr ? GetSelectedBitmap() : GetSelectedBitmap().GetSubBitmapOfHDC(*subrect, GetHDC() );}
|
|
|
|
protected:
|
|
// create DC compatible with the given one or screen if dc == nullptr
|
|
bool CreateCompatible(wxDC *dc);
|
|
|
|
// initialize the newly created DC
|
|
void Init();
|
|
|
|
wxDECLARE_CLASS(wxMemoryDCImpl);
|
|
wxDECLARE_NO_COPY_CLASS(wxMemoryDCImpl);
|
|
};
|
|
|
|
#endif
|
|
// _WX_DCMEMORY_H_
|