2008-03-08 13:52:38 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Name: object.h
|
2008-03-10 15:24:38 +00:00
|
|
|
|
// Purpose: interface of wxObjectRefData
|
2008-03-08 13:52:38 +00:00
|
|
|
|
// Author: wxWidgets team
|
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
|
// Licence: wxWindows license
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@class wxObjectRefData
|
|
|
|
|
@wxheader{object.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
This class is used to store reference-counted data.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Derive classes from this to store your own data. When retrieving information
|
|
|
|
|
from a wxObject's reference data, you will need to cast to your own derived class.
|
2008-03-30 14:48:22 +00:00
|
|
|
|
|
|
|
|
|
@b Example:
|
|
|
|
|
|
|
|
|
|
@code
|
|
|
|
|
// include file
|
|
|
|
|
|
|
|
|
|
class MyCar: public wxObject
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MyCar() { }
|
|
|
|
|
MyCar( int price );
|
|
|
|
|
|
|
|
|
|
bool IsOk() const { return m_refData != NULL; }
|
|
|
|
|
|
|
|
|
|
bool operator == ( const MyCar& car ) const;
|
|
|
|
|
bool operator != (const MyCar& car) const { return !(*this == car); }
|
|
|
|
|
|
|
|
|
|
void SetPrice( int price );
|
|
|
|
|
int GetPrice() const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual wxObjectRefData *CreateRefData() const;
|
|
|
|
|
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
|
|
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(MyCar)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// implementation
|
|
|
|
|
|
|
|
|
|
class MyCarRefData: public wxObjectRefData
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MyCarRefData()
|
|
|
|
|
{
|
|
|
|
|
m_price = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MyCarRefData( const MyCarRefData& data )
|
|
|
|
|
: wxObjectRefData()
|
|
|
|
|
{
|
|
|
|
|
m_price = data.m_price;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator == (const MyCarRefData& data) const
|
|
|
|
|
{
|
|
|
|
|
return m_price == data.m_price;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int m_price;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define M_CARDATA ((MyCarRefData *)m_refData)
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(MyCar,wxObject)
|
|
|
|
|
|
|
|
|
|
MyCar::MyCar( int price )
|
|
|
|
|
{
|
|
|
|
|
m_refData = new MyCarRefData();
|
|
|
|
|
M_CARDATA->m_price = price;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wxObjectRefData *MyCar::CreateRefData() const
|
|
|
|
|
{
|
|
|
|
|
return new MyCarRefData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wxObjectRefData *MyCar::CloneRefData(const wxObjectRefData *data) const
|
|
|
|
|
{
|
|
|
|
|
return new MyCarRefData(*(MyCarRefData *)data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MyCar::operator == ( const MyCar& car ) const
|
|
|
|
|
{
|
|
|
|
|
if (m_refData == car.m_refData) return true;
|
|
|
|
|
|
|
|
|
|
if (!m_refData || !car.m_refData) return false;
|
|
|
|
|
|
|
|
|
|
return ( *(MyCarRefData*)m_refData == *(MyCarRefData*)car.m_refData );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MyCar::SetPrice( int price )
|
|
|
|
|
{
|
|
|
|
|
UnShare();
|
|
|
|
|
|
|
|
|
|
M_CARDATA->m_price = price;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int MyCar::GetPrice() const
|
|
|
|
|
{
|
|
|
|
|
wxCHECK_MSG( IsOk(), -1, "invalid car" );
|
|
|
|
|
|
|
|
|
|
return (M_CARDATA->m_price);
|
|
|
|
|
}
|
|
|
|
|
@endcode
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
|
|
|
|
|
@library{wxbase}
|
|
|
|
|
@category{rtti}
|
|
|
|
|
|
|
|
|
|
@see wxObject, wxObjectDataPtr<T>, @ref overview_refcount
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
|
class wxObjectRefData
|
2008-03-08 13:52:38 +00:00
|
|
|
|
{
|
2008-03-30 14:49:43 +00:00
|
|
|
|
protected:
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Destructor.
|
|
|
|
|
|
|
|
|
|
It's declared @c protected so that wxObjectRefData instances
|
|
|
|
|
will never be destroyed directly but only as result of a DecRef() call.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:49:43 +00:00
|
|
|
|
~wxObjectRefData();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
public:
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Default constructor. Initialises the internal reference count to 1.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:49:43 +00:00
|
|
|
|
wxObjectRefData();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:48:22 +00:00
|
|
|
|
Decrements the reference count associated with this shared data and, if
|
|
|
|
|
it reaches zero, destroys this instance of wxObjectRefData releasing its
|
|
|
|
|
memory.
|
|
|
|
|
|
|
|
|
|
Please note that after calling this function, the caller should
|
|
|
|
|
absolutely avoid to use the pointer to this instance since it may not be
|
|
|
|
|
valid anymore.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
void DecRef();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns the reference count associated with this shared data.
|
2008-03-30 14:49:43 +00:00
|
|
|
|
|
|
|
|
|
When this goes to zero during a DecRef() call, the object will auto-free itself.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
int GetRefCount() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Increments the reference count associated with this shared data.
|
|
|
|
|
*/
|
|
|
|
|
void IncRef();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
|
|
|
|
@class wxObject
|
|
|
|
|
@wxheader{object.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
This is the root class of many of the wxWidgets classes.
|
2008-03-30 14:49:43 +00:00
|
|
|
|
|
2008-03-30 14:48:22 +00:00
|
|
|
|
It declares a virtual destructor which ensures that destructors get called
|
|
|
|
|
for all derived class objects where necessary.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:48:22 +00:00
|
|
|
|
wxObject is the hub of a dynamic object creation scheme, enabling a program
|
|
|
|
|
to create instances of a class only knowing its string class name, and to
|
|
|
|
|
query the class hierarchy.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:48:22 +00:00
|
|
|
|
The class contains optional debugging versions of @b new and @b delete, which
|
|
|
|
|
can help trace memory allocation and deallocation problems.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:48:22 +00:00
|
|
|
|
wxObject can be used to implement @ref overview_refcount "reference counted"
|
2008-03-30 14:49:43 +00:00
|
|
|
|
objects, such as wxPen, wxBitmap and others
|
|
|
|
|
(see @ref overview_refcount_list "this list").
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@library{wxbase}
|
|
|
|
|
@category{rtti}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:48:22 +00:00
|
|
|
|
@see wxClassInfo, @ref overview_debugging, wxObjectRefData
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
|
class wxObject
|
2008-03-08 13:52:38 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2008-03-30 14:48:22 +00:00
|
|
|
|
|
|
|
|
|
wxObject();
|
2008-03-30 14:49:43 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Copy ctor.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
|
wxObject(const wxObject& other);
|
2008-03-30 14:48:22 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Destructor.
|
|
|
|
|
|
|
|
|
|
Performs dereferencing, for those objects that use reference counting.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
wxObject();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
A virtual function that may be redefined by derived classes to allow dumping of
|
|
|
|
|
memory states.
|
2008-03-30 14:48:22 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
This function is only defined in debug build and exists only if @c __WXDEBUG__
|
|
|
|
|
is defined.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
|
@param stream
|
2008-03-09 12:33:59 +00:00
|
|
|
|
Stream on which to output dump information.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
@remarks Currently wxWidgets does not define Dump() for derived classes,
|
|
|
|
|
but programmers may wish to use it for their own applications.
|
|
|
|
|
Be sure to call the Dump member of the class's base class to allow all
|
|
|
|
|
information to be dumped.
|
2008-03-30 14:48:22 +00:00
|
|
|
|
The implementation of this function in wxObject just writes
|
|
|
|
|
the class name of the object.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
void Dump(ostream& stream);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
This virtual function is redefined for every class that requires run-time
|
2008-03-30 14:49:43 +00:00
|
|
|
|
type information, when using the ::DECLARE_CLASS macro (or similar).
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
|
wxClassInfo* GetClassInfo();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Returns the wxObject::m_refData pointer, i.e. the data referenced by this object.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
@see Ref(), UnRef(), wxObject::m_refData, SetRefData(), wxObjectRefData
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
wxObjectRefData* GetRefData() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Determines whether this class is a subclass of (or the same class as)
|
|
|
|
|
the given class.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
@code
|
|
|
|
|
bool tmp = obj->IsKindOf(CLASSINFO(wxFrame));
|
|
|
|
|
@endcode
|
|
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
|
@param info
|
2008-03-09 12:33:59 +00:00
|
|
|
|
A pointer to a class information object, which may be obtained
|
2008-03-30 14:49:43 +00:00
|
|
|
|
by using the ::CLASSINFO macro.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@returns @true if the class represented by info is the same class as this
|
2008-03-09 12:33:59 +00:00
|
|
|
|
one or is derived from it.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
|
bool IsKindOf(wxClassInfo* info);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Returns @true if this object has the same data pointer as @a obj.
|
|
|
|
|
|
|
|
|
|
Notice that @true is returned if the data pointers are @NULL in both objects.
|
2008-03-30 14:48:22 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
This function only does a @e shallow comparison, i.e. it doesn't compare
|
2008-03-08 13:52:38 +00:00
|
|
|
|
the objects pointed to by the data pointers of these objects.
|
2008-03-30 14:49:43 +00:00
|
|
|
|
|
|
|
|
|
@see @ref overview_refcount
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
bool IsSameAs(const wxObject& obj);
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Makes this object refer to the data in @a clone.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
|
@param clone
|
2008-03-09 12:33:59 +00:00
|
|
|
|
The object to 'clone'.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@remarks First this function calls UnRef() on itself to decrement
|
2008-03-30 14:49:43 +00:00
|
|
|
|
(and perhaps free) the data it is currently referring to.
|
|
|
|
|
It then sets its own wxObject::m_refData to point to that of @a clone,
|
2008-03-30 14:48:22 +00:00
|
|
|
|
and increments the reference count inside the data.
|
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
@see UnRef(), SetRefData(), GetRefData(), wxObjectRefData
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
|
void Ref(const wxObject& clone);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Sets the wxObject::m_refData pointer.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
@see Ref(), UnRef(), GetRefData(), wxObjectRefData
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
void SetRefData(wxObjectRefData* data);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Decrements the reference count in the associated data, and if it is zero,
|
|
|
|
|
deletes the data.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
The wxObject::m_refData member is set to @NULL.
|
|
|
|
|
|
|
|
|
|
@see Ref(), SetRefData(), GetRefData(), wxObjectRefData
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
void UnRef();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Ensure that this object's data is not shared with any other object.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
|
2008-03-30 14:48:22 +00:00
|
|
|
|
If we have no data, it is created using CreateRefData() below,
|
|
|
|
|
if we have shared data, it is copied using CloneRefData(),
|
|
|
|
|
otherwise nothing is done.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:48:22 +00:00
|
|
|
|
void UnShare();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
The @e delete operator is defined for debugging versions of the library only,
|
2008-03-30 14:48:22 +00:00
|
|
|
|
when the identifier @c __WXDEBUG__ is defined.
|
2008-03-30 14:49:43 +00:00
|
|
|
|
|
2008-03-30 14:48:22 +00:00
|
|
|
|
It takes over memory deallocation, allowing wxDebugContext operations.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:48:22 +00:00
|
|
|
|
void operator delete(void *buf);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
The @e new operator is defined for debugging versions of the library only, when
|
2008-03-30 14:49:43 +00:00
|
|
|
|
the identifier @c __WXDEBUG__ is defined.
|
|
|
|
|
|
|
|
|
|
It takes over memory allocation, allowing wxDebugContext operations.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:49:43 +00:00
|
|
|
|
void* operator new(size_t size, const wxString& filename = NULL, int lineNum = 0);
|
2008-03-30 14:48:22 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
protected:
|
2008-03-30 14:48:22 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Pointer to an object which is the object's reference-counted data.
|
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
@see Ref(), UnRef(), SetRefData(), GetRefData(), wxObjectRefData
|
2008-03-30 14:48:22 +00:00
|
|
|
|
*/
|
|
|
|
|
wxObjectRefData* m_refData;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
|
|
|
|
@class wxClassInfo
|
|
|
|
|
@wxheader{object.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
This class stores meta-information about classes.
|
|
|
|
|
|
|
|
|
|
Instances of this class are not generally defined directly by an application,
|
|
|
|
|
but indirectly through use of macros such as ::DECLARE_DYNAMIC_CLASS and
|
|
|
|
|
::IMPLEMENT_DYNAMIC_CLASS.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@library{wxbase}
|
|
|
|
|
@category{rtti}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
@see @ref overview_rtti_classinfo, wxObject
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
|
class wxClassInfo
|
2008-03-08 13:52:38 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Constructs a wxClassInfo object.
|
|
|
|
|
|
|
|
|
|
The supplied macros implicitly construct objects of this class, so there is no
|
|
|
|
|
need to create such objects explicitly in an application.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
|
wxClassInfo(const wxChar* className,
|
|
|
|
|
const wxClassInfo* baseClass1,
|
|
|
|
|
const wxClassInfo* baseClass2,
|
2008-03-08 13:52:38 +00:00
|
|
|
|
int size, wxObjectConstructorFn fn);
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Creates an object of the appropriate kind.
|
|
|
|
|
|
|
|
|
|
@returns @NULL if the class has not been declared dynamically creatable
|
|
|
|
|
(typically, this happens for abstract classes).
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
wxObject* CreateObject() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Finds the wxClassInfo object for a class with the given @a name.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 12:33:59 +00:00
|
|
|
|
static wxClassInfo* FindClass(wxChar* name);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns the name of the first base class (@NULL if none).
|
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
wxChar* GetBaseClassName1() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns the name of the second base class (@NULL if none).
|
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
wxChar* GetBaseClassName2() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns the string form of the class name.
|
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
wxChar* GetClassName() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns the size of the class.
|
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
int GetSize() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Initializes pointers in the wxClassInfo objects for fast execution of IsKindOf().
|
|
|
|
|
Called in base wxWidgets library initialization.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
|
|
|
|
static void InitializeClasses();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns @true if this class info can create objects of the associated class.
|
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
bool IsDynamic() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Returns @true if this class is a kind of (inherits from) the given class.
|
|
|
|
|
*/
|
|
|
|
|
bool IsKindOf(wxClassInfo* info);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
|
|
|
|
@wxheader{object.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
This is helper template class primarily written to avoid memory leaks because of
|
|
|
|
|
missing calls to wxObjectRefData::DecRef().
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Despite the name this template can actually be used as a smart pointer for any
|
|
|
|
|
class implementing the reference counting interface which only consists of the two
|
|
|
|
|
methods @b T::IncRef() and @b T::DecRef().
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
The difference to wxSharedPtr<T> is that wxObjectDataPtr<T> relies on the reference
|
|
|
|
|
counting to be in the class pointed to where instead wxSharedPtr<T> implements the
|
2008-03-08 13:52:38 +00:00
|
|
|
|
reference counting itself.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:48:22 +00:00
|
|
|
|
|
|
|
|
|
@b Example:
|
|
|
|
|
|
|
|
|
|
@code
|
|
|
|
|
class MyCarRefData: public wxObjectRefData
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MyCarRefData() { m_price = 0; }
|
|
|
|
|
|
|
|
|
|
MyCarRefData( const MyCarRefData& data )
|
|
|
|
|
: wxObjectRefData()
|
|
|
|
|
{
|
|
|
|
|
m_price = data.m_price;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetPrice( int price ) { m_price = price; }
|
|
|
|
|
int GetPrice() { return m_price; }
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
int m_price;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class MyCar
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MyCar( int price ) : m_data( new MyCarRefData )
|
|
|
|
|
{
|
|
|
|
|
m_data->SetPrice( price );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MyCar& operator =( const MyCar& tocopy )
|
|
|
|
|
{
|
|
|
|
|
m_data = tocopy.m_data;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator == ( const MyCar& other ) const
|
|
|
|
|
{
|
|
|
|
|
if (m_data.get() == other.m_data.get()) return true;
|
|
|
|
|
return (m_data->GetPrice() == other.m_data->GetPrice());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetPrice( int price )
|
|
|
|
|
{
|
|
|
|
|
UnShare();
|
|
|
|
|
m_data->SetPrice( price );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int GetPrice() const
|
|
|
|
|
{
|
|
|
|
|
return m_data->GetPrice();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wxObjectDataPtr<MyCarRefData> m_data;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void UnShare()
|
|
|
|
|
{
|
|
|
|
|
if (m_data->GetRefCount() == 1)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_data.reset( new MyCarRefData( *m_data ) );
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
@endcode
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
|
|
|
|
|
@library{wxbase}
|
|
|
|
|
@category{rtti,smartpointers}
|
|
|
|
|
|
|
|
|
|
@see wxObject, wxObjectRefData, @ref overview_refcount, wxSharedPtr<T>,
|
|
|
|
|
wxScopedPtr<T>, wxWeakRef<T>
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
|
class wxObjectDataPtr<T>
|
2008-03-08 13:52:38 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2008-03-30 14:48:22 +00:00
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Constructor.
|
|
|
|
|
|
|
|
|
|
@a ptr is a pointer to the reference counted object to which this class points.
|
2008-03-30 14:48:22 +00:00
|
|
|
|
If @a ptr is not NULL @b T::IncRef() will be called on the object.
|
|
|
|
|
*/
|
|
|
|
|
wxObjectDataPtr<T>(T* ptr = NULL);
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
This copy constructor increases the count of the reference counted object to
|
|
|
|
|
which @a tocopy points and then this class will point to, as well.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:48:22 +00:00
|
|
|
|
wxObjectDataPtr<T>(const wxObjectDataPtr<T>& tocopy);
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Decreases the reference count of the object to which this class points.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:49:43 +00:00
|
|
|
|
~wxObjectDataPtr<T>();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Gets a pointer to the reference counted object to which this class points.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
T* get() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
/**
|
|
|
|
|
Reset this class to ptr which points to a reference counted object and
|
|
|
|
|
calls T::DecRef() on the previously owned object.
|
|
|
|
|
*/
|
|
|
|
|
void reset(T *ptr)
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
2008-03-08 14:43:31 +00:00
|
|
|
|
Conversion to a boolean expression (in a variant which is not
|
2008-03-30 14:49:43 +00:00
|
|
|
|
convertable to anything but a boolean expression).
|
|
|
|
|
|
|
|
|
|
If this class contains a valid pointer it will return @true, if it contains
|
|
|
|
|
a @NULL pointer it will return @false.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
|
operator unspecified_bool_type() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Returns a reference to the object.
|
|
|
|
|
|
|
|
|
|
If the internal pointer is @NULL this method will cause an assert in debug mode.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:48:22 +00:00
|
|
|
|
T& operator*() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Returns a pointer to the reference counted object to which this class points.
|
|
|
|
|
|
|
|
|
|
If this the internal pointer is @NULL, this method will assert in debug mode.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:49:43 +00:00
|
|
|
|
T* operator->() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
//@{
|
|
|
|
|
/**
|
2008-03-30 14:49:43 +00:00
|
|
|
|
Assignment operator.
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-30 14:48:22 +00:00
|
|
|
|
wxObjectDataPtr<T>& operator=(const wxObjectDataPtr<T>& tocopy);
|
|
|
|
|
wxObjectDataPtr<T>& operator=(T* ptr);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
//@}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
// ============================================================================
|
|
|
|
|
// Global functions/macros
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
/** @ingroup group_funcmacro_rtti */
|
|
|
|
|
//@{
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Returns a pointer to the wxClassInfo object associated with this class.
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
|
|
|
|
*/
|
|
|
|
|
#define CLASSINFO( className )
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Used inside a class declaration to declare that the class should be made
|
|
|
|
|
known to the class hierarchy, but objects of this class cannot be created
|
|
|
|
|
dynamically. The same as DECLARE_ABSTRACT_CLASS().
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define DECLARE_CLASS( className )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Used inside a class declaration to declare that the class should be
|
|
|
|
|
made known to the class hierarchy, but objects of this class cannot be created
|
2008-03-14 07:44:48 +00:00
|
|
|
|
dynamically. The same as DECLARE_CLASS().
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
Example:
|
2008-03-09 12:33:59 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@code
|
|
|
|
|
class wxCommand: public wxObject
|
|
|
|
|
{
|
2008-03-14 07:44:48 +00:00
|
|
|
|
DECLARE_ABSTRACT_CLASS(wxCommand)
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
private:
|
|
|
|
|
...
|
|
|
|
|
public:
|
|
|
|
|
...
|
2008-03-08 13:52:38 +00:00
|
|
|
|
};
|
|
|
|
|
@endcode
|
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define DECLARE_ABSTRACT_CLASS( className )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Used inside a class declaration to make the class known to wxWidgets RTTI
|
|
|
|
|
system and also declare that the objects of this class should be
|
|
|
|
|
dynamically creatable from run-time type information. Notice that this
|
|
|
|
|
implies that the class should have a default constructor, if this is not
|
|
|
|
|
the case consider using DECLARE_CLASS().
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@header{wx/object.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
@code
|
|
|
|
|
class wxFrame: public wxWindow
|
|
|
|
|
{
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFrame)
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const wxString& frameTitle;
|
|
|
|
|
public:
|
|
|
|
|
...
|
|
|
|
|
};
|
|
|
|
|
@endcode
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 08:05:31 +00:00
|
|
|
|
#define DECLARE_DYNAMIC_CLASS( className )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Used in a C++ implementation file to complete the declaration of a class
|
|
|
|
|
that has run-time type information. The same as IMPLEMENT_ABSTRACT_CLASS().
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define IMPLEMENT_CLASS( className, baseClassName )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Used in a C++ implementation file to complete the declaration of a class
|
|
|
|
|
that has run-time type information and two base classes. The same as
|
|
|
|
|
IMPLEMENT_ABSTRACT_CLASS2().
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@header{wx/object.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define IMPLEMENT_CLASS2( className, baseClassName1, baseClassName2 )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Used in a C++ implementation file to complete the declaration of a class
|
|
|
|
|
that has run-time type information. The same as IMPLEMENT_CLASS().
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
Example:
|
2008-03-09 12:33:59 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@code
|
|
|
|
|
IMPLEMENT_ABSTRACT_CLASS(wxCommand, wxObject)
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
wxCommand::wxCommand(void)
|
|
|
|
|
{
|
2008-03-14 07:44:48 +00:00
|
|
|
|
...
|
2008-03-08 13:52:38 +00:00
|
|
|
|
}
|
|
|
|
|
@endcode
|
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define IMPLEMENT_ABSTRACT_CLASS( className, baseClassName )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Used in a C++ implementation file to complete the declaration of a class
|
|
|
|
|
that has run-time type information and two base classes. The same as
|
|
|
|
|
IMPLEMENT_CLASS2().
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define IMPLEMENT_ABSTRACT_CLASS2( className, baseClassName1, baseClassName2 )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Used in a C++ implementation file to complete the declaration of a class
|
|
|
|
|
that has run-time type information, and whose instances can be created
|
|
|
|
|
dynamically.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@header{wx/object.h}
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
@code
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
|
|
|
|
|
|
|
|
|
|
wxFrame::wxFrame(void)
|
|
|
|
|
{
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
@endcode
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define IMPLEMENT_DYNAMIC_CLASS( className, baseClassName )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
Used in a C++ implementation file to complete the declaration of a class
|
|
|
|
|
that has run-time type information, and whose instances can be created
|
|
|
|
|
dynamically. Use this for classes derived from two base classes.
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define IMPLEMENT_DYNAMIC_CLASS2( className, baseClassName1, baseClassName2 )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:48:22 +00:00
|
|
|
|
Same as @c const_cast<T>(x) if the compiler supports const cast or @c (T)x for
|
|
|
|
|
old compilers. Unlike wxConstCast(), the cast it to the type @c T and not to
|
|
|
|
|
<tt>T *</tt> and also the order of arguments is the same as for the standard cast.
|
2008-03-14 07:44:48 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/defs.h}
|
|
|
|
|
|
|
|
|
|
@see wx_reinterpret_cast(), wx_static_cast()
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define wx_const_cast(T, x)
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:48:22 +00:00
|
|
|
|
Same as @c reinterpret_cast<T>(x) if the compiler supports reinterpret cast or
|
|
|
|
|
@c (T)x for old compilers.
|
2008-03-09 12:33:59 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@header{wx/defs.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@see wx_const_cast(), wx_static_cast()
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define wx_reinterpret_cast(T, x)
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:48:22 +00:00
|
|
|
|
Same as @c static_cast<T>(x) if the compiler supports static cast or @c (T)x for
|
2008-03-14 07:44:48 +00:00
|
|
|
|
old compilers. Unlike wxStaticCast(), there are no checks being done and
|
|
|
|
|
the meaning of the macro arguments is exactly the same as for the standard
|
2008-03-30 14:48:22 +00:00
|
|
|
|
static cast, i.e. @a T is the full type name and star is not appended to it.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@header{wx/defs.h}
|
|
|
|
|
|
|
|
|
|
@see wx_const_cast(), wx_reinterpret_cast(), wx_truncate_cast()
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define wx_static_cast(T, x)
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
This case doesn’t correspond to any standard cast but exists solely to make
|
|
|
|
|
casts which possibly result in a truncation of an integer value more
|
|
|
|
|
readable.
|
|
|
|
|
|
|
|
|
|
@header{wx/defs.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define wx_truncate_cast(T, x)
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:48:22 +00:00
|
|
|
|
This macro expands into <tt>const_cast<classname *>(ptr)</tt> if the compiler
|
2008-03-14 07:44:48 +00:00
|
|
|
|
supports const_cast or into an old, C-style cast, otherwise.
|
2008-03-09 12:33:59 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@header{wx/defs.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@see wx_const_cast(), wxDynamicCast(), wxStaticCast()
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 08:05:31 +00:00
|
|
|
|
#define wxConstCast( ptr, classname )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
This is defined in debug mode to be call the redefined new operator
|
|
|
|
|
with filename and line number arguments. The definition is:
|
2008-03-09 12:33:59 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
@code
|
|
|
|
|
#define WXDEBUG_NEW new(__FILE__,__LINE__)
|
|
|
|
|
@endcode
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
|
In non-debug mode, this is defined as the normal new operator.
|
2008-03-14 07:44:48 +00:00
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 07:44:48 +00:00
|
|
|
|
#define WXDEBUG_NEW( arg )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
This macro returns the pointer @e ptr cast to the type @e classname * if
|
|
|
|
|
the pointer is of this type (the check is done during the run-time) or
|
|
|
|
|
@NULL otherwise. Usage of this macro is preferred over obsoleted
|
|
|
|
|
wxObject::IsKindOf() function.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
The @e ptr argument may be @NULL, in which case @NULL will be returned.
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
@code
|
|
|
|
|
wxWindow *win = wxWindow::FindFocus();
|
|
|
|
|
wxTextCtrl *text = wxDynamicCast(win, wxTextCtrl);
|
|
|
|
|
if ( text )
|
|
|
|
|
{
|
|
|
|
|
// a text control has the focus...
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// no window has the focus or it is not a text control
|
|
|
|
|
}
|
|
|
|
|
@endcode
|
|
|
|
|
|
2008-03-30 14:49:43 +00:00
|
|
|
|
@see @ref overview_rtti, wxDynamicCastThis(), wxConstCast(), wxStaticCast()
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 08:05:31 +00:00
|
|
|
|
#define wxDynamicCast( ptr, classname )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-30 14:48:22 +00:00
|
|
|
|
This macro is equivalent to <tt>wxDynamicCast(this, classname)</tt> but the latter provokes
|
2008-03-14 07:44:48 +00:00
|
|
|
|
spurious compilation warnings from some compilers (because it tests whether
|
|
|
|
|
@c this pointer is non-@NULL which is always true), so this macro should be
|
|
|
|
|
used to avoid them.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@header{wx/object.h}
|
|
|
|
|
|
|
|
|
|
@see wxDynamicCast()
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 08:05:31 +00:00
|
|
|
|
#define wxDynamicCastThis( classname )
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2008-03-14 07:44:48 +00:00
|
|
|
|
This macro checks that the cast is valid in debug mode (an assert failure
|
|
|
|
|
will result if wxDynamicCast(ptr, classname) == @NULL) and then returns the
|
2008-03-30 14:48:22 +00:00
|
|
|
|
result of executing an equivalent of <tt>static_cast<classname *>(ptr)</tt>.
|
2008-03-09 12:33:59 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@header{wx/object.h}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
|
2008-03-14 07:44:48 +00:00
|
|
|
|
@see wx_static_cast(), wxDynamicCast(), wxConstCast()
|
2008-03-08 13:52:38 +00:00
|
|
|
|
*/
|
2008-03-14 08:05:31 +00:00
|
|
|
|
#define wxStaticCast( ptr, classname )
|
2008-03-14 07:44:48 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Creates and returns an object of the given class, if the class has been
|
|
|
|
|
registered with the dynamic class system using DECLARE... and IMPLEMENT...
|
|
|
|
|
macros.
|
|
|
|
|
|
|
|
|
|
@header{wx/object.h}
|
|
|
|
|
*/
|
2008-03-14 08:05:31 +00:00
|
|
|
|
wxObject *wxCreateDynamicObject(const wxString& className);
|
2008-03-14 07:44:48 +00:00
|
|
|
|
|
|
|
|
|
//@}
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|