1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: object.h
|
|
|
|
// Purpose: wxObject class, plus run-time type information macros
|
|
|
|
// Author: Julian Smart
|
2001-12-19 07:09:58 +00:00
|
|
|
// Modified by: Ron Lee
|
1998-05-20 14:01:55 +00:00
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
2001-12-19 07:09:58 +00:00
|
|
|
// Copyright: (c) 1997 Julian Smart and Markus Holzem
|
|
|
|
// (c) 2001 Ron Lee <ron@debian.org>
|
1999-02-03 16:48:12 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_OBJECTH__
|
|
|
|
#define _WX_OBJECTH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1998-07-03 16:36:10 +00:00
|
|
|
#pragma interface "object.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/defs.h"
|
1998-09-11 09:05:26 +00:00
|
|
|
#include "wx/memory.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxObject;
|
|
|
|
|
1998-09-25 13:28:52 +00:00
|
|
|
#if wxUSE_DYNAMIC_CLASSES
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// conditional compilation
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#ifdef GetClassName
|
|
|
|
#undef GetClassName
|
|
|
|
#endif
|
1999-01-08 14:30:22 +00:00
|
|
|
#ifdef GetClassInfo
|
|
|
|
#undef GetClassInfo
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxClassInfo;
|
1998-09-01 17:17:05 +00:00
|
|
|
class WXDLLEXPORT wxHashTable;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-06-27 10:39:38 +00:00
|
|
|
#if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
|
2001-12-19 07:09:58 +00:00
|
|
|
#include "wx/ioswrap.h"
|
1998-10-12 07:46:15 +00:00
|
|
|
#endif
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxClassInfo
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
typedef wxObject *(*wxObjectConstructorFn)(void);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxClassInfo
|
|
|
|
{
|
2001-04-19 23:00:46 +00:00
|
|
|
public:
|
2001-12-19 19:16:46 +00:00
|
|
|
wxClassInfo( const wxChar *className,
|
|
|
|
const wxChar *baseName1,
|
|
|
|
const wxChar *baseName2,
|
|
|
|
int size,
|
|
|
|
wxObjectConstructorFn ctor )
|
2001-12-19 07:09:58 +00:00
|
|
|
: m_className(className)
|
|
|
|
, m_baseClassName1(baseName1)
|
|
|
|
, m_baseClassName2(baseName2)
|
|
|
|
, m_objectSize(size)
|
|
|
|
, m_objectConstructor(ctor)
|
|
|
|
, m_baseInfo1(0)
|
|
|
|
, m_baseInfo2(0)
|
|
|
|
, m_next(sm_first)
|
|
|
|
{ sm_first = this; }
|
|
|
|
|
|
|
|
wxObject *CreateObject() { return m_objectConstructor ? (*m_objectConstructor)() : 0; }
|
|
|
|
|
|
|
|
const wxChar *GetClassName() const { return m_className; }
|
|
|
|
const wxChar *GetBaseClassName1() const { return m_baseClassName1; }
|
|
|
|
const wxChar *GetBaseClassName2() const { return m_baseClassName2; }
|
|
|
|
const wxClassInfo *GetBaseClass1() const { return m_baseInfo1; }
|
|
|
|
const wxClassInfo *GetBaseClass2() const { return m_baseInfo2; }
|
|
|
|
int GetSize() const { return m_objectSize; }
|
|
|
|
|
|
|
|
wxObjectConstructorFn GetConstructor() const { return m_objectConstructor; }
|
|
|
|
static const wxClassInfo *GetFirst() { return sm_first; }
|
|
|
|
const wxClassInfo *GetNext() const { return m_next; }
|
|
|
|
static wxClassInfo *FindClass(const wxChar *className);
|
|
|
|
|
|
|
|
// Climb upwards through inheritance hierarchy.
|
|
|
|
// Dual inheritance is catered for.
|
|
|
|
|
|
|
|
bool IsKindOf(const wxClassInfo *info) const
|
|
|
|
{
|
|
|
|
return info != 0 &&
|
|
|
|
( info == this ||
|
|
|
|
( m_baseInfo1 && m_baseInfo1->IsKindOf(info) ) ||
|
|
|
|
( m_baseInfo2 && m_baseInfo2->IsKindOf(info) ) );
|
|
|
|
}
|
1999-02-03 16:48:12 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// Initializes parent pointers and hash table for fast searching.
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
static void InitializeClasses();
|
1998-09-10 11:41:14 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// Cleans up hash table used for fast searching.
|
1998-09-10 11:41:14 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
static void CleanUpClasses();
|
1998-09-10 11:41:14 +00:00
|
|
|
|
|
|
|
public:
|
2001-12-19 07:09:58 +00:00
|
|
|
const wxChar *m_className;
|
|
|
|
const wxChar *m_baseClassName1;
|
|
|
|
const wxChar *m_baseClassName2;
|
|
|
|
int m_objectSize;
|
|
|
|
wxObjectConstructorFn m_objectConstructor;
|
|
|
|
|
|
|
|
// Pointers to base wxClassInfos: set in InitializeClasses
|
|
|
|
|
|
|
|
const wxClassInfo *m_baseInfo1;
|
|
|
|
const wxClassInfo *m_baseInfo2;
|
|
|
|
|
|
|
|
// class info object live in a linked list:
|
|
|
|
// pointers to its head and the next element in it
|
|
|
|
|
|
|
|
static wxClassInfo *sm_first;
|
|
|
|
wxClassInfo *m_next;
|
|
|
|
|
|
|
|
static wxHashTable *sm_classTable;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
WXDLLEXPORT wxObject *wxCreateDynamicObject(const wxChar *name);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Dynamic class macros
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#define DECLARE_DYNAMIC_CLASS(name) \
|
|
|
|
public: \
|
|
|
|
static wxClassInfo sm_class##name; \
|
|
|
|
virtual wxClassInfo *GetClassInfo() const \
|
1998-09-10 11:41:14 +00:00
|
|
|
{ return &name::sm_class##name; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#define DECLARE_ABSTRACT_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
|
|
|
|
#define DECLARE_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// -----------------------------------
|
|
|
|
// for concrete classes
|
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
// Single inheritance with one base class
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#define IMPLEMENT_DYNAMIC_CLASS(name, basename) \
|
|
|
|
wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name() \
|
|
|
|
{ return new name; } \
|
|
|
|
wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename), \
|
|
|
|
0, (int) sizeof(name), \
|
|
|
|
(wxObjectConstructorFn) wxConstructorFor##name);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// Multiple inheritance with two base classes
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) \
|
|
|
|
wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name() \
|
|
|
|
{ return new name; } \
|
|
|
|
wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename1), \
|
|
|
|
wxT(#basename2), (int) sizeof(name), \
|
|
|
|
(wxObjectConstructorFn) wxConstructorFor##name);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// -----------------------------------
|
|
|
|
// for abstract classes
|
|
|
|
// -----------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// Single inheritance with one base class
|
|
|
|
|
|
|
|
#define IMPLEMENT_ABSTRACT_CLASS(name, basename) \
|
|
|
|
wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename), \
|
|
|
|
0, (int) sizeof(name), (wxObjectConstructorFn) 0);
|
|
|
|
|
|
|
|
// Multiple inheritance with two base classes
|
|
|
|
|
|
|
|
#define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) \
|
|
|
|
wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename1), \
|
|
|
|
wxT(#basename2), (int) sizeof(name), \
|
|
|
|
(wxObjectConstructorFn) 0);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
|
|
|
|
#define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// -----------------------------------
|
|
|
|
// for pluggable classes
|
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
// NOTE: this should probably be the very first statement
|
|
|
|
// in the class declaration so wxPluginSentinel is
|
|
|
|
// the first member initialised and the last destroyed.
|
|
|
|
|
|
|
|
// _DECLARE_DL_SENTINEL(name) wxPluginSentinel m_pluginsentinel;
|
|
|
|
|
|
|
|
#if wxUSE_NESTED_CLASSES
|
|
|
|
|
2001-12-20 13:11:11 +00:00
|
|
|
#define _DECLARE_DL_SENTINEL(name, exportdecl) \
|
|
|
|
class exportdecl name##PluginSentinel { \
|
|
|
|
private: \
|
|
|
|
static const wxString sm_className; \
|
|
|
|
public: \
|
|
|
|
name##PluginSentinel(); \
|
|
|
|
~##name##PluginSentinel(); \
|
|
|
|
}; \
|
2001-12-19 07:09:58 +00:00
|
|
|
name##PluginSentinel m_pluginsentinel;
|
|
|
|
|
|
|
|
#define _IMPLEMENT_DL_SENTINEL(name) \
|
|
|
|
const wxString name::name##PluginSentinel::sm_className(#name); \
|
|
|
|
name::name##PluginSentinel::name##PluginSentinel() { \
|
|
|
|
wxDLManifestEntry *e = (wxDLManifestEntry*) wxDLManifestEntry::ms_classes.Get(#name); \
|
2001-12-20 12:06:11 +00:00
|
|
|
if( e != 0 ) { e->RefObj(); } \
|
2001-12-19 07:09:58 +00:00
|
|
|
} \
|
|
|
|
name::name##PluginSentinel::~##name##PluginSentinel() { \
|
|
|
|
wxDLManifestEntry *e = (wxDLManifestEntry*) wxDLManifestEntry::ms_classes.Get(#name); \
|
2001-12-20 12:06:11 +00:00
|
|
|
if( e != 0 ) { e->UnrefObj(); } \
|
2001-12-19 07:09:58 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define _DECLARE_DL_SENTINEL(name)
|
|
|
|
#define _IMPLEMENT_DL_SENTINEL(name)
|
|
|
|
|
|
|
|
#endif // wxUSE_NESTED_CLASSES
|
|
|
|
|
|
|
|
#define DECLARE_PLUGGABLE_CLASS(name) \
|
2001-12-20 13:11:11 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(name) _DECLARE_DL_SENTINEL(name, WXDLLEXPORT)
|
2001-12-19 07:09:58 +00:00
|
|
|
#define DECLARE_ABSTRACT_PLUGGABLE_CLASS(name) \
|
2001-12-20 13:11:11 +00:00
|
|
|
DECLARE_ABSTRACT_CLASS(name) _DECLARE_DL_SENTINEL(name, WXDLLEXPORT)
|
|
|
|
|
|
|
|
#define DECLARE_USER_EXPORTED_PLUGGABLE_CLASS(name, usergoo) \
|
|
|
|
DECLARE_DYNAMIC_CLASS(name) _DECLARE_DL_SENTINEL(name, usergoo)
|
|
|
|
#define DECLARE_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, usergoo) \
|
|
|
|
DECLARE_ABSTRACT_CLASS(name) _DECLARE_DL_SENTINEL(name, usergoo)
|
2001-12-19 07:09:58 +00:00
|
|
|
|
|
|
|
#define IMPLEMENT_PLUGGABLE_CLASS(name, basename) \
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(name, basename) _IMPLEMENT_DL_SENTINEL(name)
|
|
|
|
#define IMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2) \
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) _IMPLEMENT_DL_SENTINEL(name)
|
|
|
|
#define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename) \
|
|
|
|
IMPLEMENT_ABSTRACT_CLASS(name, basename) _IMPLEMENT_DL_SENTINEL(name)
|
|
|
|
#define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2) \
|
|
|
|
IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) _IMPLEMENT_DL_SENTINEL(name)
|
|
|
|
|
2001-12-20 13:11:11 +00:00
|
|
|
#define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS(name, basename) \
|
|
|
|
IMPLEMENT_PLUGGABLE_CLASS(name, basename)
|
|
|
|
#define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS2(name, basename1, basename2) \
|
|
|
|
IMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2)
|
|
|
|
#define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, basename) \
|
|
|
|
IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename)
|
|
|
|
#define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2) \
|
|
|
|
IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2)
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
|
1998-09-10 11:41:14 +00:00
|
|
|
#define CLASSINFO(name) (&name::sm_class##name)
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-06-07 18:26:42 +00:00
|
|
|
#else // !wxUSE_DYNAMIC_CLASSES
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// No dynamic class system: so stub out the macros
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#define DECLARE_DYNAMIC_CLASS(name)
|
|
|
|
#define DECLARE_ABSTRACT_CLASS(name)
|
|
|
|
#define DECLARE_CLASS(name)
|
|
|
|
#define IMPLEMENT_DYNAMIC_CLASS(name, basename)
|
|
|
|
#define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2)
|
|
|
|
#define IMPLEMENT_ABSTRACT_CLASS(name, basename)
|
|
|
|
#define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2)
|
|
|
|
#define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
|
|
|
|
#define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#define DECLARE_PLUGGABLE_CLASS(name)
|
|
|
|
#define DECLARE_ABSTRACT_PLUGGABLE_CLASS(name)
|
|
|
|
#define IMPLEMENT_PLUGGABLE_CLASS(name, basename)
|
|
|
|
#define IMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2)
|
|
|
|
#define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename)
|
|
|
|
#define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2)
|
|
|
|
|
2001-12-20 13:11:11 +00:00
|
|
|
#define DECLARE_USER_EXPORTED_PLUGGABLE_CLASS(name, usergoo)
|
|
|
|
#define DECLARE_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, usergoo)
|
|
|
|
#define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS(name, basename)
|
|
|
|
#define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS2(name, basename1, basename2)
|
|
|
|
#define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, basename)
|
|
|
|
#define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2)
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#endif // wxUSE_DYNAMIC_CLASSES
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-12-12 18:50:16 +00:00
|
|
|
#define wxIS_KIND_OF(obj, className) obj->IsKindOf(&className::sm_class##className)
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// Just seems a bit nicer-looking (pretend it's not a macro)
|
|
|
|
|
1998-12-12 18:50:16 +00:00
|
|
|
#define wxIsKindOf(obj, className) obj->IsKindOf(&className::sm_class##className)
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// to be replaced by dynamic_cast<> in the future
|
|
|
|
|
1999-06-07 18:26:42 +00:00
|
|
|
#define wxDynamicCast(obj, className) \
|
2001-12-19 07:09:58 +00:00
|
|
|
(className *) wxCheckDynamicCast((wxObject*)(obj), &className::sm_class##className)
|
|
|
|
|
|
|
|
// The 'this' pointer is always true, so use this version
|
|
|
|
// to cast the this pointer and avoid compiler warnings.
|
1999-06-07 18:26:42 +00:00
|
|
|
|
2001-07-17 08:25:43 +00:00
|
|
|
#define wxDynamicCastThis(className) \
|
2001-12-19 07:09:58 +00:00
|
|
|
(IsKindOf(&className::sm_class##className) ? (className *)(this) : (className *)0)
|
2001-05-02 19:48:15 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
#define wxConstCast(obj, className) ((className *)(obj))
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
#ifdef __WXDEBUG__
|
2001-12-19 07:09:58 +00:00
|
|
|
inline void wxCheckCast(void *ptr)
|
|
|
|
{
|
|
|
|
wxASSERT_MSG( ptr, _T("wxStaticCast() used incorrectly") );
|
|
|
|
}
|
|
|
|
#define wxStaticCast(obj, className) \
|
|
|
|
(wxCheckCast(wxDynamicCast(obj, className)), ((className *)(obj)))
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#else // !__WXDEBUG__
|
|
|
|
#define wxStaticCast(obj, className) ((className *)(obj))
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#endif // __WXDEBUG__
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
|
|
|
|
// Unfortunately Borland seems to need this include.
|
|
|
|
|
|
|
|
#if wxUSE_STD_IOSTREAM \
|
|
|
|
&& (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT) \
|
|
|
|
&& defined(__BORLANDC__)
|
|
|
|
#if wxUSE_IOSTREAMH
|
|
|
|
#include <iostream.h>
|
|
|
|
#else
|
|
|
|
#include <iostream>
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
2001-06-11 21:52:58 +00:00
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxObject
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
class WXDLLEXPORT wxObjectRefData;
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxObject
|
|
|
|
{
|
2001-12-19 07:09:58 +00:00
|
|
|
DECLARE_ABSTRACT_CLASS(wxObject)
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
public:
|
|
|
|
wxObject() : m_refData(0) {}
|
|
|
|
virtual ~wxObject() { UnRef(); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
bool IsKindOf(wxClassInfo *info) const;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-11-09 11:57:05 +00:00
|
|
|
#if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
|
2001-12-19 07:09:58 +00:00
|
|
|
void *operator new (size_t size, wxChar *fileName = 0, int lineNum = 0);
|
|
|
|
|
|
|
|
#ifndef __VISAGECPP__
|
2001-04-20 15:15:04 +00:00
|
|
|
void operator delete (void * buf);
|
2001-12-19 07:09:58 +00:00
|
|
|
#elif __DEBUG_ALLOC__
|
|
|
|
void operator delete (void *buf, const char *_fname, size_t _line);
|
|
|
|
#endif
|
1998-12-10 17:16:12 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// VC++ 6.0
|
|
|
|
|
|
|
|
#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
|
2001-04-20 15:15:04 +00:00
|
|
|
void operator delete(void *buf, wxChar*, int);
|
2001-12-19 07:09:58 +00:00
|
|
|
#endif
|
1998-09-24 15:49:16 +00:00
|
|
|
|
1999-02-03 16:48:12 +00:00
|
|
|
// Causes problems for VC++
|
2001-04-20 15:15:04 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#if wxUSE_ARRAY_MEMORY_OPERATORS && !defined(__VISUALC__) && !defined( __MWERKS__)
|
|
|
|
void *operator new[] (size_t size, wxChar *fileName = 0, int lineNum = 0);
|
|
|
|
void operator delete[] (void *buf);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __MWERKS__
|
|
|
|
void *operator new[] (size_t size, wxChar *fileName , int lineNum = 0);
|
|
|
|
void *operator new[] (size_t size) { return operator new[] ( size, 0, 0 ) ; }
|
|
|
|
void operator delete[] (void *buf);
|
|
|
|
#endif
|
1998-12-10 17:16:12 +00:00
|
|
|
|
1999-02-03 16:48:12 +00:00
|
|
|
#endif // Debug & memory tracing
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
|
|
|
|
virtual void Dump(wxSTD ostream& str);
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// make a 'clone' of the object
|
|
|
|
|
|
|
|
void Ref(const wxObject& clone);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// destroy a reference
|
|
|
|
|
|
|
|
void UnRef();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
inline wxObjectRefData *GetRefData() const { return m_refData; }
|
|
|
|
inline void SetRefData(wxObjectRefData *data) { m_refData = data; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
protected:
|
2001-12-19 07:09:58 +00:00
|
|
|
wxObjectRefData *m_refData;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
class WXDLLEXPORT wxObjectRefData
|
|
|
|
{
|
1998-05-20 14:01:55 +00:00
|
|
|
friend class wxObject;
|
|
|
|
|
|
|
|
public:
|
2001-12-19 07:09:58 +00:00
|
|
|
wxObjectRefData() : m_count(1) {}
|
|
|
|
virtual ~wxObjectRefData() {}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
inline int GetRefCount() const { return m_count; }
|
1998-05-20 14:01:55 +00:00
|
|
|
private:
|
|
|
|
int m_count;
|
|
|
|
};
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
|
2001-12-04 04:21:09 +00:00
|
|
|
inline wxObject *wxCheckDynamicCast(wxObject *obj, wxClassInfo *classInfo)
|
|
|
|
{
|
|
|
|
return obj && obj->GetClassInfo()->IsKindOf(classInfo) ? obj : 0;
|
|
|
|
}
|
|
|
|
|
1998-11-25 21:42:56 +00:00
|
|
|
#ifdef __WXDEBUG__
|
|
|
|
#ifndef WXDEBUG_NEW
|
1999-04-21 21:46:02 +00:00
|
|
|
#define WXDEBUG_NEW new(__TFILE__,__LINE__)
|
1998-11-25 21:42:56 +00:00
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define WXDEBUG_NEW new
|
|
|
|
#endif
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// Redefine new to be the debugging version. This doesn't
|
|
|
|
// work with all compilers, in which case you need to
|
|
|
|
// use WXDEBUG_NEW explicitly if you wish to use the debugging version.
|
1998-11-25 21:42:56 +00:00
|
|
|
|
|
|
|
#if defined(__WXDEBUG__) && wxUSE_GLOBAL_MEMORY_OPERATORS && wxUSE_DEBUG_NEW_ALWAYS
|
1999-04-21 21:46:02 +00:00
|
|
|
#define new new(__TFILE__,__LINE__)
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
#endif // _WX_OBJECTH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-19 07:09:58 +00:00
|
|
|
// vi:sts=4:sw=4:et
|