2011-03-20 18:05:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 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 = wxConvertibleTo<T, wxTrackable>::value };
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
// A weak reference to an object of type T (which must inherit from wxTrackable)
|
2011-03-20 18:05:19 +00:00
|
|
|
template <class T>
|
2016-06-26 05:25:29 +00:00
|
|
|
class wxWeakRef : public wxTrackerNode
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-06-26 05:25:29 +00:00
|
|
|
typedef T element_type;
|
2011-03-20 18:05:19 +00:00
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
// Default ctor
|
|
|
|
wxWeakRef() : m_pobj(NULL), m_ptbase(NULL) { }
|
|
|
|
|
|
|
|
// 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) : m_pobj(NULL), m_ptbase(NULL)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
2016-06-26 05:25:29 +00:00
|
|
|
this->Assign(pobj);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
// When we have the full type here, static_cast<> will always work
|
|
|
|
// (or give a straight compiler error).
|
|
|
|
template <class TDerived>
|
|
|
|
wxWeakRef(TDerived* pobj) : m_pobj(NULL), m_ptbase(NULL)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
2016-06-26 05:25:29 +00:00
|
|
|
this->Assign(pobj);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
// We need this copy ctor, since otherwise a default compiler (binary) copy
|
|
|
|
// happens (if embedded as an object member).
|
|
|
|
wxWeakRef(const wxWeakRef<T>& wr) : m_pobj(NULL), m_ptbase(NULL)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
2016-06-26 05:25:29 +00:00
|
|
|
this->Assign(wr.get());
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
wxWeakRef<T>& operator=(const wxWeakRef<T>& wr)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
2016-06-26 05:25:29 +00:00
|
|
|
this->AssignCopy(wr);
|
|
|
|
return *this;
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual ~wxWeakRef() { this->Release(); }
|
2011-03-20 18:05:19 +00:00
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
// Smart pointer functions
|
|
|
|
T& operator*() const { return *this->m_pobj; }
|
|
|
|
T* operator->() const { return this->m_pobj; }
|
2011-03-20 18:05:19 +00:00
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
T* get() const { return this->m_pobj; }
|
|
|
|
operator T*() const { return this->m_pobj; }
|
2011-03-20 18:05:19 +00:00
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
public:
|
2011-03-20 18:05:19 +00:00
|
|
|
void Release()
|
|
|
|
{
|
|
|
|
// Release old object if any
|
|
|
|
if ( m_pobj )
|
|
|
|
{
|
|
|
|
// Remove ourselves from object tracker list
|
|
|
|
m_ptbase->RemoveNode(this);
|
|
|
|
m_pobj = NULL;
|
|
|
|
m_ptbase = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual void OnObjectDestroy() wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
// Tracked object itself removes us from list of trackers
|
|
|
|
wxASSERT(m_pobj != NULL);
|
|
|
|
m_pobj = NULL;
|
|
|
|
m_ptbase = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Assign receives most derived class here and can use that
|
|
|
|
template <class TDerived>
|
|
|
|
void Assign( TDerived* pobj )
|
|
|
|
{
|
2016-06-26 05:25:29 +00:00
|
|
|
wxCOMPILE_TIME_ASSERT( wxIsStaticTrackable<TDerived>::value,
|
|
|
|
Tracked_class_should_inherit_from_wxTrackable );
|
2011-03-20 18:05:19 +00:00
|
|
|
wxTrackable *ptbase = static_cast<wxTrackable*>(pobj);
|
2016-06-26 05:25:29 +00:00
|
|
|
DoAssign(pobj, ptbase);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
void AssignCopy(const wxWeakRef& wr)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
2016-06-26 05:25:29 +00:00
|
|
|
DoAssign(wr.m_pobj, wr.m_ptbase);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
void DoAssign(T* pobj, wxTrackable *ptbase)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
2016-06-26 05:25:29 +00:00
|
|
|
if ( m_pobj == pobj )
|
|
|
|
return;
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
Release();
|
|
|
|
|
|
|
|
// Now set new trackable object
|
2016-06-26 05:25:29 +00:00
|
|
|
if ( pobj )
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
// Add ourselves to object tracker list
|
|
|
|
wxASSERT( ptbase );
|
|
|
|
ptbase->AddNode( this );
|
|
|
|
m_pobj = pobj;
|
|
|
|
m_ptbase = ptbase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
T *m_pobj;
|
|
|
|
wxTrackable *m_ptbase;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef wxNO_RTTI
|
|
|
|
|
|
|
|
// Weak ref implementation assign objects are queried for wxTrackable
|
|
|
|
// using dynamic_cast<>
|
|
|
|
template <class T>
|
|
|
|
class wxWeakRefDynamic : public wxTrackerNode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxWeakRefDynamic() : m_pobj(NULL) { }
|
|
|
|
|
|
|
|
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 { wxASSERT(m_pobj); return *m_pobj; }
|
|
|
|
T* operator->() const { wxASSERT(m_pobj); 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);
|
|
|
|
wxASSERT(pt);
|
|
|
|
pt->RemoveNode(this);
|
|
|
|
m_pobj = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
virtual void OnObjectDestroy() wxOVERRIDE
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxASSERT_MSG(m_pobj, "tracked object should have removed us itself");
|
|
|
|
|
|
|
|
m_pobj = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
#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_
|
|
|
|
|