]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/noteevt.tex
remove _ from labels
[wxWidgets.git] / docs / latex / wx / noteevt.tex
... / ...
CommitLineData
1\section{\class{wxNotebookEvent}}\label{wxnotebookevent}
2
3This class represents the events generated by a notebook control: currently,
4there are two of them. The PAGE\_CHANGING event is sent before the current
5page is changed. It allows the program to examine the current page (which
6can be retrieved with
7\helpref{GetOldSelection()}{wxnotebookeventgetoldselection}) and to veto the page
8change by calling \helpref{Veto()}{wxnotifyeventveto} if, for example, the
9current values in the controls of the old page are invalid.
10
11The second event - PAGE\_CHANGED - is sent after the page has been changed and
12the program cannot veto it any more, it just informs it about the page change.
13
14To summarize, if the program is interested in validating the page values
15before allowing the user to change it, it should process the PAGE\_CHANGING
16event, otherwise PAGE\_CHANGED is probably enough. In any case, it is probably
17unnecessary to process both events at once.
18
19\wxheading{Derived from}
20
21\helpref{wxNotifyEvent}{wxnotifyevent}\\
22\helpref{wxCommandEvent}{wxcommandevent}\\
23\helpref{wxEvent}{wxevent}\\
24\helpref{wxObject}{wxobject}
25
26\wxheading{Include files}
27
28<wx/notebook.h>
29
30\wxheading{Library}
31
32\helpref{wxCore}{librarieslist}
33
34\input noteevt.inc
35
36\wxheading{See also}
37
38\helpref{wxNotebook}{wxnotebook}
39
40\latexignore{\rtfignore{\wxheading{Members}}}
41
42
43\membersection{wxNotebookEvent::wxNotebookEvent}\label{wxnotebookeventconstr}
44
45\func{}{wxNotebookEvent}{\param{wxEventType}{ eventType = wxEVT\_NULL},
46 \param{int}{ id = 0}, \param{int}{ sel = $-1$}, \param{int}{ oldSel = $-1$}}
47
48Constructor (used internally by wxWidgets only).
49
50
51\membersection{wxNotebookEvent::GetOldSelection}\label{wxnotebookeventgetoldselection}
52
53\constfunc{int}{GetOldSelection}{\void}
54
55Returns the page that was selected before the change, $-1$ if none was selected.
56
57
58\membersection{wxNotebookEvent::GetSelection}\label{wxnotebookeventgetselection}
59
60\constfunc{int}{GetSelection}{\void}
61
62Returns the currently selected page, or $-1$ if none was selected.
63
64{\bf NB:} under Windows, GetSelection() will return the same value as\rtfsp
65\helpref{GetOldSelection()}{wxnotebookeventgetoldselection} when called from
66{\tt EVT\_NOTEBOOK\_PAGE\_CHANGING} handler and not the page which is going to
67be selected. Also note that the values of selection and old selection returned
68for an event generated in response to a call to
69\helpref{wxNotebook::SetSelection}{wxnotebooksetselection} shouldn't be trusted
70as they are currently inconsistent under different platforms (but in this case
71you presumably don't need them anyhow as you already have the corresponding
72information).
73
74
75\membersection{wxNotebookEvent::SetOldSelection}\label{wxnotebookeventsetoldselection}
76
77\func{void}{SetOldSelection}{\param{int}{ page}}
78
79Sets the id of the page selected before the change.
80
81
82\membersection{wxNotebookEvent::SetSelection}\label{wxnotebookeventsetselection}
83
84\func{void}{SetSelection}{\param{int}{ page}}
85
86Sets the selection member variable.
87
88\wxheading{See also}
89
90\helpref{wxNotebookEvent::GetSelection}{wxnotebookeventgetselection}
91
92