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