]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/node.tex
Fixes for documentation compilation
[wxWidgets.git] / docs / latex / wx / node.tex
CommitLineData
6e6110ee 1\section{\class{wxNodeBase}}\label{wxnode}
a660d684 2
6e6110ee
VZ
3A node structure used in linked lists (see \helpref{wxList}{wxlist}) and
4derived classes. You should never use wxNodeBase class directly because it
5works with untyped (void *) data and this is unsafe. Use wxNode-derived classes
f6bcfd97 6which are defined by WX\_DECLARE\_LIST and WX\_DEFINE\_LIST macros instead as
6e6110ee
VZ
7described in \helpref{wxList}{wxlist} documentation (see example there). wxNode
8is defined for compatibility as wxNodeBase containing "wxObject *" pointer, but
9usage of this class is deprecated.
a660d684
KB
10
11\wxheading{Derived from}
12
6e6110ee 13None.
a660d684 14
954b8ae6
JS
15\wxheading{Include files}
16
17<wx/list.h>
18
a660d684
KB
19\wxheading{See also}
20
21\helpref{wxList}{wxlist}, \helpref{wxHashTable}{wxhashtable}
22
23\latexignore{\rtfignore{\wxheading{Members}}}
24
6e6110ee 25\membersection{wxNodeBase::GetData}
a660d684 26
6e6110ee 27\func{void *}{Data}{\void}
a660d684 28
6e6110ee 29Retrieves the client data pointer associated with the node.
a660d684 30
6e6110ee 31\membersection{wxNodeBase::GetNext}
a660d684 32
6e6110ee 33\func{wxNodeBase *}{Next}{\void}
a660d684
KB
34
35Retrieves the next node (NULL if at end of list).
36
953704c1 37\membersection{wxNodeBase::GetPrevious}
a660d684 38
6e6110ee 39\func{wxNodeBase *}{GetPrevious}{\void}
a660d684
KB
40
41Retrieves the previous node (NULL if at start of list).
42
6e6110ee 43\membersection{wxNodeBase::SetData}
a660d684 44
6e6110ee 45\func{void}{SetData}{\param{void *}{data}}
a660d684
KB
46
47Sets the data associated with the node (usually the pointer will have been
48set when the node was created).
49
6e6110ee 50\membersection{wxNodeBase::IndexOf}
77c5eefb
VZ
51
52\func{int}{IndexOf}{\void}
53
54Returns the zero-based index of this node within the list. The return value
55will be NOT\_FOUND if the node has not been added to a list yet.
a660d684 56