]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/object.h
another attempt to fix wxPanel/wxFrame::m_winLastFocused handling
[wxWidgets.git] / include / wx / object.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: object.h
3// Purpose: wxObject class, plus run-time type information macros
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_OBJECTH__
13#define _WX_OBJECTH__
14
15#ifdef __GNUG__
16#pragma interface "object.h"
17#endif
18
19#include "wx/defs.h"
20#include "wx/memory.h"
21
22class WXDLLEXPORT wxObject;
23
24#if wxUSE_DYNAMIC_CLASSES
25
26// #ifdef __GNUWIN32__
27#ifdef GetClassName
28#undef GetClassName
29#endif
30#ifdef GetClassInfo
31#undef GetClassInfo
32#endif
33// #endif
34
35class WXDLLEXPORT wxClassInfo;
36class WXDLLEXPORT wxInputStream;
37class WXDLLEXPORT wxOutputStream;
38class WXDLLEXPORT wxObjectInputStream;
39class WXDLLEXPORT wxObjectOutputStream;
40class WXDLLEXPORT wxHashTable;
41class WXDLLEXPORT wxObject_Serialize;
42
43#if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
44 #include "wx/ioswrap.h"
45#endif
46
47/*
48 * Dynamic object system declarations
49 */
50
51typedef wxObject * (*wxObjectConstructorFn) (void);
52
53class WXDLLEXPORT wxClassInfo
54{
55public:
56 wxClassInfo(const wxChar *cName,
57 const wxChar *baseName1,
58 const wxChar *baseName2,
59 int sz,
60 wxObjectConstructorFn fn);
61
62 wxObject *CreateObject(void);
63
64 const wxChar *GetClassName() const { return m_className; }
65 const wxChar *GetBaseClassName1() const { return m_baseClassName1; }
66 const wxChar *GetBaseClassName2() const { return m_baseClassName2; }
67 const wxClassInfo* GetBaseClass1() const { return m_baseInfo1; }
68 const wxClassInfo* GetBaseClass2() const { return m_baseInfo2; }
69 int GetSize() const { return m_objectSize; }
70 wxObjectConstructorFn GetConstructor() const { return m_objectConstructor; }
71 static const wxClassInfo* GetFirst() { return sm_first; }
72 const wxClassInfo* GetNext() const { return m_next; }
73 bool IsKindOf(const wxClassInfo *info) const;
74
75 static wxClassInfo *FindClass(const wxChar *c);
76
77 // Initializes parent pointers and hash table for fast searching.
78 static void InitializeClasses();
79
80 // Cleans up hash table used for fast searching.
81 static void CleanUpClasses();
82
83public:
84 const wxChar* m_className;
85 const wxChar* m_baseClassName1;
86 const wxChar* m_baseClassName2;
87 int m_objectSize;
88 wxObjectConstructorFn m_objectConstructor;
89
90 // Pointers to base wxClassInfos: set in InitializeClasses
91 const wxClassInfo* m_baseInfo1;
92 const wxClassInfo* m_baseInfo2;
93
94 // class info object live in a linked list: pointers to its head and the
95 // next element in it
96 static wxClassInfo* sm_first;
97 wxClassInfo* m_next;
98
99 static wxHashTable* sm_classTable;
100};
101
102WXDLLEXPORT wxObject* wxCreateDynamicObject(const wxChar *name);
103
104#if wxUSE_SERIAL
105WXDLLEXPORT wxObject* wxCreateStoredObject( wxInputStream& stream );
106#endif
107
108#define DECLARE_DYNAMIC_CLASS(name) \
109 public:\
110 static wxClassInfo sm_class##name;\
111 wxClassInfo *GetClassInfo() const \
112 { return &name::sm_class##name; }
113
114#define DECLARE_ABSTRACT_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
115#define DECLARE_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
116
117//////
118////// for concrete classes
119//////
120
121// Single inheritance with one base class
122#define IMPLEMENT_DYNAMIC_CLASS(name, basename) \
123wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name(void) \
124 { return new name; }\
125 wxClassInfo name::sm_class##name((wxChar *) wxT(#name), (wxChar *) wxT(#basename), (wxChar *) NULL, (int) sizeof(name), (wxObjectConstructorFn) wxConstructorFor##name);
126
127// Multiple inheritance with two base classes
128#define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) \
129wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name(void) \
130 { return new name; }\
131 wxClassInfo name::sm_class##name((wxChar *) wxT(#name), (wxChar *) wxT(#basename1), (wxChar *) wxT(#basename2), (int) sizeof(name), (wxObjectConstructorFn) wxConstructorFor##name);
132
133//////
134////// for abstract classes
135//////
136
137// Single inheritance with one base class
138#define IMPLEMENT_ABSTRACT_CLASS(name, basename) \
139 wxClassInfo name::sm_class##name((wxChar *) wxT(#name), (wxChar *) wxT(#basename), \
140 (wxChar *) NULL, (int) sizeof(name), (wxObjectConstructorFn) NULL);
141
142// Multiple inheritance with two base classes
143#define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) \
144 wxClassInfo name::sm_class##name((wxChar *) wxT(#name), (wxChar *) wxT(#basename1), \
145 (wxChar *) wxT(#basename2), (int) sizeof(name), (wxObjectConstructorFn) NULL);
146
147#define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
148#define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
149
150#define CLASSINFO(name) (&name::sm_class##name)
151
152#else // !wxUSE_DYNAMIC_CLASSES
153
154// No dynamic class system: so stub out the macros
155#define DECLARE_DYNAMIC_CLASS(name)
156#define DECLARE_ABSTRACT_CLASS(name)
157#define DECLARE_CLASS(name)
158#define IMPLEMENT_DYNAMIC_CLASS(name, basename)
159#define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2)
160#define IMPLEMENT_ABSTRACT_CLASS(name, basename)
161#define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2)
162#define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
163#define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
164
165#endif // wxUSE_DYNAMIC_CLASSES/!wxUSE_DYNAMIC_CLASSES
166
167#define wxIS_KIND_OF(obj, className) obj->IsKindOf(&className::sm_class##className)
168
169// Just seems a bit nicer-looking (pretend it's not a macro)
170#define wxIsKindOf(obj, className) obj->IsKindOf(&className::sm_class##className)
171
172// to be replaced by dynamic_cast<> in the future
173#define wxDynamicCast(obj, className) \
174 ((obj) && ((obj)->IsKindOf(&className::sm_class##className)) \
175 ? (className *)(obj) \
176 : (className *)0)
177
178// The 'this' pointer is always true, so use this version to cast the this
179// pointer and avoid compiler warnings.
180#define wxDynamicThisCast(obj, className) \
181 (((obj)->IsKindOf(&className::sm_class##className)) \
182 ? (className *)(obj) \
183 : (className *)0)
184
185#define wxConstCast(obj, className) ((className *)(obj))
186
187#ifdef __WXDEBUG__
188 inline void wxCheckCast(void *ptr)
189 {
190 wxASSERT_MSG( ptr, _T("wxStaticCast() used incorrectly") );
191 }
192
193 #define wxStaticCast(obj, className) \
194 (wxCheckCast(wxDynamicCast(obj, className)), ((className *)(obj)))
195
196#else // !Debug
197 #define wxStaticCast(obj, className) ((className *)(obj))
198#endif // Debug/!Debug
199
200// Unfortunately Borland seems to need this include.
201#ifdef __BORLANDC__
202 #if wxUSE_IOSTREAMH
203 #include <iostream.h>
204 #else
205 #include <iostream>
206 #endif
207#endif
208
209class WXDLLEXPORT wxObjectRefData;
210
211class WXDLLEXPORT wxObject
212{
213 public:
214
215 // This is equivalent to using the macro DECLARE_ABSTRACT_CLASS
216 static wxClassInfo sm_classwxObject;
217
218 wxObject(void);
219 virtual ~wxObject(void);
220
221 virtual wxClassInfo *GetClassInfo(void) const { return &sm_classwxObject; }
222 wxObject *Clone(void) const;
223 virtual void CopyObject(wxObject& object_dest) const;
224
225 bool IsKindOf(wxClassInfo *info) const;
226
227#if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
228 void * operator new (size_t size, wxChar * fileName = NULL, int lineNum = 0);
229# if defined(__VISAGECPP__)
230# if __DEBUG_ALLOC__
231 void operator delete (void * buf,const char * _fname, size_t _line);
232# endif //__DEBUG_ALLOC__
233# else // Everybody else
234 void operator delete (void * buf);
235# endif // end of VISAGECPP
236
237// VC++ 6.0
238# if defined(__VISUALC__) && (__VISUALC__ >= 1200)
239 void operator delete(void *buf, wxChar*, int);
240# endif
241
242 // Causes problems for VC++
243# if wxUSE_ARRAY_MEMORY_OPERATORS && !defined(__VISUALC__) && !defined( __MWERKS__)
244 void * operator new[] (size_t size, wxChar * fileName = NULL, int lineNum = 0);
245 void operator delete[] (void * buf);
246# endif
247
248# ifdef __MWERKS__
249 void * operator new[] (size_t size, wxChar * fileName , int lineNum = 0);
250 void * operator new[] (size_t size) { return operator new[] ( size , NULL , 0 ) ; }
251 void operator delete[] (void * buf);
252# endif
253
254#endif // Debug & memory tracing
255
256#if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
257 virtual void Dump(ostream& str);
258#endif
259
260#if wxUSE_SERIAL
261 virtual void StoreObject( wxObjectOutputStream &stream );
262 virtual void LoadObject( wxObjectInputStream &stream );
263#endif
264
265 // make a 'clone' of the object
266 void Ref(const wxObject& clone);
267
268 // destroy a reference
269 void UnRef(void);
270
271 inline wxObjectRefData *GetRefData(void) const { return m_refData; }
272 inline void SetRefData(wxObjectRefData *data) { m_refData = data; }
273
274protected:
275 wxObjectRefData* m_refData;
276#if wxUSE_SERIAL
277 wxObject_Serialize* m_serialObj;
278#endif
279};
280
281/*
282 * wxObjectData
283 */
284
285class WXDLLEXPORT wxObjectRefData {
286
287 friend class wxObject;
288
289public:
290 wxObjectRefData(void);
291 virtual ~wxObjectRefData(void);
292
293 inline int GetRefCount(void) const { return m_count; }
294private:
295 int m_count;
296};
297
298#ifdef __WXDEBUG__
299#ifndef WXDEBUG_NEW
300#define WXDEBUG_NEW new(__TFILE__,__LINE__)
301#endif
302#else
303#define WXDEBUG_NEW new
304#endif
305
306// Redefine new to be the debugging version. This doesn't
307// work with all compilers, in which case you need to
308// use WXDEBUG_NEW explicitly if you wish to use the debugging version.
309
310#if defined(__WXDEBUG__) && wxUSE_GLOBAL_MEMORY_OPERATORS && wxUSE_DEBUG_NEW_ALWAYS
311#define new new(__TFILE__,__LINE__)
312#endif
313
314#endif
315 // _WX_OBJECTH__
316
317