]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/closeevt.tex
use wxBORDER_NONE instead of wxNO_BORDER
[wxWidgets.git] / docs / latex / wx / closeevt.tex
... / ...
CommitLineData
1\section{\class{wxCloseEvent}}\label{wxcloseevent}
2
3This event class contains information about window and session close events.
4
5The handler function for EVT\_CLOSE is called when the user has tried to close a a frame
6or dialog box using the window manager (X) or system menu (Windows). It can
7also be invoked by the application itself programmatically, for example by
8calling the \helpref{wxWindow::Close}{wxwindowclose} function.
9
10You should check whether the application is forcing the deletion of the window
11using \helpref{wxCloseEvent::CanVeto}{wxcloseeventcanveto}. If this is {\tt false},
12you {\it must} destroy the window using \helpref{wxWindow::Destroy}{wxwindowdestroy}.
13If the return value is true, it is up to you whether you respond by destroying the window.
14
15If you don't destroy the window, you should call \helpref{wxCloseEvent::Veto}{wxcloseeventveto} to
16let the calling code know that you did not destroy the window. This allows the \helpref{wxWindow::Close}{wxwindowclose} function
17to return {\tt true} or {\tt false} depending on whether the close instruction was honoured or not.
18
19\wxheading{Derived from}
20
21\helpref{wxEvent}{wxevent}
22
23\wxheading{Include files}
24
25<wx/event.h>
26
27\wxheading{Library}
28
29\helpref{wxCore}{librarieslist}
30
31\wxheading{Event table macros}
32
33To process a close event, use these event handler macros to direct input to member
34functions that take a wxCloseEvent argument.
35
36\twocolwidtha{7cm}
37\begin{twocollist}\itemsep=0pt
38\twocolitem{{\bf EVT\_CLOSE(func)}}{Process a close event, supplying the member function. This
39event applies to wxFrame and wxDialog classes.}
40\twocolitem{{\bf EVT\_QUERY\_END\_SESSION(func)}}{Process a query end session event, supplying the member function.
41This event applies to wxApp only.}
42\twocolitem{{\bf EVT\_END\_SESSION(func)}}{Process an end session event, supplying the member function.
43This event applies to wxApp only.}
44\end{twocollist}%
45
46\wxheading{See also}
47
48\helpref{wxWindow::Close}{wxwindowclose},\rtfsp
49%% GD: OnXXX functions are not documented
50%%\helpref{wxApp::OnEndSession}{wxapponendsession},\rtfsp
51\helpref{Window deletion overview}{windowdeletionoverview}
52
53\latexignore{\rtfignore{\wxheading{Members}}}
54
55
56\membersection{wxCloseEvent::wxCloseEvent}\label{wxcloseeventctor}
57
58\func{}{wxCloseEvent}{\param{WXTYPE}{ commandEventType = 0}, \param{int}{ id = 0}}
59
60Constructor.
61
62
63\membersection{wxCloseEvent::CanVeto}\label{wxcloseeventcanveto}
64
65\func{bool}{CanVeto}{\void}
66
67Returns true if you can veto a system shutdown or a window close event.
68Vetoing a window close event is not possible if the calling code wishes to
69force the application to exit, and so this function must be called to check this.
70
71
72\membersection{wxCloseEvent::GetLoggingOff}\label{wxcloseeventgetloggingoff}
73
74\constfunc{bool}{GetLoggingOff}{\void}
75
76Returns true if the user is just logging off or false if the system is
77shutting down. This method can only be called for end session and query end
78session events, it doesn't make sense for close window event.
79
80
81\membersection{wxCloseEvent::SetCanVeto}\label{wxcloseeventsetcanveto}
82
83\func{void}{SetCanVeto}{\param{bool}{ canVeto}}
84
85Sets the 'can veto' flag.
86
87
88\membersection{wxCloseEvent::SetForce}\label{wxcloseeventsetforce}
89
90\constfunc{void}{SetForce}{\param{bool}{ force}}
91
92Sets the 'force' flag.
93
94
95\membersection{wxCloseEvent::SetLoggingOff}\label{wxcloseeventsetloggingoff}
96
97\constfunc{void}{SetLoggingOff}{\param{bool}{ loggingOff}}
98
99Sets the 'logging off' flag.
100
101
102\membersection{wxCloseEvent::Veto}\label{wxcloseeventveto}
103
104\func{void}{Veto}{\param{bool}{ veto = true}}
105
106Call this from your event handler to veto a system shutdown or to signal
107to the calling application that a window close did not happen.
108
109You can only veto a shutdown if \helpref{wxCloseEvent::CanVeto}{wxcloseeventcanveto} returns
110true.
111
112