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