]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: event.cpp | |
3 | // Purpose: Event classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
e90c1d2a | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
8e193f38 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
c801d85f | 20 | #ifdef __GNUG__ |
0b746ba8 | 21 | #pragma implementation "event.h" |
c801d85f KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
0b746ba8 | 28 | #pragma hdrstop |
c801d85f KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
0b746ba8 | 32 | #include "wx/defs.h" |
0b746ba8 | 33 | #include "wx/app.h" |
e90c1d2a VZ |
34 | #include "wx/list.h" |
35 | ||
36 | #if wxUSE_GUI | |
37 | #include "wx/control.h" | |
38 | #include "wx/utils.h" | |
39 | #include "wx/dc.h" | |
40 | #endif // wxUSE_GUI | |
c801d85f KB |
41 | #endif |
42 | ||
43 | #include "wx/event.h" | |
e90c1d2a VZ |
44 | |
45 | #if wxUSE_GUI | |
46 | #include "wx/validate.h" | |
47 | #endif // wxUSE_GUI | |
c801d85f | 48 | |
8e193f38 VZ |
49 | // ---------------------------------------------------------------------------- |
50 | // wxWin macros | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
23f681ec VZ |
53 | IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject) |
54 | IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject) | |
e90c1d2a | 55 | |
23f681ec | 56 | #if wxUSE_GUI |
6b55490a | 57 | IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent) |
23f681ec VZ |
58 | IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent) |
59 | IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent, wxCommandEvent) | |
60 | IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent) | |
61 | IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent, wxEvent) | |
62 | IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent) | |
63 | IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent) | |
64 | IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent) | |
65 | IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent) | |
1e6feb95 | 66 | IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent, wxEvent) |
23f681ec VZ |
67 | IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent) |
68 | IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent) | |
69 | IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent) | |
456bc6d9 | 70 | IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent, wxCommandEvent) |
23f681ec VZ |
71 | IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent) |
72 | IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent) | |
73 | IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent) | |
74 | IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent) | |
75 | IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent) | |
76 | IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent) | |
77 | IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent) | |
78 | IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent) | |
79 | IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent) | |
80 | IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent) | |
81 | IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxCommandEvent) | |
82 | IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxCommandEvent) | |
83 | IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent) | |
84 | IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent) | |
85 | IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent, wxEvent) | |
86 | IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent, wxEvent) | |
b96340e6 | 87 | IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent, wxCommandEvent) |
69231000 | 88 | IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent, wxCommandEvent) |
23f681ec | 89 | #endif // wxUSE_GUI |
0b746ba8 | 90 | |
23f681ec VZ |
91 | const wxEventTable *wxEvtHandler::GetEventTable() const |
92 | { return &wxEvtHandler::sm_eventTable; } | |
0b746ba8 | 93 | |
23f681ec VZ |
94 | const wxEventTable wxEvtHandler::sm_eventTable = |
95 | { (const wxEventTable *)NULL, &wxEvtHandler::sm_eventTableEntries[0] }; | |
0b746ba8 | 96 | |
23f681ec | 97 | const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = |
9aaf9bed | 98 | { DECLARE_EVENT_TABLE_ENTRY(wxEVT_NULL, 0, 0, (wxObjectEventFunction)NULL, NULL) }; |
c801d85f | 99 | |
8e193f38 VZ |
100 | // ---------------------------------------------------------------------------- |
101 | // global variables | |
102 | // ---------------------------------------------------------------------------- | |
103 | ||
104 | // To put pending event handlers | |
105 | wxList *wxPendingEvents = (wxList *)NULL; | |
106 | ||
7214297d | 107 | #if wxUSE_THREADS |
8e193f38 VZ |
108 | // protects wxPendingEvents list |
109 | wxCriticalSection *wxPendingEventsLocker = (wxCriticalSection *)NULL; | |
7214297d GL |
110 | #endif |
111 | ||
cbee8f8d VZ |
112 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES |
113 | ||
2e4df4bf VZ |
114 | // common event types are defined here, other event types are defined by the |
115 | // components which use them | |
116 | ||
461697c2 | 117 | DEFINE_EVENT_TYPE(wxEVT_NULL) |
2e4df4bf VZ |
118 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED) |
119 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED) | |
120 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED) | |
121 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED) | |
122 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED) | |
123 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED) | |
2e4df4bf VZ |
124 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED) |
125 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED) | |
126 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED) | |
127 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED) | |
128 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED) | |
129 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED) | |
130 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED) | |
131 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED) | |
132 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER) | |
133 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED) | |
0b5eceb6 VZ |
134 | |
135 | // Sockets and timers send events, too | |
2e4df4bf VZ |
136 | DEFINE_EVENT_TYPE(wxEVT_SOCKET) |
137 | DEFINE_EVENT_TYPE(wxEVT_TIMER) | |
0b5eceb6 VZ |
138 | |
139 | // Mouse event types | |
2e4df4bf VZ |
140 | DEFINE_EVENT_TYPE(wxEVT_LEFT_DOWN) |
141 | DEFINE_EVENT_TYPE(wxEVT_LEFT_UP) | |
142 | DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DOWN) | |
143 | DEFINE_EVENT_TYPE(wxEVT_MIDDLE_UP) | |
144 | DEFINE_EVENT_TYPE(wxEVT_RIGHT_DOWN) | |
145 | DEFINE_EVENT_TYPE(wxEVT_RIGHT_UP) | |
146 | DEFINE_EVENT_TYPE(wxEVT_MOTION) | |
147 | DEFINE_EVENT_TYPE(wxEVT_ENTER_WINDOW) | |
148 | DEFINE_EVENT_TYPE(wxEVT_LEAVE_WINDOW) | |
149 | DEFINE_EVENT_TYPE(wxEVT_LEFT_DCLICK) | |
150 | DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK) | |
151 | DEFINE_EVENT_TYPE(wxEVT_RIGHT_DCLICK) | |
152 | DEFINE_EVENT_TYPE(wxEVT_SET_FOCUS) | |
153 | DEFINE_EVENT_TYPE(wxEVT_KILL_FOCUS) | |
456bc6d9 | 154 | DEFINE_EVENT_TYPE(wxEVT_CHILD_FOCUS) |
d2c52078 | 155 | DEFINE_EVENT_TYPE(wxEVT_MOUSEWHEEL) |
0b5eceb6 VZ |
156 | |
157 | // Non-client mouse events | |
2e4df4bf VZ |
158 | DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN) |
159 | DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_UP) | |
160 | DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN) | |
161 | DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP) | |
162 | DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN) | |
163 | DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_UP) | |
164 | DEFINE_EVENT_TYPE(wxEVT_NC_MOTION) | |
165 | DEFINE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW) | |
166 | DEFINE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW) | |
167 | DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK) | |
168 | DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK) | |
169 | DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK) | |
0b5eceb6 VZ |
170 | |
171 | // Character input event type | |
2e4df4bf VZ |
172 | DEFINE_EVENT_TYPE(wxEVT_CHAR) |
173 | DEFINE_EVENT_TYPE(wxEVT_CHAR_HOOK) | |
174 | DEFINE_EVENT_TYPE(wxEVT_NAVIGATION_KEY) | |
175 | DEFINE_EVENT_TYPE(wxEVT_KEY_DOWN) | |
176 | DEFINE_EVENT_TYPE(wxEVT_KEY_UP) | |
0b5eceb6 VZ |
177 | |
178 | // Set cursor event | |
2e4df4bf | 179 | DEFINE_EVENT_TYPE(wxEVT_SET_CURSOR) |
0b5eceb6 VZ |
180 | |
181 | // wxScrollbar and wxSlider event identifiers | |
2e4df4bf VZ |
182 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_TOP) |
183 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM) | |
184 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEUP) | |
185 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN) | |
186 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP) | |
187 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN) | |
188 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK) | |
189 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE) | |
0b5eceb6 VZ |
190 | |
191 | // Scroll events from wxWindow | |
2e4df4bf VZ |
192 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP) |
193 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM) | |
194 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP) | |
195 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN) | |
196 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP) | |
197 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN) | |
198 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK) | |
199 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE) | |
0b5eceb6 VZ |
200 | |
201 | // System events | |
2e4df4bf VZ |
202 | DEFINE_EVENT_TYPE(wxEVT_SIZE) |
203 | DEFINE_EVENT_TYPE(wxEVT_MOVE) | |
204 | DEFINE_EVENT_TYPE(wxEVT_CLOSE_WINDOW) | |
205 | DEFINE_EVENT_TYPE(wxEVT_END_SESSION) | |
206 | DEFINE_EVENT_TYPE(wxEVT_QUERY_END_SESSION) | |
207 | DEFINE_EVENT_TYPE(wxEVT_ACTIVATE_APP) | |
208 | DEFINE_EVENT_TYPE(wxEVT_POWER) | |
209 | DEFINE_EVENT_TYPE(wxEVT_ACTIVATE) | |
210 | DEFINE_EVENT_TYPE(wxEVT_CREATE) | |
211 | DEFINE_EVENT_TYPE(wxEVT_DESTROY) | |
212 | DEFINE_EVENT_TYPE(wxEVT_SHOW) | |
213 | DEFINE_EVENT_TYPE(wxEVT_ICONIZE) | |
214 | DEFINE_EVENT_TYPE(wxEVT_MAXIMIZE) | |
215 | DEFINE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED) | |
216 | DEFINE_EVENT_TYPE(wxEVT_PAINT) | |
217 | DEFINE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND) | |
218 | DEFINE_EVENT_TYPE(wxEVT_NC_PAINT) | |
219 | DEFINE_EVENT_TYPE(wxEVT_PAINT_ICON) | |
220 | DEFINE_EVENT_TYPE(wxEVT_MENU_CHAR) | |
221 | DEFINE_EVENT_TYPE(wxEVT_MENU_INIT) | |
222 | DEFINE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT) | |
223 | DEFINE_EVENT_TYPE(wxEVT_POPUP_MENU_INIT) | |
224 | DEFINE_EVENT_TYPE(wxEVT_CONTEXT_MENU) | |
225 | DEFINE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED) | |
226 | DEFINE_EVENT_TYPE(wxEVT_SETTING_CHANGED) | |
227 | DEFINE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE) | |
228 | DEFINE_EVENT_TYPE(wxEVT_PALETTE_CHANGED) | |
229 | DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN) | |
230 | DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP) | |
231 | DEFINE_EVENT_TYPE(wxEVT_JOY_MOVE) | |
232 | DEFINE_EVENT_TYPE(wxEVT_JOY_ZMOVE) | |
233 | DEFINE_EVENT_TYPE(wxEVT_DROP_FILES) | |
234 | DEFINE_EVENT_TYPE(wxEVT_DRAW_ITEM) | |
235 | DEFINE_EVENT_TYPE(wxEVT_MEASURE_ITEM) | |
236 | DEFINE_EVENT_TYPE(wxEVT_COMPARE_ITEM) | |
237 | DEFINE_EVENT_TYPE(wxEVT_INIT_DIALOG) | |
238 | DEFINE_EVENT_TYPE(wxEVT_IDLE) | |
239 | DEFINE_EVENT_TYPE(wxEVT_UPDATE_UI) | |
0b5eceb6 VZ |
240 | |
241 | // Generic command events | |
242 | // Note: a click is a higher-level event than button down/up | |
2e4df4bf VZ |
243 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK) |
244 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK) | |
245 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK) | |
246 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK) | |
247 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS) | |
248 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS) | |
249 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_ENTER) | |
0b5eceb6 VZ |
250 | |
251 | // Help events | |
2e4df4bf VZ |
252 | DEFINE_EVENT_TYPE(wxEVT_HELP) |
253 | DEFINE_EVENT_TYPE(wxEVT_DETAILED_HELP) | |
6164f93c VZ |
254 | |
255 | #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
256 | ||
257 | // ============================================================================ | |
258 | // implementation | |
259 | // ============================================================================ | |
0b5eceb6 | 260 | |
0b5eceb6 VZ |
261 | // ---------------------------------------------------------------------------- |
262 | // event initialization | |
263 | // ---------------------------------------------------------------------------- | |
264 | ||
265 | int wxNewEventType() | |
266 | { | |
267 | // MT-FIXME | |
268 | static int s_lastUsedEventType = wxEVT_FIRST; | |
269 | ||
cbee8f8d VZ |
270 | #if WXWIN_COMPATIBILITY_2 |
271 | // check that we don't overlap with the user-defined types: if it does | |
272 | // happen, the best solution is probably to update the existing code to | |
273 | // use wxNewEventType() instead of wxEVT_USER_FIRST | |
6164f93c VZ |
274 | // |
275 | // due to the uncertainty | |
cbee8f8d VZ |
276 | wxASSERT_MSG( s_lastUsedEventType < wxEVT_USER_FIRST - 1, |
277 | _T("possible event type conflict") ); | |
278 | #endif // WXWIN_COMPATIBILITY_2 | |
279 | ||
0b5eceb6 VZ |
280 | return s_lastUsedEventType++; |
281 | } | |
282 | ||
8e193f38 VZ |
283 | // ---------------------------------------------------------------------------- |
284 | // wxEvent | |
285 | // ---------------------------------------------------------------------------- | |
286 | ||
c801d85f KB |
287 | /* |
288 | * General wxWindows events, covering | |
289 | * all interesting things that might happen (button clicking, resizing, | |
290 | * setting text in widgets, etc.). | |
291 | * | |
292 | * For each completely new event type, derive a new event class. | |
293 | * | |
294 | */ | |
295 | ||
296 | wxEvent::wxEvent(int theId) | |
297 | { | |
0b746ba8 VZ |
298 | m_eventType = wxEVT_NULL; |
299 | m_eventObject = (wxObject *) NULL; | |
0b746ba8 VZ |
300 | m_timeStamp = 0; |
301 | m_id = theId; | |
302 | m_skipped = FALSE; | |
303 | m_callbackUserData = (wxObject *) NULL; | |
193bf013 | 304 | m_isCommandEvent = FALSE; |
c801d85f KB |
305 | } |
306 | ||
aadbdf11 | 307 | void wxEvent::CopyObject(wxObject& object_dest) const |
a737331d | 308 | { |
e90c1d2a | 309 | wxEvent *obj = (wxEvent *)&object_dest; |
aadbdf11 GL |
310 | wxObject::CopyObject(object_dest); |
311 | ||
312 | obj->m_eventType = m_eventType; | |
313 | obj->m_eventObject = m_eventObject; | |
aadbdf11 GL |
314 | obj->m_timeStamp = m_timeStamp; |
315 | obj->m_id = m_id; | |
316 | obj->m_skipped = m_skipped; | |
317 | obj->m_callbackUserData = m_callbackUserData; | |
318 | obj->m_isCommandEvent = m_isCommandEvent; | |
a737331d GL |
319 | } |
320 | ||
e90c1d2a VZ |
321 | #if wxUSE_GUI |
322 | ||
c801d85f KB |
323 | /* |
324 | * Command events | |
325 | * | |
326 | */ | |
327 | ||
7798a18e | 328 | wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId) |
c801d85f | 329 | { |
0b746ba8 VZ |
330 | m_eventType = commandType; |
331 | m_clientData = (char *) NULL; | |
332 | m_clientObject = (wxClientData *) NULL; | |
333 | m_extraLong = 0; | |
334 | m_commandInt = 0; | |
335 | m_id = theId; | |
04392d70 | 336 | m_commandString = wxEmptyString; |
193bf013 | 337 | m_isCommandEvent = TRUE; |
c801d85f KB |
338 | } |
339 | ||
aadbdf11 GL |
340 | void wxCommandEvent::CopyObject(wxObject& obj_d) const |
341 | { | |
e90c1d2a | 342 | wxCommandEvent *obj = (wxCommandEvent *)&obj_d; |
aadbdf11 GL |
343 | |
344 | wxEvent::CopyObject(obj_d); | |
345 | ||
924ef850 RR |
346 | obj->m_clientData = m_clientData; |
347 | obj->m_clientObject = m_clientObject; | |
348 | obj->m_extraLong = m_extraLong; | |
349 | obj->m_commandInt = m_commandInt; | |
350 | obj->m_commandString = m_commandString; | |
351 | } | |
352 | ||
353 | /* | |
354 | * Notify events | |
355 | */ | |
356 | ||
357 | void wxNotifyEvent::CopyObject(wxObject& obj_d) const | |
358 | { | |
359 | wxNotifyEvent *obj = (wxNotifyEvent *)&obj_d; | |
360 | ||
361 | wxEvent::CopyObject(obj_d); | |
362 | ||
363 | if (!m_bAllow) obj->Veto(); | |
aadbdf11 GL |
364 | } |
365 | ||
c801d85f KB |
366 | /* |
367 | * Scroll events | |
368 | */ | |
369 | ||
0b746ba8 VZ |
370 | wxScrollEvent::wxScrollEvent(wxEventType commandType, |
371 | int id, | |
372 | int pos, | |
373 | int orient) | |
374 | : wxCommandEvent(commandType, id) | |
c801d85f | 375 | { |
0b746ba8 VZ |
376 | m_extraLong = orient; |
377 | m_commandInt = pos; | |
c801d85f KB |
378 | } |
379 | ||
d1367c3d RR |
380 | /* |
381 | * ScrollWin events | |
382 | */ | |
383 | ||
384 | wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType, | |
385 | int pos, | |
386 | int orient) | |
d1367c3d | 387 | { |
c5b42c87 | 388 | m_eventType = commandType; |
d1367c3d RR |
389 | m_extraLong = orient; |
390 | m_commandInt = pos; | |
391 | } | |
392 | ||
3c679789 RR |
393 | void wxScrollWinEvent::CopyObject(wxObject& obj_d) const |
394 | { | |
e90c1d2a | 395 | wxScrollWinEvent *obj = (wxScrollWinEvent*)&obj_d; |
3c679789 RR |
396 | |
397 | wxEvent::CopyObject(obj_d); | |
398 | ||
399 | obj->m_extraLong = m_extraLong; | |
400 | obj->m_commandInt = m_commandInt; | |
401 | } | |
402 | ||
c801d85f KB |
403 | /* |
404 | * Mouse events | |
405 | * | |
406 | */ | |
407 | ||
7798a18e | 408 | wxMouseEvent::wxMouseEvent(wxEventType commandType) |
c801d85f | 409 | { |
0b746ba8 VZ |
410 | m_eventType = commandType; |
411 | m_metaDown = FALSE; | |
412 | m_altDown = FALSE; | |
413 | m_controlDown = FALSE; | |
414 | m_shiftDown = FALSE; | |
415 | m_leftDown = FALSE; | |
416 | m_rightDown = FALSE; | |
417 | m_middleDown = FALSE; | |
418 | m_x = 0; | |
419 | m_y = 0; | |
d2c52078 RD |
420 | m_wheelRotation = 0; |
421 | m_wheelDelta = 0; | |
422 | m_linesPerAction = 0; | |
c801d85f KB |
423 | } |
424 | ||
aadbdf11 GL |
425 | void wxMouseEvent::CopyObject(wxObject& obj_d) const |
426 | { | |
427 | wxMouseEvent *obj = (wxMouseEvent *)&obj_d; | |
428 | ||
429 | wxEvent::CopyObject(obj_d); | |
430 | ||
431 | obj->m_metaDown = m_metaDown; | |
432 | obj->m_altDown = m_altDown; | |
433 | obj->m_controlDown = m_controlDown; | |
434 | obj->m_shiftDown = m_shiftDown; | |
435 | obj->m_leftDown = m_leftDown; | |
436 | obj->m_rightDown = m_rightDown; | |
437 | obj->m_middleDown = m_middleDown; | |
438 | obj->m_x = m_x; | |
439 | obj->m_y = m_y; | |
440 | } | |
441 | ||
c801d85f KB |
442 | // True if was a button dclick event (1 = left, 2 = middle, 3 = right) |
443 | // or any button dclick event (but = -1) | |
444 | bool wxMouseEvent::ButtonDClick(int but) const | |
445 | { | |
0b746ba8 VZ |
446 | switch (but) |
447 | { | |
448 | case -1: | |
449 | return (LeftDClick() || MiddleDClick() || RightDClick()); | |
450 | case 1: | |
451 | return LeftDClick(); | |
452 | case 2: | |
453 | return MiddleDClick(); | |
454 | case 3: | |
455 | return RightDClick(); | |
456 | default: | |
223d09f6 | 457 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick")); |
0b746ba8 VZ |
458 | } |
459 | ||
460 | return FALSE; | |
c801d85f KB |
461 | } |
462 | ||
463 | // True if was a button down event (1 = left, 2 = middle, 3 = right) | |
464 | // or any button down event (but = -1) | |
465 | bool wxMouseEvent::ButtonDown(int but) const | |
466 | { | |
0b746ba8 VZ |
467 | switch (but) |
468 | { | |
469 | case -1: | |
470 | return (LeftDown() || MiddleDown() || RightDown()); | |
471 | case 1: | |
472 | return LeftDown(); | |
473 | case 2: | |
474 | return MiddleDown(); | |
475 | case 3: | |
476 | return RightDown(); | |
477 | default: | |
223d09f6 | 478 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown")); |
0b746ba8 VZ |
479 | } |
480 | ||
481 | return FALSE; | |
c801d85f KB |
482 | } |
483 | ||
484 | // True if was a button up event (1 = left, 2 = middle, 3 = right) | |
485 | // or any button up event (but = -1) | |
486 | bool wxMouseEvent::ButtonUp(int but) const | |
487 | { | |
1e6feb95 VZ |
488 | switch (but) |
489 | { | |
0b746ba8 VZ |
490 | case -1: |
491 | return (LeftUp() || MiddleUp() || RightUp()); | |
492 | case 1: | |
493 | return LeftUp(); | |
494 | case 2: | |
495 | return MiddleUp(); | |
496 | case 3: | |
497 | return RightUp(); | |
498 | default: | |
223d09f6 | 499 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp")); |
0b746ba8 VZ |
500 | } |
501 | ||
502 | return FALSE; | |
c801d85f KB |
503 | } |
504 | ||
505 | // True if the given button is currently changing state | |
506 | bool wxMouseEvent::Button(int but) const | |
507 | { | |
1e6feb95 VZ |
508 | switch (but) |
509 | { | |
0b746ba8 | 510 | case -1: |
72cdf4c9 | 511 | return (ButtonUp(-1) || ButtonDown(-1) || ButtonDClick(-1)); |
0b746ba8 VZ |
512 | case 1: |
513 | return (LeftDown() || LeftUp() || LeftDClick()); | |
514 | case 2: | |
515 | return (MiddleDown() || MiddleUp() || MiddleDClick()); | |
516 | case 3: | |
517 | return (RightDown() || RightUp() || RightDClick()); | |
518 | default: | |
223d09f6 | 519 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button")); |
0b746ba8 VZ |
520 | } |
521 | ||
522 | return FALSE; | |
c801d85f KB |
523 | } |
524 | ||
525 | bool wxMouseEvent::ButtonIsDown(int but) const | |
526 | { | |
1e6feb95 VZ |
527 | switch (but) |
528 | { | |
0b746ba8 VZ |
529 | case -1: |
530 | return (LeftIsDown() || MiddleIsDown() || RightIsDown()); | |
531 | case 1: | |
532 | return LeftIsDown(); | |
533 | case 2: | |
534 | return MiddleIsDown(); | |
535 | case 3: | |
536 | return RightIsDown(); | |
537 | default: | |
223d09f6 | 538 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown")); |
0b746ba8 VZ |
539 | } |
540 | ||
541 | return FALSE; | |
c801d85f KB |
542 | } |
543 | ||
1e6feb95 VZ |
544 | int wxMouseEvent::GetButton() const |
545 | { | |
546 | for ( int i = 1; i <= 3; i++ ) | |
547 | { | |
548 | if ( Button(i) ) | |
549 | { | |
550 | return i; | |
551 | } | |
552 | } | |
553 | ||
554 | return -1; | |
555 | } | |
556 | ||
c801d85f KB |
557 | // Find the logical position of the event given the DC |
558 | wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const | |
559 | { | |
0757d27c JS |
560 | wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y)); |
561 | return pt; | |
c801d85f KB |
562 | } |
563 | ||
564 | ||
565 | /* | |
566 | * Keyboard events | |
567 | * | |
568 | */ | |
569 | ||
7798a18e | 570 | wxKeyEvent::wxKeyEvent(wxEventType type) |
c801d85f | 571 | { |
0b746ba8 VZ |
572 | m_eventType = type; |
573 | m_shiftDown = FALSE; | |
574 | m_controlDown = FALSE; | |
575 | m_metaDown = FALSE; | |
576 | m_altDown = FALSE; | |
577 | m_keyCode = 0; | |
b0e813a0 | 578 | m_scanCode = 0; |
c801d85f KB |
579 | } |
580 | ||
aadbdf11 GL |
581 | void wxKeyEvent::CopyObject(wxObject& obj_d) const |
582 | { | |
583 | wxKeyEvent *obj = (wxKeyEvent *)&obj_d; | |
584 | wxEvent::CopyObject(obj_d); | |
585 | ||
924ef850 RR |
586 | obj->m_x = m_x; |
587 | obj->m_y = m_y; | |
588 | obj->m_keyCode = m_keyCode; | |
6164f93c | 589 | |
aadbdf11 GL |
590 | obj->m_shiftDown = m_shiftDown; |
591 | obj->m_controlDown = m_controlDown; | |
592 | obj->m_metaDown = m_metaDown; | |
593 | obj->m_altDown = m_altDown; | |
594 | obj->m_keyCode = m_keyCode; | |
595 | } | |
596 | ||
597 | ||
598 | /* | |
599 | * Misc events | |
600 | */ | |
601 | ||
602 | void wxSizeEvent::CopyObject(wxObject& obj_d) const | |
603 | { | |
604 | wxSizeEvent *obj = (wxSizeEvent *)&obj_d; | |
605 | wxEvent::CopyObject(obj_d); | |
606 | ||
607 | obj->m_size = m_size; | |
608 | } | |
609 | ||
610 | void wxMoveEvent::CopyObject(wxObject& obj_d) const | |
611 | { | |
612 | wxMoveEvent *obj = (wxMoveEvent *)&obj_d; | |
613 | wxEvent::CopyObject(obj_d); | |
614 | ||
615 | obj->m_pos = m_pos; | |
616 | } | |
617 | ||
618 | void wxEraseEvent::CopyObject(wxObject& obj_d) const | |
619 | { | |
620 | wxEraseEvent *obj = (wxEraseEvent *)&obj_d; | |
621 | wxEvent::CopyObject(obj_d); | |
622 | ||
623 | obj->m_dc = m_dc; | |
624 | } | |
625 | ||
626 | void wxActivateEvent::CopyObject(wxObject& obj_d) const | |
627 | { | |
628 | wxActivateEvent *obj = (wxActivateEvent *)&obj_d; | |
629 | wxEvent::CopyObject(obj_d); | |
630 | ||
631 | obj->m_active = m_active; | |
632 | } | |
633 | ||
634 | void wxMenuEvent::CopyObject(wxObject& obj_d) const | |
635 | { | |
636 | wxMenuEvent *obj = (wxMenuEvent *)&obj_d; | |
637 | wxEvent::CopyObject(obj_d); | |
638 | ||
639 | obj->m_menuId = m_menuId; | |
640 | } | |
641 | ||
642 | void wxCloseEvent::CopyObject(wxObject& obj_d) const | |
643 | { | |
644 | wxCloseEvent *obj = (wxCloseEvent *)&obj_d; | |
645 | wxEvent::CopyObject(obj_d); | |
646 | ||
647 | obj->m_loggingOff = m_loggingOff; | |
648 | obj->m_veto = m_veto; | |
649 | #if WXWIN_COMPATIBILITY | |
650 | obj->m_force = m_force; | |
651 | #endif | |
652 | obj->m_canVeto = m_canVeto; | |
653 | } | |
e90c1d2a | 654 | |
aadbdf11 GL |
655 | void wxShowEvent::CopyObject(wxObject& obj_d) const |
656 | { | |
657 | wxShowEvent *obj = (wxShowEvent *)&obj_d; | |
658 | wxEvent::CopyObject(obj_d); | |
659 | ||
660 | obj->m_show = m_show; | |
661 | } | |
f305c661 GL |
662 | |
663 | void wxJoystickEvent::CopyObject(wxObject& obj_d) const | |
664 | { | |
665 | wxJoystickEvent *obj = (wxJoystickEvent *)&obj_d; | |
666 | wxEvent::CopyObject(obj_d); | |
667 | ||
668 | obj->m_pos = m_pos; | |
669 | obj->m_zPosition = m_zPosition; | |
670 | obj->m_buttonChange = m_buttonChange; | |
671 | obj->m_buttonState = m_buttonState; | |
672 | obj->m_joyStick = m_joyStick; | |
e90c1d2a | 673 | } |
f305c661 GL |
674 | |
675 | void wxDropFilesEvent::CopyObject(wxObject& obj_d) const | |
676 | { | |
677 | wxDropFilesEvent *obj = (wxDropFilesEvent *)&obj_d; | |
678 | wxEvent::CopyObject(obj_d); | |
679 | ||
680 | obj->m_noFiles = m_noFiles; | |
681 | obj->m_pos = m_pos; | |
682 | // TODO: Problem with obj->m_files. It should be deallocated by the | |
e90c1d2a | 683 | // destructor of the event. |
f305c661 GL |
684 | } |
685 | ||
686 | void wxUpdateUIEvent::CopyObject(wxObject &obj_d) const | |
687 | { | |
688 | wxUpdateUIEvent *obj = (wxUpdateUIEvent *)&obj_d; | |
689 | wxEvent::CopyObject(obj_d); | |
690 | ||
691 | obj->m_checked = m_checked; | |
692 | obj->m_enabled = m_enabled; | |
693 | obj->m_text = m_text; | |
694 | obj->m_setText = m_setText; | |
695 | obj->m_setChecked = m_setChecked; | |
696 | obj->m_setEnabled = m_setEnabled; | |
697 | } | |
698 | ||
699 | void wxPaletteChangedEvent::CopyObject(wxObject &obj_d) const | |
700 | { | |
701 | wxPaletteChangedEvent *obj = (wxPaletteChangedEvent *)&obj_d; | |
702 | wxEvent::CopyObject(obj_d); | |
703 | ||
704 | obj->m_changedWindow = m_changedWindow; | |
705 | } | |
706 | ||
707 | void wxQueryNewPaletteEvent::CopyObject(wxObject& obj_d) const | |
708 | { | |
709 | wxQueryNewPaletteEvent *obj = (wxQueryNewPaletteEvent *)&obj_d; | |
710 | wxEvent::CopyObject(obj_d); | |
711 | ||
712 | obj->m_paletteRealized = m_paletteRealized; | |
713 | } | |
aadbdf11 | 714 | |
42e69d6b | 715 | wxWindowCreateEvent::wxWindowCreateEvent(wxWindow *win) |
42e69d6b | 716 | { |
cfe17b74 | 717 | SetEventType(wxEVT_CREATE); |
42e69d6b VZ |
718 | SetEventObject(win); |
719 | } | |
720 | ||
721 | wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow *win) | |
42e69d6b | 722 | { |
cfe17b74 | 723 | SetEventType(wxEVT_DESTROY); |
42e69d6b VZ |
724 | SetEventObject(win); |
725 | } | |
726 | ||
e90c1d2a VZ |
727 | void wxIdleEvent::CopyObject(wxObject& obj_d) const |
728 | { | |
729 | wxIdleEvent *obj = (wxIdleEvent *)&obj_d; | |
730 | wxEvent::CopyObject(obj_d); | |
731 | ||
732 | obj->m_requestMore = m_requestMore; | |
733 | } | |
734 | ||
456bc6d9 VZ |
735 | wxChildFocusEvent::wxChildFocusEvent(wxWindow *win) |
736 | : wxCommandEvent(wxEVT_CHILD_FOCUS) | |
737 | { | |
738 | SetEventObject(win); | |
739 | } | |
740 | ||
dd070522 VZ |
741 | #endif // wxUSE_GUI |
742 | ||
456bc6d9 VZ |
743 | // ---------------------------------------------------------------------------- |
744 | // wxEvtHandler | |
745 | // ---------------------------------------------------------------------------- | |
746 | ||
c801d85f KB |
747 | /* |
748 | * Event handler | |
749 | */ | |
750 | ||
0b746ba8 | 751 | wxEvtHandler::wxEvtHandler() |
c801d85f | 752 | { |
0b746ba8 VZ |
753 | m_nextHandler = (wxEvtHandler *) NULL; |
754 | m_previousHandler = (wxEvtHandler *) NULL; | |
755 | m_enabled = TRUE; | |
756 | m_dynamicEvents = (wxList *) NULL; | |
193bf013 | 757 | m_isWindow = FALSE; |
8e193f38 | 758 | m_pendingEvents = (wxList *) NULL; |
7214297d | 759 | #if wxUSE_THREADS |
41404da7 | 760 | # if !defined(__VISAGECPP__) |
8e193f38 | 761 | m_eventsLocker = new wxCriticalSection; |
41404da7 | 762 | # endif |
7214297d | 763 | #endif |
b88c44e7 RD |
764 | // no client data (yet) |
765 | m_clientData = NULL; | |
766 | m_clientDataType = wxClientData_None; | |
c801d85f KB |
767 | } |
768 | ||
0b746ba8 | 769 | wxEvtHandler::~wxEvtHandler() |
c801d85f | 770 | { |
0b746ba8 VZ |
771 | // Takes itself out of the list of handlers |
772 | if (m_previousHandler) | |
773 | m_previousHandler->m_nextHandler = m_nextHandler; | |
774 | ||
775 | if (m_nextHandler) | |
776 | m_nextHandler->m_previousHandler = m_previousHandler; | |
777 | ||
778 | if (m_dynamicEvents) | |
fe71f65c | 779 | { |
0b746ba8 VZ |
780 | wxNode *node = m_dynamicEvents->First(); |
781 | while (node) | |
782 | { | |
2e4df4bf VZ |
783 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
784 | wxEventTableEntry *entry = (wxEventTableEntry*)node->Data(); | |
785 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
77d4384e | 786 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->Data(); |
2e4df4bf VZ |
787 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES |
788 | ||
789 | if (entry->m_callbackUserData) | |
790 | delete entry->m_callbackUserData; | |
0b746ba8 VZ |
791 | delete entry; |
792 | node = node->Next(); | |
793 | } | |
794 | delete m_dynamicEvents; | |
795 | }; | |
7214297d | 796 | |
8e193f38 | 797 | delete m_pendingEvents; |
7214297d | 798 | |
8e193f38 | 799 | #if wxUSE_THREADS |
41404da7 | 800 | # if !defined(__VISAGECPP__) |
7214297d | 801 | delete m_eventsLocker; |
41404da7 | 802 | # endif |
7214297d | 803 | #endif |
b88c44e7 RD |
804 | |
805 | // we only delete object data, not untyped | |
806 | if ( m_clientDataType == wxClientData_Object ) | |
807 | delete m_clientObject; | |
c801d85f KB |
808 | } |
809 | ||
7214297d | 810 | #if wxUSE_THREADS |
aadbdf11 | 811 | |
7214297d GL |
812 | bool wxEvtHandler::ProcessThreadEvent(wxEvent& event) |
813 | { | |
7214297d | 814 | // check that we are really in a child thread |
8e193f38 VZ |
815 | wxASSERT_MSG( !wxThread::IsMain(), |
816 | wxT("use ProcessEvent() in main thread") ); | |
817 | ||
818 | AddPendingEvent(event); | |
7214297d | 819 | |
8e193f38 VZ |
820 | return TRUE; |
821 | } | |
822 | ||
823 | #endif // wxUSE_THREADS | |
824 | ||
825 | void wxEvtHandler::AddPendingEvent(wxEvent& event) | |
826 | { | |
16c1f79c RR |
827 | // 1) Add event to list of pending events of this event handler |
828 | ||
829 | #if defined(__VISAGECPP__) | |
830 | wxENTER_CRIT_SECT( m_eventsLocker); | |
831 | #else | |
832 | wxENTER_CRIT_SECT( *m_eventsLocker); | |
833 | #endif | |
834 | ||
8e193f38 VZ |
835 | if ( !m_pendingEvents ) |
836 | m_pendingEvents = new wxList; | |
7214297d | 837 | |
8e193f38 | 838 | wxEvent *event2 = (wxEvent *)event.Clone(); |
7214297d | 839 | |
8e193f38 | 840 | m_pendingEvents->Append(event2); |
7214297d | 841 | |
16c1f79c RR |
842 | #if defined(__VISAGECPP__) |
843 | wxLEAVE_CRIT_SECT( m_eventsLocker); | |
844 | #else | |
845 | wxLEAVE_CRIT_SECT( *m_eventsLocker); | |
846 | #endif | |
847 | ||
848 | // 2) Add this event handler to list of event handlers that | |
849 | // have pending events. | |
cfe17b74 | 850 | |
b568d04f | 851 | wxENTER_CRIT_SECT(*wxPendingEventsLocker); |
72cdf4c9 | 852 | |
8e193f38 VZ |
853 | if ( !wxPendingEvents ) |
854 | wxPendingEvents = new wxList; | |
4d3a259a | 855 | wxPendingEvents->Append(this); |
72cdf4c9 | 856 | |
ce6d2511 | 857 | wxLEAVE_CRIT_SECT(*wxPendingEventsLocker); |
6164f93c | 858 | |
16c1f79c RR |
859 | // 3) Inform the system that new pending events are somwehere, |
860 | // and that these should be processed in idle time. | |
bf9e3e73 | 861 | wxWakeUpIdle(); |
7214297d GL |
862 | } |
863 | ||
864 | void wxEvtHandler::ProcessPendingEvents() | |
865 | { | |
41404da7 | 866 | #if defined(__VISAGECPP__) |
16c1f79c | 867 | wxENTER_CRIT_SECT( m_eventsLocker); |
b568d04f | 868 | #else |
16c1f79c | 869 | wxENTER_CRIT_SECT( *m_eventsLocker); |
41404da7 | 870 | #endif |
8e193f38 | 871 | |
7214297d | 872 | wxNode *node = m_pendingEvents->First(); |
8e193f38 VZ |
873 | while ( node ) |
874 | { | |
16c1f79c RR |
875 | wxEvent *event = (wxEvent *)node->Data(); |
876 | delete node; | |
cfe17b74 | 877 | |
16c1f79c | 878 | // In ProcessEvent, new events might get added and |
6164f93c | 879 | // we can safely leave the crtical section here. |
16c1f79c RR |
880 | #if defined(__VISAGECPP__) |
881 | wxLEAVE_CRIT_SECT( m_eventsLocker); | |
882 | #else | |
883 | wxLEAVE_CRIT_SECT( *m_eventsLocker); | |
884 | #endif | |
8e193f38 | 885 | ProcessEvent(*event); |
9779893b | 886 | delete event; |
16c1f79c RR |
887 | #if defined(__VISAGECPP__) |
888 | wxENTER_CRIT_SECT( m_eventsLocker); | |
889 | #else | |
890 | wxENTER_CRIT_SECT( *m_eventsLocker); | |
891 | #endif | |
cfe17b74 | 892 | |
8e193f38 | 893 | node = m_pendingEvents->First(); |
7214297d | 894 | } |
cfe17b74 | 895 | |
16c1f79c RR |
896 | #if defined(__VISAGECPP__) |
897 | wxLEAVE_CRIT_SECT( m_eventsLocker); | |
898 | #else | |
899 | wxLEAVE_CRIT_SECT( *m_eventsLocker); | |
900 | #endif | |
7214297d | 901 | } |
7214297d | 902 | |
c801d85f KB |
903 | /* |
904 | * Event table stuff | |
905 | */ | |
906 | ||
907 | bool wxEvtHandler::ProcessEvent(wxEvent& event) | |
908 | { | |
e90c1d2a | 909 | #if wxUSE_GUI |
1a77875b JS |
910 | |
911 | // We have to use the actual window or processing events from wxWindowNative | |
912 | // destructor won't work (we don't see the wxWindow class) | |
913 | #ifdef __WXDEBUG__ | |
8e193f38 | 914 | // check that our flag corresponds to reality |
1a77875b JS |
915 | wxClassInfo* info = NULL; |
916 | #ifdef __WXUNIVERSAL__ | |
917 | # if defined(__WXMSW__) | |
918 | info = CLASSINFO(wxWindowMSW); | |
919 | # elif defined(__WXGTK__) | |
920 | info = CLASSINFO(wxWindowGTK); | |
921 | # elif defined(__WXMGL__) | |
922 | info = CLASSINFO(wxWindowMGL); | |
923 | # elif defined(__WXMAC__) | |
924 | info = CLASSINFO(wxWindowMac); | |
925 | # elif defined(__WXMOTIF__) | |
926 | info = CLASSINFO(wxWindowMotif); | |
927 | # endif | |
928 | #else | |
929 | info = CLASSINFO(wxWindow); | |
930 | #endif | |
931 | ||
932 | wxASSERT_MSG( m_isWindow == IsKindOf(info), | |
1e6feb95 | 933 | _T("this should [not] be a window but it is [not]") ); |
1a77875b JS |
934 | #endif |
935 | ||
e90c1d2a | 936 | #endif // wxUSE_GUI |
0b746ba8 | 937 | |
8e193f38 | 938 | // An event handler can be enabled or disabled |
0b746ba8 | 939 | if ( GetEvtHandlerEnabled() ) |
c801d85f | 940 | { |
6164f93c | 941 | |
924ef850 RR |
942 | #if 0 |
943 | /* | |
944 | What is this? When using GUI threads, a non main | |
945 | threads can send an event and process it itself. | |
946 | This breaks GTK's GUI threads, so please explain. | |
947 | */ | |
948 | ||
8e193f38 VZ |
949 | // Check whether we are in a child thread. |
950 | if ( !wxThread::IsMain() ) | |
7214297d | 951 | return ProcessThreadEvent(event); |
924ef850 | 952 | #endif |
0757d27c | 953 | |
8e193f38 | 954 | // Handle per-instance dynamic event tables first |
193bf013 | 955 | if ( m_dynamicEvents && SearchDynamicEventTable(event) ) |
0757d27c | 956 | return TRUE; |
0b746ba8 | 957 | |
8e193f38 | 958 | // Then static per-class event tables |
0b746ba8 VZ |
959 | const wxEventTable *table = GetEventTable(); |
960 | ||
e90c1d2a | 961 | #if wxUSE_GUI && wxUSE_VALIDATORS |
0b746ba8 VZ |
962 | // Try the associated validator first, if this is a window. |
963 | // Problem: if the event handler of the window has been replaced, | |
964 | // this wxEvtHandler may no longer be a window. | |
965 | // Therefore validators won't be processed if the handler | |
966 | // has been replaced with SetEventHandler. | |
967 | // THIS CAN BE CURED if PushEventHandler is used instead of | |
968 | // SetEventHandler, and then processing will be passed down the | |
969 | // chain of event handlers. | |
ce4169a4 | 970 | if (m_isWindow) |
0b746ba8 VZ |
971 | { |
972 | wxWindow *win = (wxWindow *)this; | |
973 | ||
974 | // Can only use the validator of the window which | |
975 | // is receiving the event | |
193bf013 | 976 | if ( win == event.GetEventObject() ) |
0b746ba8 | 977 | { |
193bf013 VZ |
978 | wxValidator *validator = win->GetValidator(); |
979 | if ( validator && validator->ProcessEvent(event) ) | |
980 | { | |
981 | return TRUE; | |
982 | } | |
0b746ba8 VZ |
983 | } |
984 | } | |
ce4169a4 | 985 | #endif |
0b746ba8 VZ |
986 | |
987 | // Search upwards through the inheritance hierarchy | |
ce4169a4 | 988 | while (table) |
0b746ba8 | 989 | { |
193bf013 | 990 | if ( SearchEventTable((wxEventTable&)*table, event) ) |
0b746ba8 VZ |
991 | return TRUE; |
992 | table = table->baseTable; | |
993 | } | |
c801d85f KB |
994 | } |
995 | ||
0b746ba8 VZ |
996 | // Try going down the event handler chain |
997 | if ( GetNextHandler() ) | |
c801d85f | 998 | { |
0b746ba8 VZ |
999 | if ( GetNextHandler()->ProcessEvent(event) ) |
1000 | return TRUE; | |
c801d85f | 1001 | } |
c801d85f | 1002 | |
e90c1d2a | 1003 | #if wxUSE_GUI |
3bdc265d VZ |
1004 | // Carry on up the parent-child hierarchy, but only if event is a command |
1005 | // event: it wouldn't make sense for a parent to receive a child's size | |
1006 | // event, for example | |
193bf013 | 1007 | if ( m_isWindow && event.IsCommandEvent() ) |
0b746ba8 VZ |
1008 | { |
1009 | wxWindow *win = (wxWindow *)this; | |
3bdc265d | 1010 | |
e4b713a2 VZ |
1011 | // honour the requests to stop propagation at this window: this is |
1012 | // used by the dialogs, for example, to prevent processing the events | |
1013 | // from the dialog controls in the parent frame which rarely, if ever, | |
1014 | // makes sense | |
1015 | if ( !(win->GetExtraStyle() & wxWS_EX_BLOCK_EVENTS) ) | |
3bdc265d VZ |
1016 | { |
1017 | wxWindow *parent = win->GetParent(); | |
e4b713a2 | 1018 | if ( parent && !parent->IsBeingDeleted() ) |
3bdc265d VZ |
1019 | return parent->GetEventHandler()->ProcessEvent(event); |
1020 | } | |
0b746ba8 | 1021 | } |
e90c1d2a | 1022 | #endif // wxUSE_GUI |
0b746ba8 VZ |
1023 | |
1024 | // Last try - application object. | |
193bf013 | 1025 | if ( wxTheApp && (this != wxTheApp) ) |
0b746ba8 | 1026 | { |
193bf013 VZ |
1027 | // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always |
1028 | // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be | |
1029 | // processed appropriately via SearchEventTable. | |
1030 | if ( event.GetEventType() != wxEVT_IDLE ) | |
1031 | { | |
1032 | if ( wxTheApp->ProcessEvent(event) ) | |
1033 | return TRUE; | |
1034 | } | |
0b746ba8 VZ |
1035 | } |
1036 | ||
c801d85f KB |
1037 | return FALSE; |
1038 | } | |
1039 | ||
1040 | bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event) | |
1041 | { | |
68662769 VZ |
1042 | wxEventType eventType = event.GetEventType(); |
1043 | int eventId = event.GetId(); | |
0b746ba8 | 1044 | |
68662769 VZ |
1045 | // BC++ doesn't like testing for m_fn without != 0 |
1046 | for ( int i = 0; table.entries[i].m_fn != 0; i++ ) | |
c801d85f | 1047 | { |
6e58645e VZ |
1048 | // the line using reference exposes a bug in gcc: although it _seems_ |
1049 | // to work, it leads to weird crashes later on during program | |
1050 | // execution | |
1051 | #ifdef __GNUG__ | |
1052 | wxEventTableEntry entry = table.entries[i]; | |
1053 | #else | |
68662769 | 1054 | const wxEventTableEntry& entry = table.entries[i]; |
6e58645e | 1055 | #endif |
68662769 VZ |
1056 | |
1057 | // match only if the event type is the same and the id is either -1 in | |
1058 | // the event table (meaning "any") or the event id matches the id | |
1059 | // specified in the event table either exactly or by falling into | |
1060 | // range between first and last | |
1061 | if ( eventType == entry.m_eventType ) | |
0b746ba8 | 1062 | { |
68662769 VZ |
1063 | int tableId1 = entry.m_id, |
1064 | tableId2 = entry.m_lastId; | |
1065 | ||
1066 | if ( (tableId1 == -1) || | |
1067 | (tableId2 == -1 && eventId == tableId1) || | |
1068 | (tableId2 != -1 && | |
1069 | (eventId >= tableId1 && eventId <= tableId2)) ) | |
1070 | { | |
1071 | event.Skip(FALSE); | |
1072 | event.m_callbackUserData = entry.m_callbackUserData; | |
0b746ba8 | 1073 | |
68662769 | 1074 | (this->*((wxEventFunction) (entry.m_fn)))(event); |
0b746ba8 | 1075 | |
68662769 VZ |
1076 | return !event.GetSkipped(); |
1077 | } | |
0b746ba8 | 1078 | } |
c801d85f | 1079 | } |
68662769 | 1080 | |
0b746ba8 | 1081 | return FALSE; |
c801d85f | 1082 | } |
97d7bfb8 | 1083 | |
debe6624 | 1084 | void wxEvtHandler::Connect( int id, int lastId, |
77d4384e | 1085 | int eventType, |
0b746ba8 VZ |
1086 | wxObjectEventFunction func, |
1087 | wxObject *userData ) | |
fe71f65c | 1088 | { |
cbee8f8d | 1089 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
2e4df4bf | 1090 | wxEventTableEntry *entry = new wxEventTableEntry; |
cbee8f8d VZ |
1091 | entry->m_eventType = eventType; |
1092 | entry->m_id = id; | |
1093 | entry->m_lastId = lastId; | |
1094 | entry->m_fn = func; | |
1095 | entry->m_callbackUserData = userData; | |
1096 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
0b5eceb6 VZ |
1097 | wxDynamicEventTableEntry *entry = |
1098 | new wxDynamicEventTableEntry(eventType, id, lastId, func, userData); | |
cbee8f8d | 1099 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES |
0b746ba8 VZ |
1100 | |
1101 | if (!m_dynamicEvents) | |
1102 | m_dynamicEvents = new wxList; | |
1103 | ||
1104 | m_dynamicEvents->Append( (wxObject*) entry ); | |
fe71f65c | 1105 | } |
97d7bfb8 RR |
1106 | |
1107 | bool wxEvtHandler::Disconnect( int id, int lastId, wxEventType eventType, | |
1108 | wxObjectEventFunction func, | |
1109 | wxObject *userData ) | |
1110 | { | |
1111 | if (!m_dynamicEvents) | |
1112 | return FALSE; | |
cfe17b74 | 1113 | |
97d7bfb8 RR |
1114 | wxNode *node = m_dynamicEvents->First(); |
1115 | while (node) | |
1116 | { | |
2e4df4bf VZ |
1117 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
1118 | wxEventTableEntry *entry = (wxEventTableEntry*)node->Data(); | |
1119 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
1120 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->Data(); | |
1121 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES | |
1122 | ||
97d7bfb8 RR |
1123 | if ((entry->m_id == id) && |
1124 | ((entry->m_lastId == lastId) || (lastId == -1)) && | |
1125 | ((entry->m_eventType == eventType) || (eventType == wxEVT_NULL)) && | |
1126 | ((entry->m_fn == func) || (func == (wxObjectEventFunction)NULL)) && | |
1127 | ((entry->m_callbackUserData == userData) || (userData == (wxObject*)NULL))) | |
1128 | { | |
2e4df4bf VZ |
1129 | if (entry->m_callbackUserData) |
1130 | delete entry->m_callbackUserData; | |
97d7bfb8 RR |
1131 | m_dynamicEvents->DeleteNode( node ); |
1132 | delete entry; | |
1133 | return TRUE; | |
1134 | } | |
1135 | node = node->Next(); | |
1136 | } | |
1137 | return FALSE; | |
1138 | } | |
fe71f65c RR |
1139 | |
1140 | bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event ) | |
1141 | { | |
193bf013 | 1142 | wxCHECK_MSG( m_dynamicEvents, FALSE, |
223d09f6 | 1143 | wxT("caller should check that we have dynamic events") ); |
0b746ba8 VZ |
1144 | |
1145 | int commandId = event.GetId(); | |
1146 | ||
1147 | wxNode *node = m_dynamicEvents->First(); | |
1148 | while (node) | |
fe71f65c | 1149 | { |
2e4df4bf VZ |
1150 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
1151 | wxEventTableEntry *entry = (wxEventTableEntry*)node->Data(); | |
1152 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
1153 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->Data(); | |
1154 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES | |
0b746ba8 VZ |
1155 | |
1156 | if (entry->m_fn) | |
1157 | { | |
1158 | // Match, if event spec says any id will do (id == -1) | |
1159 | if ( (event.GetEventType() == entry->m_eventType) && | |
1160 | (entry->m_id == -1 || | |
1161 | (entry->m_lastId == -1 && commandId == entry->m_id) || | |
1162 | (entry->m_lastId != -1 && | |
1163 | (commandId >= entry->m_id && commandId <= entry->m_lastId))) ) | |
1164 | { | |
1165 | event.Skip(FALSE); | |
1166 | event.m_callbackUserData = entry->m_callbackUserData; | |
1167 | ||
1168 | (this->*((wxEventFunction) (entry->m_fn)))(event); | |
1169 | ||
1170 | if (event.GetSkipped()) | |
1171 | return FALSE; | |
1172 | else | |
1173 | return TRUE; | |
1174 | } | |
1175 | } | |
1176 | node = node->Next(); | |
7b678698 | 1177 | } |
0b746ba8 | 1178 | return FALSE; |
fe71f65c RR |
1179 | }; |
1180 | ||
b88c44e7 RD |
1181 | void wxEvtHandler::DoSetClientObject( wxClientData *data ) |
1182 | { | |
1183 | wxASSERT_MSG( m_clientDataType != wxClientData_Void, | |
1184 | wxT("can't have both object and void client data") ); | |
1185 | ||
1186 | if ( m_clientObject ) | |
1187 | delete m_clientObject; | |
1188 | ||
1189 | m_clientObject = data; | |
1190 | m_clientDataType = wxClientData_Object; | |
1191 | } | |
1192 | ||
1193 | wxClientData *wxEvtHandler::DoGetClientObject() const | |
1194 | { | |
1195 | // it's not an error to call GetClientObject() on a window which doesn't | |
1196 | // have client data at all - NULL will be returned | |
1197 | wxASSERT_MSG( m_clientDataType != wxClientData_Void, | |
1198 | wxT("this window doesn't have object client data") ); | |
1199 | ||
1200 | return m_clientObject; | |
1201 | } | |
1202 | ||
1203 | void wxEvtHandler::DoSetClientData( void *data ) | |
1204 | { | |
1205 | wxASSERT_MSG( m_clientDataType != wxClientData_Object, | |
1206 | wxT("can't have both object and void client data") ); | |
1207 | ||
1208 | m_clientData = data; | |
1209 | m_clientDataType = wxClientData_Void; | |
1210 | } | |
1211 | ||
1212 | void *wxEvtHandler::DoGetClientData() const | |
1213 | { | |
1214 | // it's not an error to call GetClientData() on a window which doesn't have | |
1215 | // client data at all - NULL will be returned | |
1216 | wxASSERT_MSG( m_clientDataType != wxClientData_Object, | |
1217 | wxT("this window doesn't have void client data") ); | |
1218 | ||
1219 | return m_clientData; | |
1220 | } | |
1221 | ||
1222 | ||
e3065973 | 1223 | #if WXWIN_COMPATIBILITY |
0b746ba8 | 1224 | bool wxEvtHandler::OnClose() |
c801d85f | 1225 | { |
0b746ba8 VZ |
1226 | if (GetNextHandler()) |
1227 | return GetNextHandler()->OnClose(); | |
1228 | else | |
1229 | return FALSE; | |
c801d85f | 1230 | } |
193bf013 | 1231 | #endif // WXWIN_COMPATIBILITY |
e3065973 | 1232 | |
e90c1d2a VZ |
1233 | #if wxUSE_GUI |
1234 | ||
e702ff0f JS |
1235 | // Find a window with the focus, that is also a descendant of the given window. |
1236 | // This is used to determine the window to initially send commands to. | |
1237 | wxWindow* wxFindFocusDescendant(wxWindow* ancestor) | |
1238 | { | |
1239 | // Process events starting with the window with the focus, if any. | |
1240 | wxWindow* focusWin = wxWindow::FindFocus(); | |
1241 | wxWindow* win = focusWin; | |
1242 | ||
1243 | // Check if this is a descendant of this frame. | |
1244 | // If not, win will be set to NULL. | |
1245 | while (win) | |
1246 | { | |
1247 | if (win == ancestor) | |
1248 | break; | |
1249 | else | |
1250 | win = win->GetParent(); | |
1251 | } | |
1252 | if (win == (wxWindow*) NULL) | |
1253 | focusWin = (wxWindow*) NULL; | |
1254 | ||
1255 | return focusWin; | |
1256 | } | |
1257 | ||
e90c1d2a | 1258 | #endif // wxUSE_GUI |