]> git.saurik.com Git - wxWidgets.git/blob - src/common/event.cpp
added wxLogWindow::GetFrame()
[wxWidgets.git] / src / common / event.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: event.cpp
3 // Purpose: Event classes
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "event.h"
14 #endif
15
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #ifndef WX_PRECOMP
24 #include "wx/defs.h"
25 #include "wx/control.h"
26 #include "wx/utils.h"
27 #include "wx/app.h"
28 #include "wx/dc.h"
29 #endif
30
31 #include "wx/event.h"
32 #include "wx/validate.h"
33
34 #if !USE_SHARED_LIBRARY
35 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject)
36 IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
37 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent)
38 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent)
39 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent)
40 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent)
41 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent)
42 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent)
43 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent)
44 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent)
45 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent)
46 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent)
47 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent)
48 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent)
49 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent)
50 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent)
51 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent)
52 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent)
53 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent)
54 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent)
55 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent)
56 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
57 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxEvent)
58 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxCommandEvent)
59 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent)
60 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent)
61
62 const wxEventTable *wxEvtHandler::GetEventTable() const { return &wxEvtHandler::sm_eventTable; }
63
64 const wxEventTable wxEvtHandler::sm_eventTable =
65 { NULL, &wxEvtHandler::sm_eventTableEntries[0] };
66
67 const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = { { 0, 0, 0, NULL } };
68
69 #endif
70
71 /*
72 * General wxWindows events, covering
73 * all interesting things that might happen (button clicking, resizing,
74 * setting text in widgets, etc.).
75 *
76 * For each completely new event type, derive a new event class.
77 *
78 */
79
80 wxEvent::wxEvent(int theId)
81 {
82 m_eventType = wxEVT_NULL;
83 m_eventObject = NULL;
84 m_eventHandle = NULL;
85 m_timeStamp = 0;
86 m_id = theId;
87 m_skipped = FALSE;
88 m_callbackUserData = NULL;
89 }
90
91 /*
92 * Command events
93 *
94 */
95
96 wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId)
97 {
98 m_eventType = commandType;
99 m_clientData = NULL;
100 m_extraLong = 0;
101 m_commandInt = 0;
102 m_id = theId;
103 m_commandString = NULL;
104 }
105
106 /*
107 * Scroll events
108 */
109
110 wxScrollEvent::wxScrollEvent(wxEventType commandType, int id, int pos, int orient):
111 wxCommandEvent(commandType, id)
112 {
113 m_extraLong = orient;
114 m_commandInt = pos;
115 }
116
117
118 /*
119 * Mouse events
120 *
121 */
122
123 wxMouseEvent::wxMouseEvent(wxEventType commandType)
124 {
125 m_eventType = commandType;
126 m_metaDown = FALSE;
127 m_altDown = FALSE;
128 m_controlDown = FALSE;
129 m_shiftDown = FALSE;
130 }
131
132 // True if was a button dclick event (1 = left, 2 = middle, 3 = right)
133 // or any button dclick event (but = -1)
134 bool wxMouseEvent::ButtonDClick(int but) const
135 {
136 switch (but) {
137 case -1:
138 return (LeftDClick() || MiddleDClick() || RightDClick());
139 case 1:
140 return LeftDClick();
141 case 2:
142 return MiddleDClick();
143 case 3:
144 return RightDClick();
145 default:
146 return FALSE;
147 }
148 // NOTREACHED
149 }
150
151 // True if was a button down event (1 = left, 2 = middle, 3 = right)
152 // or any button down event (but = -1)
153 bool wxMouseEvent::ButtonDown(int but) const
154 {
155 switch (but) {
156 case -1:
157 return (LeftDown() || MiddleDown() || RightDown());
158 case 1:
159 return LeftDown();
160 case 2:
161 return MiddleDown();
162 case 3:
163 return RightDown();
164 default:
165 return FALSE;
166 }
167 // NOTREACHED
168 }
169
170 // True if was a button up event (1 = left, 2 = middle, 3 = right)
171 // or any button up event (but = -1)
172 bool wxMouseEvent::ButtonUp(int but) const
173 {
174 switch (but) {
175 case -1:
176 return (LeftUp() || MiddleUp() || RightUp());
177 case 1:
178 return LeftUp();
179 case 2:
180 return MiddleUp();
181 case 3:
182 return RightUp();
183 default:
184 return FALSE;
185 }
186 // NOTREACHED
187 }
188
189 // True if the given button is currently changing state
190 bool wxMouseEvent::Button(int but) const
191 {
192 switch (but) {
193 case -1:
194 return (ButtonUp(-1) || ButtonDown(-1) || ButtonDClick(-1)) ;
195 case 1:
196 return (LeftDown() || LeftUp() || LeftDClick());
197 case 2:
198 return (MiddleDown() || MiddleUp() || MiddleDClick());
199 case 3:
200 return (RightDown() || RightUp() || RightDClick());
201 default:
202 return FALSE;
203 }
204 // NOTREACHED
205 }
206
207 bool wxMouseEvent::ButtonIsDown(int but) const
208 {
209 switch (but) {
210 case -1:
211 return (LeftIsDown() || MiddleIsDown() || RightIsDown());
212 case 1:
213 return LeftIsDown();
214 case 2:
215 return MiddleIsDown();
216 case 3:
217 return RightIsDown();
218 default:
219 return FALSE;
220 }
221 // NOTREACHED
222 }
223
224 // Find the logical position of the event given the DC
225 wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const
226 {
227 wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y));
228 return pt;
229 }
230
231
232 /*
233 * Keyboard events
234 *
235 */
236
237 wxKeyEvent::wxKeyEvent(wxEventType type)
238 {
239 m_eventType = type;
240 m_shiftDown = FALSE;
241 m_controlDown = FALSE;
242 m_metaDown = FALSE;
243 m_altDown = FALSE;
244 m_keyCode = 0;
245 }
246
247 /*
248 * Event handler
249 */
250
251 wxEvtHandler::wxEvtHandler(void)
252 {
253 m_clientData = NULL;
254 m_nextHandler = NULL;
255 m_previousHandler = NULL;
256 m_enabled = TRUE;
257 m_dynamicEvents = NULL;
258 }
259
260 wxEvtHandler::~wxEvtHandler(void)
261 {
262 // Takes itself out of the list of handlers
263 if (m_previousHandler)
264 m_previousHandler->m_nextHandler = m_nextHandler;
265
266 if (m_nextHandler)
267 m_nextHandler->m_previousHandler = m_previousHandler;
268
269 if (m_dynamicEvents)
270 {
271 wxNode *node = m_dynamicEvents->First();
272 while (node)
273 {
274 wxEventTableEntry *entry = (wxEventTableEntry*)node->Data();
275 if (entry->m_callbackUserData) delete entry->m_callbackUserData;
276 delete entry;
277 node = node->Next();
278 }
279 delete m_dynamicEvents;
280 };
281 }
282
283 /*
284 * Event table stuff
285 */
286
287 bool wxEvtHandler::ProcessEvent(wxEvent& event)
288 {
289 // An event handler can be enabled or disabled
290 if ( GetEvtHandlerEnabled() )
291 {
292 // Handle per-instance dynamic event tables first
293
294 if (SearchDynamicEventTable( event )) return TRUE;
295
296 // Then static per-class event tables
297
298 const wxEventTable *table = GetEventTable();
299
300 // Try the associated validator first, if this is a window.
301 // Problem: if the event handler of the window has been replaced,
302 // this wxEvtHandler may no longer be a window.
303 // Therefore validators won't be processed if the handler
304 // has been replaced with SetEventHandler.
305 // THIS CAN BE CURED if PushEventHandler is used instead of
306 // SetEventHandler, and then processing will be passed down the
307 // chain of event handlers.
308 if (IsKindOf(CLASSINFO(wxWindow)))
309 {
310 wxWindow *win = (wxWindow *)this;
311
312 // Can only use the validator of the window which
313 // is receiving the event
314 if ( (win == event.GetEventObject()) &&
315 win->GetValidator() &&
316 win->GetValidator()->ProcessEvent(event))
317 return TRUE;
318 }
319
320 // Search upwards through the inheritance hierarchy
321 while (table)
322 {
323 if (SearchEventTable((wxEventTable&)*table, event))
324 return TRUE;
325 table = table->baseTable;
326 }
327 }
328
329 // Try going down the event handler chain
330 if ( GetNextHandler() )
331 {
332 if ( GetNextHandler()->ProcessEvent(event) )
333 return TRUE;
334 }
335
336 // Carry on up the parent-child hierarchy,
337 // but only if event is a command event: it wouldn't
338 // make sense for a parent to receive a child's size event, for example
339 if (IsKindOf(CLASSINFO(wxWindow)) && event.IsKindOf(CLASSINFO(wxCommandEvent)))
340 {
341 wxWindow *win = (wxWindow *)this;
342 wxWindow *parent = win->GetParent();
343 if (parent && !parent->IsBeingDeleted())
344 return win->GetParent()->GetEventHandler()->ProcessEvent(event);
345 }
346
347 // Last try - application object
348 if (wxTheApp && this != wxTheApp && wxTheApp->ProcessEvent(event))
349 return TRUE;
350 else
351 return FALSE;
352 }
353
354 bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)
355 {
356 int i = 0;
357 int commandId = event.GetId();
358
359 while (table.entries[i].m_fn != NULL)
360 {
361 // wxEventType eventType = (wxEventType) table.entries[i].m_eventType;
362
363 if ((event.GetEventType() == table.entries[i].m_eventType) &&
364 (table.entries[i].m_id == -1 || // Match, if event spec says any id will do (id == -1)
365 (table.entries[i].m_lastId == -1 && commandId == table.entries[i].m_id) ||
366 (table.entries[i].m_lastId != -1 &&
367 (commandId >= table.entries[i].m_id && commandId <= table.entries[i].m_lastId))))
368 {
369 event.Skip(FALSE);
370 event.m_callbackUserData = table.entries[i].m_callbackUserData;
371
372 (this->*((wxEventFunction) (table.entries[i].m_fn)))(event);
373
374 if ( event.GetSkipped() )
375 return FALSE;
376 else
377 return TRUE;
378 }
379 i ++;
380 }
381 return FALSE;
382 }
383
384 void wxEvtHandler::Connect( int id, int lastId,
385 int eventType,
386 wxObjectEventFunction func,
387 wxObject *userData )
388 {
389 wxEventTableEntry *entry = new wxEventTableEntry;
390 entry->m_id = id;
391 entry->m_lastId = lastId;
392 entry->m_eventType = eventType;
393 entry->m_fn = func;
394 entry->m_callbackUserData = userData;
395
396 if (!m_dynamicEvents)
397 m_dynamicEvents = new wxList;
398
399 m_dynamicEvents->Append( (wxObject*) entry );
400 }
401
402 bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event )
403 {
404 if (!m_dynamicEvents) return FALSE;
405
406 int commandId = event.GetId();
407
408 wxNode *node = m_dynamicEvents->First();
409 while (node)
410 {
411 wxEventTableEntry *entry = (wxEventTableEntry*)node->Data();
412
413 // wxEventType eventType = (wxEventType) entry->m_eventType;
414
415 if (entry->m_fn)
416 {
417 if ((event.GetEventType() == entry->m_eventType) &&
418 (entry->m_id == -1 || // Match, if event spec says any id will do (id == -1)
419 (entry->m_lastId == -1 && commandId == entry->m_id) ||
420 (entry->m_lastId != -1 &&
421 (commandId >= entry->m_id && commandId <= entry->m_lastId))))
422 {
423 event.Skip(FALSE);
424 event.m_callbackUserData = entry->m_callbackUserData;
425
426 (this->*((wxEventFunction) (entry->m_fn)))(event);
427
428 if (event.GetSkipped())
429 return FALSE;
430 else
431 return TRUE;
432 }
433 };
434 node = node->Next();
435 }
436 return FALSE;
437 };
438
439 bool wxEvtHandler::OnClose(void)
440 {
441 if (GetNextHandler()) return GetNextHandler()->OnClose();
442 else return FALSE;
443 }
444
445