]>
Commit | Line | Data |
---|---|---|
4acaa5e2 JS |
1 | \section{\class{wxWindowDestroyEvent}}\label{wxwindowdestroyevent} |
2 | ||
938ad768 MW |
3 | % Note: the original description is still here commented out in case those |
4 | % semantics are restored to this event. | |
5 | ||
6 | %This event is sent just before the actual window associated with a wxWindow object | |
7 | %is destroyed. Since it is derived from wxCommandEvent, the event propagates up | |
8 | %the window hierarchy. | |
9 | ||
10 | This event is sent from the wxWindow destructor wxWindow::~wxWindow() when a | |
11 | window is destroyed. | |
12 | ||
13 | When a class derived from wxWindow is destroyed its destructor will have | |
14 | already run by the time this event is sent. Therefore this event will not | |
15 | usually be received at all. | |
16 | ||
17 | To receive this event \helpref{wxEvtHandler::Connect}{wxevthandlerconnect} | |
18 | must be used (using an event table macro will not work). Since it is | |
19 | received after the destructor has run, an object should not handle its | |
20 | own wxWindowDestroyEvent, but it can be used to get notification of the | |
21 | destruction of another window. | |
4acaa5e2 JS |
22 | |
23 | \wxheading{Derived from} | |
24 | ||
25 | \helpref{wxCommandEvent}{wxevent}\\ | |
26 | \helpref{wxEvent}{wxevent}\\ | |
27 | \helpref{wxObject}{wxobject} | |
28 | ||
29 | \wxheading{Include files} | |
30 | ||
31 | <wx/event.h> | |
32 | ||
33 | \wxheading{Event table macros} | |
34 | ||
938ad768 MW |
35 | %To process a window destruction event, use this event handler macro to direct input to a member |
36 | %function that takes a wxWindowDestroyEvent argument. | |
37 | % | |
38 | %\twocolwidtha{7cm} | |
39 | %\begin{twocollist}\itemsep=0pt | |
40 | %\twocolitem{{\bf EVT\_WINDOW\_DESTROY(func)}}{Process a wxEVT\_DESTROY event.} | |
41 | %\end{twocollist}% | |
4acaa5e2 | 42 | |
938ad768 | 43 | It is not possible to receive this event using an event table macro. |
4acaa5e2 JS |
44 | |
45 | \wxheading{See also} | |
46 | ||
47 | \helpref{Event handling overview}{eventhandlingoverview},\rtfsp | |
48 | \helpref{wxWindowCreateEvent}{wxwindowcreateevent} | |
49 | ||
50 | \latexignore{\rtfignore{\wxheading{Members}}} | |
51 | ||
52 | \membersection{wxWindowDestroyEvent::wxWindowDestroyEvent}\label{wxwindowdestroyeventctor} | |
53 | ||
54 | \func{}{wxWindowDestroyEvent}{\param{wxWindow* }{win = NULL}} | |
55 | ||
56 | Constructor. | |
57 |