1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxObject class, plus run-time type information macros
4 // Author: Julian Smart
5 // Modified by: Ron Lee
8 // Copyright: (c) 1997 Julian Smart and Markus Holzem
9 // (c) 2001 Ron Lee <ron@debian.org>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
17 #pragma interface "object.h"
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
25 #include "wx/memory.h"
27 class WXDLLEXPORT wxObject
;
29 #if wxUSE_DYNAMIC_CLASSES
31 // ----------------------------------------------------------------------------
32 // conditional compilation
33 // ----------------------------------------------------------------------------
42 class WXDLLEXPORT wxClassInfo
;
43 class WXDLLEXPORT wxHashTable
;
45 #if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
46 #include "wx/ioswrap.h"
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 typedef wxObject
*(*wxObjectConstructorFn
)(void);
56 class WXDLLEXPORT wxClassInfo
59 wxClassInfo( const wxChar
*className
,
60 const wxChar
*baseName1
,
61 const wxChar
*baseName2
,
63 wxObjectConstructorFn ctor
)
64 : m_className(className
)
65 , m_baseClassName1(baseName1
)
66 , m_baseClassName2(baseName2
)
68 , m_objectConstructor(ctor
)
74 wxObject
*CreateObject() { return m_objectConstructor
? (*m_objectConstructor
)() : 0; }
76 const wxChar
*GetClassName() const { return m_className
; }
77 const wxChar
*GetBaseClassName1() const { return m_baseClassName1
; }
78 const wxChar
*GetBaseClassName2() const { return m_baseClassName2
; }
79 const wxClassInfo
*GetBaseClass1() const { return m_baseInfo1
; }
80 const wxClassInfo
*GetBaseClass2() const { return m_baseInfo2
; }
81 int GetSize() const { return m_objectSize
; }
83 wxObjectConstructorFn
GetConstructor() const { return m_objectConstructor
; }
84 static const wxClassInfo
*GetFirst() { return sm_first
; }
85 const wxClassInfo
*GetNext() const { return m_next
; }
86 static wxClassInfo
*FindClass(const wxChar
*className
);
88 // Climb upwards through inheritance hierarchy.
89 // Dual inheritance is catered for.
91 bool IsKindOf(const wxClassInfo
*info
) const
95 ( m_baseInfo1
&& m_baseInfo1
->IsKindOf(info
) ) ||
96 ( m_baseInfo2
&& m_baseInfo2
->IsKindOf(info
) ) );
99 // Initializes parent pointers and hash table for fast searching.
101 static void InitializeClasses();
103 // Cleans up hash table used for fast searching.
105 static void CleanUpClasses();
108 const wxChar
*m_className
;
109 const wxChar
*m_baseClassName1
;
110 const wxChar
*m_baseClassName2
;
112 wxObjectConstructorFn m_objectConstructor
;
114 // Pointers to base wxClassInfos: set in InitializeClasses
116 const wxClassInfo
*m_baseInfo1
;
117 const wxClassInfo
*m_baseInfo2
;
119 // class info object live in a linked list:
120 // pointers to its head and the next element in it
122 static wxClassInfo
*sm_first
;
125 // FIXME: this should be private (currently used directly by way too
127 static wxHashTable
*sm_classTable
;
130 // InitializeClasses() helper
131 static wxClassInfo
*GetBaseByName(const wxChar
*name
);
134 WXDLLEXPORT wxObject
*wxCreateDynamicObject(const wxChar
*name
);
136 // ----------------------------------------------------------------------------
137 // Dynamic class macros
138 // ----------------------------------------------------------------------------
140 #define DECLARE_DYNAMIC_CLASS(name) \
142 static wxClassInfo sm_class##name; \
143 virtual wxClassInfo *GetClassInfo() const \
144 { return &name::sm_class##name; }
146 #define DECLARE_ABSTRACT_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
147 #define DECLARE_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
149 // -----------------------------------
150 // for concrete classes
151 // -----------------------------------
153 // Single inheritance with one base class
155 #define IMPLEMENT_DYNAMIC_CLASS(name, basename) \
156 wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name() \
157 { return new name; } \
158 wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename), \
159 0, (int) sizeof(name), \
160 (wxObjectConstructorFn) wxConstructorFor##name);
162 // Multiple inheritance with two base classes
164 #define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) \
165 wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name() \
166 { return new name; } \
167 wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename1), \
168 wxT(#basename2), (int) sizeof(name), \
169 (wxObjectConstructorFn) wxConstructorFor##name);
171 // -----------------------------------
172 // for abstract classes
173 // -----------------------------------
175 // Single inheritance with one base class
177 #define IMPLEMENT_ABSTRACT_CLASS(name, basename) \
178 wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename), \
179 0, (int) sizeof(name), (wxObjectConstructorFn) 0);
181 // Multiple inheritance with two base classes
183 #define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) \
184 wxClassInfo name::sm_class##name(wxT(#name), wxT(#basename1), \
185 wxT(#basename2), (int) sizeof(name), \
186 (wxObjectConstructorFn) 0);
188 #define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
189 #define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
191 // -----------------------------------
192 // for pluggable classes
193 // -----------------------------------
195 // NOTE: this should probably be the very first statement
196 // in the class declaration so wxPluginSentinel is
197 // the first member initialised and the last destroyed.
199 // _DECLARE_DL_SENTINEL(name) wxPluginSentinel m_pluginsentinel;
201 #if wxUSE_NESTED_CLASSES
203 #define _DECLARE_DL_SENTINEL(name, exportdecl) \
204 class exportdecl name##PluginSentinel { \
206 static const wxString sm_className; \
208 name##PluginSentinel(); \
209 ~name##PluginSentinel(); \
211 name##PluginSentinel m_pluginsentinel;
213 #define _IMPLEMENT_DL_SENTINEL(name) \
214 const wxString name::name##PluginSentinel::sm_className(#name); \
215 name::name##PluginSentinel::name##PluginSentinel() { \
216 wxPluginLibrary *e = (wxPluginLibrary*) wxPluginLibrary::ms_classes.Get(#name); \
217 if( e != 0 ) { e->RefObj(); } \
219 name::name##PluginSentinel::~name##PluginSentinel() { \
220 wxPluginLibrary *e = (wxPluginLibrary*) wxPluginLibrary::ms_classes.Get(#name); \
221 if( e != 0 ) { e->UnrefObj(); } \
225 #define _DECLARE_DL_SENTINEL(name)
226 #define _IMPLEMENT_DL_SENTINEL(name)
228 #endif // wxUSE_NESTED_CLASSES
230 #define DECLARE_PLUGGABLE_CLASS(name) \
231 DECLARE_DYNAMIC_CLASS(name) _DECLARE_DL_SENTINEL(name, WXDLLEXPORT)
232 #define DECLARE_ABSTRACT_PLUGGABLE_CLASS(name) \
233 DECLARE_ABSTRACT_CLASS(name) _DECLARE_DL_SENTINEL(name, WXDLLEXPORT)
235 #define DECLARE_USER_EXPORTED_PLUGGABLE_CLASS(name, usergoo) \
236 DECLARE_DYNAMIC_CLASS(name) _DECLARE_DL_SENTINEL(name, usergoo)
237 #define DECLARE_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, usergoo) \
238 DECLARE_ABSTRACT_CLASS(name) _DECLARE_DL_SENTINEL(name, usergoo)
240 #define IMPLEMENT_PLUGGABLE_CLASS(name, basename) \
241 IMPLEMENT_DYNAMIC_CLASS(name, basename) _IMPLEMENT_DL_SENTINEL(name)
242 #define IMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2) \
243 IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) _IMPLEMENT_DL_SENTINEL(name)
244 #define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename) \
245 IMPLEMENT_ABSTRACT_CLASS(name, basename) _IMPLEMENT_DL_SENTINEL(name)
246 #define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2) \
247 IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) _IMPLEMENT_DL_SENTINEL(name)
249 #define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS(name, basename) \
250 IMPLEMENT_PLUGGABLE_CLASS(name, basename)
251 #define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS2(name, basename1, basename2) \
252 IMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2)
253 #define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, basename) \
254 IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename)
255 #define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2) \
256 IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2)
259 #define CLASSINFO(name) (&name::sm_class##name)
261 #else // !wxUSE_DYNAMIC_CLASSES
263 // No dynamic class system: so stub out the macros
265 #define DECLARE_DYNAMIC_CLASS(name)
266 #define DECLARE_ABSTRACT_CLASS(name)
267 #define DECLARE_CLASS(name)
268 #define IMPLEMENT_DYNAMIC_CLASS(name, basename)
269 #define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2)
270 #define IMPLEMENT_ABSTRACT_CLASS(name, basename)
271 #define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2)
272 #define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
273 #define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
275 #define DECLARE_PLUGGABLE_CLASS(name)
276 #define DECLARE_ABSTRACT_PLUGGABLE_CLASS(name)
277 #define IMPLEMENT_PLUGGABLE_CLASS(name, basename)
278 #define IMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2)
279 #define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename)
280 #define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2)
282 #define DECLARE_USER_EXPORTED_PLUGGABLE_CLASS(name, usergoo)
283 #define DECLARE_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, usergoo)
284 #define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS(name, basename)
285 #define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS2(name, basename1, basename2)
286 #define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, basename)
287 #define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2)
289 #endif // wxUSE_DYNAMIC_CLASSES
292 #define wxIS_KIND_OF(obj, className) obj->IsKindOf(&className::sm_class##className)
294 // Just seems a bit nicer-looking (pretend it's not a macro)
296 #define wxIsKindOf(obj, className) obj->IsKindOf(&className::sm_class##className)
298 // to be replaced by dynamic_cast<> in the future
300 #define wxDynamicCast(obj, className) \
301 (className *) wxCheckDynamicCast((wxObject*)(obj), &className::sm_class##className)
303 // The 'this' pointer is always true, so use this version
304 // to cast the this pointer and avoid compiler warnings.
306 #define wxDynamicCastThis(className) \
307 (IsKindOf(&className::sm_class##className) ? (className *)(this) : (className *)0)
309 #define wxConstCast(obj, className) ((className *)(obj))
313 inline void wxCheckCast(void *ptr
)
315 wxASSERT_MSG( ptr
, _T("wxStaticCast() used incorrectly") );
317 #define wxStaticCast(obj, className) \
318 (wxCheckCast(wxDynamicCast(obj, className)), ((className *)(obj)))
320 #else // !__WXDEBUG__
321 #define wxStaticCast(obj, className) ((className *)(obj))
323 #endif // __WXDEBUG__
326 // Unfortunately Borland seems to need this include.
328 #if wxUSE_STD_IOSTREAM \
329 && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT) \
330 && defined(__BORLANDC__)
332 #include <iostream.h>
339 // ----------------------------------------------------------------------------
341 // ----------------------------------------------------------------------------
343 class WXDLLEXPORT wxObjectRefData
;
345 class WXDLLEXPORT wxObject
347 DECLARE_ABSTRACT_CLASS(wxObject
)
350 wxObject() : m_refData(0) {}
351 virtual ~wxObject() { UnRef(); }
353 bool IsKindOf(wxClassInfo
*info
) const;
355 #if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
356 void *operator new (size_t size
, wxChar
*fileName
= 0, int lineNum
= 0);
358 #ifndef __VISAGECPP__
359 void operator delete (void * buf
);
360 #elif __DEBUG_ALLOC__
361 void operator delete (void *buf
, const char *_fname
, size_t _line
);
366 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
367 void operator delete(void *buf
, wxChar
*, int);
370 // Causes problems for VC++
372 #if wxUSE_ARRAY_MEMORY_OPERATORS && !defined(__VISUALC__) && !defined( __MWERKS__)
373 void *operator new[] (size_t size
, wxChar
*fileName
= 0, int lineNum
= 0);
374 void operator delete[] (void *buf
);
378 void *operator new[] (size_t size
, wxChar
*fileName
, int lineNum
= 0);
379 void *operator new[] (size_t size
) { return operator new[] ( size
, 0, 0 ) ; }
380 void operator delete[] (void *buf
);
383 #endif // Debug & memory tracing
386 #if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
387 virtual void Dump(wxSTD ostream
& str
);
390 // ref counted data handling methods
393 wxObjectRefData
*GetRefData() const { return m_refData
; }
394 void SetRefData(wxObjectRefData
*data
) { m_refData
= data
; }
396 // make a 'clone' of the object
397 void Ref(const wxObject
& clone
);
399 // destroy a reference
403 // ensure that our data is not shared with anybody else: if we have no
404 // data, it is created using CreateRefData() below, if we have shared data
405 // it is copied using CloneRefData(), otherwise nothing is done
406 void AllocExclusive();
408 // both methods must be implemented if Unshare() is used, not pure virtual
409 // only because of the backwards compatibility reasons
411 // create a new m_refData
412 virtual wxObjectRefData
*CreateRefData() const;
414 // create a new m_refData initialized with the given one
415 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
417 wxObjectRefData
*m_refData
;
421 class WXDLLEXPORT wxObjectRefData
423 friend class wxObject
;
426 wxObjectRefData() : m_count(1) {}
427 virtual ~wxObjectRefData() {}
429 inline int GetRefCount() const { return m_count
; }
435 inline wxObject
*wxCheckDynamicCast(wxObject
*obj
, wxClassInfo
*classInfo
)
437 return obj
&& obj
->GetClassInfo()->IsKindOf(classInfo
) ? obj
: 0;
442 #define WXDEBUG_NEW new(__TFILE__,__LINE__)
445 #define WXDEBUG_NEW new
448 // Redefine new to be the debugging version. This doesn't
449 // work with all compilers, in which case you need to
450 // use WXDEBUG_NEW explicitly if you wish to use the debugging version.
452 #if defined(__WXDEBUG__) && wxUSE_GLOBAL_MEMORY_OPERATORS && wxUSE_DEBUG_NEW_ALWAYS
453 #define new new(__TFILE__,__LINE__)
456 #endif // _WX_OBJECTH__