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