]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/object.tex
Added wxDataViewModel::GetChildren() (removed GetSibling() and GetFirstChild())
[wxWidgets.git] / docs / latex / wx / object.tex
CommitLineData
a660d684
KB
1\section{\class{wxObject}}\label{wxobject}
2
ef36734a 3This is the root class of many of the wxWidgets classes.
a660d684
KB
4It declares a virtual destructor which ensures that
5destructors get called for all derived class objects where necessary.
6
7wxObject is the hub of a dynamic object creation
8scheme, enabling a program to create instances of a class only knowing
9its string class name, and to query the class hierarchy.
10
11The class contains optional debugging versions
12of {\bf new} and {\bf delete}, which can help trace memory allocation
13and deallocation problems.
14
a91225b2
RR
15wxObject can be used to implement \helpref{reference counted}{trefcount} objects,
16such as wxPen, wxBitmap and others (see \helpref{this list}{refcountlist}).
a660d684
KB
17
18\wxheading{See also}
19
20\helpref{wxClassInfo}{wxclassinfo}, \helpref{Debugging overview}{debuggingoverview},\rtfsp
21\helpref{wxObjectRefData}{wxobjectrefdata}
22
991ad6cd
VZ
23\wxheading{Derived from}
24
25No base class
26
27\wxheading{Include files}
28
29<wx/object.h>
30
a7af285d
VZ
31\wxheading{Library}
32
33\helpref{wxBase}{librarieslist}
34
a660d684
KB
35\latexignore{\rtfignore{\wxheading{Members}}}
36
dcbd177f 37\membersection{wxObject::wxObject}\label{wxobjectctor}
a660d684
KB
38
39\func{}{wxObject}{\void}
40
eb199c51
VZ
41\func{}{wxObject}{\param{const wxObject\&}{ other}}
42
43Default and copy constructors.
a660d684 44
dcbd177f 45\membersection{wxObject::\destruct{wxObject}}\label{wxobjectdtor}
a660d684
KB
46
47\func{}{wxObject}{\void}
48
49Destructor. Performs dereferencing, for those objects
50that use reference counting.
51
52\membersection{wxObject::m\_refData}\label{wxobjectmrefdata}
53
54\member{wxObjectRefData* }{m\_refData}
55
56Pointer to an object which is the object's reference-counted data.
57
58\wxheading{See also}
59
60\helpref{wxObject::Ref}{wxobjectref}, \helpref{wxObject::UnRef}{wxobjectunref},\rtfsp
61\helpref{wxObject::SetRefData}{wxobjectsetrefdata},\rtfsp
62\helpref{wxObject::GetRefData}{wxobjectgetrefdata},\rtfsp
63\helpref{wxObjectRefData}{wxobjectrefdata}
64
65\membersection{wxObject::Dump}\label{wxobjectdump}
66
67\func{void}{Dump}{\param{ostream\&}{ stream}}
68
eb199c51 69A virtual function that may be redefined by derived classes to allow dumping of
a660d684
KB
70memory states.
71
eb199c51
VZ
72This function is only defined in debug build and doesn't exist at all if
73{\tt \_\_WXDEBUG\_\_} is not defined.
74
a660d684
KB
75\wxheading{Parameters}
76
77\docparam{stream}{Stream on which to output dump information.}
78
79\wxheading{Remarks}
80
fc2171bd 81Currently wxWidgets does not define Dump for derived classes, but
a660d684 82programmers may wish to use it for their own applications. Be sure to
eb199c51
VZ
83call the Dump member of the class's base class to allow all information to be
84dumped.
a660d684 85
eb199c51
VZ
86The implementation of this function in wxObject just writes the class name of
87the object.
a660d684
KB
88
89\membersection{wxObject::GetClassInfo}\label{wxobjectgetclassinfo}
90
91\func{wxClassInfo *}{GetClassInfo}{\void}
92
93This virtual function is redefined for every class that requires run-time
94type information, when using DECLARE\_CLASS macros.
95
96\membersection{wxObject::GetRefData}\label{wxobjectgetrefdata}
97
98\constfunc{wxObjectRefData*}{GetRefData}{\void}
99
100Returns the {\bf m\_refData} pointer.
101
102\wxheading{See also}
103
104\helpref{wxObject::Ref}{wxobjectref}, \helpref{wxObject::UnRef}{wxobjectunref}, \helpref{wxObject::m\_refData}{wxobjectmrefdata},\rtfsp
105\helpref{wxObject::SetRefData}{wxobjectsetrefdata},\rtfsp
106\helpref{wxObjectRefData}{wxobjectrefdata}
107
108\membersection{wxObject::IsKindOf}\label{wxobjectiskindof}
109
110\func{bool}{IsKindOf}{\param{wxClassInfo *}{info}}
111
112Determines whether this class is a subclass of (or the same class as)
113the given class.
114
115\wxheading{Parameters}
116
117\docparam{info}{A pointer to a class information object, which may be obtained
118by using the CLASSINFO macro.}
119
120\wxheading{Return value}
121
cc81d32f 122true if the class represented by {\it info} is the same class as
a660d684
KB
123this one or is derived from it.
124
125\wxheading{Example}
126
127\begin{verbatim}
128 bool tmp = obj->IsKindOf(CLASSINFO(wxFrame));
129\end{verbatim}
130
a3ab1c18 131\membersection{wxObject::IsSameAs}\label{wxobjectissameas}
55ccdb93 132
a3ab1c18 133\func{bool}{IsSameAs}{\param{const wxObject\& }{ obj}}
55ccdb93 134
a3ab1c18
VZ
135Returns \true if this object has the same data pointer as \arg{obj}. Notice
136that \true is returned if the data pointers are \NULL in both objects.
137
138This function only does a \emph{shallow} comparison, i.e. it doesn't compare
139the objects pointed to by the data pointers of these objects.
55ccdb93 140
a660d684
KB
141\membersection{wxObject::Ref}\label{wxobjectref}
142
143\func{void}{Ref}{\param{const wxObject\& }{clone}}
144
145Makes this object refer to the data in {\it clone}.
146
147\wxheading{Parameters}
148
149\docparam{clone}{The object to `clone'.}
150
151\wxheading{Remarks}
152
153First this function calls \helpref{wxObject::UnRef}{wxobjectunref} on itself
154to decrement (and perhaps free) the data it is currently referring to.
155
156It then sets its own m\_refData to point to that of {\it clone}, and increments the reference count
157inside the data.
158
159\wxheading{See also}
160
161\helpref{wxObject::UnRef}{wxobjectunref}, \helpref{wxObject::m\_refData}{wxobjectmrefdata},\rtfsp
162\helpref{wxObject::SetRefData}{wxobjectsetrefdata}, \helpref{wxObject::GetRefData}{wxobjectgetrefdata},\rtfsp
163\helpref{wxObjectRefData}{wxobjectrefdata}
164
165\membersection{wxObject::SetRefData}\label{wxobjectsetrefdata}
166
167\func{void}{SetRefData}{\param{wxObjectRefData*}{ data}}
168
169Sets the {\bf m\_refData} pointer.
170
171\wxheading{See also}
172
173\helpref{wxObject::Ref}{wxobjectref}, \helpref{wxObject::UnRef}{wxobjectunref}, \helpref{wxObject::m\_refData}{wxobjectmrefdata},\rtfsp
174\helpref{wxObject::GetRefData}{wxobjectgetrefdata},\rtfsp
175\helpref{wxObjectRefData}{wxobjectrefdata}
176
177\membersection{wxObject::UnRef}\label{wxobjectunref}
178
179\func{void}{UnRef}{\void}
180
181Decrements the reference count in the associated data, and if it is zero, deletes the data.
182The {\bf m\_refData} member is set to NULL.
183
184\wxheading{See also}
185
186\helpref{wxObject::Ref}{wxobjectref}, \helpref{wxObject::m\_refData}{wxobjectmrefdata},\rtfsp
187\helpref{wxObject::SetRefData}{wxobjectsetrefdata}, \helpref{wxObject::GetRefData}{wxobjectgetrefdata},\rtfsp
188\helpref{wxObjectRefData}{wxobjectrefdata}
189
55ccdb93
VZ
190\membersection{wxObject::UnShare}\label{wxobjectunshare}
191
192\func{void}{UnShare}{\void}
193
194Ensure that this object's data is not shared with any other object.
195
196if we have no
197data, it is created using CreateRefData() below, if we have shared data
198it is copied using CloneRefData(), otherwise nothing is done.
199
200
a660d684
KB
201\membersection{wxObject::operator new}\label{wxobjectnew}
202
203\func{void *}{new}{\param{size\_t }{size}, \param{const wxString\& }{filename = NULL}, \param{int}{ lineNum = 0}}
204
205The {\it new} operator is defined for debugging versions of the library only, when
fe26d444 206the identifier \_\_WXDEBUG\_\_ is defined. It takes over memory allocation, allowing
a660d684
KB
207wxDebugContext operations.
208
209\membersection{wxObject::operator delete}\label{wxobjectdelete}
210
211\func{void}{delete}{\param{void }{buf}}
212
213The {\it delete} operator is defined for debugging versions of the library only, when
fe26d444 214the identifier \_\_WXDEBUG\_\_ is defined. It takes over memory deallocation, allowing
a660d684
KB
215wxDebugContext operations.
216
4a11340a
RR
217
218
219%% wxObjectRefData
220
a660d684
KB
221\section{\class{wxObjectRefData}}\label{wxobjectrefdata}
222
223This class is used to store reference-counted data. Derive classes from this to
224store your own data. When retrieving information from a {\bf wxObject}'s reference data,
225you will need to cast to your own derived class.
226
227\wxheading{Friends}
228
229\helpref{wxObject}{wxobject}
230
231\wxheading{See also}
232
233\helpref{wxObject}{wxobject}
ef36734a
RR
234\helpref{wxObjectDataPtr<T>}{wxobjectdataptr}
235\helpref{Reference counting}{trefcount}
a660d684 236
991ad6cd
VZ
237\wxheading{Derived from}
238
239No base class
240
241\wxheading{Include files}
242
243<wx/object.h>
244
ef36734a
RR
245\wxheading{Example}
246
247\begin{verbatim}
248
249// include file
250
251class MyCar: public wxObject
252{
253public:
254 MyCar() { }
255 MyCar( int price );
256
257 bool IsOk() const { return m_refData != NULL; }
258
259 bool operator == ( const MyCar& car ) const;
260 bool operator != (const MyCar& car) const { return !(*this == car); }
261
262 void SetPrice( int price );
263 int GetPrice() const;
264
265protected:
266 virtual wxObjectRefData *CreateRefData() const;
267 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
268
269 DECLARE_DYNAMIC_CLASS(MyCar)
270};
271
272
273// implementation
274
275class MyCarRefData: public wxObjectRefData
276{
277public:
278 MyCarRefData()
279 {
280 m_price = 0;
281 }
282
283 MyCarRefData( const MyCarRefData& data )
284 : wxObjectRefData()
285 {
286 m_price = data.m_price;
287 }
288
289 bool operator == (const MyCarRefData& data) const
290 {
291 return m_price == data.m_price;
292 }
293
294 int m_price;
295};
296
297
298#define M_CARDATA ((MyCarRefData *)m_refData)
299
300IMPLEMENT_DYNAMIC_CLASS(MyCar,wxObject)
301
302MyCar::MyCar( int price )
303{
304 m_refData = new MyCarRefData();
305 M_CARDATA->m_price = price;
306}
307
308wxObjectRefData *MyCar::CreateRefData() const
309{
310 return new MyCarRefData;
311}
312
313wxObjectRefData *MyCar::CloneRefData(const wxObjectRefData *data) const
314{
315 return new MyCarRefData(*(MyCarRefData *)data);
316}
317
318bool MyCar::operator == ( const MyCar& car ) const
319{
320 if (m_refData == car.m_refData) return true;
321
322 if (!m_refData || !car.m_refData) return false;
323
324 return ( *(MyCarRefData*)m_refData == *(MyCarRefData*)car.m_refData );
325}
326
327void MyCar::SetPrice( int price )
328{
329 UnShare();
330
331 M_CARDATA->m_price = price;
332}
333
334int MyCar::GetPrice() const
335{
336 wxCHECK_MSG( IsOk(), -1, "invalid car" );
337
338 return (M_CARDATA->m_price);
339}
340
341\end{verbatim}
342
a7af285d
VZ
343\wxheading{Library}
344
345\helpref{wxBase}{librarieslist}
346
a660d684
KB
347\latexignore{\rtfignore{\wxheading{Members}}}
348
a660d684 349
dcbd177f 350\membersection{wxObjectRefData::wxObjectRefData}\label{wxobjectrefdatactor}
a660d684
KB
351
352\func{}{wxObjectRefData}{\void}
353
4a11340a 354Default constructor. Initialises the internal reference count to 1.
a660d684 355
dcbd177f 356\membersection{wxObjectRefData::\destruct{wxObjectRefData}}\label{wxobjectrefdatadtor}
a660d684
KB
357
358\func{}{wxObjectRefData}{\void}
359
4a11340a
RR
360Destructor. It's declared {\tt protected} so that wxObjectRefData instances will never
361be destroyed directly but only as result of a \helpref{DecRef}{wxobjectrefdatadecref} call.
a660d684 362
a91225b2
RR
363\membersection{wxObjectRefData::GetRefCount}\label{wxobjectrefdatagetrefcount}
364
365\constfunc{int}{GetRefCount}{\void}
366
367Returns the reference count associated with this shared data.
4a11340a
RR
368When this goes to zero during a \helpref{DecRef}{wxobjectrefdatadecref} call, the object
369will auto-free itself.
370
371\membersection{wxObjectRefData::DecRef}\label{wxobjectrefdatadecref}
372
373\func{void}{DecRef}{\void}
374
375Decrements the reference count associated with this shared data and, if it reaches zero,
376destroys this instance of wxObjectRefData releasing its memory.
377
378Please note that after calling this function, the caller should absolutely avoid to use
379the pointer to this instance since it may not be valid anymore.
380
381\membersection{wxObjectRefData::IncRef}\label{wxobjectrefdataincref}
382
383\func{void}{IncRef}{\void}
384
385Increments the reference count associated with this shared data.
a660d684 386