]>
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$ | |
55d99c7a | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
8e193f38 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
e4844687 SN |
20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) && !defined(__EMX__) |
21 | // Some older compilers (such as EMX) cannot handle | |
1c624631 | 22 | // #pragma interface/implementation correctly, iff |
e4844687 SN |
23 | // #pragma implementation is used in _two_ translation |
24 | // units (as created by e.g. event.cpp compiled for | |
25 | // libwx_base and event.cpp compiled for libwx_gui_core). | |
26 | // So we must not use those pragmas for those compilers in | |
27 | // such files. | |
0b746ba8 | 28 | #pragma implementation "event.h" |
c801d85f KB |
29 | #endif |
30 | ||
31 | // For compilers that support precompilation, includes "wx.h". | |
32 | #include "wx/wxprec.h" | |
33 | ||
34 | #ifdef __BORLANDC__ | |
0b746ba8 | 35 | #pragma hdrstop |
c801d85f KB |
36 | #endif |
37 | ||
38 | #ifndef WX_PRECOMP | |
0b746ba8 | 39 | #include "wx/defs.h" |
0b746ba8 | 40 | #include "wx/app.h" |
e90c1d2a VZ |
41 | #include "wx/list.h" |
42 | ||
43 | #if wxUSE_GUI | |
44 | #include "wx/control.h" | |
45 | #include "wx/utils.h" | |
46 | #include "wx/dc.h" | |
47 | #endif // wxUSE_GUI | |
c801d85f KB |
48 | #endif |
49 | ||
50 | #include "wx/event.h" | |
afa039f9 | 51 | #include "wx/module.h" |
e90c1d2a VZ |
52 | |
53 | #if wxUSE_GUI | |
54 | #include "wx/validate.h" | |
0b30bb0b JS |
55 | #if wxUSE_STOPWATCH |
56 | #include "wx/stopwatch.h" | |
57 | #endif | |
e90c1d2a | 58 | #endif // wxUSE_GUI |
c801d85f | 59 | |
8e193f38 VZ |
60 | // ---------------------------------------------------------------------------- |
61 | // wxWin macros | |
62 | // ---------------------------------------------------------------------------- | |
63 | ||
3ed2104c VZ |
64 | #if wxUSE_BASE |
65 | IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject) | |
66 | IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject) | |
67 | #endif // wxUSE_BASE | |
e90c1d2a | 68 | |
23f681ec | 69 | #if wxUSE_GUI |
6b55490a | 70 | IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent) |
23f681ec VZ |
71 | IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent) |
72 | IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent, wxCommandEvent) | |
73 | IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent) | |
74 | IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent, wxEvent) | |
75 | IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent) | |
76 | IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent) | |
77 | IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent) | |
78 | IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent) | |
1e6feb95 | 79 | IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent, wxEvent) |
23f681ec VZ |
80 | IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent) |
81 | IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent) | |
82 | IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent) | |
456bc6d9 | 83 | IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent, wxCommandEvent) |
23f681ec VZ |
84 | IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent) |
85 | IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent) | |
86 | IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent) | |
87 | IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent) | |
88 | IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent) | |
89 | IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent) | |
90 | IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent) | |
91 | IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent) | |
92 | IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent) | |
8e72b8b5 | 93 | IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent, wxEvent) |
23f681ec | 94 | IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent) |
574c939e | 95 | IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent, wxEvent) |
23f681ec | 96 | IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxCommandEvent) |
75299490 | 97 | IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxEvent) |
23f681ec VZ |
98 | IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent) |
99 | IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent) | |
100 | IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent, wxEvent) | |
101 | IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent, wxEvent) | |
b96340e6 | 102 | IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent, wxCommandEvent) |
69231000 | 103 | IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent, wxCommandEvent) |
a5e84126 | 104 | IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent, wxEvent) |
23f681ec | 105 | #endif // wxUSE_GUI |
0b746ba8 | 106 | |
3ed2104c VZ |
107 | #if wxUSE_BASE |
108 | ||
23f681ec VZ |
109 | const wxEventTable *wxEvtHandler::GetEventTable() const |
110 | { return &wxEvtHandler::sm_eventTable; } | |
0b746ba8 | 111 | |
23f681ec VZ |
112 | const wxEventTable wxEvtHandler::sm_eventTable = |
113 | { (const wxEventTable *)NULL, &wxEvtHandler::sm_eventTableEntries[0] }; | |
0b746ba8 | 114 | |
b5a98acd VZ |
115 | wxEventHashTable &wxEvtHandler::GetEventHashTable() const |
116 | { return wxEvtHandler::sm_eventHashTable; } | |
117 | ||
118 | wxEventHashTable wxEvtHandler::sm_eventHashTable(wxEvtHandler::sm_eventTable); | |
119 | ||
23f681ec | 120 | const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = |
9aaf9bed | 121 | { DECLARE_EVENT_TABLE_ENTRY(wxEVT_NULL, 0, 0, (wxObjectEventFunction)NULL, NULL) }; |
c801d85f | 122 | |
1a18887b | 123 | |
afa039f9 JS |
124 | #ifdef __WXDEBUG__ |
125 | // Clear up event hash table contents or we can get problems | |
126 | // when C++ is cleaning up the static object | |
127 | class wxEventTableEntryModule: public wxModule | |
128 | { | |
129 | DECLARE_DYNAMIC_CLASS(wxEventTableEntryModule) | |
130 | public: | |
131 | wxEventTableEntryModule() {} | |
132 | bool OnInit() { return true; } | |
133 | void OnExit() | |
134 | { | |
135 | wxEventHashTable::ClearAll(); | |
136 | } | |
137 | }; | |
138 | IMPLEMENT_DYNAMIC_CLASS(wxEventTableEntryModule, wxModule) | |
139 | #endif | |
1a18887b | 140 | |
8e193f38 VZ |
141 | // ---------------------------------------------------------------------------- |
142 | // global variables | |
143 | // ---------------------------------------------------------------------------- | |
144 | ||
145 | // To put pending event handlers | |
146 | wxList *wxPendingEvents = (wxList *)NULL; | |
147 | ||
7214297d | 148 | #if wxUSE_THREADS |
8e193f38 VZ |
149 | // protects wxPendingEvents list |
150 | wxCriticalSection *wxPendingEventsLocker = (wxCriticalSection *)NULL; | |
7214297d GL |
151 | #endif |
152 | ||
cbee8f8d VZ |
153 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES |
154 | ||
2e4df4bf VZ |
155 | // common event types are defined here, other event types are defined by the |
156 | // components which use them | |
b5a98acd | 157 | |
c15d9c85 VS |
158 | const wxEventType wxEVT_FIRST = 10000; |
159 | const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000; | |
2e4df4bf | 160 | |
461697c2 | 161 | DEFINE_EVENT_TYPE(wxEVT_NULL) |
886dd7d2 VZ |
162 | DEFINE_EVENT_TYPE(wxEVT_IDLE) |
163 | DEFINE_EVENT_TYPE(wxEVT_SOCKET) | |
164 | ||
165 | #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
166 | ||
167 | #endif // wxUSE_BASE | |
168 | ||
169 | #if wxUSE_GUI | |
170 | ||
171 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES | |
172 | ||
2e4df4bf VZ |
173 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED) |
174 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED) | |
175 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED) | |
176 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED) | |
177 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED) | |
178 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED) | |
2e4df4bf VZ |
179 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED) |
180 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED) | |
181 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED) | |
182 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED) | |
183 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED) | |
184 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED) | |
185 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED) | |
186 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED) | |
187 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER) | |
188 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED) | |
0b5eceb6 VZ |
189 | |
190 | // Sockets and timers send events, too | |
2e4df4bf | 191 | DEFINE_EVENT_TYPE(wxEVT_TIMER) |
0b5eceb6 VZ |
192 | |
193 | // Mouse event types | |
2e4df4bf VZ |
194 | DEFINE_EVENT_TYPE(wxEVT_LEFT_DOWN) |
195 | DEFINE_EVENT_TYPE(wxEVT_LEFT_UP) | |
196 | DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DOWN) | |
197 | DEFINE_EVENT_TYPE(wxEVT_MIDDLE_UP) | |
198 | DEFINE_EVENT_TYPE(wxEVT_RIGHT_DOWN) | |
199 | DEFINE_EVENT_TYPE(wxEVT_RIGHT_UP) | |
200 | DEFINE_EVENT_TYPE(wxEVT_MOTION) | |
201 | DEFINE_EVENT_TYPE(wxEVT_ENTER_WINDOW) | |
202 | DEFINE_EVENT_TYPE(wxEVT_LEAVE_WINDOW) | |
203 | DEFINE_EVENT_TYPE(wxEVT_LEFT_DCLICK) | |
204 | DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK) | |
205 | DEFINE_EVENT_TYPE(wxEVT_RIGHT_DCLICK) | |
206 | DEFINE_EVENT_TYPE(wxEVT_SET_FOCUS) | |
207 | DEFINE_EVENT_TYPE(wxEVT_KILL_FOCUS) | |
456bc6d9 | 208 | DEFINE_EVENT_TYPE(wxEVT_CHILD_FOCUS) |
d2c52078 | 209 | DEFINE_EVENT_TYPE(wxEVT_MOUSEWHEEL) |
0b5eceb6 VZ |
210 | |
211 | // Non-client mouse events | |
2e4df4bf VZ |
212 | DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN) |
213 | DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_UP) | |
214 | DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN) | |
215 | DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP) | |
216 | DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN) | |
217 | DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_UP) | |
218 | DEFINE_EVENT_TYPE(wxEVT_NC_MOTION) | |
219 | DEFINE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW) | |
220 | DEFINE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW) | |
221 | DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK) | |
222 | DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK) | |
223 | DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK) | |
0b5eceb6 VZ |
224 | |
225 | // Character input event type | |
2e4df4bf VZ |
226 | DEFINE_EVENT_TYPE(wxEVT_CHAR) |
227 | DEFINE_EVENT_TYPE(wxEVT_CHAR_HOOK) | |
228 | DEFINE_EVENT_TYPE(wxEVT_NAVIGATION_KEY) | |
229 | DEFINE_EVENT_TYPE(wxEVT_KEY_DOWN) | |
230 | DEFINE_EVENT_TYPE(wxEVT_KEY_UP) | |
5048c832 JS |
231 | #if wxUSE_HOTKEY |
232 | DEFINE_EVENT_TYPE(wxEVT_HOTKEY) | |
233 | #endif | |
0b5eceb6 VZ |
234 | |
235 | // Set cursor event | |
2e4df4bf | 236 | DEFINE_EVENT_TYPE(wxEVT_SET_CURSOR) |
0b5eceb6 VZ |
237 | |
238 | // wxScrollbar and wxSlider event identifiers | |
2e4df4bf VZ |
239 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_TOP) |
240 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM) | |
241 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEUP) | |
242 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN) | |
243 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP) | |
244 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN) | |
245 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK) | |
246 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE) | |
e8b669d3 | 247 | DEFINE_EVENT_TYPE(wxEVT_SCROLL_ENDSCROLL) |
0b5eceb6 VZ |
248 | |
249 | // Scroll events from wxWindow | |
2e4df4bf VZ |
250 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP) |
251 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM) | |
252 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP) | |
253 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN) | |
254 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP) | |
255 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN) | |
256 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK) | |
257 | DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE) | |
0b5eceb6 VZ |
258 | |
259 | // System events | |
2e4df4bf | 260 | DEFINE_EVENT_TYPE(wxEVT_SIZE) |
5706de1c | 261 | DEFINE_EVENT_TYPE(wxEVT_SIZING) |
2e4df4bf | 262 | DEFINE_EVENT_TYPE(wxEVT_MOVE) |
5706de1c | 263 | DEFINE_EVENT_TYPE(wxEVT_MOVING) |
2e4df4bf VZ |
264 | DEFINE_EVENT_TYPE(wxEVT_CLOSE_WINDOW) |
265 | DEFINE_EVENT_TYPE(wxEVT_END_SESSION) | |
266 | DEFINE_EVENT_TYPE(wxEVT_QUERY_END_SESSION) | |
267 | DEFINE_EVENT_TYPE(wxEVT_ACTIVATE_APP) | |
268 | DEFINE_EVENT_TYPE(wxEVT_POWER) | |
269 | DEFINE_EVENT_TYPE(wxEVT_ACTIVATE) | |
270 | DEFINE_EVENT_TYPE(wxEVT_CREATE) | |
271 | DEFINE_EVENT_TYPE(wxEVT_DESTROY) | |
272 | DEFINE_EVENT_TYPE(wxEVT_SHOW) | |
273 | DEFINE_EVENT_TYPE(wxEVT_ICONIZE) | |
274 | DEFINE_EVENT_TYPE(wxEVT_MAXIMIZE) | |
275 | DEFINE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED) | |
276 | DEFINE_EVENT_TYPE(wxEVT_PAINT) | |
277 | DEFINE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND) | |
278 | DEFINE_EVENT_TYPE(wxEVT_NC_PAINT) | |
279 | DEFINE_EVENT_TYPE(wxEVT_PAINT_ICON) | |
ccef86c7 VZ |
280 | DEFINE_EVENT_TYPE(wxEVT_MENU_OPEN) |
281 | DEFINE_EVENT_TYPE(wxEVT_MENU_CLOSE) | |
2e4df4bf | 282 | DEFINE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT) |
2e4df4bf VZ |
283 | DEFINE_EVENT_TYPE(wxEVT_CONTEXT_MENU) |
284 | DEFINE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED) | |
574c939e | 285 | DEFINE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED) |
2e4df4bf VZ |
286 | DEFINE_EVENT_TYPE(wxEVT_SETTING_CHANGED) |
287 | DEFINE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE) | |
288 | DEFINE_EVENT_TYPE(wxEVT_PALETTE_CHANGED) | |
289 | DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN) | |
290 | DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP) | |
291 | DEFINE_EVENT_TYPE(wxEVT_JOY_MOVE) | |
292 | DEFINE_EVENT_TYPE(wxEVT_JOY_ZMOVE) | |
293 | DEFINE_EVENT_TYPE(wxEVT_DROP_FILES) | |
294 | DEFINE_EVENT_TYPE(wxEVT_DRAW_ITEM) | |
295 | DEFINE_EVENT_TYPE(wxEVT_MEASURE_ITEM) | |
296 | DEFINE_EVENT_TYPE(wxEVT_COMPARE_ITEM) | |
297 | DEFINE_EVENT_TYPE(wxEVT_INIT_DIALOG) | |
2e4df4bf | 298 | DEFINE_EVENT_TYPE(wxEVT_UPDATE_UI) |
0b5eceb6 VZ |
299 | |
300 | // Generic command events | |
301 | // Note: a click is a higher-level event than button down/up | |
2e4df4bf VZ |
302 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK) |
303 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK) | |
304 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK) | |
305 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK) | |
306 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS) | |
307 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS) | |
308 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_ENTER) | |
0b5eceb6 VZ |
309 | |
310 | // Help events | |
2e4df4bf VZ |
311 | DEFINE_EVENT_TYPE(wxEVT_HELP) |
312 | DEFINE_EVENT_TYPE(wxEVT_DETAILED_HELP) | |
6164f93c VZ |
313 | |
314 | #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
315 | ||
886dd7d2 VZ |
316 | #endif // wxUSE_GUI |
317 | ||
318 | #if wxUSE_BASE | |
319 | ||
6164f93c VZ |
320 | // ============================================================================ |
321 | // implementation | |
322 | // ============================================================================ | |
0b5eceb6 | 323 | |
0b5eceb6 VZ |
324 | // ---------------------------------------------------------------------------- |
325 | // event initialization | |
326 | // ---------------------------------------------------------------------------- | |
327 | ||
328 | int wxNewEventType() | |
329 | { | |
330 | // MT-FIXME | |
331 | static int s_lastUsedEventType = wxEVT_FIRST; | |
332 | ||
333 | return s_lastUsedEventType++; | |
334 | } | |
335 | ||
8e193f38 VZ |
336 | // ---------------------------------------------------------------------------- |
337 | // wxEvent | |
338 | // ---------------------------------------------------------------------------- | |
339 | ||
c801d85f | 340 | /* |
77ffb593 | 341 | * General wxWidgets events, covering |
c801d85f KB |
342 | * all interesting things that might happen (button clicking, resizing, |
343 | * setting text in widgets, etc.). | |
344 | * | |
345 | * For each completely new event type, derive a new event class. | |
346 | * | |
347 | */ | |
348 | ||
8e72b8b5 | 349 | wxEvent::wxEvent(int theId, wxEventType commandType ) |
c801d85f | 350 | { |
8e72b8b5 | 351 | m_eventType = commandType; |
0b746ba8 | 352 | m_eventObject = (wxObject *) NULL; |
0b746ba8 VZ |
353 | m_timeStamp = 0; |
354 | m_id = theId; | |
1c624631 | 355 | m_skipped = false; |
0b746ba8 | 356 | m_callbackUserData = (wxObject *) NULL; |
1c624631 | 357 | m_isCommandEvent = false; |
1648d51b | 358 | m_propagationLevel = wxEVENT_PROPAGATE_NONE; |
c801d85f KB |
359 | } |
360 | ||
8e72b8b5 | 361 | wxEvent::wxEvent(const wxEvent &src) |
e6a6feba GD |
362 | : wxObject() |
363 | , m_eventObject(src.m_eventObject) | |
364 | , m_eventType(src.m_eventType) | |
365 | , m_timeStamp(src.m_timeStamp) | |
366 | , m_id(src.m_id) | |
367 | , m_callbackUserData(src.m_callbackUserData) | |
6fd5903a | 368 | , m_propagationLevel(src.m_propagationLevel) |
e6a6feba GD |
369 | , m_skipped(src.m_skipped) |
370 | , m_isCommandEvent(src.m_isCommandEvent) | |
a737331d | 371 | { |
a737331d GL |
372 | } |
373 | ||
3ed2104c VZ |
374 | #endif // wxUSE_BASE |
375 | ||
e90c1d2a VZ |
376 | #if wxUSE_GUI |
377 | ||
c801d85f KB |
378 | /* |
379 | * Command events | |
380 | * | |
381 | */ | |
382 | ||
7798a18e | 383 | wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId) |
b5a98acd | 384 | : wxEvent(theId, commandType) |
c801d85f | 385 | { |
0b746ba8 VZ |
386 | m_clientData = (char *) NULL; |
387 | m_clientObject = (wxClientData *) NULL; | |
388 | m_extraLong = 0; | |
389 | m_commandInt = 0; | |
1c624631 | 390 | m_isCommandEvent = true; |
1648d51b VZ |
391 | |
392 | // the command events are propagated upwards by default | |
393 | m_propagationLevel = wxEVENT_PROPAGATE_MAX; | |
c801d85f KB |
394 | } |
395 | ||
0b30bb0b JS |
396 | /* |
397 | * UI update events | |
398 | */ | |
399 | ||
400 | #if wxUSE_LONGLONG | |
e39af974 | 401 | wxLongLong wxUpdateUIEvent::sm_lastUpdate = 0; |
0b30bb0b JS |
402 | #endif |
403 | ||
e39af974 JS |
404 | long wxUpdateUIEvent::sm_updateInterval = 0; |
405 | ||
406 | wxUpdateUIMode wxUpdateUIEvent::sm_updateMode = wxUPDATE_UI_PROCESS_ALL; | |
0b30bb0b JS |
407 | |
408 | // Can we update? | |
a7bc03c9 | 409 | bool wxUpdateUIEvent::CanUpdate(wxWindowBase *win) |
0b30bb0b | 410 | { |
e39af974 JS |
411 | // Don't update if we've switched global updating off |
412 | // and this window doesn't support updates. | |
413 | if (win && | |
414 | (GetMode() == wxUPDATE_UI_PROCESS_SPECIFIED && | |
415 | ((win->GetExtraStyle() & wxWS_EX_PROCESS_UI_UPDATES) == 0))) | |
1c624631 | 416 | return false; |
b5a98acd | 417 | |
e39af974 | 418 | if (sm_updateInterval == -1) |
1c624631 | 419 | return false; |
534b127c WS |
420 | |
421 | if (sm_updateInterval == 0) | |
1c624631 | 422 | return true; |
534b127c | 423 | |
0b30bb0b | 424 | #if wxUSE_STOPWATCH && wxUSE_LONGLONG |
534b127c WS |
425 | wxLongLong now = wxGetLocalTimeMillis(); |
426 | if (now > (sm_lastUpdate + sm_updateInterval)) | |
427 | { | |
1c624631 | 428 | return true; |
0b30bb0b | 429 | } |
534b127c | 430 | |
1c624631 | 431 | return false; |
534b127c WS |
432 | #else |
433 | // If we don't have wxStopWatch or wxLongLong, we | |
434 | // should err on the safe side and update now anyway. | |
435 | return true; | |
436 | #endif | |
0b30bb0b JS |
437 | } |
438 | ||
439 | // Reset the update time to provide a delay until the next | |
440 | // time we should update | |
441 | void wxUpdateUIEvent::ResetUpdateTime() | |
442 | { | |
443 | #if wxUSE_STOPWATCH && wxUSE_LONGLONG | |
e39af974 | 444 | if (sm_updateInterval > 0) |
0b30bb0b JS |
445 | { |
446 | wxLongLong now = wxGetLocalTimeMillis(); | |
e39af974 | 447 | if (now > (sm_lastUpdate + sm_updateInterval)) |
0b30bb0b | 448 | { |
e39af974 | 449 | sm_lastUpdate = now; |
0b30bb0b JS |
450 | } |
451 | } | |
452 | #endif | |
453 | } | |
454 | ||
e39af974 JS |
455 | /* |
456 | * Idle events | |
457 | */ | |
b5a98acd | 458 | |
e39af974 JS |
459 | wxIdleMode wxIdleEvent::sm_idleMode = wxIDLE_PROCESS_ALL; |
460 | ||
461 | // Can we send an idle event? | |
462 | bool wxIdleEvent::CanSend(wxWindow* win) | |
463 | { | |
464 | // Don't update if we've switched global updating off | |
465 | // and this window doesn't support updates. | |
466 | if (win && | |
467 | (GetMode() == wxIDLE_PROCESS_SPECIFIED && | |
468 | ((win->GetExtraStyle() & wxWS_EX_PROCESS_IDLE) == 0))) | |
1c624631 | 469 | return false; |
b5a98acd | 470 | |
1c624631 | 471 | return true; |
e39af974 | 472 | } |
0b30bb0b | 473 | |
c801d85f KB |
474 | /* |
475 | * Scroll events | |
476 | */ | |
477 | ||
0b746ba8 VZ |
478 | wxScrollEvent::wxScrollEvent(wxEventType commandType, |
479 | int id, | |
480 | int pos, | |
481 | int orient) | |
e6a6feba | 482 | : wxCommandEvent(commandType, id) |
c801d85f | 483 | { |
0b746ba8 VZ |
484 | m_extraLong = orient; |
485 | m_commandInt = pos; | |
c801d85f KB |
486 | } |
487 | ||
d1367c3d RR |
488 | /* |
489 | * ScrollWin events | |
490 | */ | |
491 | ||
492 | wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType, | |
493 | int pos, | |
494 | int orient) | |
d1367c3d | 495 | { |
c5b42c87 | 496 | m_eventType = commandType; |
d1367c3d RR |
497 | m_extraLong = orient; |
498 | m_commandInt = pos; | |
499 | } | |
500 | ||
c801d85f KB |
501 | /* |
502 | * Mouse events | |
503 | * | |
504 | */ | |
505 | ||
7798a18e | 506 | wxMouseEvent::wxMouseEvent(wxEventType commandType) |
c801d85f | 507 | { |
0b746ba8 | 508 | m_eventType = commandType; |
1c624631 VZ |
509 | m_metaDown = false; |
510 | m_altDown = false; | |
511 | m_controlDown = false; | |
512 | m_shiftDown = false; | |
513 | m_leftDown = false; | |
514 | m_rightDown = false; | |
515 | m_middleDown = false; | |
0b746ba8 VZ |
516 | m_x = 0; |
517 | m_y = 0; | |
d2c52078 RD |
518 | m_wheelRotation = 0; |
519 | m_wheelDelta = 0; | |
520 | m_linesPerAction = 0; | |
c801d85f KB |
521 | } |
522 | ||
abcbaea7 VZ |
523 | void wxMouseEvent::Assign(const wxMouseEvent& event) |
524 | { | |
9a1725c4 | 525 | m_eventType = event.m_eventType; |
92309201 | 526 | |
abcbaea7 VZ |
527 | m_x = event.m_x; |
528 | m_y = event.m_y; | |
529 | ||
530 | m_leftDown = event.m_leftDown; | |
531 | m_middleDown = event.m_middleDown; | |
532 | m_rightDown = event.m_rightDown; | |
533 | ||
534 | m_controlDown = event.m_controlDown; | |
535 | m_shiftDown = event.m_shiftDown; | |
536 | m_altDown = event.m_altDown; | |
537 | m_metaDown = event.m_metaDown; | |
538 | ||
539 | m_wheelRotation = event.m_wheelRotation; | |
540 | m_wheelDelta = event.m_wheelDelta; | |
541 | m_linesPerAction = event.m_linesPerAction; | |
542 | } | |
543 | ||
3e89999c | 544 | // return true if was a button dclick event |
c801d85f KB |
545 | bool wxMouseEvent::ButtonDClick(int but) const |
546 | { | |
0b746ba8 VZ |
547 | switch (but) |
548 | { | |
3e89999c VZ |
549 | default: |
550 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick")); | |
551 | // fall through | |
552 | ||
553 | case wxMOUSE_BTN_ANY: | |
0b746ba8 | 554 | return (LeftDClick() || MiddleDClick() || RightDClick()); |
3e89999c VZ |
555 | |
556 | case wxMOUSE_BTN_LEFT: | |
0b746ba8 | 557 | return LeftDClick(); |
3e89999c VZ |
558 | |
559 | case wxMOUSE_BTN_MIDDLE: | |
0b746ba8 | 560 | return MiddleDClick(); |
3e89999c VZ |
561 | |
562 | case wxMOUSE_BTN_RIGHT: | |
0b746ba8 | 563 | return RightDClick(); |
0b746ba8 | 564 | } |
c801d85f KB |
565 | } |
566 | ||
3e89999c | 567 | // return true if was a button down event |
c801d85f KB |
568 | bool wxMouseEvent::ButtonDown(int but) const |
569 | { | |
0b746ba8 VZ |
570 | switch (but) |
571 | { | |
3e89999c VZ |
572 | default: |
573 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown")); | |
574 | // fall through | |
575 | ||
576 | case wxMOUSE_BTN_ANY: | |
0b746ba8 | 577 | return (LeftDown() || MiddleDown() || RightDown()); |
3e89999c VZ |
578 | |
579 | case wxMOUSE_BTN_LEFT: | |
0b746ba8 | 580 | return LeftDown(); |
3e89999c VZ |
581 | |
582 | case wxMOUSE_BTN_MIDDLE: | |
0b746ba8 | 583 | return MiddleDown(); |
3e89999c VZ |
584 | |
585 | case wxMOUSE_BTN_RIGHT: | |
0b746ba8 | 586 | return RightDown(); |
0b746ba8 | 587 | } |
c801d85f KB |
588 | } |
589 | ||
3e89999c | 590 | // return true if was a button up event |
c801d85f KB |
591 | bool wxMouseEvent::ButtonUp(int but) const |
592 | { | |
1e6feb95 VZ |
593 | switch (but) |
594 | { | |
3e89999c VZ |
595 | default: |
596 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp")); | |
597 | // fall through | |
598 | ||
599 | case wxMOUSE_BTN_ANY: | |
0b746ba8 | 600 | return (LeftUp() || MiddleUp() || RightUp()); |
3e89999c VZ |
601 | |
602 | case wxMOUSE_BTN_LEFT: | |
0b746ba8 | 603 | return LeftUp(); |
3e89999c VZ |
604 | |
605 | case wxMOUSE_BTN_MIDDLE: | |
0b746ba8 | 606 | return MiddleUp(); |
3e89999c VZ |
607 | |
608 | case wxMOUSE_BTN_RIGHT: | |
0b746ba8 | 609 | return RightUp(); |
0b746ba8 | 610 | } |
c801d85f KB |
611 | } |
612 | ||
3e89999c | 613 | // return true if the given button is currently changing state |
c801d85f KB |
614 | bool wxMouseEvent::Button(int but) const |
615 | { | |
1e6feb95 VZ |
616 | switch (but) |
617 | { | |
0b746ba8 | 618 | default: |
223d09f6 | 619 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button")); |
3e89999c VZ |
620 | // fall through |
621 | ||
622 | case wxMOUSE_BTN_ANY: | |
623 | return ButtonUp(wxMOUSE_BTN_ANY) || | |
624 | ButtonDown(wxMOUSE_BTN_ANY) || | |
625 | ButtonDClick(wxMOUSE_BTN_ANY); | |
626 | ||
627 | case wxMOUSE_BTN_LEFT: | |
628 | return LeftDown() || LeftUp() || LeftDClick(); | |
629 | ||
630 | case wxMOUSE_BTN_MIDDLE: | |
631 | return MiddleDown() || MiddleUp() || MiddleDClick(); | |
632 | ||
633 | case wxMOUSE_BTN_RIGHT: | |
634 | return RightDown() || RightUp() || RightDClick(); | |
0b746ba8 | 635 | } |
c801d85f KB |
636 | } |
637 | ||
638 | bool wxMouseEvent::ButtonIsDown(int but) const | |
639 | { | |
1e6feb95 VZ |
640 | switch (but) |
641 | { | |
3e89999c VZ |
642 | default: |
643 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown")); | |
644 | // fall through | |
645 | ||
646 | case wxMOUSE_BTN_ANY: | |
647 | return LeftIsDown() || MiddleIsDown() || RightIsDown(); | |
648 | ||
649 | case wxMOUSE_BTN_LEFT: | |
0b746ba8 | 650 | return LeftIsDown(); |
3e89999c VZ |
651 | |
652 | case wxMOUSE_BTN_MIDDLE: | |
0b746ba8 | 653 | return MiddleIsDown(); |
3e89999c VZ |
654 | |
655 | case wxMOUSE_BTN_RIGHT: | |
0b746ba8 | 656 | return RightIsDown(); |
0b746ba8 | 657 | } |
c801d85f KB |
658 | } |
659 | ||
1e6feb95 VZ |
660 | int wxMouseEvent::GetButton() const |
661 | { | |
662 | for ( int i = 1; i <= 3; i++ ) | |
663 | { | |
664 | if ( Button(i) ) | |
665 | { | |
666 | return i; | |
667 | } | |
668 | } | |
669 | ||
3e89999c | 670 | return wxMOUSE_BTN_NONE; |
1e6feb95 VZ |
671 | } |
672 | ||
c801d85f KB |
673 | // Find the logical position of the event given the DC |
674 | wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const | |
675 | { | |
0757d27c JS |
676 | wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y)); |
677 | return pt; | |
c801d85f KB |
678 | } |
679 | ||
680 | ||
681 | /* | |
8e72b8b5 | 682 | * Keyboard event |
c801d85f KB |
683 | * |
684 | */ | |
685 | ||
7798a18e | 686 | wxKeyEvent::wxKeyEvent(wxEventType type) |
c801d85f | 687 | { |
0b746ba8 | 688 | m_eventType = type; |
1c624631 VZ |
689 | m_shiftDown = false; |
690 | m_controlDown = false; | |
691 | m_metaDown = false; | |
692 | m_altDown = false; | |
0b746ba8 | 693 | m_keyCode = 0; |
b0e813a0 | 694 | m_scanCode = 0; |
2b5f62a0 VZ |
695 | #if wxUSE_UNICODE |
696 | m_uniChar = 0; | |
697 | #endif | |
c801d85f KB |
698 | } |
699 | ||
92309201 | 700 | wxKeyEvent::wxKeyEvent(const wxKeyEvent& evt) |
2b5f62a0 VZ |
701 | : wxEvent(evt) |
702 | { | |
703 | m_x = evt.m_x; | |
704 | m_y = evt.m_y; | |
705 | ||
706 | m_keyCode = evt.m_keyCode; | |
707 | ||
708 | m_controlDown = evt.m_controlDown; | |
709 | m_shiftDown = evt.m_shiftDown; | |
710 | m_altDown = evt.m_altDown; | |
711 | m_metaDown = evt.m_metaDown; | |
712 | m_scanCode = evt.m_scanCode; | |
713 | m_rawCode = evt.m_rawCode; | |
714 | m_rawFlags = evt.m_rawFlags; | |
92309201 | 715 | |
2b5f62a0 VZ |
716 | #if wxUSE_UNICODE |
717 | m_uniChar = evt.m_uniChar; | |
718 | #endif | |
719 | } | |
12a3f227 RL |
720 | |
721 | long wxKeyEvent::KeyCode() const | |
722 | { | |
723 | return m_keyCode; | |
724 | } | |
725 | ||
42e69d6b | 726 | wxWindowCreateEvent::wxWindowCreateEvent(wxWindow *win) |
42e69d6b | 727 | { |
cfe17b74 | 728 | SetEventType(wxEVT_CREATE); |
42e69d6b VZ |
729 | SetEventObject(win); |
730 | } | |
731 | ||
732 | wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow *win) | |
42e69d6b | 733 | { |
cfe17b74 | 734 | SetEventType(wxEVT_DESTROY); |
42e69d6b VZ |
735 | SetEventObject(win); |
736 | } | |
737 | ||
456bc6d9 VZ |
738 | wxChildFocusEvent::wxChildFocusEvent(wxWindow *win) |
739 | : wxCommandEvent(wxEVT_CHILD_FOCUS) | |
740 | { | |
741 | SetEventObject(win); | |
742 | } | |
743 | ||
dd070522 VZ |
744 | #endif // wxUSE_GUI |
745 | ||
9416681d VS |
746 | |
747 | #if wxUSE_BASE | |
748 | ||
b5a98acd VZ |
749 | // ---------------------------------------------------------------------------- |
750 | // wxEventHashTable | |
751 | // ---------------------------------------------------------------------------- | |
752 | ||
afa039f9 JS |
753 | static const int EVENT_TYPE_TABLE_INIT_SIZE = 31; // Not too big not too small... |
754 | ||
755 | wxEventHashTable* wxEventHashTable::sm_first = NULL; | |
b5a98acd VZ |
756 | |
757 | wxEventHashTable::wxEventHashTable(const wxEventTable &table) | |
758 | : m_table(table), | |
1c624631 | 759 | m_rebuildHash(true) |
b5a98acd VZ |
760 | { |
761 | AllocEventTypeTable(EVENT_TYPE_TABLE_INIT_SIZE); | |
1a18887b | 762 | |
afa039f9 JS |
763 | m_next = sm_first; |
764 | if (m_next) | |
765 | m_next->m_previous = this; | |
766 | sm_first = this; | |
b5a98acd VZ |
767 | } |
768 | ||
769 | wxEventHashTable::~wxEventHashTable() | |
afa039f9 JS |
770 | { |
771 | if (m_next) | |
772 | m_next->m_previous = m_previous; | |
773 | if (m_previous) | |
774 | m_previous->m_next = m_next; | |
775 | if (sm_first == this) | |
776 | sm_first = m_next; | |
1a18887b | 777 | |
afa039f9 JS |
778 | Clear(); |
779 | } | |
780 | ||
781 | void wxEventHashTable::Clear() | |
b5a98acd VZ |
782 | { |
783 | size_t i; | |
784 | for(i = 0; i < m_size; i++) | |
785 | { | |
786 | EventTypeTablePointer eTTnode = m_eventTypeTable[i]; | |
787 | if (eTTnode) | |
788 | { | |
789 | delete eTTnode; | |
790 | } | |
791 | } | |
792 | ||
afa039f9 JS |
793 | // Necessary in order to not invoke the |
794 | // overloaded delete operator when statics are cleaned up | |
795 | if (m_eventTypeTable) | |
796 | delete[] m_eventTypeTable; | |
797 | ||
798 | m_eventTypeTable = NULL; | |
799 | m_size = 0; | |
800 | } | |
801 | ||
802 | // Clear all tables | |
803 | void wxEventHashTable::ClearAll() | |
804 | { | |
805 | wxEventHashTable* table = sm_first; | |
806 | while (table) | |
807 | { | |
808 | table->Clear(); | |
809 | table = table->m_next; | |
810 | } | |
b5a98acd VZ |
811 | } |
812 | ||
813 | bool wxEventHashTable::HandleEvent(wxEvent &event, wxEvtHandler *self) | |
814 | { | |
815 | if (m_rebuildHash) | |
816 | { | |
817 | InitHashTable(); | |
1c624631 | 818 | m_rebuildHash = false; |
b5a98acd | 819 | } |
1a18887b | 820 | |
afa039f9 | 821 | if (!m_eventTypeTable) |
1a18887b | 822 | return false; |
b5a98acd VZ |
823 | |
824 | // Find all entries for the given event type. | |
825 | wxEventType eventType = event.GetEventType(); | |
826 | const EventTypeTablePointer eTTnode = m_eventTypeTable[eventType % m_size]; | |
827 | if (eTTnode && eTTnode->eventType == eventType) | |
828 | { | |
829 | // Now start the search for an event handler | |
830 | // that can handle an event with the given ID. | |
1c624631 VZ |
831 | const wxEventTableEntryPointerArray& |
832 | eventEntryTable = eTTnode->eventEntryTable; | |
b5a98acd | 833 | |
1c624631 VZ |
834 | const size_t count = eventEntryTable.GetCount(); |
835 | for (size_t n = 0; n < count; n++) | |
b5a98acd | 836 | { |
1c624631 VZ |
837 | if ( wxEvtHandler:: |
838 | ProcessEventIfMatches(*eventEntryTable[n], self, event) ) | |
b5a98acd | 839 | { |
1c624631 | 840 | return true; |
b5a98acd VZ |
841 | } |
842 | } | |
b5a98acd VZ |
843 | } |
844 | ||
1c624631 | 845 | return false; |
b5a98acd VZ |
846 | } |
847 | ||
848 | void wxEventHashTable::InitHashTable() | |
849 | { | |
850 | // Loop over the event tables and all its base tables. | |
851 | const wxEventTable *table = &m_table; | |
852 | while (table) | |
853 | { | |
854 | // Retrieve all valid event handler entries | |
855 | const wxEventTableEntry *entry = table->entries; | |
856 | while (entry->m_fn != 0) | |
857 | { | |
858 | // Add the event entry in the Hash. | |
859 | AddEntry(*entry); | |
860 | ||
861 | entry++; | |
862 | } | |
863 | ||
864 | table = table->baseTable; | |
865 | } | |
866 | ||
867 | // Lets free some memory. | |
868 | size_t i; | |
869 | for(i = 0; i < m_size; i++) | |
870 | { | |
871 | EventTypeTablePointer eTTnode = m_eventTypeTable[i]; | |
872 | if (eTTnode) | |
873 | { | |
874 | eTTnode->eventEntryTable.Shrink(); | |
875 | } | |
876 | } | |
877 | } | |
878 | ||
879 | void wxEventHashTable::AddEntry(const wxEventTableEntry &entry) | |
880 | { | |
afa039f9 JS |
881 | // This might happen 'accidentally' as the app is exiting |
882 | if (!m_eventTypeTable) | |
883 | return; | |
1a18887b | 884 | |
b5a98acd VZ |
885 | EventTypeTablePointer *peTTnode = &m_eventTypeTable[entry.m_eventType % m_size]; |
886 | EventTypeTablePointer eTTnode = *peTTnode; | |
887 | ||
888 | if (eTTnode) | |
889 | { | |
890 | if (eTTnode->eventType != entry.m_eventType) | |
891 | { | |
892 | // Resize the table! | |
893 | GrowEventTypeTable(); | |
894 | // Try again to add it. | |
895 | AddEntry(entry); | |
896 | return; | |
897 | } | |
898 | } | |
899 | else | |
900 | { | |
901 | eTTnode = new EventTypeTable; | |
902 | eTTnode->eventType = entry.m_eventType; | |
903 | *peTTnode = eTTnode; | |
904 | } | |
905 | ||
906 | // Fill all hash entries between entry.m_id and entry.m_lastId... | |
907 | eTTnode->eventEntryTable.Add(&entry); | |
908 | } | |
909 | ||
910 | void wxEventHashTable::AllocEventTypeTable(size_t size) | |
911 | { | |
912 | m_eventTypeTable = new EventTypeTablePointer[size]; | |
913 | memset((void *)m_eventTypeTable, 0, sizeof(EventTypeTablePointer)*size); | |
914 | m_size = size; | |
915 | } | |
916 | ||
917 | void wxEventHashTable::GrowEventTypeTable() | |
918 | { | |
919 | size_t oldSize = m_size; | |
920 | EventTypeTablePointer *oldEventTypeTable = m_eventTypeTable; | |
921 | ||
922 | // TODO: Search the most optimal grow sequence | |
923 | AllocEventTypeTable(/* GetNextPrime(oldSize) */oldSize*2+1); | |
924 | ||
925 | for ( size_t i = 0; i < oldSize; /* */ ) | |
926 | { | |
927 | EventTypeTablePointer eTToldNode = oldEventTypeTable[i]; | |
928 | if (eTToldNode) | |
929 | { | |
930 | EventTypeTablePointer *peTTnode = &m_eventTypeTable[eTToldNode->eventType % m_size]; | |
931 | EventTypeTablePointer eTTnode = *peTTnode; | |
932 | ||
933 | // Check for collision, we don't want any. | |
934 | if (eTTnode) | |
935 | { | |
936 | GrowEventTypeTable(); | |
937 | continue; // Don't increment the counter, | |
938 | // as we still need to add this element. | |
939 | } | |
940 | else | |
941 | { | |
942 | // Get the old value and put it in the new table. | |
943 | *peTTnode = oldEventTypeTable[i]; | |
944 | } | |
945 | } | |
946 | ||
947 | i++; | |
948 | } | |
949 | ||
950 | delete[] oldEventTypeTable; | |
951 | } | |
952 | ||
afa039f9 | 953 | |
456bc6d9 VZ |
954 | // ---------------------------------------------------------------------------- |
955 | // wxEvtHandler | |
956 | // ---------------------------------------------------------------------------- | |
957 | ||
c801d85f KB |
958 | /* |
959 | * Event handler | |
960 | */ | |
961 | ||
0b746ba8 | 962 | wxEvtHandler::wxEvtHandler() |
c801d85f | 963 | { |
0b746ba8 VZ |
964 | m_nextHandler = (wxEvtHandler *) NULL; |
965 | m_previousHandler = (wxEvtHandler *) NULL; | |
1c624631 | 966 | m_enabled = true; |
0b746ba8 | 967 | m_dynamicEvents = (wxList *) NULL; |
8e193f38 | 968 | m_pendingEvents = (wxList *) NULL; |
7214297d | 969 | #if wxUSE_THREADS |
41404da7 | 970 | # if !defined(__VISAGECPP__) |
8e193f38 | 971 | m_eventsLocker = new wxCriticalSection; |
41404da7 | 972 | # endif |
7214297d | 973 | #endif |
b88c44e7 RD |
974 | // no client data (yet) |
975 | m_clientData = NULL; | |
976 | m_clientDataType = wxClientData_None; | |
c801d85f KB |
977 | } |
978 | ||
0b746ba8 | 979 | wxEvtHandler::~wxEvtHandler() |
c801d85f | 980 | { |
0b746ba8 VZ |
981 | // Takes itself out of the list of handlers |
982 | if (m_previousHandler) | |
983 | m_previousHandler->m_nextHandler = m_nextHandler; | |
984 | ||
985 | if (m_nextHandler) | |
986 | m_nextHandler->m_previousHandler = m_previousHandler; | |
987 | ||
988 | if (m_dynamicEvents) | |
fe71f65c | 989 | { |
df5168c4 MB |
990 | wxList::iterator it = m_dynamicEvents->begin(), |
991 | en = m_dynamicEvents->end(); | |
992 | for (;it != en; ++it) | |
0b746ba8 | 993 | { |
2e4df4bf | 994 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
df5168c4 | 995 | wxEventTableEntry *entry = (wxEventTableEntry*)*it; |
2e4df4bf | 996 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES |
df5168c4 | 997 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)*it; |
2e4df4bf VZ |
998 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES |
999 | ||
1000 | if (entry->m_callbackUserData) | |
1001 | delete entry->m_callbackUserData; | |
0b746ba8 | 1002 | delete entry; |
0b746ba8 VZ |
1003 | } |
1004 | delete m_dynamicEvents; | |
1005 | }; | |
7214297d | 1006 | |
8e193f38 | 1007 | delete m_pendingEvents; |
7214297d | 1008 | |
8e193f38 | 1009 | #if wxUSE_THREADS |
41404da7 | 1010 | # if !defined(__VISAGECPP__) |
7214297d | 1011 | delete m_eventsLocker; |
41404da7 | 1012 | # endif |
b5a98acd | 1013 | |
083f7497 JS |
1014 | // Remove us from wxPendingEvents if necessary. |
1015 | if(wxPendingEventsLocker) | |
1016 | wxENTER_CRIT_SECT(*wxPendingEventsLocker); | |
1017 | if ( wxPendingEvents ) { | |
1018 | wxPendingEvents->DeleteObject(this); | |
1019 | } | |
1020 | if(wxPendingEventsLocker) | |
1021 | wxLEAVE_CRIT_SECT(*wxPendingEventsLocker); | |
7214297d | 1022 | #endif |
b88c44e7 RD |
1023 | |
1024 | // we only delete object data, not untyped | |
1025 | if ( m_clientDataType == wxClientData_Object ) | |
1026 | delete m_clientObject; | |
c801d85f KB |
1027 | } |
1028 | ||
7214297d | 1029 | #if wxUSE_THREADS |
aadbdf11 | 1030 | |
7214297d GL |
1031 | bool wxEvtHandler::ProcessThreadEvent(wxEvent& event) |
1032 | { | |
7214297d | 1033 | // check that we are really in a child thread |
8e193f38 VZ |
1034 | wxASSERT_MSG( !wxThread::IsMain(), |
1035 | wxT("use ProcessEvent() in main thread") ); | |
1036 | ||
1037 | AddPendingEvent(event); | |
7214297d | 1038 | |
1c624631 | 1039 | return true; |
8e193f38 VZ |
1040 | } |
1041 | ||
1c624631 VZ |
1042 | void wxEvtHandler::ClearEventLocker() |
1043 | { | |
1044 | #if !defined(__VISAGECPP__) | |
1045 | delete m_eventsLocker; | |
1046 | m_eventsLocker = NULL; | |
1047 | #endif | |
1048 | }; | |
1049 | ||
8e193f38 VZ |
1050 | #endif // wxUSE_THREADS |
1051 | ||
1052 | void wxEvtHandler::AddPendingEvent(wxEvent& event) | |
1053 | { | |
16c1f79c RR |
1054 | // 1) Add event to list of pending events of this event handler |
1055 | ||
7a5c8ac4 VZ |
1056 | wxEvent *eventCopy = event.Clone(); |
1057 | ||
1058 | // we must be able to copy the events here so the event class must | |
1059 | // implement Clone() properly instead of just providing a NULL stab for it | |
1060 | wxCHECK_RET( eventCopy, | |
1061 | _T("events of this type aren't supposed to be posted") ); | |
1062 | ||
16c1f79c RR |
1063 | #if defined(__VISAGECPP__) |
1064 | wxENTER_CRIT_SECT( m_eventsLocker); | |
1065 | #else | |
1066 | wxENTER_CRIT_SECT( *m_eventsLocker); | |
1067 | #endif | |
1068 | ||
8e193f38 VZ |
1069 | if ( !m_pendingEvents ) |
1070 | m_pendingEvents = new wxList; | |
7214297d | 1071 | |
7a5c8ac4 | 1072 | m_pendingEvents->Append(eventCopy); |
7214297d | 1073 | |
16c1f79c RR |
1074 | #if defined(__VISAGECPP__) |
1075 | wxLEAVE_CRIT_SECT( m_eventsLocker); | |
1076 | #else | |
1077 | wxLEAVE_CRIT_SECT( *m_eventsLocker); | |
1078 | #endif | |
1079 | ||
1080 | // 2) Add this event handler to list of event handlers that | |
1081 | // have pending events. | |
cfe17b74 | 1082 | |
b568d04f | 1083 | wxENTER_CRIT_SECT(*wxPendingEventsLocker); |
72cdf4c9 | 1084 | |
8e193f38 VZ |
1085 | if ( !wxPendingEvents ) |
1086 | wxPendingEvents = new wxList; | |
4d3a259a | 1087 | wxPendingEvents->Append(this); |
72cdf4c9 | 1088 | |
ce6d2511 | 1089 | wxLEAVE_CRIT_SECT(*wxPendingEventsLocker); |
6164f93c | 1090 | |
16c1f79c RR |
1091 | // 3) Inform the system that new pending events are somwehere, |
1092 | // and that these should be processed in idle time. | |
bf9e3e73 | 1093 | wxWakeUpIdle(); |
7214297d GL |
1094 | } |
1095 | ||
1096 | void wxEvtHandler::ProcessPendingEvents() | |
1097 | { | |
77e7c556 VZ |
1098 | // this method is only called by wxApp if this handler does have pending |
1099 | // events | |
1100 | wxCHECK_RET( m_pendingEvents, | |
1101 | wxT("Please call wxApp::ProcessPendingEvents() instead") ); | |
1102 | ||
41404da7 | 1103 | #if defined(__VISAGECPP__) |
16c1f79c | 1104 | wxENTER_CRIT_SECT( m_eventsLocker); |
b568d04f | 1105 | #else |
16c1f79c | 1106 | wxENTER_CRIT_SECT( *m_eventsLocker); |
41404da7 | 1107 | #endif |
8e193f38 | 1108 | |
df5168c4 | 1109 | wxList::compatibility_iterator node = m_pendingEvents->GetFirst(); |
8e193f38 VZ |
1110 | while ( node ) |
1111 | { | |
b1d4dd7a | 1112 | wxEvent *event = (wxEvent *)node->GetData(); |
df5168c4 | 1113 | m_pendingEvents->Erase(node); |
cfe17b74 | 1114 | |
16c1f79c | 1115 | // In ProcessEvent, new events might get added and |
6164f93c | 1116 | // we can safely leave the crtical section here. |
16c1f79c RR |
1117 | #if defined(__VISAGECPP__) |
1118 | wxLEAVE_CRIT_SECT( m_eventsLocker); | |
1119 | #else | |
1120 | wxLEAVE_CRIT_SECT( *m_eventsLocker); | |
1121 | #endif | |
8e193f38 | 1122 | ProcessEvent(*event); |
9779893b | 1123 | delete event; |
16c1f79c RR |
1124 | #if defined(__VISAGECPP__) |
1125 | wxENTER_CRIT_SECT( m_eventsLocker); | |
1126 | #else | |
1127 | wxENTER_CRIT_SECT( *m_eventsLocker); | |
1128 | #endif | |
cfe17b74 | 1129 | |
b1d4dd7a | 1130 | node = m_pendingEvents->GetFirst(); |
7214297d | 1131 | } |
cfe17b74 | 1132 | |
16c1f79c RR |
1133 | #if defined(__VISAGECPP__) |
1134 | wxLEAVE_CRIT_SECT( m_eventsLocker); | |
1135 | #else | |
1136 | wxLEAVE_CRIT_SECT( *m_eventsLocker); | |
1137 | #endif | |
7214297d | 1138 | } |
7214297d | 1139 | |
c801d85f KB |
1140 | /* |
1141 | * Event table stuff | |
1142 | */ | |
1c624631 VZ |
1143 | /* static */ bool |
1144 | wxEvtHandler::ProcessEventIfMatches(const wxEventTableEntryBase& entry, | |
1145 | wxEvtHandler *handler, | |
1146 | wxEvent& event) | |
1147 | { | |
1148 | int tableId1 = entry.m_id, | |
1149 | tableId2 = entry.m_lastId; | |
1150 | ||
1151 | // match only if the event type is the same and the id is either -1 in | |
1152 | // the event table (meaning "any") or the event id matches the id | |
1153 | // specified in the event table either exactly or by falling into | |
1154 | // range between first and last | |
1a18887b WS |
1155 | if ((tableId1 == wxID_ANY) || |
1156 | (tableId2 == wxID_ANY && tableId1 == event.GetId()) || | |
1157 | (tableId2 != wxID_ANY && | |
1c624631 VZ |
1158 | (event.GetId() >= tableId1 && event.GetId() <= tableId2))) |
1159 | { | |
1160 | event.Skip(false); | |
1161 | event.m_callbackUserData = entry.m_callbackUserData; | |
1162 | ||
1163 | #if wxUSE_EXCEPTIONS | |
1164 | if ( wxTheApp ) | |
1165 | { | |
1166 | // call the handler via wxApp method which allows the user to catch | |
1167 | // any exceptions which may be thrown by any handler in the program | |
1168 | // in one place | |
1169 | wxTheApp->HandleEvent(handler, (wxEventFunction)entry.m_fn, event); | |
1170 | } | |
1171 | else | |
8bd2a804 | 1172 | #endif // wxUSE_EXCEPTIONS |
1c624631 VZ |
1173 | { |
1174 | // no need for an extra virtual function call | |
1175 | (handler->*((wxEventFunction) (entry.m_fn)))(event); | |
1176 | } | |
1c624631 VZ |
1177 | |
1178 | if (!event.GetSkipped()) | |
1179 | return true; | |
1180 | } | |
1181 | ||
1182 | return false; | |
1183 | } | |
c801d85f | 1184 | |
4caf847c | 1185 | bool wxEvtHandler::TryParent(wxEvent& event) |
c801d85f | 1186 | { |
4caf847c | 1187 | if ( wxTheApp && (this != wxTheApp) ) |
9154d8cf | 1188 | { |
4caf847c VZ |
1189 | // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always |
1190 | // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be | |
1191 | // processed appropriately via SearchEventTable. | |
1192 | if ( event.GetEventType() != wxEVT_IDLE ) | |
1193 | { | |
1194 | if ( wxTheApp->ProcessEvent(event) ) | |
1c624631 | 1195 | return true; |
4caf847c | 1196 | } |
9154d8cf VZ |
1197 | } |
1198 | ||
1c624631 | 1199 | return false; |
4caf847c | 1200 | } |
0b746ba8 | 1201 | |
4caf847c VZ |
1202 | bool wxEvtHandler::ProcessEvent(wxEvent& event) |
1203 | { | |
9154d8cf VZ |
1204 | // allow the application to hook into event processing |
1205 | if ( wxTheApp ) | |
1206 | { | |
1207 | int rc = wxTheApp->FilterEvent(event); | |
1208 | if ( rc != -1 ) | |
1209 | { | |
1210 | wxASSERT_MSG( rc == 1 || rc == 0, | |
1211 | _T("unexpected wxApp::FilterEvent return value") ); | |
1212 | ||
1213 | return rc != 0; | |
1214 | } | |
1215 | //else: proceed normally | |
1216 | } | |
1217 | ||
8e193f38 | 1218 | // An event handler can be enabled or disabled |
0b746ba8 | 1219 | if ( GetEvtHandlerEnabled() ) |
c801d85f | 1220 | { |
22c2307c VZ |
1221 | // if we have a validator, it has higher priority than our own event |
1222 | // table | |
4caf847c | 1223 | if ( TryValidator(event) ) |
1c624631 | 1224 | return true; |
4caf847c | 1225 | |
22c2307c VZ |
1226 | // Handle per-instance dynamic event tables first |
1227 | if ( m_dynamicEvents && SearchDynamicEventTable(event) ) | |
1c624631 | 1228 | return true; |
0b746ba8 | 1229 | |
b5a98acd VZ |
1230 | // Then static per-class event tables |
1231 | if ( GetEventHashTable().HandleEvent(event, this) ) | |
1c624631 | 1232 | return true; |
c801d85f KB |
1233 | } |
1234 | ||
0b746ba8 VZ |
1235 | // Try going down the event handler chain |
1236 | if ( GetNextHandler() ) | |
c801d85f | 1237 | { |
0b746ba8 | 1238 | if ( GetNextHandler()->ProcessEvent(event) ) |
1c624631 | 1239 | return true; |
c801d85f | 1240 | } |
c801d85f | 1241 | |
22c2307c VZ |
1242 | // Finally propagate the event upwards the window chain and/or to the |
1243 | // application object as necessary | |
4caf847c | 1244 | return TryParent(event); |
c801d85f KB |
1245 | } |
1246 | ||
b5a98acd | 1247 | |
c801d85f KB |
1248 | bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event) |
1249 | { | |
1c624631 | 1250 | const wxEventType eventType = event.GetEventType(); |
68662769 | 1251 | for ( int i = 0; table.entries[i].m_fn != 0; i++ ) |
c801d85f | 1252 | { |
68662769 | 1253 | const wxEventTableEntry& entry = table.entries[i]; |
68662769 | 1254 | if ( eventType == entry.m_eventType ) |
0b746ba8 | 1255 | { |
1c624631 VZ |
1256 | if ( ProcessEventIfMatches(entry, this, event) ) |
1257 | return true; | |
0b746ba8 | 1258 | } |
c801d85f | 1259 | } |
68662769 | 1260 | |
1c624631 | 1261 | return false; |
c801d85f | 1262 | } |
97d7bfb8 | 1263 | |
debe6624 | 1264 | void wxEvtHandler::Connect( int id, int lastId, |
77d4384e | 1265 | int eventType, |
0b746ba8 | 1266 | wxObjectEventFunction func, |
65b17727 JS |
1267 | wxObject *userData, |
1268 | wxEvtHandler* eventSink ) | |
fe71f65c | 1269 | { |
cbee8f8d | 1270 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
2e4df4bf | 1271 | wxEventTableEntry *entry = new wxEventTableEntry; |
cbee8f8d VZ |
1272 | entry->m_eventType = eventType; |
1273 | entry->m_id = id; | |
1274 | entry->m_lastId = lastId; | |
1275 | entry->m_fn = func; | |
1276 | entry->m_callbackUserData = userData; | |
1277 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
0b5eceb6 | 1278 | wxDynamicEventTableEntry *entry = |
65b17727 | 1279 | new wxDynamicEventTableEntry(eventType, id, lastId, func, userData, eventSink); |
cbee8f8d | 1280 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES |
0b746ba8 VZ |
1281 | |
1282 | if (!m_dynamicEvents) | |
1283 | m_dynamicEvents = new wxList; | |
1284 | ||
92309201 RD |
1285 | // Insert at the front of the list so most recent additions are found first |
1286 | m_dynamicEvents->Insert( (wxObject*) entry ); | |
fe71f65c | 1287 | } |
97d7bfb8 RR |
1288 | |
1289 | bool wxEvtHandler::Disconnect( int id, int lastId, wxEventType eventType, | |
1290 | wxObjectEventFunction func, | |
65b17727 JS |
1291 | wxObject *userData, |
1292 | wxEvtHandler* eventSink ) | |
97d7bfb8 RR |
1293 | { |
1294 | if (!m_dynamicEvents) | |
1c624631 | 1295 | return false; |
cfe17b74 | 1296 | |
df5168c4 | 1297 | wxList::compatibility_iterator node = m_dynamicEvents->GetFirst(); |
97d7bfb8 RR |
1298 | while (node) |
1299 | { | |
2e4df4bf | 1300 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
b1d4dd7a | 1301 | wxEventTableEntry *entry = (wxEventTableEntry*)node->GetData(); |
2e4df4bf | 1302 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES |
b1d4dd7a | 1303 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData(); |
2e4df4bf VZ |
1304 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES |
1305 | ||
97d7bfb8 | 1306 | if ((entry->m_id == id) && |
1a18887b | 1307 | ((entry->m_lastId == lastId) || (lastId == wxID_ANY)) && |
97d7bfb8 RR |
1308 | ((entry->m_eventType == eventType) || (eventType == wxEVT_NULL)) && |
1309 | ((entry->m_fn == func) || (func == (wxObjectEventFunction)NULL)) && | |
65b17727 | 1310 | ((entry->m_eventSink == eventSink) || (eventSink == (wxEvtHandler*)NULL)) && |
97d7bfb8 RR |
1311 | ((entry->m_callbackUserData == userData) || (userData == (wxObject*)NULL))) |
1312 | { | |
2e4df4bf VZ |
1313 | if (entry->m_callbackUserData) |
1314 | delete entry->m_callbackUserData; | |
df5168c4 | 1315 | m_dynamicEvents->Erase( node ); |
97d7bfb8 | 1316 | delete entry; |
1c624631 | 1317 | return true; |
97d7bfb8 | 1318 | } |
b1d4dd7a | 1319 | node = node->GetNext(); |
97d7bfb8 | 1320 | } |
1c624631 | 1321 | return false; |
97d7bfb8 | 1322 | } |
fe71f65c RR |
1323 | |
1324 | bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event ) | |
1325 | { | |
1c624631 | 1326 | wxCHECK_MSG( m_dynamicEvents, false, |
223d09f6 | 1327 | wxT("caller should check that we have dynamic events") ); |
0b746ba8 | 1328 | |
df5168c4 | 1329 | wxList::compatibility_iterator node = m_dynamicEvents->GetFirst(); |
0b746ba8 | 1330 | while (node) |
fe71f65c | 1331 | { |
2e4df4bf | 1332 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
1c624631 | 1333 | wxEventTableEntry *entry = (wxEventTableEntry*)node->GetData(); |
2e4df4bf | 1334 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES |
1c624631 | 1335 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData(); |
2e4df4bf | 1336 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES |
0b746ba8 | 1337 | |
b2b9de21 | 1338 | if ((event.m_eventType == entry->m_eventType) && (entry->m_fn != 0)) |
0b746ba8 | 1339 | { |
1c624631 | 1340 | wxEvtHandler *handler = |
65b17727 | 1341 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES |
1c624631 VZ |
1342 | entry->m_eventSink ? entry->m_eventSink |
1343 | : | |
b5a98acd | 1344 | #endif |
1c624631 | 1345 | this; |
0b746ba8 | 1346 | |
1c624631 VZ |
1347 | if ( ProcessEventIfMatches(*entry, handler, event) ) |
1348 | { | |
1349 | return true; | |
0b746ba8 VZ |
1350 | } |
1351 | } | |
1c624631 | 1352 | |
b1d4dd7a | 1353 | node = node->GetNext(); |
7b678698 | 1354 | } |
1c624631 VZ |
1355 | |
1356 | return false; | |
fe71f65c RR |
1357 | }; |
1358 | ||
b88c44e7 RD |
1359 | void wxEvtHandler::DoSetClientObject( wxClientData *data ) |
1360 | { | |
1361 | wxASSERT_MSG( m_clientDataType != wxClientData_Void, | |
1362 | wxT("can't have both object and void client data") ); | |
1363 | ||
1364 | if ( m_clientObject ) | |
1365 | delete m_clientObject; | |
1366 | ||
1367 | m_clientObject = data; | |
1368 | m_clientDataType = wxClientData_Object; | |
1369 | } | |
1370 | ||
1371 | wxClientData *wxEvtHandler::DoGetClientObject() const | |
1372 | { | |
1373 | // it's not an error to call GetClientObject() on a window which doesn't | |
1374 | // have client data at all - NULL will be returned | |
1375 | wxASSERT_MSG( m_clientDataType != wxClientData_Void, | |
1376 | wxT("this window doesn't have object client data") ); | |
1377 | ||
1378 | return m_clientObject; | |
1379 | } | |
1380 | ||
1381 | void wxEvtHandler::DoSetClientData( void *data ) | |
1382 | { | |
1383 | wxASSERT_MSG( m_clientDataType != wxClientData_Object, | |
1384 | wxT("can't have both object and void client data") ); | |
1385 | ||
1386 | m_clientData = data; | |
1387 | m_clientDataType = wxClientData_Void; | |
1388 | } | |
1389 | ||
1390 | void *wxEvtHandler::DoGetClientData() const | |
1391 | { | |
1392 | // it's not an error to call GetClientData() on a window which doesn't have | |
1393 | // client data at all - NULL will be returned | |
1394 | wxASSERT_MSG( m_clientDataType != wxClientData_Object, | |
1395 | wxT("this window doesn't have void client data") ); | |
1396 | ||
1397 | return m_clientData; | |
1398 | } | |
1399 | ||
4caf847c VZ |
1400 | #endif // wxUSE_BASE |
1401 | ||
e90c1d2a VZ |
1402 | #if wxUSE_GUI |
1403 | ||
e702ff0f JS |
1404 | // Find a window with the focus, that is also a descendant of the given window. |
1405 | // This is used to determine the window to initially send commands to. | |
1406 | wxWindow* wxFindFocusDescendant(wxWindow* ancestor) | |
1407 | { | |
1408 | // Process events starting with the window with the focus, if any. | |
1409 | wxWindow* focusWin = wxWindow::FindFocus(); | |
1410 | wxWindow* win = focusWin; | |
1411 | ||
1412 | // Check if this is a descendant of this frame. | |
1413 | // If not, win will be set to NULL. | |
1414 | while (win) | |
1415 | { | |
1416 | if (win == ancestor) | |
1417 | break; | |
1418 | else | |
1419 | win = win->GetParent(); | |
1420 | } | |
1421 | if (win == (wxWindow*) NULL) | |
1422 | focusWin = (wxWindow*) NULL; | |
1423 | ||
1424 | return focusWin; | |
1425 | } | |
1426 | ||
e90c1d2a | 1427 | #endif // wxUSE_GUI |