initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
227
libs/wxWidgets-3.3.1/include/wx/weakref.h
Normal file
227
libs/wxWidgets-3.3.1/include/wx/weakref.h
Normal file
@@ -0,0 +1,227 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/weakref.h
|
||||
// Purpose: wxWeakRef - Generic weak references for wxWidgets
|
||||
// Author: Arne Steinarson
|
||||
// Created: 27 Dec 07
|
||||
// Copyright: (c) 2007 Arne Steinarson
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_WEAKREF_H_
|
||||
#define _WX_WEAKREF_H_
|
||||
|
||||
#include "wx/tracker.h"
|
||||
|
||||
|
||||
#include "wx/meta/convertible.h"
|
||||
#include "wx/meta/int2type.h"
|
||||
|
||||
template <class T>
|
||||
struct wxIsStaticTrackable
|
||||
{
|
||||
enum { value = wxIsPubliclyDerived<T, wxTrackable>::value };
|
||||
};
|
||||
|
||||
|
||||
// A weak reference to an object of type T (which must inherit from wxTrackable)
|
||||
template <class T>
|
||||
class wxWeakRef : public wxTrackerNode
|
||||
{
|
||||
public:
|
||||
typedef T element_type;
|
||||
|
||||
// Default ctor
|
||||
wxWeakRef() = default;
|
||||
|
||||
// Ctor from the object of this type: this is needed as the template ctor
|
||||
// below is not used by at least g++4 when a literal NULL is used
|
||||
wxWeakRef(T *pobj)
|
||||
{
|
||||
this->Assign(pobj);
|
||||
}
|
||||
|
||||
// When we have the full type here, static_cast<> will always work
|
||||
// (or give a straight compiler error).
|
||||
template <class TDerived>
|
||||
wxWeakRef(TDerived* pobj)
|
||||
{
|
||||
this->Assign(pobj);
|
||||
}
|
||||
|
||||
// We need this copy ctor, since otherwise a default compiler (binary) copy
|
||||
// happens (if embedded as an object member).
|
||||
wxWeakRef(const wxWeakRef<T>& wr)
|
||||
{
|
||||
this->Assign(wr.get());
|
||||
}
|
||||
|
||||
wxWeakRef<T>& operator=(const wxWeakRef<T>& wr)
|
||||
{
|
||||
this->AssignCopy(wr);
|
||||
return *this;
|
||||
}
|
||||
|
||||
virtual ~wxWeakRef() { this->Release(); }
|
||||
|
||||
// Smart pointer functions
|
||||
T& operator*() const { return *this->m_pobj; }
|
||||
T* operator->() const { return this->m_pobj; }
|
||||
|
||||
T* get() const { return this->m_pobj; }
|
||||
operator T*() const { return this->m_pobj; }
|
||||
|
||||
public:
|
||||
void Release()
|
||||
{
|
||||
// Release old object if any
|
||||
if ( m_pobj )
|
||||
{
|
||||
// Remove ourselves from object tracker list
|
||||
m_ptbase->RemoveNode(this);
|
||||
m_pobj = nullptr;
|
||||
m_ptbase = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
virtual void OnObjectDestroy() override
|
||||
{
|
||||
// Tracked object itself removes us from list of trackers
|
||||
wxASSERT(m_pobj != nullptr);
|
||||
m_pobj = nullptr;
|
||||
m_ptbase = nullptr;
|
||||
}
|
||||
|
||||
protected:
|
||||
// Assign receives most derived class here and can use that
|
||||
template <class TDerived>
|
||||
void Assign( TDerived* pobj )
|
||||
{
|
||||
wxCOMPILE_TIME_ASSERT( wxIsStaticTrackable<TDerived>::value,
|
||||
Tracked_class_should_inherit_from_wxTrackable );
|
||||
wxTrackable *ptbase = static_cast<wxTrackable*>(pobj);
|
||||
DoAssign(pobj, ptbase);
|
||||
}
|
||||
|
||||
void AssignCopy(const wxWeakRef& wr)
|
||||
{
|
||||
DoAssign(wr.m_pobj, wr.m_ptbase);
|
||||
}
|
||||
|
||||
void DoAssign(T* pobj, wxTrackable *ptbase)
|
||||
{
|
||||
if ( m_pobj == pobj )
|
||||
return;
|
||||
|
||||
Release();
|
||||
|
||||
// Now set new trackable object
|
||||
if ( pobj )
|
||||
{
|
||||
// Add ourselves to object tracker list
|
||||
ptbase->AddNode( this );
|
||||
m_pobj = pobj;
|
||||
m_ptbase = ptbase;
|
||||
}
|
||||
}
|
||||
|
||||
T *m_pobj = nullptr;
|
||||
wxTrackable *m_ptbase = nullptr;
|
||||
};
|
||||
|
||||
|
||||
#ifndef wxNO_RTTI
|
||||
|
||||
// Weak ref implementation assign objects are queried for wxTrackable
|
||||
// using dynamic_cast<>
|
||||
template <class T>
|
||||
class wxWeakRefDynamic : public wxTrackerNode
|
||||
{
|
||||
public:
|
||||
wxWeakRefDynamic() = default;
|
||||
|
||||
wxWeakRefDynamic(T* pobj) : m_pobj(pobj)
|
||||
{
|
||||
Assign(pobj);
|
||||
}
|
||||
|
||||
wxWeakRefDynamic(const wxWeakRef<T>& wr)
|
||||
{
|
||||
Assign(wr.get());
|
||||
}
|
||||
|
||||
virtual ~wxWeakRefDynamic() { Release(); }
|
||||
|
||||
// Smart pointer functions
|
||||
T& operator*() const { return *m_pobj; }
|
||||
T* operator->() const { return m_pobj; }
|
||||
|
||||
T* get() const { return m_pobj; }
|
||||
operator T* () const { return m_pobj; }
|
||||
|
||||
T* operator = (T* pobj) { Assign(pobj); return m_pobj; }
|
||||
|
||||
// Assign from another weak ref, point to same object
|
||||
T* operator = (const wxWeakRef<T> &wr) { Assign( wr.get() ); return m_pobj; }
|
||||
|
||||
void Release()
|
||||
{
|
||||
// Release old object if any
|
||||
if( m_pobj )
|
||||
{
|
||||
// Remove ourselves from object tracker list
|
||||
wxTrackable *pt = dynamic_cast<wxTrackable*>(m_pobj);
|
||||
pt->RemoveNode(this);
|
||||
m_pobj = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
virtual void OnObjectDestroy() override
|
||||
{
|
||||
wxASSERT_MSG(m_pobj, "tracked object should have removed us itself");
|
||||
|
||||
m_pobj = nullptr;
|
||||
}
|
||||
|
||||
protected:
|
||||
void Assign(T *pobj)
|
||||
{
|
||||
if ( m_pobj == pobj )
|
||||
return;
|
||||
|
||||
Release();
|
||||
|
||||
// Now set new trackable object
|
||||
if ( pobj )
|
||||
{
|
||||
// Add ourselves to object tracker list
|
||||
wxTrackable *pt = dynamic_cast<wxTrackable*>(pobj);
|
||||
if ( pt )
|
||||
{
|
||||
pt->AddNode(this);
|
||||
m_pobj = pobj;
|
||||
}
|
||||
else
|
||||
{
|
||||
// If the object we want to track does not support wxTackable, then
|
||||
// log a message and keep the null object pointer.
|
||||
wxFAIL_MSG( "Tracked class should inherit from wxTrackable" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
T *m_pobj = nullptr;
|
||||
};
|
||||
|
||||
#endif // RTTI enabled
|
||||
|
||||
|
||||
// Provide some basic types of weak references
|
||||
class WXDLLIMPEXP_FWD_BASE wxEvtHandler;
|
||||
class WXDLLIMPEXP_FWD_CORE wxWindow;
|
||||
|
||||
|
||||
typedef wxWeakRef<wxEvtHandler> wxEvtHandlerRef;
|
||||
typedef wxWeakRef<wxWindow> wxWindowRef;
|
||||
|
||||
#endif // _WX_WEAKREF_H_
|
||||
|
||||
Reference in New Issue
Block a user