]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/clasinfo.tex
enable verbose messages by default in debug builds
[wxWidgets.git] / docs / latex / wx / clasinfo.tex
CommitLineData
a660d684
KB
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{See also}
12
2bb0cd28 13\helpref{Overview}{wxclassinfooverview}, \helpref{wxObject}{wxobject}
a660d684
KB
14
15\latexignore{\rtfignore{\wxheading{Members}}}
16
17\membersection{wxClassInfo::wxClassInfo}\label{wxclassinfoconstr}
18
19\func{}{wxClassInfo}{\param{char* }{className}, \param{char* }{baseClass1}, \param{char* }{baseClass2},
20 \param{int}{ size}, \param{wxObjectConstructorFn }{fn}}
21
22Constructs a wxClassInfo object. The supplied macros implicitly construct objects of this
23class, so there is no need to create such objects explicitly in an application.
24
25\membersection{wxClassInfo::CreateObject}
26
27\func{wxObject*}{CreateObject}{\void}
28
29Creates an object of the appropriate kind. Returns NULL if the class has not been declared
30dynamically createable (typically, it's an abstract class).
31
32\membersection{wxClassInfo::FindClass}
33
34\func{static wxClassInfo *}{FindClass}{\param{char* }{name}}
35
36Finds the wxClassInfo object for a class of the given string name.
37
38\membersection{wxClassInfo::GetBaseClassName1}
39
40\constfunc{char*}{GetBaseClassName1}{\void}
41
42Returns the name of the first base class (NULL if none).
43
44\membersection{wxClassInfo::GetBaseClassName2}
45
46\constfunc{char*}{GetBaseClassName2}{\void}
47
48Returns the name of the second base class (NULL if none).
49
50\membersection{wxClassInfo::GetClassName}
51
52\constfunc{char *}{GetClassName}{\void}
53
54Returns the string form of the class name.
55
56\membersection{wxClassInfo::GetSize}
57
58\constfunc{int}{GetSize}{\void}
59
60Returns the size of the class.
61
62\membersection{wxClassInfo::InitializeClasses}
63
64\func{static void}{InitializeClasses}{\void}
65
66Initializes pointers in the wxClassInfo objects for fast execution
67of IsKindOf. Called in base wxWindows library initialization.
68
69\membersection{wxClassInfo::IsKindOf}\label{wxclassinfoiskindof}
70
71\func{bool}{IsKindOf}{\param{wxClassInfo* }{info}}
72
73Returns TRUE if this class is a kind of (inherits from) the given class.
74
75