]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
c54de5ae | 2 | // Name: src/common/event.cpp |
c801d85f KB |
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 | ||
c801d85f KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
0b746ba8 | 24 | #pragma hdrstop |
c801d85f KB |
25 | #endif |
26 | ||
d5da0ce7 | 27 | #include "wx/event.h" |
937013e0 | 28 | #include "wx/evtloop.h" |
d5da0ce7 | 29 | |
c801d85f | 30 | #ifndef WX_PRECOMP |
e90c1d2a | 31 | #include "wx/list.h" |
8bd9fa33 | 32 | #include "wx/log.h" |
8ecff181 | 33 | #include "wx/app.h" |
de6185e2 | 34 | #include "wx/utils.h" |
bb90a3e6 | 35 | #include "wx/stopwatch.h" |
02761f6c | 36 | #include "wx/module.h" |
e90c1d2a VZ |
37 | |
38 | #if wxUSE_GUI | |
a8ff046b | 39 | #include "wx/window.h" |
e90c1d2a | 40 | #include "wx/control.h" |
e90c1d2a | 41 | #include "wx/dc.h" |
dca94103 | 42 | #include "wx/spinbutt.h" |
75a29298 | 43 | #include "wx/textctrl.h" |
264cb7f5 | 44 | #include "wx/validate.h" |
e90c1d2a | 45 | #endif // wxUSE_GUI |
c801d85f KB |
46 | #endif |
47 | ||
204abcd4 | 48 | #include "wx/thread.h" |
47b6fabc | 49 | |
d102b02a | 50 | #if wxUSE_BASE |
664e1314 | 51 | #include "wx/scopedptr.h" |
d102b02a VZ |
52 | |
53 | wxDECLARE_SCOPED_PTR(wxEvent, wxEventPtr) | |
54 | wxDEFINE_SCOPED_PTR(wxEvent, wxEventPtr) | |
55 | #endif // wxUSE_BASE | |
204abcd4 | 56 | |
8e193f38 VZ |
57 | // ---------------------------------------------------------------------------- |
58 | // wxWin macros | |
59 | // ---------------------------------------------------------------------------- | |
60 | ||
3ed2104c VZ |
61 | #if wxUSE_BASE |
62 | IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject) | |
63 | IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject) | |
b46b1d59 | 64 | IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent) |
3ed2104c | 65 | #endif // wxUSE_BASE |
e90c1d2a | 66 | |
23f681ec VZ |
67 | #if wxUSE_GUI |
68 | IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent) | |
43c8c1f3 | 69 | IMPLEMENT_DYNAMIC_CLASS(wxThreadEvent, wxCommandEvent) |
23f681ec VZ |
70 | IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent, wxCommandEvent) |
71 | IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent) | |
72 | IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent, wxEvent) | |
73 | IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent) | |
74 | IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent) | |
75 | IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent) | |
76 | IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent) | |
1e6feb95 | 77 | IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent, wxEvent) |
23f681ec VZ |
78 | IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent) |
79 | IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent) | |
80 | IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent) | |
456bc6d9 | 81 | IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent, wxCommandEvent) |
23f681ec VZ |
82 | IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent) |
83 | IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent) | |
84 | IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent) | |
85 | IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent) | |
86 | IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent) | |
87 | IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent) | |
88 | IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent) | |
89 | IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent) | |
90 | IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent) | |
8e72b8b5 | 91 | IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent, wxEvent) |
23f681ec | 92 | IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent) |
574c939e | 93 | IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent, wxEvent) |
23f681ec | 94 | IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxCommandEvent) |
75299490 | 95 | IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxEvent) |
23f681ec VZ |
96 | IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent) |
97 | IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent) | |
98 | IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent, wxEvent) | |
99 | IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent, wxEvent) | |
b96340e6 | 100 | IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent, wxCommandEvent) |
69231000 | 101 | IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent, wxCommandEvent) |
a5e84126 | 102 | IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent, wxEvent) |
63e819f2 | 103 | IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureLostEvent, wxEvent) |
78c91815 | 104 | IMPLEMENT_DYNAMIC_CLASS(wxClipboardTextEvent, wxCommandEvent) |
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[] = |
a0e9a5df | 121 | { wxDECLARE_EVENT_TABLE_TERMINATOR() }; |
c801d85f | 122 | |
1a18887b | 123 | |
a0826b11 VZ |
124 | // wxUSE_MEMORY_TRACING considers memory freed from the static objects dtors |
125 | // leaked, so we need to manually clean up all event tables before checking for | |
126 | // the memory leaks when using it, however this breaks re-initializing the | |
127 | // library (i.e. repeated calls to wxInitialize/wxUninitialize) because the | |
128 | // event tables won't be rebuilt the next time, so disable this by default | |
657a8a35 | 129 | #if wxUSE_MEMORY_TRACING |
a0826b11 | 130 | |
afa039f9 JS |
131 | class wxEventTableEntryModule: public wxModule |
132 | { | |
afa039f9 | 133 | public: |
a0826b11 VZ |
134 | wxEventTableEntryModule() { } |
135 | virtual bool OnInit() { return true; } | |
136 | virtual void OnExit() { wxEventHashTable::ClearAll(); } | |
137 | ||
138 | DECLARE_DYNAMIC_CLASS(wxEventTableEntryModule) | |
afa039f9 | 139 | }; |
a0826b11 | 140 | |
afa039f9 | 141 | IMPLEMENT_DYNAMIC_CLASS(wxEventTableEntryModule, wxModule) |
a0826b11 | 142 | |
657a8a35 | 143 | #endif // wxUSE_MEMORY_TRACING |
1a18887b | 144 | |
8e193f38 VZ |
145 | // ---------------------------------------------------------------------------- |
146 | // global variables | |
147 | // ---------------------------------------------------------------------------- | |
148 | ||
2e4df4bf VZ |
149 | // common event types are defined here, other event types are defined by the |
150 | // components which use them | |
b5a98acd | 151 | |
c15d9c85 VS |
152 | const wxEventType wxEVT_FIRST = 10000; |
153 | const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000; | |
a0e9a5df | 154 | const wxEventType wxEVT_NULL = wxNewEventType(); |
2e4df4bf | 155 | |
9b11752c | 156 | wxDEFINE_EVENT( wxEVT_IDLE, wxIdleEvent ); |
886dd7d2 | 157 | |
886dd7d2 VZ |
158 | #endif // wxUSE_BASE |
159 | ||
160 | #if wxUSE_GUI | |
161 | ||
9b11752c VZ |
162 | wxDEFINE_EVENT( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEvent ); |
163 | wxDEFINE_EVENT( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEvent ); | |
164 | wxDEFINE_EVENT( wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEvent ); | |
165 | wxDEFINE_EVENT( wxEVT_COMMAND_LISTBOX_SELECTED, wxCommandEvent ); | |
166 | wxDEFINE_EVENT( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, wxCommandEvent ); | |
167 | wxDEFINE_EVENT( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, wxCommandEvent ); | |
168 | wxDEFINE_EVENT( wxEVT_COMMAND_MENU_SELECTED, wxCommandEvent ); | |
169 | wxDEFINE_EVENT( wxEVT_COMMAND_SLIDER_UPDATED, wxCommandEvent ); | |
170 | wxDEFINE_EVENT( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEvent ); | |
171 | wxDEFINE_EVENT( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEvent ); | |
172 | wxDEFINE_EVENT( wxEVT_COMMAND_SCROLLBAR_UPDATED, wxCommandEvent ); | |
173 | wxDEFINE_EVENT( wxEVT_COMMAND_VLBOX_SELECTED, wxCommandEvent ); | |
174 | wxDEFINE_EVENT( wxEVT_COMMAND_COMBOBOX_SELECTED, wxCommandEvent ); | |
175 | wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_RCLICKED, wxCommandEvent ); | |
176 | wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_ENTER, wxCommandEvent ); | |
177 | wxDEFINE_EVENT( wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEvent ); | |
178 | wxDEFINE_EVENT( wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, wxCommandEvent ); | |
179 | wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED, wxCommandEvent ); | |
8933fbc6 VZ |
180 | wxDEFINE_EVENT( wxEVT_COMMAND_COMBOBOX_DROPDOWN, wxCommandEvent); |
181 | wxDEFINE_EVENT( wxEVT_COMMAND_COMBOBOX_CLOSEUP, wxCommandEvent); | |
0b5eceb6 | 182 | |
0b5eceb6 | 183 | // Mouse event types |
9b11752c VZ |
184 | wxDEFINE_EVENT( wxEVT_LEFT_DOWN, wxMouseEvent ); |
185 | wxDEFINE_EVENT( wxEVT_LEFT_UP, wxMouseEvent ); | |
186 | wxDEFINE_EVENT( wxEVT_MIDDLE_DOWN, wxMouseEvent ); | |
187 | wxDEFINE_EVENT( wxEVT_MIDDLE_UP, wxMouseEvent ); | |
188 | wxDEFINE_EVENT( wxEVT_RIGHT_DOWN, wxMouseEvent ); | |
189 | wxDEFINE_EVENT( wxEVT_RIGHT_UP, wxMouseEvent ); | |
190 | wxDEFINE_EVENT( wxEVT_MOTION, wxMouseEvent ); | |
191 | wxDEFINE_EVENT( wxEVT_ENTER_WINDOW, wxMouseEvent ); | |
192 | wxDEFINE_EVENT( wxEVT_LEAVE_WINDOW, wxMouseEvent ); | |
193 | wxDEFINE_EVENT( wxEVT_LEFT_DCLICK, wxMouseEvent ); | |
194 | wxDEFINE_EVENT( wxEVT_MIDDLE_DCLICK, wxMouseEvent ); | |
195 | wxDEFINE_EVENT( wxEVT_RIGHT_DCLICK, wxMouseEvent ); | |
196 | wxDEFINE_EVENT( wxEVT_SET_FOCUS, wxFocusEvent ); | |
197 | wxDEFINE_EVENT( wxEVT_KILL_FOCUS, wxFocusEvent ); | |
198 | wxDEFINE_EVENT( wxEVT_CHILD_FOCUS, wxChildFocusEvent ); | |
199 | wxDEFINE_EVENT( wxEVT_MOUSEWHEEL, wxMouseEvent ); | |
200 | wxDEFINE_EVENT( wxEVT_AUX1_DOWN, wxMouseEvent ); | |
201 | wxDEFINE_EVENT( wxEVT_AUX1_UP, wxMouseEvent ); | |
202 | wxDEFINE_EVENT( wxEVT_AUX1_DCLICK, wxMouseEvent ); | |
203 | wxDEFINE_EVENT( wxEVT_AUX2_DOWN, wxMouseEvent ); | |
204 | wxDEFINE_EVENT( wxEVT_AUX2_UP, wxMouseEvent ); | |
205 | wxDEFINE_EVENT( wxEVT_AUX2_DCLICK, wxMouseEvent ); | |
0b5eceb6 VZ |
206 | |
207 | // Character input event type | |
9b11752c VZ |
208 | wxDEFINE_EVENT( wxEVT_CHAR, wxKeyEvent ); |
209 | wxDEFINE_EVENT( wxEVT_CHAR_HOOK, wxKeyEvent ); | |
210 | wxDEFINE_EVENT( wxEVT_NAVIGATION_KEY, wxNavigationKeyEvent ); | |
211 | wxDEFINE_EVENT( wxEVT_KEY_DOWN, wxKeyEvent ); | |
212 | wxDEFINE_EVENT( wxEVT_KEY_UP, wxKeyEvent ); | |
5048c832 | 213 | #if wxUSE_HOTKEY |
9b11752c | 214 | wxDEFINE_EVENT( wxEVT_HOTKEY, wxKeyEvent ); |
5048c832 | 215 | #endif |
0b5eceb6 VZ |
216 | |
217 | // Set cursor event | |
9b11752c | 218 | wxDEFINE_EVENT( wxEVT_SET_CURSOR, wxSetCursorEvent ); |
0b5eceb6 VZ |
219 | |
220 | // wxScrollbar and wxSlider event identifiers | |
9b11752c VZ |
221 | wxDEFINE_EVENT( wxEVT_SCROLL_TOP, wxScrollEvent ); |
222 | wxDEFINE_EVENT( wxEVT_SCROLL_BOTTOM, wxScrollEvent ); | |
223 | wxDEFINE_EVENT( wxEVT_SCROLL_LINEUP, wxScrollEvent ); | |
224 | wxDEFINE_EVENT( wxEVT_SCROLL_LINEDOWN, wxScrollEvent ); | |
225 | wxDEFINE_EVENT( wxEVT_SCROLL_PAGEUP, wxScrollEvent ); | |
226 | wxDEFINE_EVENT( wxEVT_SCROLL_PAGEDOWN, wxScrollEvent ); | |
227 | wxDEFINE_EVENT( wxEVT_SCROLL_THUMBTRACK, wxScrollEvent ); | |
228 | wxDEFINE_EVENT( wxEVT_SCROLL_THUMBRELEASE, wxScrollEvent ); | |
229 | wxDEFINE_EVENT( wxEVT_SCROLL_CHANGED, wxScrollEvent ); | |
0b5eceb6 | 230 | |
dca94103 VZ |
231 | // Due to a bug in older wx versions, wxSpinEvents were being sent with type of |
232 | // wxEVT_SCROLL_LINEUP, wxEVT_SCROLL_LINEDOWN and wxEVT_SCROLL_THUMBTRACK. But | |
233 | // with the type-safe events in place, these event types are associated with | |
234 | // wxScrollEvent. To allow handling of spin events, new event types have been | |
235 | // defined in spinbutt.h/spinnbuttcmn.cpp. To maintain backward compatibility | |
236 | // the spin event types are being initialized with the scroll event types. | |
237 | ||
238 | #if wxUSE_SPINBTN | |
239 | ||
9b11752c VZ |
240 | wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_UP, wxSpinEvent, wxEVT_SCROLL_LINEUP ); |
241 | wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_DOWN, wxSpinEvent, wxEVT_SCROLL_LINEDOWN ); | |
242 | wxDEFINE_EVENT_ALIAS( wxEVT_SPIN, wxSpinEvent, wxEVT_SCROLL_THUMBTRACK ); | |
dca94103 VZ |
243 | |
244 | #endif // wxUSE_SPINBTN | |
245 | ||
0b5eceb6 | 246 | // Scroll events from wxWindow |
9b11752c VZ |
247 | wxDEFINE_EVENT( wxEVT_SCROLLWIN_TOP, wxScrollWinEvent ); |
248 | wxDEFINE_EVENT( wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEvent ); | |
249 | wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEUP, wxScrollWinEvent ); | |
250 | wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEvent ); | |
251 | wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEvent ); | |
252 | wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEvent ); | |
253 | wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEvent ); | |
254 | wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEvent ); | |
0b5eceb6 VZ |
255 | |
256 | // System events | |
9b11752c VZ |
257 | wxDEFINE_EVENT( wxEVT_SIZE, wxSizeEvent ); |
258 | wxDEFINE_EVENT( wxEVT_SIZING, wxSizeEvent ); | |
259 | wxDEFINE_EVENT( wxEVT_MOVE, wxMoveEvent ); | |
260 | wxDEFINE_EVENT( wxEVT_MOVING, wxMoveEvent ); | |
261 | wxDEFINE_EVENT( wxEVT_MOVE_START, wxMoveEvent ); | |
262 | wxDEFINE_EVENT( wxEVT_MOVE_END, wxMoveEvent ); | |
263 | wxDEFINE_EVENT( wxEVT_CLOSE_WINDOW, wxCloseEvent ); | |
264 | wxDEFINE_EVENT( wxEVT_END_SESSION, wxCloseEvent ); | |
265 | wxDEFINE_EVENT( wxEVT_QUERY_END_SESSION, wxCloseEvent ); | |
266 | wxDEFINE_EVENT( wxEVT_HIBERNATE, wxActivateEvent ); | |
267 | wxDEFINE_EVENT( wxEVT_ACTIVATE_APP, wxActivateEvent ); | |
268 | wxDEFINE_EVENT( wxEVT_ACTIVATE, wxActivateEvent ); | |
269 | wxDEFINE_EVENT( wxEVT_CREATE, wxWindowCreateEvent ); | |
270 | wxDEFINE_EVENT( wxEVT_DESTROY, wxWindowDestroyEvent ); | |
271 | wxDEFINE_EVENT( wxEVT_SHOW, wxShowEvent ); | |
272 | wxDEFINE_EVENT( wxEVT_ICONIZE, wxIconizeEvent ); | |
273 | wxDEFINE_EVENT( wxEVT_MAXIMIZE, wxMaximizeEvent ); | |
274 | wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_CHANGED, wxMouseCaptureChangedEvent ); | |
275 | wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_LOST, wxMouseCaptureLostEvent ); | |
276 | wxDEFINE_EVENT( wxEVT_PAINT, wxPaintEvent ); | |
277 | wxDEFINE_EVENT( wxEVT_ERASE_BACKGROUND, wxEraseEvent ); | |
278 | wxDEFINE_EVENT( wxEVT_NC_PAINT, wxNcPaintEvent ); | |
279 | wxDEFINE_EVENT( wxEVT_MENU_OPEN, wxMenuEvent ); | |
280 | wxDEFINE_EVENT( wxEVT_MENU_CLOSE, wxMenuEvent ); | |
281 | wxDEFINE_EVENT( wxEVT_MENU_HIGHLIGHT, wxMenuEvent ); | |
282 | wxDEFINE_EVENT( wxEVT_CONTEXT_MENU, wxContextMenuEvent ); | |
283 | wxDEFINE_EVENT( wxEVT_SYS_COLOUR_CHANGED, wxSysColourChangedEvent ); | |
284 | wxDEFINE_EVENT( wxEVT_DISPLAY_CHANGED, wxDisplayChangedEvent ); | |
285 | wxDEFINE_EVENT( wxEVT_QUERY_NEW_PALETTE, wxQueryNewPaletteEvent ); | |
286 | wxDEFINE_EVENT( wxEVT_PALETTE_CHANGED, wxPaletteChangedEvent ); | |
287 | wxDEFINE_EVENT( wxEVT_JOY_BUTTON_DOWN, wxJoystickEvent ); | |
288 | wxDEFINE_EVENT( wxEVT_JOY_BUTTON_UP, wxJoystickEvent ); | |
289 | wxDEFINE_EVENT( wxEVT_JOY_MOVE, wxJoystickEvent ); | |
290 | wxDEFINE_EVENT( wxEVT_JOY_ZMOVE, wxJoystickEvent ); | |
291 | wxDEFINE_EVENT( wxEVT_DROP_FILES, wxDropFilesEvent ); | |
292 | wxDEFINE_EVENT( wxEVT_INIT_DIALOG, wxInitDialogEvent ); | |
293 | wxDEFINE_EVENT( wxEVT_UPDATE_UI, wxUpdateUIEvent ); | |
0b5eceb6 | 294 | |
78c91815 | 295 | // Clipboard events |
9b11752c VZ |
296 | wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_COPY, wxClipboardTextEvent ); |
297 | wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_CUT, wxClipboardTextEvent ); | |
298 | wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_PASTE, wxClipboardTextEvent ); | |
78c91815 | 299 | |
0b5eceb6 VZ |
300 | // Generic command events |
301 | // Note: a click is a higher-level event than button down/up | |
9b11752c VZ |
302 | wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_CLICK, wxCommandEvent ); |
303 | wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_DCLICK, wxCommandEvent ); | |
304 | wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_CLICK, wxCommandEvent ); | |
305 | wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_DCLICK, wxCommandEvent ); | |
306 | wxDEFINE_EVENT( wxEVT_COMMAND_SET_FOCUS, wxCommandEvent ); | |
307 | wxDEFINE_EVENT( wxEVT_COMMAND_KILL_FOCUS, wxCommandEvent ); | |
308 | wxDEFINE_EVENT( wxEVT_COMMAND_ENTER, wxCommandEvent ); | |
0b5eceb6 VZ |
309 | |
310 | // Help events | |
9b11752c VZ |
311 | wxDEFINE_EVENT( wxEVT_HELP, wxHelpEvent ); |
312 | wxDEFINE_EVENT( wxEVT_DETAILED_HELP, wxHelpEvent ); | |
6164f93c | 313 | |
d48b06bd | 314 | // Thread event |
9b11752c | 315 | wxDEFINE_EVENT( wxEVT_COMMAND_THREAD, wxThreadEvent ); |
d48b06bd | 316 | |
886dd7d2 VZ |
317 | #endif // wxUSE_GUI |
318 | ||
319 | #if wxUSE_BASE | |
320 | ||
b46b1d59 VZ |
321 | wxIdleMode wxIdleEvent::sm_idleMode = wxIDLE_PROCESS_ALL; |
322 | ||
6164f93c VZ |
323 | // ============================================================================ |
324 | // implementation | |
325 | // ============================================================================ | |
0b5eceb6 | 326 | |
0b5eceb6 VZ |
327 | // ---------------------------------------------------------------------------- |
328 | // event initialization | |
329 | // ---------------------------------------------------------------------------- | |
330 | ||
331 | int wxNewEventType() | |
332 | { | |
333 | // MT-FIXME | |
334 | static int s_lastUsedEventType = wxEVT_FIRST; | |
335 | ||
336 | return s_lastUsedEventType++; | |
337 | } | |
3c778901 VZ |
338 | // ---------------------------------------------------------------------------- |
339 | // wxEventFunctor | |
340 | // ---------------------------------------------------------------------------- | |
341 | ||
342 | wxEventFunctor::~wxEventFunctor() | |
343 | { | |
344 | } | |
0b5eceb6 | 345 | |
8e193f38 VZ |
346 | // ---------------------------------------------------------------------------- |
347 | // wxEvent | |
348 | // ---------------------------------------------------------------------------- | |
349 | ||
c801d85f | 350 | /* |
d48b06bd FM |
351 | * General wxWidgets events, covering all interesting things that might happen |
352 | * (button clicking, resizing, setting text in widgets, etc.). | |
c801d85f KB |
353 | * |
354 | * For each completely new event type, derive a new event class. | |
355 | * | |
356 | */ | |
357 | ||
d48b06bd | 358 | wxEvent::wxEvent(int theId, wxEventType commandType) |
c801d85f | 359 | { |
8e72b8b5 | 360 | m_eventType = commandType; |
3c778901 | 361 | m_eventObject = NULL; |
0b746ba8 VZ |
362 | m_timeStamp = 0; |
363 | m_id = theId; | |
1c624631 | 364 | m_skipped = false; |
3c778901 | 365 | m_callbackUserData = NULL; |
bbdee10d | 366 | m_handlerToProcessOnlyIn = NULL; |
1c624631 | 367 | m_isCommandEvent = false; |
1648d51b | 368 | m_propagationLevel = wxEVENT_PROPAGATE_NONE; |
29de6f40 | 369 | m_wasProcessed = false; |
c801d85f KB |
370 | } |
371 | ||
0e097789 | 372 | wxEvent::wxEvent(const wxEvent& src) |
a34ef99b | 373 | : wxObject(src) |
e6a6feba GD |
374 | , m_eventObject(src.m_eventObject) |
375 | , m_eventType(src.m_eventType) | |
376 | , m_timeStamp(src.m_timeStamp) | |
377 | , m_id(src.m_id) | |
378 | , m_callbackUserData(src.m_callbackUserData) | |
bbdee10d | 379 | , m_handlerToProcessOnlyIn(NULL) |
6fd5903a | 380 | , m_propagationLevel(src.m_propagationLevel) |
e6a6feba GD |
381 | , m_skipped(src.m_skipped) |
382 | , m_isCommandEvent(src.m_isCommandEvent) | |
29de6f40 | 383 | , m_wasProcessed(false) |
a737331d | 384 | { |
a737331d GL |
385 | } |
386 | ||
0e097789 VZ |
387 | wxEvent& wxEvent::operator=(const wxEvent& src) |
388 | { | |
389 | wxObject::operator=(src); | |
390 | ||
391 | m_eventObject = src.m_eventObject; | |
392 | m_eventType = src.m_eventType; | |
393 | m_timeStamp = src.m_timeStamp; | |
394 | m_id = src.m_id; | |
395 | m_callbackUserData = src.m_callbackUserData; | |
bbdee10d | 396 | m_handlerToProcessOnlyIn = NULL; |
0e097789 VZ |
397 | m_propagationLevel = src.m_propagationLevel; |
398 | m_skipped = src.m_skipped; | |
399 | m_isCommandEvent = src.m_isCommandEvent; | |
400 | ||
bbdee10d | 401 | // don't change m_wasProcessed |
29de6f40 | 402 | |
0e097789 VZ |
403 | return *this; |
404 | } | |
405 | ||
3ed2104c VZ |
406 | #endif // wxUSE_BASE |
407 | ||
e90c1d2a VZ |
408 | #if wxUSE_GUI |
409 | ||
8e40ed85 FM |
410 | // ---------------------------------------------------------------------------- |
411 | // wxCommandEvent | |
412 | // ---------------------------------------------------------------------------- | |
c801d85f | 413 | |
21eefb76 VZ |
414 | #ifdef __VISUALC__ |
415 | // 'this' : used in base member initializer list (for m_commandString) | |
416 | #pragma warning(disable:4355) | |
417 | #endif | |
418 | ||
7798a18e | 419 | wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId) |
b5a98acd | 420 | : wxEvent(theId, commandType) |
c801d85f | 421 | { |
3c778901 VZ |
422 | m_clientData = NULL; |
423 | m_clientObject = NULL; | |
0b746ba8 VZ |
424 | m_extraLong = 0; |
425 | m_commandInt = 0; | |
1c624631 | 426 | m_isCommandEvent = true; |
1648d51b VZ |
427 | |
428 | // the command events are propagated upwards by default | |
429 | m_propagationLevel = wxEVENT_PROPAGATE_MAX; | |
c801d85f KB |
430 | } |
431 | ||
21eefb76 VZ |
432 | #ifdef __VISUALC__ |
433 | #pragma warning(default:4355) | |
434 | #endif | |
435 | ||
ab1931f9 KH |
436 | wxString wxCommandEvent::GetString() const |
437 | { | |
cc6ceca7 VZ |
438 | if (m_eventType != wxEVT_COMMAND_TEXT_UPDATED || !m_eventObject) |
439 | { | |
ab1931f9 | 440 | return m_cmdString; |
cc6ceca7 | 441 | } |
ab1931f9 KH |
442 | else |
443 | { | |
89438177 | 444 | #if wxUSE_TEXTCTRL |
ab1931f9 | 445 | wxTextCtrl *txt = wxDynamicCast(m_eventObject, wxTextCtrl); |
cc6ceca7 | 446 | if ( txt ) |
ab1931f9 KH |
447 | return txt->GetValue(); |
448 | else | |
89438177 | 449 | #endif // wxUSE_TEXTCTRL |
ab1931f9 KH |
450 | return m_cmdString; |
451 | } | |
452 | } | |
453 | ||
8e40ed85 FM |
454 | // ---------------------------------------------------------------------------- |
455 | // wxUpdateUIEvent | |
456 | // ---------------------------------------------------------------------------- | |
0b30bb0b JS |
457 | |
458 | #if wxUSE_LONGLONG | |
e39af974 | 459 | wxLongLong wxUpdateUIEvent::sm_lastUpdate = 0; |
0b30bb0b JS |
460 | #endif |
461 | ||
e39af974 JS |
462 | long wxUpdateUIEvent::sm_updateInterval = 0; |
463 | ||
464 | wxUpdateUIMode wxUpdateUIEvent::sm_updateMode = wxUPDATE_UI_PROCESS_ALL; | |
0b30bb0b JS |
465 | |
466 | // Can we update? | |
a7bc03c9 | 467 | bool wxUpdateUIEvent::CanUpdate(wxWindowBase *win) |
0b30bb0b | 468 | { |
e39af974 JS |
469 | // Don't update if we've switched global updating off |
470 | // and this window doesn't support updates. | |
471 | if (win && | |
472 | (GetMode() == wxUPDATE_UI_PROCESS_SPECIFIED && | |
473 | ((win->GetExtraStyle() & wxWS_EX_PROCESS_UI_UPDATES) == 0))) | |
1c624631 | 474 | return false; |
b5a98acd | 475 | |
e39af974 | 476 | if (sm_updateInterval == -1) |
1c624631 | 477 | return false; |
534b127c WS |
478 | |
479 | if (sm_updateInterval == 0) | |
1c624631 | 480 | return true; |
534b127c | 481 | |
0b30bb0b | 482 | #if wxUSE_STOPWATCH && wxUSE_LONGLONG |
534b127c WS |
483 | wxLongLong now = wxGetLocalTimeMillis(); |
484 | if (now > (sm_lastUpdate + sm_updateInterval)) | |
485 | { | |
1c624631 | 486 | return true; |
0b30bb0b | 487 | } |
534b127c | 488 | |
1c624631 | 489 | return false; |
534b127c WS |
490 | #else |
491 | // If we don't have wxStopWatch or wxLongLong, we | |
492 | // should err on the safe side and update now anyway. | |
493 | return true; | |
494 | #endif | |
0b30bb0b JS |
495 | } |
496 | ||
497 | // Reset the update time to provide a delay until the next | |
498 | // time we should update | |
499 | void wxUpdateUIEvent::ResetUpdateTime() | |
500 | { | |
501 | #if wxUSE_STOPWATCH && wxUSE_LONGLONG | |
e39af974 | 502 | if (sm_updateInterval > 0) |
0b30bb0b JS |
503 | { |
504 | wxLongLong now = wxGetLocalTimeMillis(); | |
e39af974 | 505 | if (now > (sm_lastUpdate + sm_updateInterval)) |
0b30bb0b | 506 | { |
e39af974 | 507 | sm_lastUpdate = now; |
0b30bb0b JS |
508 | } |
509 | } | |
510 | #endif | |
511 | } | |
512 | ||
8e40ed85 FM |
513 | // ---------------------------------------------------------------------------- |
514 | // wxScrollEvent | |
515 | // ---------------------------------------------------------------------------- | |
c801d85f | 516 | |
0b746ba8 VZ |
517 | wxScrollEvent::wxScrollEvent(wxEventType commandType, |
518 | int id, | |
519 | int pos, | |
520 | int orient) | |
e6a6feba | 521 | : wxCommandEvent(commandType, id) |
c801d85f | 522 | { |
0b746ba8 VZ |
523 | m_extraLong = orient; |
524 | m_commandInt = pos; | |
c801d85f KB |
525 | } |
526 | ||
8e40ed85 FM |
527 | // ---------------------------------------------------------------------------- |
528 | // wxScrollWinEvent | |
529 | // ---------------------------------------------------------------------------- | |
d1367c3d RR |
530 | |
531 | wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType, | |
532 | int pos, | |
533 | int orient) | |
d1367c3d | 534 | { |
c5b42c87 | 535 | m_eventType = commandType; |
d1367c3d RR |
536 | m_extraLong = orient; |
537 | m_commandInt = pos; | |
538 | } | |
539 | ||
8e40ed85 FM |
540 | // ---------------------------------------------------------------------------- |
541 | // wxMouseEvent | |
542 | // ---------------------------------------------------------------------------- | |
c801d85f | 543 | |
7798a18e | 544 | wxMouseEvent::wxMouseEvent(wxEventType commandType) |
c801d85f | 545 | { |
0b746ba8 | 546 | m_eventType = commandType; |
8866abbb VZ |
547 | |
548 | m_x = 0; | |
549 | m_y = 0; | |
550 | ||
1c624631 | 551 | m_leftDown = false; |
1c624631 | 552 | m_middleDown = false; |
8866abbb | 553 | m_rightDown = false; |
01101e2d VZ |
554 | m_aux1Down = false; |
555 | m_aux2Down = false; | |
8866abbb | 556 | |
8866abbb VZ |
557 | m_clickCount = -1; |
558 | ||
d2c52078 RD |
559 | m_wheelRotation = 0; |
560 | m_wheelDelta = 0; | |
561 | m_linesPerAction = 0; | |
aea37008 | 562 | m_wheelAxis = 0; |
c801d85f KB |
563 | } |
564 | ||
abcbaea7 VZ |
565 | void wxMouseEvent::Assign(const wxMouseEvent& event) |
566 | { | |
0e097789 | 567 | wxEvent::operator=(event); |
3232da9d VZ |
568 | |
569 | // Borland C++ 5.82 doesn't compile an explicit call to an implicitly | |
570 | // defined operator=() so need to do it this way: | |
571 | *static_cast<wxMouseState *>(this) = event; | |
92309201 | 572 | |
abcbaea7 VZ |
573 | m_x = event.m_x; |
574 | m_y = event.m_y; | |
575 | ||
576 | m_leftDown = event.m_leftDown; | |
577 | m_middleDown = event.m_middleDown; | |
578 | m_rightDown = event.m_rightDown; | |
01101e2d VZ |
579 | m_aux1Down = event.m_aux1Down; |
580 | m_aux2Down = event.m_aux2Down; | |
abcbaea7 | 581 | |
abcbaea7 VZ |
582 | m_wheelRotation = event.m_wheelRotation; |
583 | m_wheelDelta = event.m_wheelDelta; | |
584 | m_linesPerAction = event.m_linesPerAction; | |
aea37008 | 585 | m_wheelAxis = event.m_wheelAxis; |
abcbaea7 VZ |
586 | } |
587 | ||
3e89999c | 588 | // return true if was a button dclick event |
c801d85f KB |
589 | bool wxMouseEvent::ButtonDClick(int but) const |
590 | { | |
0b746ba8 VZ |
591 | switch (but) |
592 | { | |
3e89999c VZ |
593 | default: |
594 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick")); | |
595 | // fall through | |
596 | ||
597 | case wxMOUSE_BTN_ANY: | |
01101e2d VZ |
598 | return (LeftDClick() || MiddleDClick() || RightDClick() || |
599 | Aux1DClick() || Aux2DClick()); | |
3e89999c VZ |
600 | |
601 | case wxMOUSE_BTN_LEFT: | |
0b746ba8 | 602 | return LeftDClick(); |
3e89999c VZ |
603 | |
604 | case wxMOUSE_BTN_MIDDLE: | |
0b746ba8 | 605 | return MiddleDClick(); |
3e89999c VZ |
606 | |
607 | case wxMOUSE_BTN_RIGHT: | |
0b746ba8 | 608 | return RightDClick(); |
01101e2d VZ |
609 | |
610 | case wxMOUSE_BTN_AUX1: | |
611 | return Aux1DClick(); | |
612 | ||
613 | case wxMOUSE_BTN_AUX2: | |
614 | return Aux2DClick(); | |
0b746ba8 | 615 | } |
c801d85f KB |
616 | } |
617 | ||
3e89999c | 618 | // return true if was a button down event |
c801d85f KB |
619 | bool wxMouseEvent::ButtonDown(int but) const |
620 | { | |
0b746ba8 VZ |
621 | switch (but) |
622 | { | |
3e89999c VZ |
623 | default: |
624 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown")); | |
625 | // fall through | |
626 | ||
627 | case wxMOUSE_BTN_ANY: | |
01101e2d VZ |
628 | return (LeftDown() || MiddleDown() || RightDown() || |
629 | Aux1Down() || Aux2Down()); | |
3e89999c VZ |
630 | |
631 | case wxMOUSE_BTN_LEFT: | |
0b746ba8 | 632 | return LeftDown(); |
3e89999c VZ |
633 | |
634 | case wxMOUSE_BTN_MIDDLE: | |
0b746ba8 | 635 | return MiddleDown(); |
3e89999c VZ |
636 | |
637 | case wxMOUSE_BTN_RIGHT: | |
0b746ba8 | 638 | return RightDown(); |
01101e2d VZ |
639 | |
640 | case wxMOUSE_BTN_AUX1: | |
641 | return Aux1Down(); | |
642 | ||
643 | case wxMOUSE_BTN_AUX2: | |
644 | return Aux2Down(); | |
0b746ba8 | 645 | } |
c801d85f KB |
646 | } |
647 | ||
3e89999c | 648 | // return true if was a button up event |
c801d85f KB |
649 | bool wxMouseEvent::ButtonUp(int but) const |
650 | { | |
1e6feb95 VZ |
651 | switch (but) |
652 | { | |
3e89999c VZ |
653 | default: |
654 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp")); | |
655 | // fall through | |
656 | ||
657 | case wxMOUSE_BTN_ANY: | |
01101e2d VZ |
658 | return (LeftUp() || MiddleUp() || RightUp() || |
659 | Aux1Up() || Aux2Up()); | |
3e89999c VZ |
660 | |
661 | case wxMOUSE_BTN_LEFT: | |
0b746ba8 | 662 | return LeftUp(); |
3e89999c VZ |
663 | |
664 | case wxMOUSE_BTN_MIDDLE: | |
0b746ba8 | 665 | return MiddleUp(); |
3e89999c VZ |
666 | |
667 | case wxMOUSE_BTN_RIGHT: | |
0b746ba8 | 668 | return RightUp(); |
01101e2d VZ |
669 | |
670 | case wxMOUSE_BTN_AUX1: | |
671 | return Aux1Up(); | |
672 | ||
673 | case wxMOUSE_BTN_AUX2: | |
674 | return Aux2Up(); | |
0b746ba8 | 675 | } |
c801d85f KB |
676 | } |
677 | ||
3e89999c | 678 | // return true if the given button is currently changing state |
c801d85f KB |
679 | bool wxMouseEvent::Button(int but) const |
680 | { | |
1e6feb95 VZ |
681 | switch (but) |
682 | { | |
0b746ba8 | 683 | default: |
223d09f6 | 684 | wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button")); |
3e89999c VZ |
685 | // fall through |
686 | ||
687 | case wxMOUSE_BTN_ANY: | |
688 | return ButtonUp(wxMOUSE_BTN_ANY) || | |
689 | ButtonDown(wxMOUSE_BTN_ANY) || | |
690 | ButtonDClick(wxMOUSE_BTN_ANY); | |
691 | ||
692 | case wxMOUSE_BTN_LEFT: | |
693 | return LeftDown() || LeftUp() || LeftDClick(); | |
694 | ||
695 | case wxMOUSE_BTN_MIDDLE: | |
696 | return MiddleDown() || MiddleUp() || MiddleDClick(); | |
697 | ||
698 | case wxMOUSE_BTN_RIGHT: | |
699 | return RightDown() || RightUp() || RightDClick(); | |
01101e2d VZ |
700 | |
701 | case wxMOUSE_BTN_AUX1: | |
702 | return Aux1Down() || Aux1Up() || Aux1DClick(); | |
703 | ||
704 | case wxMOUSE_BTN_AUX2: | |
705 | return Aux2Down() || Aux2Up() || Aux2DClick(); | |
0b746ba8 | 706 | } |
c801d85f KB |
707 | } |
708 | ||
1e6feb95 VZ |
709 | int wxMouseEvent::GetButton() const |
710 | { | |
01101e2d | 711 | for ( int i = 1; i < wxMOUSE_BTN_MAX; i++ ) |
1e6feb95 VZ |
712 | { |
713 | if ( Button(i) ) | |
714 | { | |
715 | return i; | |
716 | } | |
717 | } | |
718 | ||
3e89999c | 719 | return wxMOUSE_BTN_NONE; |
1e6feb95 VZ |
720 | } |
721 | ||
c801d85f KB |
722 | // Find the logical position of the event given the DC |
723 | wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const | |
724 | { | |
0757d27c JS |
725 | wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y)); |
726 | return pt; | |
c801d85f KB |
727 | } |
728 | ||
8e40ed85 FM |
729 | // ---------------------------------------------------------------------------- |
730 | // wxKeyEvent | |
731 | // ---------------------------------------------------------------------------- | |
c801d85f | 732 | |
7798a18e | 733 | wxKeyEvent::wxKeyEvent(wxEventType type) |
c801d85f | 734 | { |
0b746ba8 | 735 | m_eventType = type; |
86408a03 | 736 | m_keyCode = WXK_NONE; |
2b5f62a0 | 737 | #if wxUSE_UNICODE |
86408a03 | 738 | m_uniChar = WXK_NONE; |
2b5f62a0 | 739 | #endif |
c801d85f KB |
740 | } |
741 | ||
92309201 | 742 | wxKeyEvent::wxKeyEvent(const wxKeyEvent& evt) |
0e097789 VZ |
743 | : wxEvent(evt), |
744 | wxKeyboardState(evt) | |
2b5f62a0 VZ |
745 | { |
746 | m_x = evt.m_x; | |
747 | m_y = evt.m_y; | |
748 | ||
749 | m_keyCode = evt.m_keyCode; | |
2b5f62a0 VZ |
750 | m_rawCode = evt.m_rawCode; |
751 | m_rawFlags = evt.m_rawFlags; | |
92309201 | 752 | |
2b5f62a0 VZ |
753 | #if wxUSE_UNICODE |
754 | m_uniChar = evt.m_uniChar; | |
755 | #endif | |
756 | } | |
12a3f227 | 757 | |
7a34307e VZ |
758 | bool wxKeyEvent::IsKeyInCategory(int category) const |
759 | { | |
760 | switch ( GetKeyCode() ) | |
761 | { | |
762 | case WXK_LEFT: | |
763 | case WXK_RIGHT: | |
764 | case WXK_UP: | |
765 | case WXK_DOWN: | |
766 | case WXK_NUMPAD_LEFT: | |
767 | case WXK_NUMPAD_RIGHT: | |
768 | case WXK_NUMPAD_UP: | |
769 | case WXK_NUMPAD_DOWN: | |
770 | return (category & WXK_CATEGORY_ARROW) != 0; | |
771 | ||
772 | case WXK_PAGEDOWN: | |
773 | case WXK_END: | |
774 | case WXK_NUMPAD_PAGEUP: | |
775 | case WXK_NUMPAD_PAGEDOWN: | |
776 | return (category & WXK_CATEGORY_PAGING) != 0; | |
777 | ||
778 | case WXK_HOME: | |
779 | case WXK_PAGEUP: | |
780 | case WXK_NUMPAD_HOME: | |
781 | case WXK_NUMPAD_END: | |
782 | return (category & WXK_CATEGORY_JUMP) != 0; | |
783 | ||
784 | case WXK_TAB: | |
4f742042 | 785 | case WXK_NUMPAD_TAB: |
7a34307e VZ |
786 | return (category & WXK_CATEGORY_TAB) != 0; |
787 | ||
788 | case WXK_BACK: | |
789 | case WXK_DELETE: | |
790 | case WXK_NUMPAD_DELETE: | |
791 | return (category & WXK_CATEGORY_CUT) != 0; | |
792 | ||
793 | default: | |
794 | return false; | |
795 | } | |
796 | } | |
797 | ||
8e40ed85 FM |
798 | // ---------------------------------------------------------------------------- |
799 | // wxWindowCreateEvent | |
800 | // ---------------------------------------------------------------------------- | |
801 | ||
42e69d6b | 802 | wxWindowCreateEvent::wxWindowCreateEvent(wxWindow *win) |
42e69d6b | 803 | { |
cfe17b74 | 804 | SetEventType(wxEVT_CREATE); |
42e69d6b VZ |
805 | SetEventObject(win); |
806 | } | |
807 | ||
8e40ed85 FM |
808 | // ---------------------------------------------------------------------------- |
809 | // wxWindowDestroyEvent | |
810 | // ---------------------------------------------------------------------------- | |
811 | ||
42e69d6b | 812 | wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow *win) |
42e69d6b | 813 | { |
cfe17b74 | 814 | SetEventType(wxEVT_DESTROY); |
42e69d6b VZ |
815 | SetEventObject(win); |
816 | } | |
817 | ||
8e40ed85 FM |
818 | // ---------------------------------------------------------------------------- |
819 | // wxChildFocusEvent | |
820 | // ---------------------------------------------------------------------------- | |
821 | ||
456bc6d9 VZ |
822 | wxChildFocusEvent::wxChildFocusEvent(wxWindow *win) |
823 | : wxCommandEvent(wxEVT_CHILD_FOCUS) | |
824 | { | |
825 | SetEventObject(win); | |
826 | } | |
827 | ||
b107e8d5 VZ |
828 | // ---------------------------------------------------------------------------- |
829 | // wxHelpEvent | |
830 | // ---------------------------------------------------------------------------- | |
831 | ||
832 | /* static */ | |
833 | wxHelpEvent::Origin wxHelpEvent::GuessOrigin(Origin origin) | |
834 | { | |
835 | if ( origin == Origin_Unknown ) | |
836 | { | |
837 | // assume that the event comes from the help button if it's not from | |
838 | // keyboard and that pressing F1 always results in the help event | |
839 | origin = wxGetKeyState(WXK_F1) ? Origin_Keyboard : Origin_HelpButton; | |
840 | } | |
841 | ||
842 | return origin; | |
843 | } | |
844 | ||
dd070522 VZ |
845 | #endif // wxUSE_GUI |
846 | ||
9416681d VS |
847 | |
848 | #if wxUSE_BASE | |
849 | ||
b5a98acd VZ |
850 | // ---------------------------------------------------------------------------- |
851 | // wxEventHashTable | |
852 | // ---------------------------------------------------------------------------- | |
853 | ||
afa039f9 JS |
854 | static const int EVENT_TYPE_TABLE_INIT_SIZE = 31; // Not too big not too small... |
855 | ||
856 | wxEventHashTable* wxEventHashTable::sm_first = NULL; | |
b5a98acd VZ |
857 | |
858 | wxEventHashTable::wxEventHashTable(const wxEventTable &table) | |
859 | : m_table(table), | |
1c624631 | 860 | m_rebuildHash(true) |
b5a98acd VZ |
861 | { |
862 | AllocEventTypeTable(EVENT_TYPE_TABLE_INIT_SIZE); | |
1a18887b | 863 | |
afa039f9 JS |
864 | m_next = sm_first; |
865 | if (m_next) | |
866 | m_next->m_previous = this; | |
867 | sm_first = this; | |
b5a98acd VZ |
868 | } |
869 | ||
870 | wxEventHashTable::~wxEventHashTable() | |
afa039f9 JS |
871 | { |
872 | if (m_next) | |
873 | m_next->m_previous = m_previous; | |
874 | if (m_previous) | |
875 | m_previous->m_next = m_next; | |
876 | if (sm_first == this) | |
877 | sm_first = m_next; | |
1a18887b | 878 | |
afa039f9 JS |
879 | Clear(); |
880 | } | |
881 | ||
882 | void wxEventHashTable::Clear() | |
b5a98acd | 883 | { |
a0826b11 | 884 | for ( size_t i = 0; i < m_size; i++ ) |
b5a98acd VZ |
885 | { |
886 | EventTypeTablePointer eTTnode = m_eventTypeTable[i]; | |
a0826b11 | 887 | delete eTTnode; |
b5a98acd VZ |
888 | } |
889 | ||
5276b0a5 | 890 | wxDELETEA(m_eventTypeTable); |
a0826b11 | 891 | |
afa039f9 JS |
892 | m_size = 0; |
893 | } | |
894 | ||
657a8a35 | 895 | #if wxUSE_MEMORY_TRACING |
a0826b11 | 896 | |
afa039f9 JS |
897 | // Clear all tables |
898 | void wxEventHashTable::ClearAll() | |
899 | { | |
900 | wxEventHashTable* table = sm_first; | |
901 | while (table) | |
902 | { | |
903 | table->Clear(); | |
904 | table = table->m_next; | |
905 | } | |
b5a98acd VZ |
906 | } |
907 | ||
657a8a35 | 908 | #endif // wxUSE_MEMORY_TRACING |
a0826b11 | 909 | |
b5a98acd VZ |
910 | bool wxEventHashTable::HandleEvent(wxEvent &event, wxEvtHandler *self) |
911 | { | |
912 | if (m_rebuildHash) | |
913 | { | |
914 | InitHashTable(); | |
1c624631 | 915 | m_rebuildHash = false; |
b5a98acd | 916 | } |
1a18887b | 917 | |
afa039f9 | 918 | if (!m_eventTypeTable) |
1a18887b | 919 | return false; |
b5a98acd VZ |
920 | |
921 | // Find all entries for the given event type. | |
922 | wxEventType eventType = event.GetEventType(); | |
923 | const EventTypeTablePointer eTTnode = m_eventTypeTable[eventType % m_size]; | |
924 | if (eTTnode && eTTnode->eventType == eventType) | |
925 | { | |
926 | // Now start the search for an event handler | |
927 | // that can handle an event with the given ID. | |
1c624631 VZ |
928 | const wxEventTableEntryPointerArray& |
929 | eventEntryTable = eTTnode->eventEntryTable; | |
b5a98acd | 930 | |
1c624631 VZ |
931 | const size_t count = eventEntryTable.GetCount(); |
932 | for (size_t n = 0; n < count; n++) | |
b5a98acd | 933 | { |
03f3617b VZ |
934 | const wxEventTableEntry& entry = *eventEntryTable[n]; |
935 | if ( wxEvtHandler::ProcessEventIfMatchesId(entry, self, event) ) | |
1c624631 | 936 | return true; |
b5a98acd | 937 | } |
b5a98acd VZ |
938 | } |
939 | ||
1c624631 | 940 | return false; |
b5a98acd VZ |
941 | } |
942 | ||
943 | void wxEventHashTable::InitHashTable() | |
944 | { | |
945 | // Loop over the event tables and all its base tables. | |
946 | const wxEventTable *table = &m_table; | |
947 | while (table) | |
948 | { | |
949 | // Retrieve all valid event handler entries | |
950 | const wxEventTableEntry *entry = table->entries; | |
951 | while (entry->m_fn != 0) | |
952 | { | |
953 | // Add the event entry in the Hash. | |
954 | AddEntry(*entry); | |
955 | ||
956 | entry++; | |
957 | } | |
958 | ||
959 | table = table->baseTable; | |
960 | } | |
961 | ||
962 | // Lets free some memory. | |
963 | size_t i; | |
964 | for(i = 0; i < m_size; i++) | |
965 | { | |
966 | EventTypeTablePointer eTTnode = m_eventTypeTable[i]; | |
967 | if (eTTnode) | |
968 | { | |
969 | eTTnode->eventEntryTable.Shrink(); | |
970 | } | |
971 | } | |
972 | } | |
973 | ||
974 | void wxEventHashTable::AddEntry(const wxEventTableEntry &entry) | |
975 | { | |
afa039f9 JS |
976 | // This might happen 'accidentally' as the app is exiting |
977 | if (!m_eventTypeTable) | |
978 | return; | |
1a18887b | 979 | |
b5a98acd VZ |
980 | EventTypeTablePointer *peTTnode = &m_eventTypeTable[entry.m_eventType % m_size]; |
981 | EventTypeTablePointer eTTnode = *peTTnode; | |
982 | ||
983 | if (eTTnode) | |
984 | { | |
985 | if (eTTnode->eventType != entry.m_eventType) | |
986 | { | |
987 | // Resize the table! | |
988 | GrowEventTypeTable(); | |
989 | // Try again to add it. | |
990 | AddEntry(entry); | |
991 | return; | |
992 | } | |
993 | } | |
994 | else | |
995 | { | |
996 | eTTnode = new EventTypeTable; | |
997 | eTTnode->eventType = entry.m_eventType; | |
998 | *peTTnode = eTTnode; | |
999 | } | |
1000 | ||
1001 | // Fill all hash entries between entry.m_id and entry.m_lastId... | |
1002 | eTTnode->eventEntryTable.Add(&entry); | |
1003 | } | |
1004 | ||
1005 | void wxEventHashTable::AllocEventTypeTable(size_t size) | |
1006 | { | |
1007 | m_eventTypeTable = new EventTypeTablePointer[size]; | |
1008 | memset((void *)m_eventTypeTable, 0, sizeof(EventTypeTablePointer)*size); | |
1009 | m_size = size; | |
1010 | } | |
1011 | ||
1012 | void wxEventHashTable::GrowEventTypeTable() | |
1013 | { | |
1014 | size_t oldSize = m_size; | |
1015 | EventTypeTablePointer *oldEventTypeTable = m_eventTypeTable; | |
1016 | ||
1017 | // TODO: Search the most optimal grow sequence | |
1018 | AllocEventTypeTable(/* GetNextPrime(oldSize) */oldSize*2+1); | |
1019 | ||
1020 | for ( size_t i = 0; i < oldSize; /* */ ) | |
1021 | { | |
1022 | EventTypeTablePointer eTToldNode = oldEventTypeTable[i]; | |
1023 | if (eTToldNode) | |
1024 | { | |
1025 | EventTypeTablePointer *peTTnode = &m_eventTypeTable[eTToldNode->eventType % m_size]; | |
1026 | EventTypeTablePointer eTTnode = *peTTnode; | |
1027 | ||
1028 | // Check for collision, we don't want any. | |
1029 | if (eTTnode) | |
1030 | { | |
1031 | GrowEventTypeTable(); | |
1032 | continue; // Don't increment the counter, | |
1033 | // as we still need to add this element. | |
1034 | } | |
1035 | else | |
1036 | { | |
1037 | // Get the old value and put it in the new table. | |
1038 | *peTTnode = oldEventTypeTable[i]; | |
1039 | } | |
1040 | } | |
1041 | ||
1042 | i++; | |
1043 | } | |
1044 | ||
1045 | delete[] oldEventTypeTable; | |
1046 | } | |
1047 | ||
456bc6d9 VZ |
1048 | // ---------------------------------------------------------------------------- |
1049 | // wxEvtHandler | |
1050 | // ---------------------------------------------------------------------------- | |
1051 | ||
0b746ba8 | 1052 | wxEvtHandler::wxEvtHandler() |
c801d85f | 1053 | { |
3c778901 VZ |
1054 | m_nextHandler = NULL; |
1055 | m_previousHandler = NULL; | |
1c624631 | 1056 | m_enabled = true; |
3c778901 VZ |
1057 | m_dynamicEvents = NULL; |
1058 | m_pendingEvents = NULL; | |
aa767a45 | 1059 | |
b88c44e7 RD |
1060 | // no client data (yet) |
1061 | m_clientData = NULL; | |
1062 | m_clientDataType = wxClientData_None; | |
c801d85f KB |
1063 | } |
1064 | ||
0b746ba8 | 1065 | wxEvtHandler::~wxEvtHandler() |
c801d85f | 1066 | { |
7f853dd0 | 1067 | Unlink(); |
0b746ba8 VZ |
1068 | |
1069 | if (m_dynamicEvents) | |
fe71f65c | 1070 | { |
3c448b2e VZ |
1071 | for ( wxList::iterator it = m_dynamicEvents->begin(), |
1072 | end = m_dynamicEvents->end(); | |
1073 | it != end; | |
1074 | ++it ) | |
0b746ba8 | 1075 | { |
df5168c4 | 1076 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)*it; |
2e4df4bf | 1077 | |
cc6ceca7 | 1078 | // Remove ourselves from sink destructor notifications |
3c778901 | 1079 | // (this has usually been done, in wxTrackable destructor) |
f3ff831f | 1080 | wxEvtHandler *eventSink = entry->m_fn->GetEvtHandler(); |
cc6ceca7 | 1081 | if ( eventSink ) |
2ef989c9 | 1082 | { |
cc6ceca7 VZ |
1083 | wxEventConnectionRef * const |
1084 | evtConnRef = FindRefInTrackerList(eventSink); | |
1085 | if ( evtConnRef ) | |
1086 | { | |
1087 | eventSink->RemoveNode(evtConnRef); | |
1088 | delete evtConnRef; | |
1089 | } | |
2ef989c9 | 1090 | } |
cc6ceca7 | 1091 | |
3c778901 | 1092 | delete entry->m_callbackUserData; |
0b746ba8 | 1093 | delete entry; |
0b746ba8 VZ |
1094 | } |
1095 | delete m_dynamicEvents; | |
dde19c21 | 1096 | } |
7214297d | 1097 | |
dde19c21 | 1098 | // Remove us from the list of the pending events if necessary. |
8e40ed85 FM |
1099 | if (wxTheApp) |
1100 | wxTheApp->RemovePendingEventHandler(this); | |
b88c44e7 | 1101 | |
cae9e7b1 FM |
1102 | DeletePendingEvents(); |
1103 | ||
b88c44e7 RD |
1104 | // we only delete object data, not untyped |
1105 | if ( m_clientDataType == wxClientData_Object ) | |
1106 | delete m_clientObject; | |
c801d85f KB |
1107 | } |
1108 | ||
7f853dd0 FM |
1109 | void wxEvtHandler::Unlink() |
1110 | { | |
1111 | // this event handler must take itself out of the chain of handlers: | |
1112 | ||
1113 | if (m_previousHandler) | |
1114 | m_previousHandler->SetNextHandler(m_nextHandler); | |
1115 | ||
1116 | if (m_nextHandler) | |
1117 | m_nextHandler->SetPreviousHandler(m_previousHandler); | |
1118 | ||
1119 | m_nextHandler = NULL; | |
1120 | m_previousHandler = NULL; | |
1121 | } | |
1122 | ||
1123 | bool wxEvtHandler::IsUnlinked() const | |
1124 | { | |
1125 | return m_previousHandler == NULL && | |
1126 | m_nextHandler == NULL; | |
1127 | } | |
1128 | ||
7214297d | 1129 | #if wxUSE_THREADS |
aadbdf11 | 1130 | |
76bfdc9a | 1131 | bool wxEvtHandler::ProcessThreadEvent(const wxEvent& event) |
7214297d | 1132 | { |
7214297d | 1133 | // check that we are really in a child thread |
8e193f38 VZ |
1134 | wxASSERT_MSG( !wxThread::IsMain(), |
1135 | wxT("use ProcessEvent() in main thread") ); | |
1136 | ||
1137 | AddPendingEvent(event); | |
7214297d | 1138 | |
1c624631 | 1139 | return true; |
8e193f38 VZ |
1140 | } |
1141 | ||
1142 | #endif // wxUSE_THREADS | |
1143 | ||
c3f94162 | 1144 | void wxEvtHandler::QueueEvent(wxEvent *event) |
8e193f38 | 1145 | { |
c3f94162 | 1146 | wxCHECK_RET( event, "NULL event can't be posted" ); |
7a5c8ac4 | 1147 | |
8e40ed85 | 1148 | if (!wxTheApp) |
dde19c21 FM |
1149 | { |
1150 | // we need an event loop which manages the list of event handlers with | |
1151 | // pending events... cannot proceed without it! | |
8e40ed85 | 1152 | wxLogDebug("No application object! Cannot queue this event!"); |
9f54c829 FM |
1153 | |
1154 | // anyway delete the given event to avoid memory leaks | |
1155 | delete event; | |
1156 | ||
dde19c21 FM |
1157 | return; |
1158 | } | |
1159 | ||
c3f94162 | 1160 | // 1) Add this event to our list of pending events |
8ebec7dc | 1161 | wxENTER_CRIT_SECT( m_pendingEventsLock ); |
16c1f79c | 1162 | |
8e193f38 | 1163 | if ( !m_pendingEvents ) |
cae9e7b1 | 1164 | m_pendingEvents = new wxList; |
7214297d | 1165 | |
c3f94162 | 1166 | m_pendingEvents->Append(event); |
7214297d | 1167 | |
16c1f79c RR |
1168 | // 2) Add this event handler to list of event handlers that |
1169 | // have pending events. | |
cfe17b74 | 1170 | |
8e40ed85 | 1171 | wxTheApp->AppendPendingEventHandler(this); |
6164f93c | 1172 | |
a715b990 VZ |
1173 | // only release m_pendingEventsLock now because otherwise there is a race |
1174 | // condition as described in the ticket #9093: we could process the event | |
1175 | // just added to m_pendingEvents in our ProcessPendingEvents() below before | |
079f4130 | 1176 | // we had time to append this pointer to wxHandlersWithPendingEvents list; thus |
a715b990 VZ |
1177 | // breaking the invariant that a handler should be in the list iff it has |
1178 | // any pending events to process | |
1179 | wxLEAVE_CRIT_SECT( m_pendingEventsLock ); | |
1180 | ||
90e572f1 | 1181 | // 3) Inform the system that new pending events are somewhere, |
16c1f79c | 1182 | // and that these should be processed in idle time. |
bf9e3e73 | 1183 | wxWakeUpIdle(); |
7214297d GL |
1184 | } |
1185 | ||
cae9e7b1 FM |
1186 | void wxEvtHandler::DeletePendingEvents() |
1187 | { | |
1188 | if (m_pendingEvents) | |
1189 | m_pendingEvents->DeleteContents(true); | |
1190 | wxDELETE(m_pendingEvents); | |
1191 | } | |
1192 | ||
7214297d GL |
1193 | void wxEvtHandler::ProcessPendingEvents() |
1194 | { | |
8e40ed85 | 1195 | if (!wxTheApp) |
dde19c21 FM |
1196 | { |
1197 | // we need an event loop which manages the list of event handlers with | |
1198 | // pending events... cannot proceed without it! | |
8e40ed85 | 1199 | wxLogDebug("No application object! Cannot process pending events!"); |
dde19c21 FM |
1200 | return; |
1201 | } | |
1202 | ||
d48b06bd FM |
1203 | // we need to process only a single pending event in this call because |
1204 | // each call to ProcessEvent() could result in the destruction of this | |
1205 | // same event handler (see the comment at the end of this function) | |
1206 | ||
8ebec7dc | 1207 | wxENTER_CRIT_SECT( m_pendingEventsLock ); |
8e193f38 | 1208 | |
7ce2fb71 VZ |
1209 | // this method is only called by wxApp if this handler does have |
1210 | // pending events | |
1211 | wxCHECK_RET( m_pendingEvents && !m_pendingEvents->IsEmpty(), | |
1212 | "should have pending events if called" ); | |
5fa150e2 | 1213 | |
19c4d916 | 1214 | wxList::compatibility_iterator node = m_pendingEvents->GetFirst(); |
d48b06bd FM |
1215 | wxEvent* pEvent = static_cast<wxEvent *>(node->GetData()); |
1216 | ||
1217 | // find the first event which can be processed now: | |
dde19c21 FM |
1218 | wxEventLoopBase* evtLoop = wxEventLoopBase::GetActive(); |
1219 | if (evtLoop && evtLoop->IsYielding()) | |
d48b06bd | 1220 | { |
dde19c21 | 1221 | while (node && pEvent && !evtLoop->IsEventAllowedInsideYield(pEvent->GetEventCategory())) |
d48b06bd FM |
1222 | { |
1223 | node = node->GetNext(); | |
1224 | pEvent = node ? static_cast<wxEvent *>(node->GetData()) : NULL; | |
1225 | } | |
1226 | ||
1227 | if (!node) | |
1228 | { | |
1229 | // all our events are NOT processable now... signal this: | |
8e40ed85 | 1230 | wxTheApp->DelayPendingEventHandler(this); |
dde19c21 FM |
1231 | |
1232 | // see the comment at the beginning of evtloop.h header for the | |
1233 | // logic behind YieldFor() and behind DelayPendingEventHandler() | |
1234 | ||
d48b06bd FM |
1235 | wxLEAVE_CRIT_SECT( m_pendingEventsLock ); |
1236 | ||
1237 | return; | |
1238 | } | |
1239 | } | |
1240 | ||
1241 | wxEventPtr event(pEvent); | |
5875d39c | 1242 | |
19c4d916 VZ |
1243 | // it's important we remove event from list before processing it, else a |
1244 | // nested event loop, for example from a modal dialog, might process the | |
1245 | // same event again. | |
1246 | m_pendingEvents->Erase(node); | |
7b0d5c59 | 1247 | |
19c4d916 | 1248 | if ( m_pendingEvents->IsEmpty() ) |
1512f0f7 | 1249 | { |
dde19c21 FM |
1250 | // if there are no more pending events left, we don't need to |
1251 | // stay in this list | |
8e40ed85 | 1252 | wxTheApp->RemovePendingEventHandler(this); |
1512f0f7 | 1253 | } |
5fa150e2 | 1254 | |
8ebec7dc | 1255 | wxLEAVE_CRIT_SECT( m_pendingEventsLock ); |
7b0d5c59 | 1256 | |
19c4d916 | 1257 | ProcessEvent(*event); |
cfe17b74 | 1258 | |
19c4d916 VZ |
1259 | // careful: this object could have been deleted by the event handler |
1260 | // executed by the above ProcessEvent() call, so we can't access any fields | |
1261 | // of this object any more | |
7214297d | 1262 | } |
7214297d | 1263 | |
8e40ed85 FM |
1264 | /* static */ |
1265 | bool wxEvtHandler::ProcessEventIfMatchesId(const wxEventTableEntryBase& entry, | |
1266 | wxEvtHandler *handler, | |
1267 | wxEvent& event) | |
1c624631 VZ |
1268 | { |
1269 | int tableId1 = entry.m_id, | |
1270 | tableId2 = entry.m_lastId; | |
1271 | ||
1272 | // match only if the event type is the same and the id is either -1 in | |
1273 | // the event table (meaning "any") or the event id matches the id | |
1274 | // specified in the event table either exactly or by falling into | |
1275 | // range between first and last | |
1a18887b WS |
1276 | if ((tableId1 == wxID_ANY) || |
1277 | (tableId2 == wxID_ANY && tableId1 == event.GetId()) || | |
1278 | (tableId2 != wxID_ANY && | |
1c624631 VZ |
1279 | (event.GetId() >= tableId1 && event.GetId() <= tableId2))) |
1280 | { | |
1281 | event.Skip(false); | |
1282 | event.m_callbackUserData = entry.m_callbackUserData; | |
1283 | ||
1284 | #if wxUSE_EXCEPTIONS | |
1285 | if ( wxTheApp ) | |
1286 | { | |
1287 | // call the handler via wxApp method which allows the user to catch | |
1288 | // any exceptions which may be thrown by any handler in the program | |
1289 | // in one place | |
3c778901 | 1290 | wxTheApp->CallEventHandler(handler, *entry.m_fn, event); |
1c624631 VZ |
1291 | } |
1292 | else | |
8bd2a804 | 1293 | #endif // wxUSE_EXCEPTIONS |
1c624631 | 1294 | { |
3c778901 | 1295 | (*entry.m_fn)(handler, event); |
1c624631 | 1296 | } |
1c624631 VZ |
1297 | |
1298 | if (!event.GetSkipped()) | |
1299 | return true; | |
1300 | } | |
1301 | ||
1302 | return false; | |
1303 | } | |
c801d85f | 1304 | |
8cc208e3 | 1305 | bool wxEvtHandler::DoTryApp(wxEvent& event) |
c801d85f | 1306 | { |
4caf847c | 1307 | if ( wxTheApp && (this != wxTheApp) ) |
9154d8cf | 1308 | { |
4caf847c VZ |
1309 | // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always |
1310 | // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be | |
1311 | // processed appropriately via SearchEventTable. | |
1312 | if ( event.GetEventType() != wxEVT_IDLE ) | |
1313 | { | |
1314 | if ( wxTheApp->ProcessEvent(event) ) | |
1c624631 | 1315 | return true; |
4caf847c | 1316 | } |
9154d8cf VZ |
1317 | } |
1318 | ||
1c624631 | 1319 | return false; |
4caf847c | 1320 | } |
0b746ba8 | 1321 | |
2d8c0c2c VZ |
1322 | bool wxEvtHandler::TryBefore(wxEvent& event) |
1323 | { | |
609483b8 | 1324 | #if WXWIN_COMPATIBILITY_2_8 |
2d8c0c2c VZ |
1325 | // call the old virtual function to keep the code overriding it working |
1326 | return TryValidator(event); | |
1327 | #else | |
1328 | wxUnusedVar(event); | |
1329 | return false; | |
1330 | #endif | |
1331 | } | |
1332 | ||
1333 | bool wxEvtHandler::TryAfter(wxEvent& event) | |
1334 | { | |
3cbb9df8 VZ |
1335 | // We only want to pass the window to the application object once even if |
1336 | // there are several chained handlers. Ensure that this is what happens by | |
1337 | // only calling DoTryApp() if there is no next handler (which would do it). | |
1338 | // | |
1339 | // Notice that, unlike simply calling TryAfter() on the last handler in the | |
1340 | // chain only from ProcessEvent(), this also works with wxWindow object in | |
1341 | // the middle of the chain: its overridden TryAfter() will still be called | |
1342 | // and propagate the event upwards the window hierarchy even if it's not | |
1343 | // the last one in the chain (which, admittedly, shouldn't happen often). | |
1344 | if ( GetNextHandler() ) | |
1345 | return GetNextHandler()->TryAfter(event); | |
1346 | ||
609483b8 | 1347 | #if WXWIN_COMPATIBILITY_2_8 |
2d8c0c2c VZ |
1348 | // as above, call the old virtual function for compatibility |
1349 | return TryParent(event); | |
1350 | #else | |
1351 | return DoTryApp(event); | |
1352 | #endif | |
1353 | } | |
1354 | ||
4caf847c VZ |
1355 | bool wxEvtHandler::ProcessEvent(wxEvent& event) |
1356 | { | |
3cbb9df8 VZ |
1357 | // The very first thing we do is to allow the application to hook into |
1358 | // event processing in order to globally pre-process all events. | |
29de6f40 | 1359 | // |
3cbb9df8 | 1360 | // Note that we should only do it if we're the first event handler called |
29de6f40 | 1361 | // to avoid calling FilterEvent() multiple times as the event goes through |
3cbb9df8 | 1362 | // the event handler chain and possibly upwards the window hierarchy. |
29de6f40 | 1363 | if ( !event.WasProcessed() ) |
9154d8cf | 1364 | { |
29de6f40 | 1365 | if ( wxTheApp ) |
9154d8cf | 1366 | { |
29de6f40 VZ |
1367 | int rc = wxTheApp->FilterEvent(event); |
1368 | if ( rc != -1 ) | |
1369 | { | |
1370 | wxASSERT_MSG( rc == 1 || rc == 0, | |
1371 | "unexpected wxApp::FilterEvent return value" ); | |
9154d8cf | 1372 | |
29de6f40 VZ |
1373 | return rc != 0; |
1374 | } | |
1375 | //else: proceed normally | |
9154d8cf | 1376 | } |
9154d8cf VZ |
1377 | } |
1378 | ||
3cbb9df8 VZ |
1379 | // Short circuit the event processing logic if we're requested to process |
1380 | // this event in this handler only, see DoTryChain() for more details. | |
bbdee10d | 1381 | if ( event.ShouldProcessOnlyIn(this) ) |
4b6d82c7 | 1382 | return TryBeforeAndHere(event); |
3cbb9df8 VZ |
1383 | |
1384 | ||
1385 | // Try to process the event in this handler itself. | |
1386 | if ( ProcessEventLocally(event) ) | |
0ef5cba6 VZ |
1387 | { |
1388 | // It is possible that DoTryChain() called from ProcessEventLocally() | |
1389 | // returned true but the event was not really processed: this happens | |
1390 | // if a custom handler ignores the request to process the event in this | |
1391 | // handler only and in this case we should skip the post processing | |
1392 | // done in TryAfter() but still return the correct value ourselves to | |
1393 | // indicate whether we did or did not find a handler for this event. | |
1394 | return !event.GetSkipped(); | |
1395 | } | |
3cbb9df8 VZ |
1396 | |
1397 | // If we still didn't find a handler, propagate the event upwards the | |
1398 | // window chain and/or to the application object. | |
1399 | if ( TryAfter(event) ) | |
1400 | return true; | |
1401 | ||
1402 | ||
1403 | // No handler found anywhere, bail out. | |
1404 | return false; | |
1405 | } | |
1406 | ||
1407 | bool wxEvtHandler::ProcessEventLocally(wxEvent& event) | |
1408 | { | |
4b6d82c7 VZ |
1409 | // Try the hooks which should be called before our own handlers and this |
1410 | // handler itself first. Notice that we should not call ProcessEvent() on | |
1411 | // this one as we're already called from it, which explains why we do it | |
1412 | // here and not in DoTryChain() | |
1413 | return TryBeforeAndHere(event) || DoTryChain(event); | |
3cbb9df8 | 1414 | } |
29de6f40 | 1415 | |
3cbb9df8 VZ |
1416 | bool wxEvtHandler::DoTryChain(wxEvent& event) |
1417 | { | |
1418 | for ( wxEvtHandler *h = GetNextHandler(); h; h = h->GetNextHandler() ) | |
1419 | { | |
1420 | // We need to process this event at the level of this handler only | |
1421 | // right now, the pre-/post-processing was either already done by | |
1422 | // ProcessEvent() from which we were called or will be done by it when | |
1423 | // we return. | |
1424 | // | |
4b6d82c7 | 1425 | // However we must call ProcessEvent() and not TryHereOnly() because the |
512220b6 VZ |
1426 | // existing code (including some in wxWidgets itself) expects the |
1427 | // overridden ProcessEvent() in its custom event handlers pushed on a | |
1428 | // window to be called. | |
3cbb9df8 VZ |
1429 | // |
1430 | // So we must call ProcessEvent() but it must not do what it usually | |
bbdee10d VZ |
1431 | // does. To resolve this paradox we set up a special flag inside the |
1432 | // object itself to let ProcessEvent() know that it shouldn't do any | |
1433 | // pre/post-processing for this event if it gets it. Note that this | |
1434 | // only applies to this handler, if the event is passed to another one | |
1435 | // by explicitly calling its ProcessEvent(), pre/post-processing should | |
1436 | // be done as usual. | |
1437 | // | |
1438 | // Final complication is that if the implementation of ProcessEvent() | |
1439 | // called wxEvent::DidntHonourProcessOnlyIn() (as the gross hack that | |
1440 | // is wxScrollHelperEvtHandler::ProcessEvent() does) and ignored our | |
1441 | // request to process event in this handler only, we have to compensate | |
1442 | // for it by not processing the event further because this was already | |
1443 | // done by that rogue event handler. | |
1444 | wxEventProcessInHandlerOnly processInHandlerOnly(event, h); | |
e0520316 | 1445 | if ( h->ProcessEvent(event) ) |
0ef5cba6 VZ |
1446 | { |
1447 | // Make sure "skipped" flag is not set as the event was really | |
1448 | // processed in this case. Normally it shouldn't be set anyhow but | |
1449 | // make sure just in case the user code does something strange. | |
1450 | event.Skip(false); | |
1451 | ||
3cbb9df8 | 1452 | return true; |
0ef5cba6 | 1453 | } |
e0520316 VZ |
1454 | |
1455 | if ( !event.ShouldProcessOnlyIn(h) ) | |
0ef5cba6 VZ |
1456 | { |
1457 | // Still return true to indicate that no further processing should | |
1458 | // be undertaken but ensure that "skipped" flag is set so that the | |
1459 | // caller knows that the event was not really processed. | |
1460 | event.Skip(); | |
1461 | ||
1462 | return true; | |
1463 | } | |
3cbb9df8 VZ |
1464 | } |
1465 | ||
1466 | return false; | |
25250d33 VZ |
1467 | } |
1468 | ||
4b6d82c7 | 1469 | bool wxEvtHandler::TryHereOnly(wxEvent& event) |
25250d33 | 1470 | { |
29de6f40 VZ |
1471 | // If the event handler is disabled it doesn't process any events |
1472 | if ( !GetEvtHandlerEnabled() ) | |
1473 | return false; | |
4caf847c | 1474 | |
29de6f40 VZ |
1475 | // Handle per-instance dynamic event tables first |
1476 | if ( m_dynamicEvents && SearchDynamicEventTable(event) ) | |
1477 | return true; | |
c801d85f | 1478 | |
29de6f40 VZ |
1479 | // Then static per-class event tables |
1480 | if ( GetEventHashTable().HandleEvent(event, this) ) | |
25250d33 | 1481 | return true; |
c801d85f | 1482 | |
25250d33 VZ |
1483 | // We don't have a handler for this event. |
1484 | return false; | |
c801d85f KB |
1485 | } |
1486 | ||
937013e0 VS |
1487 | bool wxEvtHandler::SafelyProcessEvent(wxEvent& event) |
1488 | { | |
1489 | #if wxUSE_EXCEPTIONS | |
1490 | try | |
1491 | { | |
1492 | #endif | |
1493 | return ProcessEvent(event); | |
1494 | #if wxUSE_EXCEPTIONS | |
1495 | } | |
1496 | catch ( ... ) | |
1497 | { | |
8793514e VZ |
1498 | // notice that we do it in 2 steps to avoid warnings about possibly |
1499 | // uninitialized loop variable from some versions of g++ which are not | |
1500 | // smart enough to figure out that GetActive() doesn't throw and so | |
1501 | // that loop will always be initialized | |
1502 | wxEventLoopBase *loop = NULL; | |
937013e0 VS |
1503 | try |
1504 | { | |
8793514e VZ |
1505 | loop = wxEventLoopBase::GetActive(); |
1506 | ||
937013e0 VS |
1507 | if ( !wxTheApp || !wxTheApp->OnExceptionInMainLoop() ) |
1508 | { | |
1509 | if ( loop ) | |
1510 | loop->Exit(); | |
1511 | } | |
1512 | //else: continue running current event loop | |
1513 | ||
1514 | return false; | |
1515 | } | |
1516 | catch ( ... ) | |
1517 | { | |
1518 | // OnExceptionInMainLoop() threw, possibly rethrowing the same | |
1519 | // exception again: very good, but we still need Exit() to | |
1520 | // be called | |
1521 | if ( loop ) | |
1522 | loop->Exit(); | |
1523 | throw; | |
1524 | } | |
1525 | } | |
1526 | #endif // wxUSE_EXCEPTIONS | |
1527 | } | |
1528 | ||
c801d85f KB |
1529 | bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event) |
1530 | { | |
1c624631 | 1531 | const wxEventType eventType = event.GetEventType(); |
68662769 | 1532 | for ( int i = 0; table.entries[i].m_fn != 0; i++ ) |
c801d85f | 1533 | { |
68662769 | 1534 | const wxEventTableEntry& entry = table.entries[i]; |
68662769 | 1535 | if ( eventType == entry.m_eventType ) |
0b746ba8 | 1536 | { |
03f3617b | 1537 | if ( ProcessEventIfMatchesId(entry, this, event) ) |
1c624631 | 1538 | return true; |
0b746ba8 | 1539 | } |
c801d85f | 1540 | } |
68662769 | 1541 | |
1c624631 | 1542 | return false; |
c801d85f | 1543 | } |
97d7bfb8 | 1544 | |
890d70eb VZ |
1545 | void wxEvtHandler::DoBind(int id, |
1546 | int lastId, | |
1547 | wxEventType eventType, | |
1548 | wxEventFunctor *func, | |
1549 | wxObject *userData) | |
fe71f65c | 1550 | { |
0b5eceb6 | 1551 | wxDynamicEventTableEntry *entry = |
3c778901 | 1552 | new wxDynamicEventTableEntry(eventType, id, lastId, func, userData); |
0b746ba8 VZ |
1553 | |
1554 | if (!m_dynamicEvents) | |
1555 | m_dynamicEvents = new wxList; | |
1556 | ||
92309201 RD |
1557 | // Insert at the front of the list so most recent additions are found first |
1558 | m_dynamicEvents->Insert( (wxObject*) entry ); | |
cc6ceca7 VZ |
1559 | |
1560 | // Make sure we get to know when a sink is destroyed | |
f3ff831f | 1561 | wxEvtHandler *eventSink = func->GetEvtHandler(); |
886274c6 | 1562 | if ( eventSink && eventSink != this ) |
2ef989c9 | 1563 | { |
cc6ceca7 VZ |
1564 | wxEventConnectionRef *evtConnRef = FindRefInTrackerList(eventSink); |
1565 | if ( evtConnRef ) | |
1566 | evtConnRef->IncRef( ); | |
2ef989c9 | 1567 | else |
e822d1bd | 1568 | new wxEventConnectionRef(this, eventSink); |
2ef989c9 | 1569 | } |
fe71f65c | 1570 | } |
97d7bfb8 | 1571 | |
3c778901 | 1572 | bool |
890d70eb VZ |
1573 | wxEvtHandler::DoUnbind(int id, |
1574 | int lastId, | |
1575 | wxEventType eventType, | |
1576 | const wxEventFunctor& func, | |
1577 | wxObject *userData) | |
97d7bfb8 RR |
1578 | { |
1579 | if (!m_dynamicEvents) | |
1c624631 | 1580 | return false; |
cfe17b74 | 1581 | |
2ef989c9 | 1582 | // Remove connection from tracker node (wxEventConnectionRef) |
f3ff831f | 1583 | wxEvtHandler *eventSink = func.GetEvtHandler(); |
886274c6 | 1584 | if ( eventSink && eventSink != this ) |
2ef989c9 | 1585 | { |
cc6ceca7 VZ |
1586 | wxEventConnectionRef *evtConnRef = FindRefInTrackerList(eventSink); |
1587 | if ( evtConnRef ) | |
1588 | evtConnRef->DecRef(); | |
2ef989c9 RR |
1589 | } |
1590 | ||
df5168c4 | 1591 | wxList::compatibility_iterator node = m_dynamicEvents->GetFirst(); |
97d7bfb8 RR |
1592 | while (node) |
1593 | { | |
ad684023 | 1594 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData(); |
2e4df4bf | 1595 | |
97d7bfb8 | 1596 | if ((entry->m_id == id) && |
1a18887b | 1597 | ((entry->m_lastId == lastId) || (lastId == wxID_ANY)) && |
97d7bfb8 | 1598 | ((entry->m_eventType == eventType) || (eventType == wxEVT_NULL)) && |
890d70eb | 1599 | entry->m_fn->IsMatching(func) && |
3c778901 | 1600 | ((entry->m_callbackUserData == userData) || !userData)) |
97d7bfb8 | 1601 | { |
3c778901 | 1602 | delete entry->m_callbackUserData; |
df5168c4 | 1603 | m_dynamicEvents->Erase( node ); |
97d7bfb8 | 1604 | delete entry; |
1c624631 | 1605 | return true; |
97d7bfb8 | 1606 | } |
b1d4dd7a | 1607 | node = node->GetNext(); |
97d7bfb8 | 1608 | } |
1c624631 | 1609 | return false; |
97d7bfb8 | 1610 | } |
fe71f65c RR |
1611 | |
1612 | bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event ) | |
1613 | { | |
1c624631 | 1614 | wxCHECK_MSG( m_dynamicEvents, false, |
223d09f6 | 1615 | wxT("caller should check that we have dynamic events") ); |
0b746ba8 | 1616 | |
df5168c4 | 1617 | wxList::compatibility_iterator node = m_dynamicEvents->GetFirst(); |
0b746ba8 | 1618 | while (node) |
fe71f65c | 1619 | { |
1c624631 | 1620 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData(); |
0b746ba8 | 1621 | |
7fce89b9 VZ |
1622 | // get next node before (maybe) calling the event handler as it could |
1623 | // call Disconnect() invalidating the current node | |
1624 | node = node->GetNext(); | |
1625 | ||
03f3617b | 1626 | if ( event.GetEventType() == entry->m_eventType ) |
0b746ba8 | 1627 | { |
f3ff831f | 1628 | wxEvtHandler *handler = entry->m_fn->GetEvtHandler(); |
03f3617b VZ |
1629 | if ( !handler ) |
1630 | handler = this; | |
1631 | if ( ProcessEventIfMatchesId(*entry, handler, event) ) | |
1c624631 | 1632 | return true; |
0b746ba8 | 1633 | } |
7b678698 | 1634 | } |
1c624631 VZ |
1635 | |
1636 | return false; | |
4115960d | 1637 | } |
fe71f65c | 1638 | |
b88c44e7 RD |
1639 | void wxEvtHandler::DoSetClientObject( wxClientData *data ) |
1640 | { | |
1641 | wxASSERT_MSG( m_clientDataType != wxClientData_Void, | |
1642 | wxT("can't have both object and void client data") ); | |
1643 | ||
1644 | if ( m_clientObject ) | |
1645 | delete m_clientObject; | |
1646 | ||
1647 | m_clientObject = data; | |
1648 | m_clientDataType = wxClientData_Object; | |
1649 | } | |
1650 | ||
1651 | wxClientData *wxEvtHandler::DoGetClientObject() const | |
1652 | { | |
1653 | // it's not an error to call GetClientObject() on a window which doesn't | |
1654 | // have client data at all - NULL will be returned | |
1655 | wxASSERT_MSG( m_clientDataType != wxClientData_Void, | |
1656 | wxT("this window doesn't have object client data") ); | |
1657 | ||
1658 | return m_clientObject; | |
1659 | } | |
1660 | ||
1661 | void wxEvtHandler::DoSetClientData( void *data ) | |
1662 | { | |
1663 | wxASSERT_MSG( m_clientDataType != wxClientData_Object, | |
1664 | wxT("can't have both object and void client data") ); | |
1665 | ||
1666 | m_clientData = data; | |
1667 | m_clientDataType = wxClientData_Void; | |
1668 | } | |
1669 | ||
1670 | void *wxEvtHandler::DoGetClientData() const | |
1671 | { | |
1672 | // it's not an error to call GetClientData() on a window which doesn't have | |
1673 | // client data at all - NULL will be returned | |
1674 | wxASSERT_MSG( m_clientDataType != wxClientData_Object, | |
1675 | wxT("this window doesn't have void client data") ); | |
1676 | ||
1677 | return m_clientData; | |
1678 | } | |
1679 | ||
cc6ceca7 VZ |
1680 | // A helper to find an wxEventConnectionRef object |
1681 | wxEventConnectionRef * | |
1682 | wxEvtHandler::FindRefInTrackerList(wxEvtHandler *eventSink) | |
2ef989c9 | 1683 | { |
cc6ceca7 | 1684 | for ( wxTrackerNode *node = eventSink->GetFirst(); node; node = node->m_nxt ) |
2ef989c9 | 1685 | { |
cc6ceca7 VZ |
1686 | // we only want wxEventConnectionRef nodes here |
1687 | wxEventConnectionRef *evtConnRef = node->ToEventConnection(); | |
1688 | if ( evtConnRef && evtConnRef->m_src == this ) | |
2ef989c9 | 1689 | { |
cc6ceca7 VZ |
1690 | wxASSERT( evtConnRef->m_sink==eventSink ); |
1691 | return evtConnRef; | |
2ef989c9 RR |
1692 | } |
1693 | } | |
cc6ceca7 | 1694 | |
2ef989c9 RR |
1695 | return NULL; |
1696 | } | |
1697 | ||
1698 | void wxEvtHandler::OnSinkDestroyed( wxEvtHandler *sink ) | |
1699 | { | |
1700 | wxASSERT(m_dynamicEvents); | |
cc6ceca7 | 1701 | |
2ef989c9 RR |
1702 | // remove all connections with this sink |
1703 | wxList::compatibility_iterator node = m_dynamicEvents->GetFirst(), node_nxt; | |
1704 | while (node) | |
1705 | { | |
1706 | wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData(); | |
1707 | node_nxt = node->GetNext(); | |
cc6ceca7 | 1708 | |
f3ff831f | 1709 | if ( entry->m_fn->GetEvtHandler() == sink ) |
2ef989c9 | 1710 | { |
3c778901 | 1711 | delete entry->m_callbackUserData; |
2ef989c9 RR |
1712 | m_dynamicEvents->Erase( node ); |
1713 | delete entry; | |
1714 | } | |
1715 | node = node_nxt; | |
1716 | } | |
1717 | } | |
1718 | ||
4caf847c VZ |
1719 | #endif // wxUSE_BASE |
1720 | ||
e90c1d2a VZ |
1721 | #if wxUSE_GUI |
1722 | ||
e702ff0f JS |
1723 | // Find a window with the focus, that is also a descendant of the given window. |
1724 | // This is used to determine the window to initially send commands to. | |
1725 | wxWindow* wxFindFocusDescendant(wxWindow* ancestor) | |
1726 | { | |
1727 | // Process events starting with the window with the focus, if any. | |
1728 | wxWindow* focusWin = wxWindow::FindFocus(); | |
1729 | wxWindow* win = focusWin; | |
1730 | ||
1731 | // Check if this is a descendant of this frame. | |
1732 | // If not, win will be set to NULL. | |
1733 | while (win) | |
1734 | { | |
1735 | if (win == ancestor) | |
1736 | break; | |
1737 | else | |
1738 | win = win->GetParent(); | |
1739 | } | |
3c778901 VZ |
1740 | if (win == NULL) |
1741 | focusWin = NULL; | |
e702ff0f JS |
1742 | |
1743 | return focusWin; | |
1744 | } | |
1745 | ||
c4fa5aa7 VZ |
1746 | // ---------------------------------------------------------------------------- |
1747 | // wxEventBlocker | |
1748 | // ---------------------------------------------------------------------------- | |
1749 | ||
1750 | wxEventBlocker::wxEventBlocker(wxWindow *win, wxEventType type) | |
1751 | { | |
1752 | wxCHECK_RET(win, wxT("Null window given to wxEventBlocker")); | |
1753 | ||
1754 | m_window = win; | |
1755 | ||
1756 | Block(type); | |
1757 | m_window->PushEventHandler(this); | |
1758 | } | |
1759 | ||
1760 | wxEventBlocker::~wxEventBlocker() | |
1761 | { | |
1762 | wxEvtHandler *popped = m_window->PopEventHandler(false); | |
aa767a45 | 1763 | wxCHECK_RET(popped == this, |
c4fa5aa7 VZ |
1764 | wxT("Don't push other event handlers into a window managed by wxEventBlocker!")); |
1765 | } | |
1766 | ||
1767 | bool wxEventBlocker::ProcessEvent(wxEvent& event) | |
1768 | { | |
1769 | // should this event be blocked? | |
1770 | for ( size_t i = 0; i < m_eventsToBlock.size(); i++ ) | |
1771 | { | |
1772 | wxEventType t = (wxEventType)m_eventsToBlock[i]; | |
1773 | if ( t == wxEVT_ANY || t == event.GetEventType() ) | |
1774 | return true; // yes, it should: mark this event as processed | |
1775 | } | |
1776 | ||
1777 | return false; | |
1778 | } | |
1779 | ||
e90c1d2a | 1780 | #endif // wxUSE_GUI |
3c778901 | 1781 |