]> git.saurik.com Git - wxWidgets.git/blame - include/wx/object.h
Rewrote wxNotebook, incl. PAGE_CHANGING event
[wxWidgets.git] / include / wx / object.h
CommitLineData
c801d85f
KB
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
3f4a0c5b 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_OBJECTH__
13#define _WX_OBJECTH__
c801d85f
KB
14
15#ifdef __GNUG__
0d3820b3 16#pragma interface "object.h"
c801d85f
KB
17#endif
18
19#include "wx/defs.h"
e55ad60e 20#include "wx/memory.h"
c801d85f
KB
21
22class WXDLLEXPORT wxObject;
23
47d67540 24#if wxUSE_DYNAMIC_CLASSES
c801d85f 25
3f1af920 26// #ifdef __GNUWIN32__
c801d85f
KB
27#ifdef GetClassName
28#undef GetClassName
29#endif
3f1af920
JS
30#ifdef GetClassInfo
31#undef GetClassInfo
c801d85f 32#endif
3f1af920 33// #endif
c801d85f
KB
34
35class WXDLLEXPORT wxClassInfo;
1678ad78 36class WXDLLEXPORT wxInputStream;
858f7d66 37class WXDLLEXPORT wxOutputStream;
f4a8c29f
GL
38class WXDLLEXPORT wxObjectInputStream;
39class WXDLLEXPORT wxObjectOutputStream;
40class WXDLLEXPORT wxHashTable;
41class WXDLLEXPORT wxObject_Serialize;
c801d85f 42
fbc535ff 43#if wxUSE_IOSTREAMH
3f4a0c5b
VZ
44 // N.B. BC++ doesn't have istream.h, ostream.h
45# include <iostream.h>
fbc535ff 46#else
3f4a0c5b
VZ
47# include <ostream>
48# if defined(__VISUALC__) || defined(__MWERKS__)
49 using namespace std;
50# endif
fbc535ff
JS
51#endif
52
c801d85f
KB
53/*
54 * Dynamic object system declarations
55 */
56
57typedef wxObject * (*wxObjectConstructorFn) (void);
58
c801d85f
KB
59class WXDLLEXPORT wxClassInfo
60{
61 public:
9d2f3c71 62 wxClassInfo(wxChar *cName, wxChar *baseName1, wxChar *baseName2, int sz, wxObjectConstructorFn fn);
c801d85f
KB
63
64 wxObject *CreateObject(void);
3f4a0c5b 65
9d2f3c71
OK
66 inline wxChar *GetClassName(void) const { return m_className; }
67 inline wxChar *GetBaseClassName1(void) const { return m_baseClassName1; }
68 inline wxChar *GetBaseClassName2(void) const { return m_baseClassName2; }
0c32066b
JS
69 inline wxClassInfo* GetBaseClass1() const { return m_baseInfo1; }
70 inline wxClassInfo* GetBaseClass2() const { return m_baseInfo2; }
71 inline int GetSize(void) const { return m_objectSize; }
72 inline wxObjectConstructorFn GetConstructor() const { return m_objectConstructor; }
856d2e52 73 static inline wxClassInfo* GetFirst() { return sm_first; }
0c32066b 74 inline wxClassInfo* GetNext() const { return m_next; }
8cb50e4b 75 bool IsKindOf(wxClassInfo *info) const;
c801d85f 76
9d2f3c71 77 static wxClassInfo *FindClass(wxChar *c);
0c32066b
JS
78
79 // Initializes parent pointers and hash table for fast searching.
c801d85f 80 static void InitializeClasses(void);
0c32066b
JS
81
82 // Cleans up hash table used for fast searching.
83 static void CleanUpClasses(void);
84
85public:
9d2f3c71
OK
86 wxChar* m_className;
87 wxChar* m_baseClassName1;
88 wxChar* m_baseClassName2;
0c32066b
JS
89 int m_objectSize;
90 wxObjectConstructorFn m_objectConstructor;
3f4a0c5b 91
0c32066b
JS
92 // Pointers to base wxClassInfos: set in InitializeClasses
93 // called from wx_main.cc
94 wxClassInfo* m_baseInfo1;
95 wxClassInfo* m_baseInfo2;
96
97 static wxClassInfo* sm_first;
98 wxClassInfo* m_next;
99
100 static wxHashTable* sm_classTable;
c801d85f
KB
101};
102
9d2f3c71 103WXDLLEXPORT wxObject* wxCreateDynamicObject(const wxChar *name);
c801d85f 104
9838df2c 105#if wxUSE_SERIAL
184b5d99 106WXDLLEXPORT wxObject* wxCreateStoredObject( wxInputStream& stream );
c801d85f
KB
107#endif
108
109#define DECLARE_DYNAMIC_CLASS(name) \
110 public:\
0c32066b 111 static wxClassInfo sm_class##name;\
8cb50e4b 112 wxClassInfo *GetClassInfo() const \
0c32066b 113 { return &name::sm_class##name; }
c801d85f
KB
114
115#define DECLARE_ABSTRACT_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
116#define DECLARE_CLASS(name) DECLARE_DYNAMIC_CLASS(name)
117
c801d85f
KB
118//////
119////// for concrete classes
120//////
121
122// Single inheritance with one base class
123#define IMPLEMENT_DYNAMIC_CLASS(name, basename) \
124wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name(void) \
125 { return new name; }\
9d2f3c71 126 wxClassInfo name::sm_class##name((wxChar *) _T(#name), (wxChar *) _T(#basename), (wxChar *) NULL, (int) sizeof(name), (wxObjectConstructorFn) wxConstructorFor##name);
c801d85f
KB
127
128// Multiple inheritance with two base classes
129#define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) \
130wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name(void) \
131 { return new name; }\
9d2f3c71 132 wxClassInfo name::sm_class##name((wxChar *) _T(#name), (wxChar *) _T(#basename1), (wxChar *) _T(#basename2), (int) sizeof(name), (wxObjectConstructorFn) wxConstructorFor##name);
c801d85f 133
c801d85f
KB
134//////
135////// for abstract classes
136//////
137
138// Single inheritance with one base class
139#define IMPLEMENT_ABSTRACT_CLASS(name, basename) \
9d2f3c71
OK
140 wxClassInfo name::sm_class##name((wxChar *) _T(#name), (wxChar *) _T(#basename), \
141 (wxChar *) NULL, (int) sizeof(name), (wxObjectConstructorFn) NULL);
c801d85f
KB
142
143// Multiple inheritance with two base classes
144#define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) \
9d2f3c71
OK
145 wxClassInfo name::sm_class##name((wxChar *) _T(#name), (wxChar *) _T(#basename1), \
146 (wxChar *) _T(#basename2), (int) sizeof(name), (wxObjectConstructorFn) NULL);
c801d85f
KB
147
148#define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
149#define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
150
0c32066b 151#define CLASSINFO(name) (&name::sm_class##name)
c801d85f
KB
152
153#else
154
155// No dynamic class system: so stub out the macros
156#define DECLARE_DYNAMIC_CLASS(name)
157#define DECLARE_ABSTRACT_CLASS(name)
158#define DECLARE_CLASS(name)
159#define IMPLEMENT_DYNAMIC_CLASS(name, basename)
160#define IMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2)
161#define IMPLEMENT_ABSTRACT_CLASS(name, basename)
162#define IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2)
163#define IMPLEMENT_CLASS IMPLEMENT_ABSTRACT_CLASS
164#define IMPLEMENT_CLASS2 IMPLEMENT_ABSTRACT_CLASS2
165
166#endif
167
3013b6f4
JS
168#define wxIS_KIND_OF(obj, className) obj->IsKindOf(&className::sm_class##className)
169
170// Just seems a bit nicer-looking (pretend it's not a macro)
171#define wxIsKindOf(obj, className) obj->IsKindOf(&className::sm_class##className)
c801d85f
KB
172
173// Unfortunately Borland seems to need this include.
174#ifdef __BORLANDC__
47d67540 175#if wxUSE_IOSTREAMH
c801d85f
KB
176#include <iostream.h>
177#else
178#include <iostream>
179#endif
180#endif
181
182class WXDLLEXPORT wxObjectRefData;
183
184class WXDLLEXPORT wxObject
185{
186 public:
187
188 // This is equivalent to using the macro DECLARE_ABSTRACT_CLASS
0c32066b 189 static wxClassInfo sm_classwxObject;
c801d85f
KB
190
191 wxObject(void);
192 virtual ~wxObject(void);
193
8cb50e4b 194 virtual wxClassInfo *GetClassInfo(void) const { return &sm_classwxObject; }
aadbdf11
GL
195 wxObject *Clone(void) const;
196 virtual void CopyObject(wxObject& object_dest) const;
c801d85f 197
8cb50e4b 198 bool IsKindOf(wxClassInfo *info) const;
c801d85f 199
ea57084d 200#if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
4de6207a 201 void * operator new (size_t size, wxChar * fileName = NULL, int lineNum = 0);
c801d85f 202 void operator delete (void * buf);
27198be4 203
76626af2 204// VC++ 6.0
3f4a0c5b 205#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
76626af2
JS
206 void operator delete(void *buf, char*, int);
207#endif
208
3f4a0c5b 209 // Causes problems for VC++
921b3c17 210#if wxUSE_ARRAY_MEMORY_OPERATORS && !defined(__VISUALC__) && !defined( __MWERKS__)
4de6207a 211 void * operator new[] (size_t size, wxChar * fileName = NULL, int lineNum = 0);
c801d85f
KB
212 void operator delete[] (void * buf);
213#endif
214
27198be4 215#ifdef __MWERKS__
4de6207a 216 void * operator new[] (size_t size, wxChar * fileName , int lineNum = 0);
27198be4
SC
217 void operator delete[] (void * buf);
218#endif
219
3f4a0c5b 220#endif // Debug & memory tracing
c801d85f 221
ea57084d 222#if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
c801d85f
KB
223 virtual void Dump(ostream& str);
224#endif
225
9838df2c 226#if wxUSE_SERIAL
7a4b9130
GL
227 virtual void StoreObject( wxObjectOutputStream &stream );
228 virtual void LoadObject( wxObjectInputStream &stream );
c801d85f
KB
229#endif
230
231 // make a 'clone' of the object
232 void Ref(const wxObject& clone);
233
234 // destroy a reference
235 void UnRef(void);
236
237 inline wxObjectRefData *GetRefData(void) const { return m_refData; }
238 inline void SetRefData(wxObjectRefData *data) { m_refData = data; }
239
240protected:
0c32066b 241 wxObjectRefData* m_refData;
9838df2c 242#if wxUSE_SERIAL
0c32066b 243 wxObject_Serialize* m_serialObj;
f4a8c29f 244#endif
c801d85f
KB
245};
246
247/*
248 * wxObjectData
249 */
250
251class WXDLLEXPORT wxObjectRefData {
252
253 friend class wxObject;
254
255public:
256 wxObjectRefData(void);
257 virtual ~wxObjectRefData(void);
258
259 inline int GetRefCount(void) const { return m_count; }
260private:
261 int m_count;
262};
263
7fe7d506
JS
264#ifdef __WXDEBUG__
265#ifndef WXDEBUG_NEW
4de6207a 266#define WXDEBUG_NEW new(__TFILE__,__LINE__)
7fe7d506
JS
267#endif
268#else
269#define WXDEBUG_NEW new
270#endif
271
272// Redefine new to be the debugging version. This doesn't
273// work with all compilers, in which case you need to
274// use WXDEBUG_NEW explicitly if you wish to use the debugging version.
275
276#if defined(__WXDEBUG__) && wxUSE_GLOBAL_MEMORY_OPERATORS && wxUSE_DEBUG_NEW_ALWAYS
4de6207a 277#define new new(__TFILE__,__LINE__)
c801d85f
KB
278#endif
279
280#endif
34138703 281 // _WX_OBJECTH__
c801d85f
KB
282
283