58 lines
1.5 KiB
TeX
58 lines
1.5 KiB
TeX
|
\section{\class{wxCloseEvent}}\label{wxcloseevent}
|
||
|
|
||
|
This event class contains information about window and session close events.
|
||
|
|
||
|
\wxheading{Derived from}
|
||
|
|
||
|
\helpref{wxEvent}{wxevent}
|
||
|
|
||
|
\wxheading{Event table macros}
|
||
|
|
||
|
To process a close event, use these event handler macros to direct input to member
|
||
|
functions that take a wxCloseEvent argument.
|
||
|
|
||
|
\twocolwidtha{7cm}
|
||
|
\begin{twocollist}\itemsep=0pt
|
||
|
\twocolitem{{\bf EVT\_CLOSE(func)}}{Process a close event, supplying the member function.}
|
||
|
\end{twocollist}%
|
||
|
|
||
|
\wxheading{See also}
|
||
|
|
||
|
\helpref{wxWindow::OnCloseWindow}{wxwindowonclosewindow},\rtfsp
|
||
|
\helpref{wxWindow::Close}{wxwindowclose},\rtfsp
|
||
|
\helpref{Window deletion overview}{windowdeletionoverview}
|
||
|
|
||
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
||
|
|
||
|
\membersection{wxCloseEvent::wxCloseEvent}
|
||
|
|
||
|
\func{}{wxCloseEvent}{\param{WXTYPE}{ commandEventType = 0}, \param{int}{ id = 0}}
|
||
|
|
||
|
Constructor.
|
||
|
|
||
|
\membersection{wxCloseEvent::GetLoggingOff}\label{wxcloseeventgetloggingoff}
|
||
|
|
||
|
\constfunc{bool}{GetLoggingOff}{\void}
|
||
|
|
||
|
Returns TRUE if the user is logging off.
|
||
|
|
||
|
\membersection{wxCloseEvent::GetSessionEnding}\label{wxcloseeventgetsessionending}
|
||
|
|
||
|
\constfunc{bool}{GetSessionEnding}{\void}
|
||
|
|
||
|
Returns TRUE if the session is ending.
|
||
|
|
||
|
\membersection{wxCloseEvent::GetForce}\label{wxcloseeventgetforce}
|
||
|
|
||
|
\constfunc{void}{GetForce}{\void}
|
||
|
|
||
|
Returns TRUE if the application wishes to force the window to close.
|
||
|
|
||
|
\membersection{wxCloseEvent::Veto}\label{wxcloseeventveto}
|
||
|
|
||
|
\func{void}{Veto}{\void}
|
||
|
|
||
|
Call this from your event handler to veto a system shutdown.
|
||
|
|
||
|
|