1\section{\class{wxClassInfo}}\label{wxclassinfo}
2
3This class stores meta-information about classes. Instances of this class are
4not generally defined directly by an application, but indirectly through use
5of macros such as {\bf DECLARE\_DYNAMIC\_CLASS} and {\bf IMPLEMENT\_DYNAMIC\_CLASS}.
6
7\wxheading{Derived from}
8
9No parent class.
10
11\wxheading{Include files}
12
13<wx/object.h>
14
15\wxheading{See also}
16
17\helpref{Overview}{wxclassinfooverview}, \helpref{wxObject}{wxobject}
18
19\latexignore{\rtfignore{\wxheading{Members}}}
20
21\membersection{wxClassInfo::wxClassInfo}\label{wxclassinfoctor}
22
23\func{}{wxClassInfo}{\param{const wxChar * }{className}, \param{const wxClassInfo * }{baseClass1}, \param{const wxClassInfo * }{baseClass2},
24 \param{int}{ size}, \param{wxObjectConstructorFn }{fn}}
25
26Constructs a wxClassInfo object. The supplied macros implicitly construct objects of this
27class, so there is no need to create such objects explicitly in an application.
28
29\membersection{wxClassInfo::CreateObject}\label{wxclassinfocreateobject}
30
31\constfunc{wxObject*}{CreateObject}{\void}
32
33Creates an object of the appropriate kind. Returns NULL if the class has not been declared
34dynamically creatable (typically, it is an abstract class).
35
36\membersection{wxClassInfo::FindClass}\label{wxclassinfofindclass}
37
38\func{static wxClassInfo *}{FindClass}{\param{wxChar * }{name}}
39
40Finds the wxClassInfo object for a class of the given string name.
41
42\membersection{wxClassInfo::GetBaseClassName1}\label{wxclassinfogetbaseclassname1}
43
44\constfunc{wxChar *}{GetBaseClassName1}{\void}
45
46Returns the name of the first base class (NULL if none).
47
48\membersection{wxClassInfo::GetBaseClassName2}\label{wxclassinfogetbaseclassname2}
49
50\constfunc{wxChar *}{GetBaseClassName2}{\void}
51
52Returns the name of the second base class (NULL if none).
53
54\membersection{wxClassInfo::GetClassName}\label{wxclassinfogetclassname}
55
56\constfunc{wxChar *}{GetClassName}{\void}
57
58Returns the string form of the class name.
59
60\membersection{wxClassInfo::GetSize}\label{wxclassinfogetsize}
61
62\constfunc{int}{GetSize}{\void}
63
64Returns the size of the class.
65
66\membersection{wxClassInfo::InitializeClasses}\label{wxclassinfoinitializeclasses}
67
68\func{static void}{InitializeClasses}{\void}
69
70Initializes pointers in the wxClassInfo objects for fast execution
71of IsKindOf. Called in base wxWidgets library initialization.
72
73\membersection{wxClassInfo::IsDynamic}\label{wxclassinfoisdynamic}
74
75\constfunc{bool}{IsDynamic}{\void}
76
77Returns true if this class info can create objects of the associated class.
78
79\membersection{wxClassInfo::IsKindOf}\label{wxclassinfoiskindof}
80
81\func{bool}{IsKindOf}{\param{wxClassInfo* }{info}}
82
83Returns true if this class is a kind of (inherits from) the given class.
84
85
86