]>
Commit | Line | Data |
---|---|---|
25b5adb4 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: eventhandling.h | |
3 | // Purpose: topic overview | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | ||
11 | @page overview_events Events and Event Handling | |
12 | ||
13 | Related classes: wxEvtHandler, wxWindow, wxEvent | |
14 | ||
15 | @li @ref overview_events_introduction | |
16 | @li @ref overview_events_eventhandling | |
17 | @li @ref overview_events_processing | |
18 | @li @ref overview_events_custom | |
19 | @li @ref overview_events_misc | |
20 | ||
21 | ||
22 | <hr> | |
23 | ||
24 | ||
25 | @section overview_events_introduction Introduction to Events | |
26 | ||
27 | Like with all the other GUI frameworks, the control of flow in wxWidgets | |
28 | applications is event-based: the program normally performs most of its actions | |
29 | in response to the events generated by the user. These events can be triggered | |
30 | by using the input devices (such as keyboard, mouse, joystick) directly or, | |
31 | more commonly, by a standard control which synthesizes such input events into | |
32 | higher level events: for example, a wxButton can generate a click event when | |
33 | the user presses the left mouse button on it and then releases it without | |
34 | pressing @c Esc in the meanwhile. There are also events which don't directly | |
35 | correspond to the user actions, such as wxTimerEvent or wxSocketEvent. | |
36 | ||
37 | But in all cases wxWidgets represents these events in a uniform way and allows | |
38 | you to handle them in the same way wherever they originate from. And while the | |
39 | events are normally generated by wxWidgets itself, you can also do this, which | |
40 | is especially useful when using custom events (see @ref overview_events_custom). | |
41 | ||
42 | To be more precise, each event is described by: | |
43 | - <em>Event type</em>: this is simply a value of type wxEventType which | |
44 | uniquely identifies the type of the event. For example, clicking on a button, | |
45 | selecting an item from a list box and pressing a key on the keyboard all | |
46 | generate events with different event types. | |
47 | - <em>Event class</em> carried by the event: each event has some information | |
48 | associated with it and this data is represented by an object of a class | |
49 | derived from wxEvent. Events of different types can use the same event class, | |
50 | for example both button click and listbox selection events use wxCommandEvent | |
51 | class (as do all the other simple control events), but the key press event | |
52 | uses wxKeyEvent as the information associated with it is different. | |
53 | - <em>Event source</em>: wxEvent stores the object which generated the event | |
54 | and, for windows, its identifier (see @ref overview_events_winid). As it is | |
55 | common to have more than one object generating events of the same type (e.g. a | |
56 | typical window contains several buttons, all generating the same button click | |
57 | event), checking the event source object or its id allows to distinguish | |
58 | between them. | |
59 | ||
60 | ||
61 | @section overview_events_eventhandling Event Handling | |
62 | ||
63 | There are two principal ways to handle events in wxWidgets. One of them uses | |
04a7eed1 | 64 | <em>event table</em> macros and allows you to define the binding between events |
25b5adb4 | 65 | and their handlers only statically, i.e., during program compilation. The other |
04a7eed1 VZ |
66 | one uses wxEvtHandler::Bind<>() call and can be used to bind and |
67 | unbind, the handlers dynamically, i.e. during run-time depending on some | |
68 | conditions. It also allows the direct binding of events to: | |
69 | @li A handler method in another object. | |
70 | @li An ordinary function like a static method or a global function. | |
71 | @li An arbitrary functor like boost::function<>. | |
72 | ||
f3d261e7 VZ |
73 | The static event tables can only handle events in the object where they are |
74 | defined so using Bind<>() is more flexible than using the event tables. On the | |
75 | other hand, event tables are more succinct and centralize all event handler | |
76 | bindings in one place. You can either choose a single approach that you find | |
77 | preferable or freely combine both methods in your program in different classes | |
78 | or even in one and the same class, although this is probably sufficiently | |
79 | confusing to be a bad idea. | |
80 | ||
81 | Also notice that most of the existing wxWidgets tutorials and discussions use | |
82 | the event tables because they historically preceded the apparition of dynamic | |
83 | event handling in wxWidgets. But this absolutely doesn't mean that using the | |
84 | event tables is the preferred way: handling events dynamically is better in | |
85 | several aspects and you should strongly consider doing it if you are just | |
86 | starting with wxWidgets. On the other hand, you still need to know about the | |
87 | event tables if only because you are going to see them in many samples and | |
88 | examples. | |
89 | ||
90 | So before you make the choice between static event tables and dynamically | |
91 | connecting the event handlers, let us discuss these two ways in more detail. In | |
92 | the next section we provide a short introduction to handling the events using | |
93 | the event tables. Please see @ref overview_events_bind for the discussion of | |
94 | Bind<>(). | |
25b5adb4 VZ |
95 | |
96 | @subsection overview_events_eventtables Event Handling with Event Tables | |
97 | ||
98 | To use an <em>event table</em> you must first decide in which class you wish to | |
99 | handle the events. The only requirement imposed by wxWidgets is that this class | |
100 | must derive from wxEvtHandler and so, considering that wxWindow derives from | |
101 | it, any classes representing windows can handle events. Simple events such as | |
102 | menu commands are usually processed at the level of a top-level window | |
103 | containing the menu, so let's suppose that you need to handle some events in @c | |
104 | MyFrame class deriving from wxFrame. | |
105 | ||
106 | First define one or more <em>event handlers</em>. They | |
04a7eed1 | 107 | are just simple methods of the class that take as a parameter a |
25b5adb4 VZ |
108 | reference to an object of a wxEvent-derived class and have no return value (any |
109 | return information is passed via the argument, which is why it is non-const). | |
110 | You also need to insert a macro | |
111 | ||
112 | @code | |
113 | DECLARE_EVENT_TABLE() | |
114 | @endcode | |
115 | ||
116 | somewhere in the class declaration. It doesn't matter where it appears but | |
117 | it's customary to put it at the end because the macro changes the access | |
118 | type internally so it's safest if nothing follows it. The | |
119 | full class declaration might look like this: | |
120 | ||
121 | @code | |
122 | class MyFrame : public wxFrame | |
123 | { | |
124 | public: | |
125 | MyFrame(...) : wxFrame(...) { } | |
126 | ||
127 | ... | |
128 | ||
129 | protected: | |
130 | int m_whatever; | |
131 | ||
132 | private: | |
133 | // Notice that as the event handlers normally are not called from outside | |
134 | // the class, they normally are private. In particular they don't need | |
135 | // to be public. | |
136 | void OnExit(wxCommandEvent& event); | |
137 | void OnButton1(wxCommandEvent& event); | |
138 | void OnSize(wxSizeEvent& event); | |
139 | ||
140 | // it's common to call the event handlers OnSomething() but there is no | |
141 | // obligation to do that; this one is an event handler too: | |
142 | void DoTest(wxCommandEvent& event); | |
143 | ||
144 | DECLARE_EVENT_TABLE() | |
145 | }; | |
146 | @endcode | |
147 | ||
148 | Next the event table must be defined and, as with any definition, it must be | |
149 | placed in an implementation file. The event table tells wxWidgets how to map | |
150 | events to member functions and in our example it could look like this: | |
151 | ||
152 | @code | |
153 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
154 | EVT_MENU(wxID_EXIT, MyFrame::OnExit) | |
155 | EVT_MENU(DO_TEST, MyFrame::DoTest) | |
156 | EVT_SIZE(MyFrame::OnSize) | |
157 | EVT_BUTTON(BUTTON1, MyFrame::OnButton1) | |
158 | END_EVENT_TABLE() | |
159 | @endcode | |
160 | ||
161 | Notice that you must mention a method you want to use for the event handling in | |
162 | the event table definition; just defining it in MyFrame class is @e not enough. | |
163 | ||
164 | Let us now look at the details of this definition: the first line means that we | |
165 | are defining the event table for MyFrame class and that its base class is | |
166 | wxFrame, so events not processed by MyFrame will, by default, be handled by | |
04a7eed1 | 167 | wxFrame. The next four lines define bindings of individual events to their |
25b5adb4 VZ |
168 | handlers: the first two of them map menu commands from the items with the |
169 | identifiers specified as the first macro parameter to two different member | |
170 | functions. In the next one, @c EVT_SIZE means that any changes in the size of | |
171 | the frame will result in calling OnSize() method. Note that this macro doesn't | |
172 | need a window identifier, since normally you are only interested in the current | |
173 | window's size events. | |
174 | ||
175 | The @c EVT_BUTTON macro demonstrates that the originating event does not have to | |
176 | come from the window class implementing the event table -- if the event source | |
177 | is a button within a panel within a frame, this will still work, because event | |
178 | tables are searched up through the hierarchy of windows for the command events. | |
179 | (But only command events, so you can't catch mouse move events in a child | |
180 | control in the parent window in the same way because wxMouseEvent doesn't | |
181 | derive from wxCommandEvent. See below for how you can do it.) In this case, the | |
182 | button's event table will be searched, then the parent panel's, then the | |
183 | frame's. | |
184 | ||
185 | Finally, you need to implement the event handlers. As mentioned before, all | |
186 | event handlers take a wxEvent-derived argument whose exact class differs | |
187 | according to the type of event and the class of the originating window. For | |
188 | size events, wxSizeEvent is used. For menu commands and most control commands | |
189 | (such as button presses), wxCommandEvent is used. When controls get more | |
190 | complicated, more specific wxCommandEvent-derived event classes providing | |
191 | additional control-specific information can be used, such as wxTreeEvent for | |
192 | events from wxTreeCtrl windows. | |
193 | ||
194 | In the simplest possible case an event handler may not use the @c event | |
195 | parameter at all. For example, | |
196 | ||
197 | @code | |
198 | void MyFrame::OnExit(wxCommandEvent& WXUNUSED(event)) | |
199 | { | |
200 | // when the user selects "Exit" from the menu we should close | |
201 | Close(true); | |
202 | } | |
203 | @endcode | |
204 | ||
205 | In other cases you may need some information carried by the @c event argument, | |
206 | as in: | |
207 | ||
208 | @code | |
209 | void MyFrame::OnSize(wxSizeEvent& event) | |
210 | { | |
211 | wxSize size = event.GetSize(); | |
212 | ||
213 | ... update the frame using the new size ... | |
214 | } | |
215 | @endcode | |
216 | ||
217 | You will find the details about the event table macros and the corresponding | |
218 | wxEvent-derived classes in the discussion of each control generating these | |
219 | events. | |
220 | ||
221 | ||
04a7eed1 | 222 | @subsection overview_events_bind Dynamic Event Handling |
25b5adb4 | 223 | |
04a7eed1 | 224 | The possibilities of handling events in this way are rather different. |
25b5adb4 VZ |
225 | Let us start by looking at the syntax: the first obvious difference is that you |
226 | need not use DECLARE_EVENT_TABLE() nor BEGIN_EVENT_TABLE() and the | |
227 | associated macros. Instead, in any place in your code, but usually in | |
228 | the code of the class defining the handler itself (and definitely not in the | |
04a7eed1 | 229 | global scope as with the event tables), call its Bind<>() method like this: |
25b5adb4 VZ |
230 | |
231 | @code | |
232 | MyFrame::MyFrame(...) | |
233 | { | |
04a7eed1 | 234 | Bind(wxEVT_COMMAND_MENU_SELECTED, &MyFrame::OnExit, this, wxID_EXIT); |
25b5adb4 VZ |
235 | } |
236 | @endcode | |
237 | ||
04a7eed1 | 238 | Note that @c this pointer must be specified here. |
25b5adb4 VZ |
239 | |
240 | Now let us describe the semantic differences: | |
241 | <ul> | |
242 | <li> | |
04a7eed1 VZ |
243 | Event handlers can be bound at any moment. For example, it's possible |
244 | to do some initialization first and only bind the handlers if and when | |
25b5adb4 | 245 | it succeeds. This can avoid the need to test that the object was properly |
04a7eed1 | 246 | initialized in the event handlers themselves. With Bind<>() they |
25b5adb4 VZ |
247 | simply won't be called if it wasn't correctly initialized. |
248 | </li> | |
249 | ||
250 | <li> | |
04a7eed1 VZ |
251 | As a slight extension of the above, the handlers can also be unbound at |
252 | any time with Unbind<>() (and maybe rebound later). Of course, | |
25b5adb4 | 253 | it's also possible to emulate this behaviour with the classic |
04a7eed1 | 254 | static (i.e., bound via event tables) handlers by using an internal |
25b5adb4 | 255 | flag indicating whether the handler is currently enabled and returning |
04a7eed1 | 256 | from it if it isn't, but using dynamically bind handlers requires |
25b5adb4 VZ |
257 | less code and is also usually more clear. |
258 | </li> | |
259 | ||
260 | <li> | |
04a7eed1 VZ |
261 | Almost last but very, very far from least is the increased flexibility |
262 | which allows to bind an event to: | |
263 | @li A method in another object. | |
264 | @li An ordinary function like a static method or a global function. | |
265 | @li An arbitrary functor like boost::function<>. | |
266 | ||
267 | This is impossible to do with the event tables because it is not | |
268 | possible to specify these handlers to dispatch the event to, so it | |
269 | necessarily needs to be sent to the same object which generated the | |
270 | event. Not so with Bind<>() which can be used to specify these handlers | |
271 | which will handle the event. To give a quick example, a common question | |
272 | is how to receive the mouse movement events happening when the mouse is | |
273 | in one of the frame children in the frame itself. Doing it in a naive | |
274 | way doesn't work: | |
25b5adb4 VZ |
275 | <ul> |
276 | <li> | |
277 | A @c EVT_LEAVE_WINDOW(MyFrame::OnMouseLeave) line in the frame | |
278 | event table has no effect as mouse move (including entering and | |
279 | leaving) events are not propagated up to the parent window | |
280 | (at least not by default). | |
281 | </li> | |
282 | ||
283 | <li> | |
284 | Putting the same line in a child event table will crash during | |
285 | run-time because the MyFrame method will be called on a wrong | |
286 | object -- it's easy to convince oneself that the only object | |
287 | that can be used here is the pointer to the child, as | |
288 | wxWidgets has nothing else. But calling a frame method with the | |
289 | child window pointer instead of the pointer to the frame is, of | |
290 | course, disastrous. | |
291 | </li> | |
292 | </ul> | |
293 | ||
294 | However writing | |
295 | @code | |
296 | MyFrame::MyFrame(...) | |
297 | { | |
04a7eed1 | 298 | m_child->Bind(wxEVT_LEAVE_WINDOW, &MyFrame::OnMouseLeave, this); |
25b5adb4 VZ |
299 | } |
300 | @endcode | |
301 | will work exactly as expected. Note that you can get the object that | |
302 | generated the event -- and that is not the same as the frame -- via | |
303 | wxEvent::GetEventObject() method of @c event argument passed to the | |
304 | event handler. | |
305 | </li> | |
04a7eed1 VZ |
306 | |
307 | <li> | |
308 | Really last point is the consequence of the previous one: because of | |
309 | increased flexibility of Bind(), it is also safer as it is impossible | |
310 | to accidentally use a method of another class. Instead of run-time | |
311 | crashes you will get compilation errors in this case when using Bind(). | |
312 | </li> | |
25b5adb4 VZ |
313 | </ul> |
314 | ||
f3d261e7 VZ |
315 | Let us now look at more examples of how to use different event handlers using |
316 | the two overloads of Bind() function: first one for the object methods and the | |
317 | other one for arbitrary functors (callable objects, including simple functions): | |
04a7eed1 | 318 | |
f3d261e7 VZ |
319 | In addition to using a method of the object generating the event itself, you |
320 | can use a method from a completely different object as an event handler: | |
04a7eed1 VZ |
321 | |
322 | @code | |
323 | void MyFrameHandler::OnFrameExit( wxCommandEvent & ) | |
324 | { | |
325 | // Do something useful. | |
326 | } | |
327 | ||
328 | MyFrameHandler myFrameHandler; | |
329 | ||
330 | MyFrame::MyFrame() | |
331 | { | |
332 | Bind( wxEVT_COMMAND_MENU_SELECTED, &MyFrameHandler::OnFrameExit, | |
333 | &myFrameHandler, wxID_EXIT ); | |
334 | } | |
335 | @endcode | |
336 | ||
337 | Note that @c MyFrameHandler doesn't need to derive from wxEvtHandler. But | |
338 | keep in mind that then the lifetime of @c myFrameHandler must be greater than | |
339 | that of @c MyFrame object -- or at least it needs to be unbound before being | |
340 | destroyed. | |
341 | ||
f3d261e7 | 342 | |
04a7eed1 VZ |
343 | To use an ordinary function or a static method as an event handler you would |
344 | write something like this: | |
345 | ||
346 | @code | |
347 | void HandleExit( wxCommandEvent & ) | |
348 | { | |
349 | // Do something useful | |
350 | } | |
351 | ||
352 | MyFrame::MyFrame() | |
353 | { | |
354 | Bind( wxEVT_COMMAND_MENU_SELECTED, &HandleExit, wxID_EXIT ); | |
355 | } | |
356 | @endcode | |
357 | ||
358 | And finally you can bind to an arbitrary functor and use it as an event | |
359 | handler: | |
360 | ||
361 | @code | |
362 | ||
363 | struct MyFunctor | |
364 | { | |
365 | void operator()( wxCommandEvent & ) | |
366 | { | |
367 | // Do something useful | |
368 | } | |
369 | }; | |
370 | ||
371 | MyFunctor myFunctor; | |
372 | ||
373 | MyFrame::MyFrame() | |
374 | { | |
375 | Bind( wxEVT_COMMAND_MENU_SELECTED, &myFunctor, wxID_EXIT ); | |
376 | } | |
377 | @endcode | |
378 | ||
379 | A common example of a functor is boost::function<>: | |
380 | ||
381 | @code | |
382 | using namespace boost; | |
383 | ||
384 | void MyHandler::OnExit( wxCommandEvent & ) | |
385 | { | |
386 | // Do something useful | |
387 | } | |
388 | ||
389 | MyHandler myHandler; | |
390 | ||
391 | MyFrame::MyFrame() | |
392 | { | |
393 | function< void ( wxCommandEvent & ) > exitHandler( bind( &MyHandler::OnExit, &myHandler, _1 )); | |
394 | ||
395 | Bind( wxEVT_COMMAND_MENU_SELECTED, exitHandler, wxID_EXIT ); | |
396 | } | |
397 | @endcode | |
398 | ||
399 | ||
400 | With the aid of boost::bind<>() you can even use methods or functions which | |
401 | don't quite have the correct signature: | |
402 | ||
403 | @code | |
404 | void MyHandler::OnExit( int exitCode, wxCommandEvent &, wxString goodByeMessage ) | |
405 | { | |
406 | // Do something useful | |
407 | } | |
408 | ||
409 | MyHandler myHandler; | |
410 | ||
411 | MyFrame::MyFrame() | |
412 | { | |
413 | function< void ( wxCommandEvent & ) > exitHandler( | |
414 | bind( &MyHandler::OnExit, &myHandler, EXIT_FAILURE, _1, "Bye" )); | |
415 | ||
416 | Bind( wxEVT_COMMAND_MENU_SELECTED, exitHandler, wxID_EXIT ); | |
417 | } | |
418 | @endcode | |
419 | ||
420 | ||
421 | To summarize, using Bind<>() requires slightly more typing but is much more | |
25b5adb4 VZ |
422 | flexible than using static event tables so don't hesitate to use it when you |
423 | need this extra power. On the other hand, event tables are still perfectly fine | |
424 | in simple situations where this extra flexibility is not needed. | |
425 | ||
426 | ||
427 | @section overview_events_processing How Events are Processed | |
428 | ||
429 | The previous sections explain how to define event handlers but don't address | |
430 | the question of how exactly wxWidgets finds the handler to call for the | |
431 | given event. This section describes the algorithm used in detail. | |
432 | ||
433 | When an event is received from the windowing system, wxWidgets calls | |
434 | wxEvtHandler::ProcessEvent() on the first event handler object belonging to the | |
435 | window generating the event. The normal order of event table searching by | |
436 | ProcessEvent() is as follows, with the event processing stopping as soon as a | |
437 | handler is found (unless the handler calls wxEvent::Skip() in which case it | |
438 | doesn't count as having handled the event and the search continues): | |
439 | <ol> | |
440 | <li value="0"> | |
441 | Before anything else happens, wxApp::FilterEvent() is called. If it returns | |
442 | anything but -1 (default), the event handling stops immediately. | |
443 | </li> | |
444 | ||
445 | <li value="1"> | |
446 | If this event handler is disabled via a call to | |
447 | wxEvtHandler::SetEvtHandlerEnabled() the next three steps are skipped and | |
448 | the event handler resumes at step (5). | |
449 | </li> | |
450 | ||
451 | <li value="2"> | |
452 | If the object is a wxWindow and has an associated validator, wxValidator | |
453 | gets a chance to process the event. | |
454 | </li> | |
455 | ||
456 | <li value="3"> | |
04a7eed1 VZ |
457 | The list of dynamically bind event handlers, i.e., those for which |
458 | Bind<>() was called, is consulted. Notice that this is done before | |
25b5adb4 VZ |
459 | checking the static event table entries, so if both a dynamic and a static |
460 | event handler match the same event, the static one is never going to be | |
461 | used. | |
462 | </li> | |
463 | ||
464 | <li value="4"> | |
465 | The event table containing all the handlers defined using the event table | |
466 | macros in this class and its base classes is examined. Notice that this | |
467 | means that any event handler defined in a base class will be executed at | |
468 | this step. | |
469 | </li> | |
470 | ||
471 | <li value="5"> | |
472 | The event is passed to the next event handler, if any, in the event handler | |
473 | chain, i.e., the steps (1) to (4) are done for it. This chain can be formed | |
474 | using wxEvtHandler::SetNextHandler(): | |
475 | @image html overview_events_chain.png | |
476 | (referring to the image, if @c A->ProcessEvent is called and it doesn't handle | |
477 | the event, @c B->ProcessEvent will be called and so on...). | |
478 | In the case of wxWindow you can build a stack (implemented using wxEvtHandler | |
479 | double-linked list) using wxWindow::PushEventHandler(): | |
480 | @image html overview_events_winstack.png | |
481 | (referring to the image, if @c W->ProcessEvent is called, it immediately calls | |
482 | @c A->ProcessEvent; if nor @c A nor @c B handle the event, then the wxWindow | |
04a7eed1 | 483 | itself is used - i.e. the dynamically bind event handlers and static |
25b5adb4 VZ |
484 | event table entries of wxWindow are looked as the last possibility, after |
485 | all pushed event handlers were tested). | |
486 | Note however that usually there are no wxEvtHandler chains nor wxWindows stacks | |
487 | so this step will usually do anything. | |
488 | </li> | |
489 | ||
490 | <li value="6"> | |
491 | If the object is a wxWindow and the event is set to propagate (by default | |
492 | only wxCommandEvent-derived events are set to propagate), then the | |
493 | processing restarts from the step (1) (and excluding the step (7)) for the | |
494 | parent window. If this object is not a window but the next handler exists, | |
495 | the event is passed to its parent if it is a window. This ensures that in a | |
496 | common case of (possibly several) non-window event handlers pushed on top | |
497 | of a window, the event eventually reaches the window parent. | |
498 | </li> | |
499 | ||
500 | <li value="7"> | |
501 | Finally, i.e., if the event is still not processed, the wxApp object itself | |
502 | (which derives from wxEvtHandler) gets a last chance to process it. | |
503 | </li> | |
504 | </ol> | |
505 | ||
506 | <em>Please pay close attention to step 6!</em> People often overlook or get | |
507 | confused by this powerful feature of the wxWidgets event processing system. The | |
508 | details of event propagation up the window hierarchy are described in the | |
509 | next section. | |
510 | ||
511 | Also please notice that there are additional steps in the event handling for | |
512 | the windows-making part of wxWidgets document-view framework, i.e., | |
513 | wxDocParentFrame, wxDocChildFrame and their MDI equivalents wxDocMDIParentFrame | |
514 | and wxDocMDIChildFrame. The parent frame classes modify step (2) above to | |
515 | send the events received by them to wxDocManager object first. This object, in | |
516 | turn, sends the event to the current view and the view itself lets its | |
517 | associated document process the event first. The child frame classes send | |
518 | the event directly to the associated view which still forwards it to its | |
519 | document object. Notice that to avoid remembering the exact order in which the | |
520 | events are processed in the document-view frame, the simplest, and recommended, | |
521 | solution is to only handle the events at the view classes level, and not in the | |
522 | document or document manager classes | |
523 | ||
524 | ||
525 | @subsection overview_events_propagation How Events Propagate Upwards | |
526 | ||
527 | As mentioned above, the events of the classes deriving from wxCommandEvent are | |
528 | propagated by default to the parent window if they are not processed in this | |
529 | window itself. But although by default only the command events are propagated | |
530 | like this, other events can be propagated as well because the event handling | |
531 | code uses wxEvent::ShouldPropagate() to check whether an event should be | |
532 | propagated. It is also possible to propagate the event only a limited number of | |
533 | times and not until it is processed (or a top level parent window is reached). | |
534 | ||
535 | Finally, there is another additional complication (which, in fact, simplifies | |
536 | life of wxWidgets programmers significantly): when propagating the command | |
537 | events up to the parent window, the event propagation stops when it | |
538 | reaches the parent dialog, if any. This means that you don't risk getting | |
539 | unexpected events from the dialog controls (which might be left unprocessed by | |
540 | the dialog itself because it doesn't care about them) when a modal dialog is | |
541 | popped up. The events do propagate beyond the frames, however. The rationale | |
542 | for this choice is that there are only a few frames in a typical application | |
543 | and their parent-child relation are well understood by the programmer while it | |
544 | may be difficult, if not impossible, to track down all the dialogs that | |
545 | may be popped up in a complex program (remember that some are created | |
546 | automatically by wxWidgets). If you need to specify a different behaviour for | |
547 | some reason, you can use wxWindow::SetExtraStyle(wxWS_EX_BLOCK_EVENTS) | |
548 | explicitly to prevent the events from being propagated beyond the given window | |
549 | or unset this flag for the dialogs that have it on by default. | |
550 | ||
551 | Typically events that deal with a window as a window (size, motion, | |
552 | paint, mouse, keyboard, etc.) are sent only to the window. Events | |
553 | that have a higher level of meaning or are generated by the window | |
554 | itself (button click, menu select, tree expand, etc.) are command | |
555 | events and are sent up to the parent to see if it is interested in the event. | |
556 | More precisely, as said above, all event classes @b not deriving from wxCommandEvent | |
557 | (see the wxEvent inheritance map) do @b not propagate upward. | |
558 | ||
559 | In some cases, it might be desired by the programmer to get a certain number | |
560 | of system events in a parent window, for example all key events sent to, but not | |
561 | used by, the native controls in a dialog. In this case, a special event handler | |
562 | will have to be written that will override ProcessEvent() in order to pass | |
563 | all events (or any selection of them) to the parent window. | |
564 | ||
565 | ||
566 | @section overview_events_custom Custom Event Summary | |
567 | ||
568 | @subsection overview_events_custom_general General approach | |
569 | ||
570 | As each event is uniquely defined by its event type, defining a custom event | |
571 | starts with defining a new event type for it. This is done using | |
572 | wxDEFINE_EVENT() macro. As an event type is a variable, it can also be | |
573 | declared using wxDECLARE_EVENT() if necessary. | |
574 | ||
575 | The next thing to do is to decide whether you need to define a custom event | |
576 | class for events of this type or if you can reuse an existing class, typically | |
577 | either wxEvent (which doesn't provide any extra information) or wxCommandEvent | |
578 | (which contains several extra fields and also propagates upwards by default). | |
579 | Both strategies are described in details below. See also the @ref | |
580 | page_samples_event for a complete example of code defining and working with the | |
581 | custom event types. | |
582 | ||
583 | ||
584 | @subsection overview_events_custom_existing Using Existing Event Classes | |
585 | ||
586 | If you just want to use a wxCommandEvent with a new event type, use one of the | |
587 | generic event table macros listed below, without having to define a new event | |
588 | class yourself. | |
589 | ||
590 | Example: | |
591 | ||
592 | @code | |
593 | // this is typically in a header: it just declares MY_EVENT event type | |
594 | wxDECLARE_EVENT(MY_EVENT, wxCommandEvent); | |
595 | ||
596 | // this is a definition so can't be in a header | |
597 | wxDEFINE_EVENT(MY_EVENT, wxCommandEvent); | |
598 | ||
599 | // example of code handling the event with event tables | |
600 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
601 | EVT_MENU (wxID_EXIT, MyFrame::OnExit) | |
602 | ... | |
603 | EVT_COMMAND (ID_MY_WINDOW, MY_EVENT, MyFrame::OnMyEvent) | |
604 | END_EVENT_TABLE() | |
605 | ||
606 | void MyFrame::OnMyEvent(wxCommandEvent& event) | |
607 | { | |
608 | // do something | |
609 | wxString text = event.GetText(); | |
610 | } | |
611 | ||
04a7eed1 | 612 | // example of code handling the event with Bind<>(): |
25b5adb4 VZ |
613 | MyFrame::MyFrame() |
614 | { | |
04a7eed1 | 615 | Bind(MY_EVENT, &MyFrame::OnMyEvent, this, ID_MY_WINDOW); |
25b5adb4 VZ |
616 | } |
617 | ||
618 | // example of code generating the event | |
619 | void MyWindow::SendEvent() | |
620 | { | |
621 | wxCommandEvent event(MY_EVENT, GetId()); | |
622 | event.SetEventObject(this); | |
623 | ||
624 | // Give it some contents | |
625 | event.SetText("Hello"); | |
626 | ||
627 | // Do send it | |
628 | ProcessWindowEvent(event); | |
629 | } | |
630 | @endcode | |
631 | ||
632 | ||
633 | @subsection overview_events_custom_ownclass Defining Your Own Event Class | |
634 | ||
635 | Under certain circumstances, you must define your own event class e.g., for | |
636 | sending more complex data from one place to another. Apart from defining your | |
637 | event class, you also need to define your own event table macro if you want to | |
638 | use event tables for handling events of this type. | |
639 | ||
640 | Here is an example: | |
641 | ||
642 | @code | |
643 | // define a new event class | |
644 | class MyPlotEvent: public wxEvent | |
645 | { | |
646 | public: | |
647 | MyPlotEvent(wxEventType eventType, int winid, const wxPoint& pos) | |
648 | : wxEvent(winid, eventType), | |
649 | m_pos(pos) | |
650 | { | |
651 | } | |
652 | ||
653 | // accessors | |
654 | wxPoint GetPoint() const { return m_pos; } | |
655 | ||
656 | // implement the base class pure virtual | |
657 | virtual wxEvent *Clone() const { return new MyPlotEvent(*this); } | |
658 | ||
659 | private: | |
660 | const wxPoint m_pos; | |
661 | }; | |
662 | ||
663 | // we define a single MY_PLOT_CLICKED event type associated with the class | |
664 | // above but typically you are going to have more than one event type, e.g. you | |
665 | // could also have MY_PLOT_ZOOMED or MY_PLOT_PANNED &c -- in which case you | |
666 | // would just add more similar lines here | |
667 | wxDEFINE_EVENT(MY_PLOT_CLICKED, MyPlotEvent); | |
668 | ||
669 | ||
670 | // if you want to support old compilers you need to use some ugly macros: | |
671 | typedef void (wxEvtHandler::*MyPlotEventFunction)(MyPlotEvent&); | |
672 | #define MyPlotEventHandler(func) wxEVENT_HANDLER_CAST(MyPlotEventFunction, func) | |
673 | ||
04a7eed1 | 674 | // if your code is only built using reasonably modern compilers, you could just |
25b5adb4 VZ |
675 | // do this instead: |
676 | #define MyPlotEventHandler(func) (&func) | |
677 | ||
678 | // finally define a macro for creating the event table entries for the new | |
679 | // event type | |
680 | // | |
04a7eed1 | 681 | // remember that you don't need this at all if you only use Bind<>() and that |
25b5adb4 VZ |
682 | // you can replace MyPlotEventHandler(func) with just &func unless you use a |
683 | // really old compiler | |
684 | #define MY_EVT_PLOT_CLICK(id, func) \ | |
685 | wx__DECLARE_EVT1(MY_PLOT_CLICKED, id, MyPlotEventHandler(func)) | |
686 | ||
687 | ||
688 | // example of code handling the event (you will use one of these methods, not | |
689 | // both, of course): | |
690 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
691 | EVT_PLOT(ID_MY_WINDOW, MyFrame::OnPlot) | |
692 | END_EVENT_TABLE() | |
693 | ||
694 | MyFrame::MyFrame() | |
695 | { | |
04a7eed1 | 696 | Bind(MY_PLOT_CLICKED, &MyFrame::OnPlot, this, ID_MY_WINDOW); |
25b5adb4 VZ |
697 | } |
698 | ||
699 | void MyFrame::OnPlot(MyPlotEvent& event) | |
700 | { | |
701 | ... do something with event.GetPoint() ... | |
702 | } | |
703 | ||
704 | ||
705 | // example of code generating the event: | |
706 | void MyWindow::SendEvent() | |
707 | { | |
708 | MyPlotEvent event(MY_PLOT_CLICKED, GetId(), wxPoint(...)); | |
709 | event.SetEventObject(this); | |
710 | ProcessWindowEvent(event); | |
711 | } | |
712 | @endcode | |
713 | ||
714 | ||
715 | ||
716 | @section overview_events_misc Miscellaneous Notes | |
717 | ||
718 | @subsection overview_events_virtual Event Handlers vs Virtual Methods | |
719 | ||
720 | It may be noted that wxWidgets' event processing system implements something | |
721 | close to virtual methods in normal C++ in spirit: both of these mechanisms | |
722 | allow you to alter the behaviour of the base class by defining the event handling | |
723 | functions in the derived classes. | |
724 | ||
725 | There is however an important difference between the two mechanisms when you | |
726 | want to invoke the default behaviour, as implemented by the base class, from a | |
727 | derived class handler. With the virtual functions, you need to call the base | |
728 | class function directly and you can do it either in the beginning of the | |
729 | derived class handler function (to post-process the event) or at its end (to | |
730 | pre-process the event). With the event handlers, you only have the option of | |
731 | pre-processing the events and in order to still let the default behaviour | |
732 | happen you must call wxEvent::Skip() and @em not call the base class event | |
733 | handler directly. In fact, the event handler probably doesn't even exist in the | |
734 | base class as the default behaviour is often implemented in platform-specific | |
735 | code by the underlying toolkit or OS itself. But even if it does exist at | |
736 | wxWidgets level, it should never be called directly as the event handlers are | |
737 | not part of wxWidgets API and should never be called directly. | |
738 | ||
25b5adb4 VZ |
739 | |
740 | ||
741 | @subsection overview_events_prog User Generated Events vs Programmatically Generated Events | |
742 | ||
743 | While generically wxEvents can be generated both by user | |
744 | actions (e.g., resize of a wxWindow) and by calls to functions | |
745 | (e.g., wxWindow::SetSize), wxWidgets controls normally send wxCommandEvent-derived | |
746 | events only for the user-generated events. The only @b exceptions to this rule are: | |
747 | ||
748 | @li wxNotebook::AddPage: No event-free alternatives | |
749 | @li wxNotebook::AdvanceSelection: No event-free alternatives | |
750 | @li wxNotebook::DeletePage: No event-free alternatives | |
751 | @li wxNotebook::SetSelection: Use wxNotebook::ChangeSelection instead, as | |
752 | wxNotebook::SetSelection is deprecated | |
753 | @li wxTreeCtrl::Delete: No event-free alternatives | |
754 | @li wxTreeCtrl::DeleteAllItems: No event-free alternatives | |
755 | @li wxTreeCtrl::EditLabel: No event-free alternatives | |
756 | @li All wxTextCtrl methods | |
757 | ||
758 | wxTextCtrl::ChangeValue can be used instead of wxTextCtrl::SetValue but the other | |
759 | functions, such as wxTextCtrl::Replace or wxTextCtrl::WriteText don't have event-free | |
760 | equivalents. | |
761 | ||
762 | ||
763 | ||
764 | @subsection overview_events_pluggable Pluggable Event Handlers | |
765 | ||
04a7eed1 | 766 | <em>TODO: Probably deprecated, Bind() provides a better way to do this</em> |
25b5adb4 VZ |
767 | |
768 | In fact, you don't have to derive a new class from a window class | |
769 | if you don't want to. You can derive a new class from wxEvtHandler instead, | |
770 | defining the appropriate event table, and then call wxWindow::SetEventHandler | |
771 | (or, preferably, wxWindow::PushEventHandler) to make this | |
772 | event handler the object that responds to events. This way, you can avoid | |
773 | a lot of class derivation, and use instances of the same event handler class (but different | |
774 | objects as the same event handler object shouldn't be used more than once) to | |
775 | handle events from instances of different widget classes. | |
776 | ||
777 | If you ever have to call a window's event handler | |
778 | manually, use the GetEventHandler function to retrieve the window's event handler and use that | |
779 | to call the member function. By default, GetEventHandler returns a pointer to the window itself | |
780 | unless an application has redirected event handling using SetEventHandler or PushEventHandler. | |
781 | ||
782 | One use of PushEventHandler is to temporarily or permanently change the | |
783 | behaviour of the GUI. For example, you might want to invoke a dialog editor | |
784 | in your application that changes aspects of dialog boxes. You can | |
785 | grab all the input for an existing dialog box, and edit it 'in situ', | |
786 | before restoring its behaviour to normal. So even if the application | |
787 | has derived new classes to customize behaviour, your utility can indulge | |
788 | in a spot of body-snatching. It could be a useful technique for on-line | |
789 | tutorials, too, where you take a user through a serious of steps and | |
790 | don't want them to diverge from the lesson. Here, you can examine the events | |
791 | coming from buttons and windows, and if acceptable, pass them through to | |
792 | the original event handler. Use PushEventHandler/PopEventHandler | |
793 | to form a chain of event handlers, where each handler processes a different | |
794 | range of events independently from the other handlers. | |
795 | ||
796 | ||
797 | ||
798 | @subsection overview_events_winid Window Identifiers | |
799 | ||
800 | Window identifiers are integers, and are used to | |
801 | uniquely determine window identity in the event system (though you can use it | |
802 | for other purposes). In fact, identifiers do not need to be unique | |
803 | across your entire application as long they are unique within the | |
804 | particular context you're interested in, such as a frame and its children. You | |
805 | may use the @c wxID_OK identifier, for example, on any number of dialogs | |
806 | as long as you don't have several within the same dialog. | |
807 | ||
808 | If you pass @c wxID_ANY to a window constructor, an identifier will be | |
809 | generated for you automatically by wxWidgets. This is useful when you don't | |
810 | care about the exact identifier either because you're not going to process the | |
811 | events from the control being created or because you process the events | |
812 | from all controls in one place (in which case you should specify @c wxID_ANY | |
04a7eed1 | 813 | in the event table or wxEvtHandler::Bind call |
25b5adb4 VZ |
814 | as well). The automatically generated identifiers are always negative and so |
815 | will never conflict with the user-specified identifiers which must be always | |
816 | positive. | |
817 | ||
818 | See @ref page_stdevtid for the list of standard identifiers available. | |
819 | You can use wxID_HIGHEST to determine the number above which it is safe to | |
820 | define your own identifiers. Or, you can use identifiers below wxID_LOWEST. | |
821 | Finally, you can allocate identifiers dynamically using wxNewId() function too. | |
822 | If you use wxNewId() consistently in your application, you can be sure that | |
823 | your identifiers don't conflict accidentally. | |
824 | ||
825 | ||
826 | @subsection overview_events_custom_generic Generic Event Table Macros | |
827 | ||
828 | @beginTable | |
829 | @row2col{EVT_CUSTOM(event\, id\, func), | |
830 | Allows you to add a custom event table | |
831 | entry by specifying the event identifier (such as wxEVT_SIZE), | |
832 | the window identifier, and a member function to call.} | |
833 | @row2col{EVT_CUSTOM_RANGE(event\, id1\, id2\, func), | |
834 | The same as EVT_CUSTOM, but responds to a range of window identifiers.} | |
835 | @row2col{EVT_COMMAND(id\, event\, func), | |
836 | The same as EVT_CUSTOM, but expects a member function with a | |
837 | wxCommandEvent argument.} | |
838 | @row2col{EVT_COMMAND_RANGE(id1\, id2\, event\, func), | |
839 | The same as EVT_CUSTOM_RANGE, but | |
840 | expects a member function with a wxCommandEvent argument.} | |
841 | @row2col{EVT_NOTIFY(event\, id\, func), | |
842 | The same as EVT_CUSTOM, but | |
843 | expects a member function with a wxNotifyEvent argument.} | |
844 | @row2col{EVT_NOTIFY_RANGE(event\, id1\, id2\, func), | |
845 | The same as EVT_CUSTOM_RANGE, but | |
846 | expects a member function with a wxNotifyEvent argument.} | |
847 | @endTable | |
848 | ||
849 | ||
850 | ||
851 | @subsection overview_events_list List of wxWidgets events | |
852 | ||
853 | For the full list of event classes, please see the | |
854 | @ref group_class_events "event classes group page". | |
855 | ||
856 | ||
857 | */ | |
858 |