noteevt.tex

来自「wxWidgets 是一个跨平台的 GUI 框架。它给开发人员提供了统一的接口」· TEX 代码 · 共 89 行

TEX
89
字号
\section{\class{wxNotebookEvent}}\label{wxnotebookevent}This class represents the events generated by a notebook control: currently,there are two of them. The PAGE\_CHANGING event is sent before the currentpage is changed. It allows the program to examine the current page (whichcan be retrieved with \helpref{GetOldSelection()}{wxnotebookeventgetoldselection}) and to veto the pagechange by calling \helpref{Veto()}{wxnotifyeventveto} if, for example, thecurrent values in the controls of the old page are invalid.The second event - PAGE\_CHANGED - is sent after the page has been changed andthe program cannot veto it any more, it just informs it about the page change.To summarize, if the program is interested in validating the page valuesbefore allowing the user to change it, it should process the PAGE\_CHANGINGevent, otherwise PAGE\_CHANGED is probably enough. In any case, it is probablyunnecessary to process both events at once.\wxheading{Derived from}\helpref{wxNotifyEvent}{wxnotifyevent}\\\helpref{wxCommandEvent}{wxcommandevent}\\\helpref{wxEvent}{wxevent}\\\helpref{wxObject}{wxobject}\wxheading{Include files}<wx/notebook.h>\input noteevt.inc\wxheading{See also}\helpref{wxNotebook}{wxnotebook}\latexignore{\rtfignore{\wxheading{Members}}}\membersection{wxNotebookEvent::wxNotebookEvent}\label{wxnotebookeventconstr}\func{}{wxNotebookEvent}{\param{wxEventType}{ eventType = wxEVT\_NULL}, \param{int}{ id = 0}, \param{int}{ sel = $-1$}, \param{int}{ oldSel = $-1$}}Constructor (used internally by wxWidgets only).\membersection{wxNotebookEvent::GetOldSelection}\label{wxnotebookeventgetoldselection}\constfunc{int}{GetOldSelection}{\void}Returns the page that was selected before the change, $-1$ if none was selected.\membersection{wxNotebookEvent::GetSelection}\label{wxnotebookeventgetselection}\constfunc{int}{GetSelection}{\void}Returns the currently selected page, or $-1$ if none was selected.{\bf NB:} under Windows, GetSelection() will return the same value as\rtfsp\helpref{GetOldSelection()}{wxnotebookeventgetoldselection} when called from{\tt EVT\_NOTEBOOK\_PAGE\_CHANGING} handler and not the page which is going tobe selected. Also note that the values of selection and old selection returnedfor an event generated in response to a call to \helpref{wxNotebook::SetSelection}{wxnotebooksetselection} shouldn't be trustedas they are currently inconsistent under different platforms (but in this caseyou presumably don't need them anyhow as you already have the correspondinginformation).\membersection{wxNotebookEvent::SetOldSelection}\label{wxnotebookeventsetoldselection}\func{void}{SetOldSelection}{\param{int}{ page}}Sets the id of the page selected before the change.\membersection{wxNotebookEvent::SetSelection}\label{wxnotebookeventsetselection}\func{void}{SetSelection}{\param{int}{ page}}Sets the selection member variable.\wxheading{See also}\helpref{wxNotebookEvent::GetSelection}{wxnotebookeventgetselection}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?