]> git.saurik.com Git - wxWidgets.git/blame - include/wx/object.h
Added Set/GetQuickBestSize
[wxWidgets.git] / include / wx / object.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
b2edef6f 2// Name: wx/object.h
c801d85f
KB
3// Purpose: wxObject class, plus run-time type information macros
4// Author: Julian Smart
0b9ab0bd 5// Modified by: Ron Lee
c801d85f
KB
6// Created: 01/02/97
7// RCS-ID: $Id$
371a5b4e 8// Copyright: (c) 1997 Julian Smart
0b9ab0bd 9// (c) 2001 Ron Lee <ron@debian.org>
65571936 10// Licence: wxWindows licence
c801d85f
KB
11/////////////////////////////////////////////////////////////////////////////
12
34138703
JS
13#ifndef _WX_OBJECTH__
14#define _WX_OBJECTH__
c801d85f 15
0b9ab0bd
RL
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
c801d85f 20#include "wx/defs.h"
e55ad60e 21#include "wx/memory.h"
c801d85f 22
bddd7a8d 23class WXDLLIMPEXP_BASE wxObject;
c801d85f 24
4393b50c 25#ifndef wxUSE_EXTENDED_RTTI
6d553b5f 26#define wxUSE_EXTENDED_RTTI 0
a095505c
SC
27#endif
28
6d553b5f 29#if wxUSE_EXTENDED_RTTI
a095505c 30#include "wx/xti.h"
a095505c
SC
31#else
32
0b9ab0bd
RL
33// ----------------------------------------------------------------------------
34// conditional compilation
35// ----------------------------------------------------------------------------
36
bddd7a8d
VZ
37class WXDLLIMPEXP_BASE wxClassInfo;
38class WXDLLIMPEXP_BASE wxHashTable;
39class WXDLLIMPEXP_BASE wxObjectRefData;
c801d85f 40
0b9ab0bd
RL
41// ----------------------------------------------------------------------------
42// wxClassInfo
43// ----------------------------------------------------------------------------
44
45typedef wxObject *(*wxObjectConstructorFn)(void);
c801d85f 46
bddd7a8d 47class WXDLLIMPEXP_BASE wxClassInfo
c801d85f 48{
aac65598 49public:
38befbee 50 wxClassInfo( const wxChar *className,
d1d738f1
VS
51 const wxClassInfo *baseInfo1,
52 const wxClassInfo *baseInfo2,
38befbee
RL
53 int size,
54 wxObjectConstructorFn ctor )
0b9ab0bd 55 : m_className(className)
0b9ab0bd
RL
56 , m_objectSize(size)
57 , m_objectConstructor(ctor)
d1d738f1
VS
58 , m_baseInfo1(baseInfo1)
59 , m_baseInfo2(baseInfo2)
0b9ab0bd 60 , m_next(sm_first)
7e548f6b 61 {
d1d738f1
VS
62 sm_first = this;
63 Register();
64 }
0b9ab0bd 65
aa4b7ef9 66 ~wxClassInfo();
1d2eddff 67
0c06c983
JS
68 wxObject *CreateObject() const { return m_objectConstructor ? (*m_objectConstructor)() : 0; }
69 bool IsDynamic() const { return (NULL != m_objectConstructor); }
0b9ab0bd
RL
70
71 const wxChar *GetClassName() const { return m_className; }
469349b5
MB
72 const wxChar *GetBaseClassName1() const
73 { return m_baseInfo1 ? m_baseInfo1->GetClassName() : NULL; }
74 const wxChar *GetBaseClassName2() const
75 { return m_baseInfo2 ? m_baseInfo2->GetClassName() : NULL; }
0b9ab0bd
RL
76 const wxClassInfo *GetBaseClass1() const { return m_baseInfo1; }
77 const wxClassInfo *GetBaseClass2() const { return m_baseInfo2; }
78 int GetSize() const { return m_objectSize; }
79
80 wxObjectConstructorFn GetConstructor() const { return m_objectConstructor; }
81 static const wxClassInfo *GetFirst() { return sm_first; }
82 const wxClassInfo *GetNext() const { return m_next; }
83 static wxClassInfo *FindClass(const wxChar *className);
807d8487 84
0b9ab0bd
RL
85 // Climb upwards through inheritance hierarchy.
86 // Dual inheritance is catered for.
87
88 bool IsKindOf(const wxClassInfo *info) const
89 {
90 return info != 0 &&
91 ( info == this ||
92 ( m_baseInfo1 && m_baseInfo1->IsKindOf(info) ) ||
93 ( m_baseInfo2 && m_baseInfo2->IsKindOf(info) ) );
94 }
3f4a0c5b 95
45bbbc54 96#if WXWIN_COMPATIBILITY_2_4
d1d738f1 97 // Initializes parent pointers and hash table for fast searching.
45bbbc54 98 wxDEPRECATED( static void InitializeClasses() );
d1d738f1 99 // Cleans up hash table used for fast searching.
45bbbc54 100 wxDEPRECATED( static void CleanUpClasses() );
cafc76a4 101#endif
7e548f6b 102
0c32066b 103public:
0b9ab0bd 104 const wxChar *m_className;
0b9ab0bd
RL
105 int m_objectSize;
106 wxObjectConstructorFn m_objectConstructor;
107
108 // Pointers to base wxClassInfos: set in InitializeClasses
109
110 const wxClassInfo *m_baseInfo1;
111 const wxClassInfo *m_baseInfo2;
112
113 // class info object live in a linked list:
114 // pointers to its head and the next element in it
115
116 static wxClassInfo *sm_first;
117 wxClassInfo *m_next;
118
1f428942
VZ
119 // FIXME: this should be private (currently used directly by way too
120 // many clients)
0b9ab0bd 121 static wxHashTable *sm_classTable;
1f428942
VZ
122
123private:
124 // InitializeClasses() helper
125 static wxClassInfo *GetBaseByName(const wxChar *name);
684242c6
GD
126
127 DECLARE_NO_COPY_CLASS(wxClassInfo)
7e548f6b
WS
128
129protected:
d1d738f1
VS
130 // registers the class
131 void Register();
132 void Unregister();
c801d85f
KB
133};
134
bddd7a8d 135WXDLLIMPEXP_BASE wxObject *wxCreateDynamicObject(const wxChar *name);
c801d85f 136
45bbbc54 137#if WXWIN_COMPATIBILITY_2_4
cafc76a4
VS
138inline void wxClassInfo::InitializeClasses() {}
139inline void wxClassInfo::CleanUpClasses() {}
140#endif
141
0b9ab0bd
RL
142// ----------------------------------------------------------------------------
143// Dynamic class macros
144// ----------------------------------------------------------------------------
145
14ca93a0
VZ
146#define DECLARE_ABSTRACT_CLASS(name) \
147 public: \
148 static wxClassInfo ms_classInfo; \
149 virtual wxClassInfo *GetClassInfo() const;
150
151#define DECLARE_DYNAMIC_CLASS_NO_ASSIGN(name) \
152 DECLARE_NO_ASSIGN_CLASS(name) \
fc7a2a60
VZ
153 DECLARE_DYNAMIC_CLASS(name)
154
14ca93a0
VZ
155#define DECLARE_DYNAMIC_CLASS_NO_COPY(name) \
156 DECLARE_NO_COPY_CLASS(name) \
fc7a2a60
VZ
157 DECLARE_DYNAMIC_CLASS(name)
158
14ca93a0
VZ
159#define DECLARE_DYNAMIC_CLASS(name) \
160 DECLARE_ABSTRACT_CLASS(name) \
161 static wxObject* wxCreateObject();
162
c801d85f
KB
163#define DECLARE_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
164
14ca93a0
VZ
165
166// common part of the macros below
167#define wxIMPLEMENT_CLASS_COMMON(name, basename, baseclsinfo2, func) \
168 wxClassInfo name::ms_classInfo(wxT(#name), \
169 &basename::ms_classInfo, \
170 baseclsinfo2, \
171 (int) sizeof(name), \
172 (wxObjectConstructorFn) func); \
173 \
174 wxClassInfo *name::GetClassInfo() const \
175 { return &name::ms_classInfo; }
176
177#define wxIMPLEMENT_CLASS_COMMON1(name, basename, func) \
178 wxIMPLEMENT_CLASS_COMMON(name, basename, NULL, func)
179
180#define wxIMPLEMENT_CLASS_COMMON2(name, basename1, basename2, func) \
2b199a38 181 wxIMPLEMENT_CLASS_COMMON(name, basename1, &basename2::ms_classInfo, func)
14ca93a0 182
0b9ab0bd
RL
183// -----------------------------------
184// for concrete classes
185// -----------------------------------
186
187 // Single inheritance with one base class
14ca93a0
VZ
188#define IMPLEMENT_DYNAMIC_CLASS(name, basename) \
189 wxIMPLEMENT_CLASS_COMMON1(name, basename, name::wxCreateObject) \
190 wxObject* name::wxCreateObject() \
191 { return new name; }
c801d85f 192
0b9ab0bd 193 // Multiple inheritance with two base classes
14ca93a0
VZ
194#define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) \
195 wxIMPLEMENT_CLASS_COMMON2(name, basename1, basename2, \
196 name::wxCreateObject) \
197 wxObject* name::wxCreateObject() \
198 { return new name; }
c801d85f 199
0b9ab0bd
RL
200// -----------------------------------
201// for abstract classes
202// -----------------------------------
c801d85f 203
0b9ab0bd
RL
204 // Single inheritance with one base class
205
14ca93a0
VZ
206#define IMPLEMENT_ABSTRACT_CLASS(name, basename) \
207 wxIMPLEMENT_CLASS_COMMON1(name, basename, NULL)
0b9ab0bd
RL
208
209 // Multiple inheritance with two base classes
210
14ca93a0
VZ
211#define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) \
212 wxIMPLEMENT_CLASS_COMMON2(name, basename1, basename2, NULL)
c801d85f
KB
213
214#define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
215#define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
216
6d553b5f 217#endif // !wxUSE_EXTENDED_RTTI
a095505c
SC
218
219
0b9ab0bd
RL
220// -----------------------------------
221// for pluggable classes
222// -----------------------------------
223
224 // NOTE: this should probably be the very first statement
225 // in the class declaration so wxPluginSentinel is
226 // the first member initialised and the last destroyed.
227
228// _DECLARE_DL_SENTINEL(name) wxPluginSentinel m_pluginsentinel;
229
230#if wxUSE_NESTED_CLASSES
231
60b73526
RL
232#define _DECLARE_DL_SENTINEL(name, exportdecl) \
233class exportdecl name##PluginSentinel { \
234private: \
235 static const wxString sm_className; \
236public: \
237 name##PluginSentinel(); \
2e0b1b11 238 ~name##PluginSentinel(); \
60b73526 239}; \
0b9ab0bd 240name##PluginSentinel m_pluginsentinel;
0b9ab0bd
RL
241
242#define _IMPLEMENT_DL_SENTINEL(name) \
243 const wxString name::name##PluginSentinel::sm_className(#name); \
244 name::name##PluginSentinel::name##PluginSentinel() { \
4f89dbc4 245 wxPluginLibrary *e = (wxPluginLibrary*) wxPluginLibrary::ms_classes.Get(#name); \
7c1e2b44 246 if( e != 0 ) { e->RefObj(); } \
0b9ab0bd 247 } \
abad5367 248 name::name##PluginSentinel::~name##PluginSentinel() { \
4f89dbc4 249 wxPluginLibrary *e = (wxPluginLibrary*) wxPluginLibrary::ms_classes.Get(#name); \
7c1e2b44 250 if( e != 0 ) { e->UnrefObj(); } \
0b9ab0bd
RL
251 }
252#else
253
254#define _DECLARE_DL_SENTINEL(name)
255#define _IMPLEMENT_DL_SENTINEL(name)
256
257#endif // wxUSE_NESTED_CLASSES
258
259#define DECLARE_PLUGGABLE_CLASS(name) \
60b73526 260 DECLARE_DYNAMIC_CLASS(name) _DECLARE_DL_SENTINEL(name, WXDLLEXPORT)
0b9ab0bd 261#define DECLARE_ABSTRACT_PLUGGABLE_CLASS(name) \
60b73526
RL
262 DECLARE_ABSTRACT_CLASS(name) _DECLARE_DL_SENTINEL(name, WXDLLEXPORT)
263
264#define DECLARE_USER_EXPORTED_PLUGGABLE_CLASS(name, usergoo) \
265 DECLARE_DYNAMIC_CLASS(name) _DECLARE_DL_SENTINEL(name, usergoo)
266#define DECLARE_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, usergoo) \
267 DECLARE_ABSTRACT_CLASS(name) _DECLARE_DL_SENTINEL(name, usergoo)
0b9ab0bd
RL
268
269#define IMPLEMENT_PLUGGABLE_CLASS(name, basename) \
270 IMPLEMENT_DYNAMIC_CLASS(name, basename) _IMPLEMENT_DL_SENTINEL(name)
271#define IMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2) \
272 IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) _IMPLEMENT_DL_SENTINEL(name)
0b9ab0bd
RL
273#define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename) \
274 IMPLEMENT_ABSTRACT_CLASS(name, basename) _IMPLEMENT_DL_SENTINEL(name)
275#define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2) \
276 IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) _IMPLEMENT_DL_SENTINEL(name)
277
60b73526
RL
278#define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS(name, basename) \
279 IMPLEMENT_PLUGGABLE_CLASS(name, basename)
280#define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS2(name, basename1, basename2) \
281 IMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2)
282#define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, basename) \
283 IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename)
284#define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2) \
285 IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2)
286
c0db9626 287#define CLASSINFO(name) (&name::ms_classInfo)
c801d85f 288
c0db9626 289#define wxIS_KIND_OF(obj, className) obj->IsKindOf(&className::ms_classInfo)
3013b6f4 290
b2edef6f 291// Just seems a bit nicer-looking (pretend it's not a macro)
c0db9626 292#define wxIsKindOf(obj, className) obj->IsKindOf(&className::ms_classInfo)
c801d85f 293
73fbb031
VZ
294// this cast does some more checks at compile time as it uses static_cast
295// internally
296//
297// note that it still has different semantics from dynamic_cast<> and so can't
298// be replaced by it as long as there are any compilers not supporting it
34636400 299#define wxDynamicCast(obj, className) \
5232d996
VZ
300 ((className *) wxCheckDynamicCast( \
301 wx_const_cast(wxObject *, wx_static_cast(const wxObject *, \
302 wx_const_cast(className *, wx_static_cast(const className *, obj)))), \
303 &className::ms_classInfo))
0b9ab0bd 304
b2edef6f
VZ
305// The 'this' pointer is always true, so use this version
306// to cast the this pointer and avoid compiler warnings.
f7637829 307#define wxDynamicCastThis(className) \
73fbb031 308 (IsKindOf(&className::ms_classInfo) ? (className *)(this) : (className *)0)
33ac7e6f 309
f6bcfd97 310#ifdef __WXDEBUG__
e32d4836 311inline void* wxCheckCast(void *ptr)
0b9ab0bd
RL
312{
313 wxASSERT_MSG( ptr, _T("wxStaticCast() used incorrectly") );
e32d4836 314 return ptr;
0b9ab0bd
RL
315}
316#define wxStaticCast(obj, className) \
e32d4836 317 ((className *)wxCheckCast(wxDynamicCast(obj, className)))
f6bcfd97 318
0b9ab0bd 319#else // !__WXDEBUG__
ef0aea5a
VZ
320#define wxStaticCast(obj, className) \
321 wx_const_cast(className *, wx_static_cast(const className *, obj))
f6bcfd97 322
0b9ab0bd 323#endif // __WXDEBUG__
f6bcfd97 324
b2edef6f
VZ
325// ----------------------------------------------------------------------------
326// set up memory debugging macros
327// ----------------------------------------------------------------------------
328
329/*
330 Which new/delete operator variants do we want?
331
332 _WX_WANT_NEW_SIZET_WXCHAR_INT = void *operator new (size_t size, wxChar *fileName = 0, int lineNum = 0)
333 _WX_WANT_DELETE_VOID = void operator delete (void * buf)
334 _WX_WANT_DELETE_VOID_CONSTCHAR_SIZET = void operator delete (void *buf, const char *_fname, size_t _line)
335 _WX_WANT_DELETE_VOID_WXCHAR_INT = void operator delete(void *buf, wxChar*, int)
336 _WX_WANT_ARRAY_NEW_SIZET_WXCHAR_INT = void *operator new[] (size_t size, wxChar *fileName , int lineNum = 0)
337 _WX_WANT_ARRAY_DELETE_VOID = void operator delete[] (void *buf)
338 _WX_WANT_ARRAY_DELETE_VOID_WXCHAR_INT = void operator delete[] (void* buf, wxChar*, int )
339*/
340
341#if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
342
343// All compilers get this one
344#define _WX_WANT_NEW_SIZET_WXCHAR_INT
345
346// Everyone except Visage gets the next one
347#ifndef __VISAGECPP__
348 #define _WX_WANT_DELETE_VOID
c801d85f 349#endif
b2edef6f
VZ
350
351// Only visage gets this one under the correct circumstances
352#if defined(__VISAGECPP__) && __DEBUG_ALLOC__
353 #define _WX_WANT_DELETE_VOID_CONSTCHAR_SIZET
354#endif
355
356// Only VC++ 6.0 and CodeWarrior compilers get overloaded delete that matches new
684242c6 357#if ( defined(__VISUALC__) && (__VISUALC__ >= 1200) ) || (defined(__MWERKS__) && (__MWERKS__ >= 0x2400))
b2edef6f 358 #define _WX_WANT_DELETE_VOID_WXCHAR_INT
fd85b064 359#endif
c801d85f 360
b2edef6f
VZ
361// Now see who (if anyone) gets the array memory operators
362#if wxUSE_ARRAY_MEMORY_OPERATORS
363
364 // Everyone except Visual C++ (cause problems for VC++ - crashes)
365 #if !defined(__VISUALC__)
366 #define _WX_WANT_ARRAY_NEW_SIZET_WXCHAR_INT
367 #endif
368
369 // Everyone except Visual C++ (cause problems for VC++ - crashes)
370 #if !defined(__VISUALC__)
371 #define _WX_WANT_ARRAY_DELETE_VOID
372 #endif
373
374 // Only CodeWarrior 6 or higher
375 #if defined(__MWERKS__) && (__MWERKS__ >= 0x2400)
376 #define _WX_WANT_ARRAY_DELETE_VOID_WXCHAR_INT
377 #endif
378
379#endif // wxUSE_ARRAY_MEMORY_OPERATORS
380
e755eb67 381#endif // __WXDEBUG__ && wxUSE_MEMORY_TRACING
b2edef6f 382
f8855e47
VZ
383// ----------------------------------------------------------------------------
384// wxObjectRefData: ref counted data meant to be stored in wxObject
385// ----------------------------------------------------------------------------
386
387class WXDLLIMPEXP_BASE wxObjectRefData
388{
389 friend class WXDLLIMPEXP_BASE wxObject;
390
391public:
392 wxObjectRefData() : m_count(1) { }
393 virtual ~wxObjectRefData() { }
394
395 int GetRefCount() const { return m_count; }
396
397private:
398 int m_count;
399};
400
0b9ab0bd 401// ----------------------------------------------------------------------------
77ffb593 402// wxObject: the root class of wxWidgets object hierarchy
0b9ab0bd
RL
403// ----------------------------------------------------------------------------
404
bddd7a8d 405class WXDLLIMPEXP_BASE wxObject
c801d85f 406{
684242c6 407 DECLARE_ABSTRACT_CLASS(wxObject)
c801d85f 408
0b9ab0bd 409public:
b2edef6f 410 wxObject() { m_refData = NULL; }
0b9ab0bd 411 virtual ~wxObject() { UnRef(); }
4393b50c 412
a6391d30 413 wxObject(const wxObject& other)
66e9a9f0 414 {
f8855e47
VZ
415 m_refData = other.m_refData;
416 if (m_refData)
417 m_refData->m_count++;
66e9a9f0 418 }
4393b50c 419
a6391d30
GD
420 wxObject& operator=(const wxObject& other)
421 {
422 if ( this != &other )
423 {
f8855e47 424 Ref(other);
a6391d30
GD
425 }
426 return *this;
427 }
428
0b9ab0bd 429 bool IsKindOf(wxClassInfo *info) const;
c801d85f 430
0b9ab0bd 431
b2edef6f
VZ
432 // Turn on the correct set of new and delete operators
433
434#ifdef _WX_WANT_NEW_SIZET_WXCHAR_INT
cf760e4c 435 void *operator new ( size_t size, const wxChar *fileName = NULL, int lineNum = 0 );
0b9ab0bd 436#endif
27198be4 437
b2edef6f
VZ
438#ifdef _WX_WANT_DELETE_VOID
439 void operator delete ( void * buf );
440#endif
0b9ab0bd 441
b2edef6f
VZ
442#ifdef _WX_WANT_DELETE_VOID_CONSTCHAR_SIZET
443 void operator delete ( void *buf, const char *_fname, size_t _line );
0b9ab0bd 444#endif
76626af2 445
b2edef6f 446#ifdef _WX_WANT_DELETE_VOID_WXCHAR_INT
cf760e4c 447 void operator delete ( void *buf, const wxChar*, int );
b2edef6f 448#endif
8cfc5426 449
b2edef6f 450#ifdef _WX_WANT_ARRAY_NEW_SIZET_WXCHAR_INT
cf760e4c 451 void *operator new[] ( size_t size, const wxChar *fileName = NULL, int lineNum = 0 );
0b9ab0bd
RL
452#endif
453
b2edef6f
VZ
454#ifdef _WX_WANT_ARRAY_DELETE_VOID
455 void operator delete[] ( void *buf );
0b9ab0bd 456#endif
27198be4 457
b2edef6f 458#ifdef _WX_WANT_ARRAY_DELETE_VOID_WXCHAR_INT
cf760e4c 459 void operator delete[] (void* buf, const wxChar*, int );
b2edef6f 460#endif
c801d85f 461
807d8487
VZ
462 // ref counted data handling methods
463
464 // get/set
465 wxObjectRefData *GetRefData() const { return m_refData; }
466 void SetRefData(wxObjectRefData *data) { m_refData = data; }
467
468 // make a 'clone' of the object
0b9ab0bd 469 void Ref(const wxObject& clone);
c801d85f 470
807d8487 471 // destroy a reference
0b9ab0bd 472 void UnRef();
c801d85f 473
c801d85f 474protected:
807d8487
VZ
475 // ensure that our data is not shared with anybody else: if we have no
476 // data, it is created using CreateRefData() below, if we have shared data
477 // it is copied using CloneRefData(), otherwise nothing is done
478 void AllocExclusive();
479
480 // both methods must be implemented if Unshare() is used, not pure virtual
481 // only because of the backwards compatibility reasons
482
483 // create a new m_refData
484 virtual wxObjectRefData *CreateRefData() const;
485
486 // create a new m_refData initialized with the given one
b8027888 487 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
807d8487 488
0b9ab0bd 489 wxObjectRefData *m_refData;
c801d85f
KB
490};
491
ea1e6c4b
RL
492inline wxObject *wxCheckDynamicCast(wxObject *obj, wxClassInfo *classInfo)
493{
b2edef6f 494 return obj && obj->GetClassInfo()->IsKindOf(classInfo) ? obj : NULL;
ea1e6c4b
RL
495}
496
2d51f067
SC
497#if wxUSE_EXTENDED_RTTI
498class WXDLLIMPEXP_BASE wxDynamicObject : public wxObject
499{
8f2b1cfd 500 friend class WXDLLIMPEXP_BASE wxDynamicClassInfo ;
2d51f067
SC
501public:
502 // instantiates this object with an instance of its superclass
503 wxDynamicObject(wxObject* superClassInstance, const wxDynamicClassInfo *info) ;
504 ~wxDynamicObject();
505
8f2b1cfd
SC
506 void SetProperty (const wxChar *propertyName, const wxxVariant &value);
507 wxxVariant GetProperty (const wxChar *propertyName) const ;
2d51f067
SC
508
509 // get the runtime identity of this object
510 wxClassInfo *GetClassInfo() const
511 {
f525dc35
JS
512#ifdef _MSC_VER
513 return (wxClassInfo*) m_classInfo;
514#else
7e548f6b 515 return wx_const_cast(wxClassInfo *, m_classInfo);
f525dc35 516#endif
2d51f067
SC
517 }
518
519 wxObject* GetSuperClassInstance() const
520 {
521 return m_superClassInstance ;
522 }
523private :
8f2b1cfd
SC
524 // removes an existing runtime-property
525 void RemoveProperty( const wxChar *propertyName ) ;
526
527 // renames an existing runtime-property
528 void RenameProperty( const wxChar *oldPropertyName , const wxChar *newPropertyName ) ;
529
2d51f067
SC
530 wxObject *m_superClassInstance ;
531 const wxDynamicClassInfo *m_classInfo;
532 struct wxDynamicObjectInternal;
533 wxDynamicObjectInternal *m_data;
534};
535#endif
536
b2edef6f
VZ
537// ----------------------------------------------------------------------------
538// more debugging macros
539// ----------------------------------------------------------------------------
540
7fe7d506 541#ifdef __WXDEBUG__
b2edef6f
VZ
542 #ifndef WXDEBUG_NEW
543 #define WXDEBUG_NEW new(__TFILE__,__LINE__)
544 #endif
545#else // !__WXDEBUG__
546 #define WXDEBUG_NEW new
7fe7d506
JS
547#endif
548
b2edef6f
VZ
549// Redefine new to be the debugging version. This doesn't work with all
550// compilers, in which case you need to use WXDEBUG_NEW explicitly if you wish
551// to use the debugging version.
7fe7d506
JS
552
553#if defined(__WXDEBUG__) && wxUSE_GLOBAL_MEMORY_OPERATORS && wxUSE_DEBUG_NEW_ALWAYS
b2edef6f 554 #define new new(__TFILE__,__LINE__)
70dfc4ed 555#elif (defined(__WXDEBUG__) && defined(__VISUALC__) && !wxUSE_GLOBAL_MEMORY_OPERATORS && wxUSE_DEBUG_NEW_ALWAYS)
c86abb56
JS
556 // Including this file redefines new and allows leak reports to contain line numbers
557 #include "wx/msw/msvcrt.h"
c801d85f
KB
558#endif
559
c0089c96 560#endif // _WX_OBJECTH__