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