]> git.saurik.com Git - wxWidgets.git/blame - include/wx/event.h
fixed gcc warnings and reformatted some pieces of code to be a bit readable
[wxWidgets.git] / include / wx / event.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
bd83cb56 2// Name: wx/event.h
c801d85f
KB
3// Purpose: Event classes
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bd83cb56 8// Copyright: (c) wxWindows team
2b854a32 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
1648d51b
VZ
12#ifndef _WX_EVENT_H__
13#define _WX_EVENT_H__
c801d85f 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
2b854a32 16 #pragma interface "event.h"
c801d85f
KB
17#endif
18
19#include "wx/defs.h"
20#include "wx/object.h"
88a9f974 21#include "wx/clntdata.h"
e90c1d2a
VZ
22
23#if wxUSE_GUI
24 #include "wx/gdicmn.h"
43b5058d 25 #include "wx/cursor.h"
e90c1d2a 26#endif
42e69d6b 27
72cdf4c9 28#include "wx/thread.h"
c801d85f 29
b5a98acd
VZ
30#include "wx/dynarray.h"
31
e90c1d2a
VZ
32// ----------------------------------------------------------------------------
33// forward declarations
34// ----------------------------------------------------------------------------
35
bddd7a8d 36class WXDLLIMPEXP_BASE wxList;
e90c1d2a
VZ
37
38#if wxUSE_GUI
bddd7a8d
VZ
39 class WXDLLIMPEXP_CORE wxDC;
40 class WXDLLIMPEXP_CORE wxMenu;
41 class WXDLLIMPEXP_CORE wxWindow;
a7bc03c9 42 class WXDLLIMPEXP_CORE wxWindowBase;
e90c1d2a
VZ
43#endif // wxUSE_GUI
44
45// ----------------------------------------------------------------------------
46// Event types
47// ----------------------------------------------------------------------------
64693098 48
cbee8f8d
VZ
49typedef int wxEventType;
50
51// in previous versions of wxWindows the event types used to be constants
52// which created difficulties with custom/user event types definition
53//
54// starting from wxWindows 2.4 the event types are now dynamically assigned
55// using wxNewEventType() which solves this problem, however at price of
56// several incompatibilities:
57//
58// a) event table macros declaration changed, it now uses wxEventTableEntry
59// ctor instead of initialisation from an agregate - the macro
60// DECLARE_EVENT_TABLE_ENTRY may be used to write code which can compile
61// with all versions of wxWindows
62//
63// b) event types can't be used as switch() cases as they're not really
64// constant any more - there is no magic solution here, you just have to
65// change the switch()es to if()s
66//
67// if these are real problems for you, define WXWIN_COMPATIBILITY_EVENT_TYPES
68// to get 100% old behaviour, however you won't be able to use the libraries
69// using the new dynamic event type allocation in such case, so avoid it if
70// possible.
71
72#if WXWIN_COMPATIBILITY_EVENT_TYPES
73
d9e2e4c2
DE
74#define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \
75 { type, winid, idLast, fn, obj }
cbee8f8d 76
2e4df4bf
VZ
77#define BEGIN_DECLARE_EVENT_TYPES() enum {
78#define END_DECLARE_EVENT_TYPES() };
cbee8f8d 79#define DECLARE_EVENT_TYPE(name, value) name = wxEVT_FIRST + value,
fdb59905 80#define DECLARE_LOCAL_EVENT_TYPE(name, value) name = wxEVT_USER_FIRST + value,
886dd7d2
VZ
81#define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \
82 DECLARE_LOCAL_EVENT_TYPE(name, value)
2e4df4bf 83#define DEFINE_EVENT_TYPE(name)
1a40c31e 84#define DEFINE_LOCAL_EVENT_TYPE(name)
cbee8f8d 85
5527476f 86
cbee8f8d
VZ
87#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
88
d9e2e4c2
DE
89#define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \
90 wxEventTableEntry(type, winid, idLast, fn, obj)
cbee8f8d 91
b5a98acd
VZ
92#define EMPTY_PARAMETER_VALUE /* Fake macro parameter value */
93
2e4df4bf
VZ
94#define BEGIN_DECLARE_EVENT_TYPES()
95#define END_DECLARE_EVENT_TYPES()
886dd7d2
VZ
96#define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \
97 extern expdecl const wxEventType name;
85664da6 98#define DECLARE_EVENT_TYPE(name, value) \
bddd7a8d 99 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_CORE, name, value)
886dd7d2 100#define DECLARE_LOCAL_EVENT_TYPE(name, value) \
b5a98acd 101 DECLARE_EXPORTED_EVENT_TYPE(EMPTY_PARAMETER_VALUE, name, value)
71499aaf 102#define DEFINE_EVENT_TYPE(name) const wxEventType name = wxNewEventType();
886dd7d2 103#define DEFINE_LOCAL_EVENT_TYPE(name) DEFINE_EVENT_TYPE(name)
cbee8f8d
VZ
104
105// generate a new unique event type
bddd7a8d 106extern WXDLLIMPEXP_BASE wxEventType wxNewEventType();
cbee8f8d
VZ
107
108#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
109
2e4df4bf
VZ
110BEGIN_DECLARE_EVENT_TYPES()
111
cbee8f8d 112#if WXWIN_COMPATIBILITY_EVENT_TYPES
cbee8f8d
VZ
113 wxEVT_NULL = 0,
114 wxEVT_FIRST = 10000,
2e4df4bf 115 wxEVT_USER_FIRST = wxEVT_FIRST + 2000,
cbee8f8d 116#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
6164f93c
VZ
117 // it is important to still have these as constants to avoid
118 // initialization order related problems
bddd7a8d
VZ
119 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_NULL, 0)
120 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_FIRST, 10000)
121 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_USER_FIRST, wxEVT_FIRST + 2000)
cbee8f8d
VZ
122#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
123
2e4df4bf
VZ
124 DECLARE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED, 1)
125 DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED, 2)
126 DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED, 3)
127 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED, 4)
128 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, 5)
129 DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, 6)
ad0bae85
VZ
130 // now they are in wx/textctrl.h
131#if WXWIN_COMPATIBILITY_EVENT_TYPES
2e4df4bf
VZ
132 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED, 7)
133 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER, 8)
ad0bae85 134 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL, 13)
d7eee191 135 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_MAXLEN, 14)
ad0bae85 136#endif // WXWIN_COMPATIBILITY_EVENT_TYPES
2e4df4bf
VZ
137 DECLARE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED, 9)
138 DECLARE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED, 10)
139 DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED, 11)
140 DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED, 12)
141
142 // wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use
143 // wxEVT_SCROLL... events
144
145 DECLARE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED, 13)
146 DECLARE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED, 14)
147 DECLARE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED, 15)
148 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED, 16)
149 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER, 17)
150 DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED, 18)
151
152 // Sockets and timers send events, too
bddd7a8d 153 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_SOCKET, 50)
2e4df4bf
VZ
154 DECLARE_EVENT_TYPE(wxEVT_TIMER , 80)
155
156 // Mouse event types
157 DECLARE_EVENT_TYPE(wxEVT_LEFT_DOWN, 100)
158 DECLARE_EVENT_TYPE(wxEVT_LEFT_UP, 101)
159 DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DOWN, 102)
160 DECLARE_EVENT_TYPE(wxEVT_MIDDLE_UP, 103)
161 DECLARE_EVENT_TYPE(wxEVT_RIGHT_DOWN, 104)
162 DECLARE_EVENT_TYPE(wxEVT_RIGHT_UP, 105)
163 DECLARE_EVENT_TYPE(wxEVT_MOTION, 106)
164 DECLARE_EVENT_TYPE(wxEVT_ENTER_WINDOW, 107)
165 DECLARE_EVENT_TYPE(wxEVT_LEAVE_WINDOW, 108)
166 DECLARE_EVENT_TYPE(wxEVT_LEFT_DCLICK, 109)
167 DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK, 110)
168 DECLARE_EVENT_TYPE(wxEVT_RIGHT_DCLICK, 111)
169 DECLARE_EVENT_TYPE(wxEVT_SET_FOCUS, 112)
170 DECLARE_EVENT_TYPE(wxEVT_KILL_FOCUS, 113)
456bc6d9
VZ
171 DECLARE_EVENT_TYPE(wxEVT_CHILD_FOCUS, 114)
172 DECLARE_EVENT_TYPE(wxEVT_MOUSEWHEEL, 115)
2e4df4bf
VZ
173
174 // Non-client mouse events
175 DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN, 200)
176 DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_UP, 201)
177 DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN, 202)
178 DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP, 203)
179 DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN, 204)
180 DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_UP, 205)
181 DECLARE_EVENT_TYPE(wxEVT_NC_MOTION, 206)
182 DECLARE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW, 207)
183 DECLARE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW, 208)
184 DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK, 209)
185 DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK, 210)
186 DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK, 211)
187
188 // Character input event type
189 DECLARE_EVENT_TYPE(wxEVT_CHAR, 212)
190 DECLARE_EVENT_TYPE(wxEVT_CHAR_HOOK, 213)
191 DECLARE_EVENT_TYPE(wxEVT_NAVIGATION_KEY, 214)
192 DECLARE_EVENT_TYPE(wxEVT_KEY_DOWN, 215)
193 DECLARE_EVENT_TYPE(wxEVT_KEY_UP, 216)
5048c832
JS
194#if wxUSE_HOTKEY
195 DECLARE_EVENT_TYPE(wxEVT_HOTKEY, 217)
196#endif
2e4df4bf
VZ
197 // Set cursor event
198 DECLARE_EVENT_TYPE(wxEVT_SET_CURSOR, 230)
199
e8b669d3 200 // wxScrollBar and wxSlider event identifiers
2e4df4bf
VZ
201 DECLARE_EVENT_TYPE(wxEVT_SCROLL_TOP, 300)
202 DECLARE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM, 301)
203 DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEUP, 302)
204 DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN, 303)
205 DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP, 304)
206 DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN, 305)
207 DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK, 306)
208 DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE, 307)
e8b669d3 209 DECLARE_EVENT_TYPE(wxEVT_SCROLL_ENDSCROLL, 308)
2e4df4bf
VZ
210
211 // Scroll events from wxWindow
212 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP, 320)
213 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM, 321)
214 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP, 322)
215 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN, 323)
216 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP, 324)
217 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN, 325)
218 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK, 326)
219 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE, 327)
220
221 // System events
222 DECLARE_EVENT_TYPE(wxEVT_SIZE, 400)
223 DECLARE_EVENT_TYPE(wxEVT_MOVE, 401)
224 DECLARE_EVENT_TYPE(wxEVT_CLOSE_WINDOW, 402)
225 DECLARE_EVENT_TYPE(wxEVT_END_SESSION, 403)
226 DECLARE_EVENT_TYPE(wxEVT_QUERY_END_SESSION, 404)
227 DECLARE_EVENT_TYPE(wxEVT_ACTIVATE_APP, 405)
228 DECLARE_EVENT_TYPE(wxEVT_POWER, 406)
229 DECLARE_EVENT_TYPE(wxEVT_ACTIVATE, 409)
230 DECLARE_EVENT_TYPE(wxEVT_CREATE, 410)
231 DECLARE_EVENT_TYPE(wxEVT_DESTROY, 411)
232 DECLARE_EVENT_TYPE(wxEVT_SHOW, 412)
233 DECLARE_EVENT_TYPE(wxEVT_ICONIZE, 413)
234 DECLARE_EVENT_TYPE(wxEVT_MAXIMIZE, 414)
235 DECLARE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED, 415)
236 DECLARE_EVENT_TYPE(wxEVT_PAINT, 416)
237 DECLARE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND, 417)
238 DECLARE_EVENT_TYPE(wxEVT_NC_PAINT, 418)
239 DECLARE_EVENT_TYPE(wxEVT_PAINT_ICON, 419)
ccef86c7
VZ
240 DECLARE_EVENT_TYPE(wxEVT_MENU_OPEN, 420)
241 DECLARE_EVENT_TYPE(wxEVT_MENU_CLOSE, 421)
2e4df4bf 242 DECLARE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT, 422)
ccef86c7 243 // DECLARE_EVENT_TYPE(wxEVT_POPUP_MENU_INIT, 423) -- free slot
2e4df4bf
VZ
244 DECLARE_EVENT_TYPE(wxEVT_CONTEXT_MENU, 424)
245 DECLARE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED, 425)
574c939e
KB
246 DECLARE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED, 426)
247 DECLARE_EVENT_TYPE(wxEVT_SETTING_CHANGED, 427)
248 DECLARE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE, 428)
249 DECLARE_EVENT_TYPE(wxEVT_PALETTE_CHANGED, 429)
250 DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN, 430)
251 DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP, 431)
252 DECLARE_EVENT_TYPE(wxEVT_JOY_MOVE, 432)
253 DECLARE_EVENT_TYPE(wxEVT_JOY_ZMOVE, 433)
254 DECLARE_EVENT_TYPE(wxEVT_DROP_FILES, 434)
255 DECLARE_EVENT_TYPE(wxEVT_DRAW_ITEM, 435)
256 DECLARE_EVENT_TYPE(wxEVT_MEASURE_ITEM, 436)
257 DECLARE_EVENT_TYPE(wxEVT_COMPARE_ITEM, 437)
258 DECLARE_EVENT_TYPE(wxEVT_INIT_DIALOG, 438)
bddd7a8d 259 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_IDLE, 439)
574c939e 260 DECLARE_EVENT_TYPE(wxEVT_UPDATE_UI, 440)
5706de1c
JS
261 DECLARE_EVENT_TYPE(wxEVT_SIZING, 441)
262 DECLARE_EVENT_TYPE(wxEVT_MOVING, 4442)
2e4df4bf
VZ
263
264 // Generic command events
265 // Note: a click is a higher-level event than button down/up
266 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK, 500)
267 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK, 501)
268 DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK, 502)
269 DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK, 503)
270 DECLARE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS, 504)
271 DECLARE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS, 505)
272 DECLARE_EVENT_TYPE(wxEVT_COMMAND_ENTER, 506)
273
274 // Help events
275 DECLARE_EVENT_TYPE(wxEVT_HELP, 1050)
276 DECLARE_EVENT_TYPE(wxEVT_DETAILED_HELP, 1051)
277
278END_DECLARE_EVENT_TYPES()
96f6c703 279
cbee8f8d
VZ
280// these 2 events are the same
281#define wxEVT_COMMAND_TOOL_CLICKED wxEVT_COMMAND_MENU_SELECTED
96f6c703 282
ad0bae85 283// ----------------------------------------------------------------------------
77d4384e 284// Compatibility
ad0bae85
VZ
285// ----------------------------------------------------------------------------
286
287// this event is also used by wxComboBox and wxSpinCtrl which don't include
288// wx/textctrl.h in all ports [yet], so declare it here as well
289//
290// still, any new code using it should include wx/textctrl.h explicitly
291#if !WXWIN_COMPATIBILITY_EVENT_TYPES
bddd7a8d 292 extern const wxEventType WXDLLIMPEXP_CORE wxEVT_COMMAND_TEXT_UPDATED;
ad0bae85 293#endif
c801d85f 294
1648d51b
VZ
295// the predefined constants for the number of times we propagate event
296// upwards window child-parent chain
297enum Propagation_state
298{
299 // don't propagate it at all
300 wxEVENT_PROPAGATE_NONE = 0,
301
302 // propagate it until it is processed
303 wxEVENT_PROPAGATE_MAX = INT_MAX
304};
305
c801d85f
KB
306/*
307 * wxWindows events, covering all interesting things that might happen
308 * (button clicking, resizing, setting text in widgets, etc.).
309 *
310 * For each completely new event type, derive a new event class.
311 * An event CLASS represents a C++ class defining a range of similar event TYPES;
312 * examples are canvas events, panel item command events.
313 * An event TYPE is a unique identifier for a particular system event,
314 * such as a button press or a listbox deselection.
315 *
316 */
317
bddd7a8d 318class WXDLLIMPEXP_BASE wxEvent : public wxObject
c801d85f 319{
e6a6feba
GD
320private:
321 wxEvent& operator=(const wxEvent&);
abcbaea7 322
8e72b8b5
RR
323protected:
324 wxEvent(const wxEvent&); // for implementing Clone()
c801d85f
KB
325
326public:
d9e2e4c2 327 wxEvent(int winid = 0, wxEventType commandType = wxEVT_NULL );
2b854a32
VZ
328
329 void SetEventType(wxEventType typ) { m_eventType = typ; }
330 wxEventType GetEventType() const { return m_eventType; }
331 wxObject *GetEventObject() const { return m_eventObject; }
332 void SetEventObject(wxObject *obj) { m_eventObject = obj; }
333 long GetTimestamp() const { return m_timeStamp; }
334 void SetTimestamp(long ts = 0) { m_timeStamp = ts; }
335 int GetId() const { return m_id; }
336 void SetId(int Id) { m_id = Id; }
337
338 // Can instruct event processor that we wish to ignore this event
339 // (treat as if the event table entry had not been found): this must be done
340 // to allow the event processing by the base classes (calling event.Skip()
341 // is the analog of calling the base class verstion of a virtual function)
342 void Skip(bool skip = TRUE) { m_skipped = skip; }
343 bool GetSkipped() const { return m_skipped; };
c801d85f 344
acd15a3f
VZ
345 // this function is used to create a copy of the event polymorphically and
346 // all derived classes must implement it because otherwise wxPostEvent()
347 // for them wouldn't work (it needs to do a copy of the event)
348 virtual wxEvent *Clone() const = 0;
a737331d 349
1648d51b
VZ
350 // Implementation only: this test is explicitlty anti OO and this functions
351 // exists only for optimization purposes.
352 bool IsCommandEvent() const { return m_isCommandEvent; }
353
354 // Determine if this event should be propagating to the parent window.
355 bool ShouldPropagate() const
356 { return m_propagationLevel != wxEVENT_PROPAGATE_NONE; }
357
358 // Stop an event from propagating to its parent window, returns the old
359 // propagation level value
360 int StopPropagation()
361 {
362 int propagationLevel = m_propagationLevel;
363 m_propagationLevel = wxEVENT_PROPAGATE_NONE;
364 return propagationLevel;
365 }
366
367 // Resume the event propagation by restoring the propagation level
368 // (returned by StopPropagation())
369 void ResumePropagation(int propagationLevel)
370 {
371 m_propagationLevel = propagationLevel;
372 }
373
c801d85f 374public:
2b854a32 375 wxObject* m_eventObject;
2b854a32
VZ
376 wxEventType m_eventType;
377 long m_timeStamp;
378 int m_id;
379 wxObject* m_callbackUserData;
1648d51b
VZ
380
381protected:
382 // the propagation level: while it is positive, we propagate the event to
383 // the parent window (if any)
384 //
385 // this one doesn't have to be public, we don't have to worry about
386 // backwards compatibility as it is new
387 int m_propagationLevel;
388
389public:
42e69d6b 390 bool m_skipped;
193bf013 391 bool m_isCommandEvent;
1648d51b 392
8e72b8b5 393private:
1648d51b
VZ
394 // it needs to access our m_propagationLevel
395 friend class WXDLLIMPEXP_BASE wxPropagateOnce;
396
8e72b8b5 397 DECLARE_ABSTRACT_CLASS(wxEvent)
c801d85f
KB
398};
399
1648d51b
VZ
400/*
401 * Helper class to temporarily change an event not to propagate.
402 */
403class WXDLLIMPEXP_BASE wxPropagationDisabler
404{
405public:
406 wxPropagationDisabler(wxEvent& event) : m_event(event)
407 {
408 m_propagationLevelOld = m_event.StopPropagation();
409 }
410
411 ~wxPropagationDisabler()
412 {
413 m_event.ResumePropagation(m_propagationLevelOld);
414 }
415
416private:
417 wxEvent& m_event;
418 int m_propagationLevelOld;
fc7a2a60
VZ
419
420 DECLARE_NO_COPY_CLASS(wxPropagationDisabler)
1648d51b
VZ
421};
422
423/*
424 * Another one to temporarily lower propagation level.
425 */
426class WXDLLIMPEXP_BASE wxPropagateOnce
427{
428public:
429 wxPropagateOnce(wxEvent& event) : m_event(event)
430 {
431 wxASSERT_MSG( m_event.m_propagationLevel > 0,
432 _T("shouldn't be used unless ShouldPropagate()!") );
433
434 m_event.m_propagationLevel--;
435 }
436
437 ~wxPropagateOnce()
438 {
439 m_event.m_propagationLevel++;
440 }
441
442private:
443 wxEvent& m_event;
fc7a2a60
VZ
444
445 DECLARE_NO_COPY_CLASS(wxPropagateOnce)
1648d51b
VZ
446};
447
e90c1d2a
VZ
448#if wxUSE_GUI
449
1648d51b 450
c801d85f
KB
451// Item or menu event class
452/*
453 wxEVT_COMMAND_BUTTON_CLICKED
454 wxEVT_COMMAND_CHECKBOX_CLICKED
455 wxEVT_COMMAND_CHOICE_SELECTED
456 wxEVT_COMMAND_LISTBOX_SELECTED
457 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
458 wxEVT_COMMAND_TEXT_UPDATED
459 wxEVT_COMMAND_TEXT_ENTER
460 wxEVT_COMMAND_MENU_SELECTED
461 wxEVT_COMMAND_SLIDER_UPDATED
462 wxEVT_COMMAND_RADIOBOX_SELECTED
463 wxEVT_COMMAND_RADIOBUTTON_SELECTED
464 wxEVT_COMMAND_SCROLLBAR_UPDATED
465 wxEVT_COMMAND_VLBOX_SELECTED
466 wxEVT_COMMAND_COMBOBOX_SELECTED
1db8dc4a 467 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
c801d85f
KB
468*/
469
bddd7a8d 470class WXDLLIMPEXP_CORE wxCommandEvent : public wxEvent
c801d85f 471{
2b854a32 472public:
d9e2e4c2 473 wxCommandEvent(wxEventType commandType = wxEVT_NULL, int winid = 0);
c801d85f 474
e6a6feba 475 wxCommandEvent(const wxCommandEvent& event)
497dbbd3
VZ
476 : wxEvent(event),
477 m_commandString(event.m_commandString),
478 m_commandInt(event.m_commandInt),
479 m_extraLong(event.m_extraLong),
480 m_clientData(event.m_clientData),
481 m_clientObject(event.m_clientObject)
e6a6feba
GD
482 { }
483
2b854a32
VZ
484 // Set/Get client data from controls
485 void SetClientData(void* clientData) { m_clientData = clientData; }
486 void *GetClientData() const { return m_clientData; }
c801d85f 487
2b854a32
VZ
488 // Set/Get client object from controls
489 void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; }
490 void *GetClientObject() const { return m_clientObject; }
f5e27805 491
2b854a32
VZ
492 // Get listbox selection if single-choice
493 int GetSelection() const { return m_commandInt; }
c801d85f 494
2b854a32 495 // Set/Get listbox/choice selection string
29006414 496 void SetString(const wxString& s) { m_commandString = s; }
7214297d 497 wxString GetString() const { return m_commandString; }
c801d85f 498
2b854a32 499 // Get checkbox value
3ca6a5f0 500 bool IsChecked() const { return m_commandInt != 0; }
c801d85f 501
2b854a32
VZ
502 // TRUE if the listbox event was a selection.
503 bool IsSelection() const { return (m_extraLong != 0); }
c801d85f 504
2b854a32 505 void SetExtraLong(long extraLong) { m_extraLong = extraLong; }
a7bc03c9 506 long GetExtraLong() const { return m_extraLong; }
c801d85f 507
2b854a32 508 void SetInt(int i) { m_commandInt = i; }
a7bc03c9 509 long GetInt() const { return m_commandInt; }
c801d85f 510
8e72b8b5 511 virtual wxEvent *Clone() const { return new wxCommandEvent(*this); }
aadbdf11 512
2b854a32 513public:
29006414 514 wxString m_commandString; // String event argument
2b854a32
VZ
515 int m_commandInt;
516 long m_extraLong; // Additional information (e.g. select/deselect)
517 void* m_clientData; // Arbitrary client data
518 wxClientData* m_clientObject; // Arbitrary client object
f97500b8 519
8e72b8b5 520private:
fc7a2a60 521 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCommandEvent)
c801d85f
KB
522};
523
fd3f686c
VZ
524// this class adds a possibility to react (from the user) code to a control
525// notification: allow or veto the operation being reported.
bddd7a8d 526class WXDLLIMPEXP_CORE wxNotifyEvent : public wxCommandEvent
fd3f686c
VZ
527{
528public:
d9e2e4c2
DE
529 wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
530 : wxCommandEvent(commandType, winid)
497dbbd3 531 { m_bAllow = TRUE; }
e6a6feba
GD
532
533 wxNotifyEvent(const wxNotifyEvent& event)
534 : wxCommandEvent(event)
497dbbd3 535 { m_bAllow = event.m_bAllow; }
fd3f686c 536
23f681ec 537 // veto the operation (usually it's allowed by default)
fd3f686c
VZ
538 void Veto() { m_bAllow = FALSE; }
539
23f681ec
VZ
540 // allow the operation if it was disabled by default
541 void Allow() { m_bAllow = TRUE; }
542
fd3f686c
VZ
543 // for implementation code only: is the operation allowed?
544 bool IsAllowed() const { return m_bAllow; }
545
8e72b8b5 546 virtual wxEvent *Clone() const { return new wxNotifyEvent(*this); }
924ef850 547
fd3f686c
VZ
548private:
549 bool m_bAllow;
550
8e72b8b5 551private:
fc7a2a60 552 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotifyEvent)
fd3f686c
VZ
553};
554
d1367c3d 555// Scroll event class, derived form wxCommandEvent. wxScrollEvents are
e8b669d3 556// sent by wxSlider and wxScrollBar.
c801d85f
KB
557/*
558 wxEVT_SCROLL_TOP
559 wxEVT_SCROLL_BOTTOM
560 wxEVT_SCROLL_LINEUP
561 wxEVT_SCROLL_LINEDOWN
562 wxEVT_SCROLL_PAGEUP
563 wxEVT_SCROLL_PAGEDOWN
564 wxEVT_SCROLL_THUMBTRACK
7d56fb8f 565 wxEVT_SCROLL_THUMBRELEASE
e8b669d3 566 wxEVT_SCROLL_ENDSCROLL
c801d85f
KB
567*/
568
bddd7a8d 569class WXDLLIMPEXP_CORE wxScrollEvent : public wxCommandEvent
c801d85f 570{
2b854a32
VZ
571public:
572 wxScrollEvent(wxEventType commandType = wxEVT_NULL,
d9e2e4c2 573 int winid = 0, int pos = 0, int orient = 0);
2b854a32 574
a7bc03c9
VZ
575 int GetOrientation() const { return (int) m_extraLong; }
576 int GetPosition() const { return m_commandInt; }
2b854a32
VZ
577 void SetOrientation(int orient) { m_extraLong = (long) orient; }
578 void SetPosition(int pos) { m_commandInt = pos; }
f97500b8 579
8e72b8b5 580 virtual wxEvent *Clone() const { return new wxScrollEvent(*this); }
f97500b8 581
8e72b8b5 582private:
fc7a2a60 583 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollEvent)
c801d85f
KB
584};
585
d1367c3d
RR
586// ScrollWin event class, derived fom wxEvent. wxScrollWinEvents
587// are sent by wxWindow.
588/*
589 wxEVT_SCROLLWIN_TOP
590 wxEVT_SCROLLWIN_BOTTOM
591 wxEVT_SCROLLWIN_LINEUP
592 wxEVT_SCROLLWIN_LINEDOWN
593 wxEVT_SCROLLWIN_PAGEUP
594 wxEVT_SCROLLWIN_PAGEDOWN
595 wxEVT_SCROLLWIN_THUMBTRACK
7d56fb8f 596 wxEVT_SCROLLWIN_THUMBRELEASE
d1367c3d
RR
597*/
598
bddd7a8d 599class WXDLLIMPEXP_CORE wxScrollWinEvent : public wxEvent
d1367c3d 600{
d1367c3d
RR
601public:
602 wxScrollWinEvent(wxEventType commandType = wxEVT_NULL,
603 int pos = 0, int orient = 0);
b2697d42
VZ
604 wxScrollWinEvent(const wxScrollWinEvent & event) : wxEvent(event)
605 { m_commandInt = event.m_commandInt;
606 m_extraLong = event.m_extraLong; }
d1367c3d 607
a7bc03c9
VZ
608 int GetOrientation() const { return (int) m_extraLong; }
609 int GetPosition() const { return m_commandInt; }
d1367c3d
RR
610 void SetOrientation(int orient) { m_extraLong = (long) orient; }
611 void SetPosition(int pos) { m_commandInt = pos; }
612
8e72b8b5 613 virtual wxEvent *Clone() const { return new wxScrollWinEvent(*this); }
1e6feb95 614
d1367c3d 615public:
8e72b8b5 616 int m_commandInt;
20947e08 617 long m_extraLong;
1e6feb95 618
8e72b8b5 619private:
fc7a2a60 620 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollWinEvent)
d1367c3d
RR
621};
622
c801d85f
KB
623// Mouse event class
624
625/*
626 wxEVT_LEFT_DOWN
627 wxEVT_LEFT_UP
628 wxEVT_MIDDLE_DOWN
629 wxEVT_MIDDLE_UP
630 wxEVT_RIGHT_DOWN
631 wxEVT_RIGHT_UP
632 wxEVT_MOTION
633 wxEVT_ENTER_WINDOW
634 wxEVT_LEAVE_WINDOW
635 wxEVT_LEFT_DCLICK
636 wxEVT_MIDDLE_DCLICK
637 wxEVT_RIGHT_DCLICK
638 wxEVT_NC_LEFT_DOWN
639 wxEVT_NC_LEFT_UP,
640 wxEVT_NC_MIDDLE_DOWN,
641 wxEVT_NC_MIDDLE_UP,
642 wxEVT_NC_RIGHT_DOWN,
643 wxEVT_NC_RIGHT_UP,
644 wxEVT_NC_MOTION,
645 wxEVT_NC_ENTER_WINDOW,
646 wxEVT_NC_LEAVE_WINDOW,
647 wxEVT_NC_LEFT_DCLICK,
648 wxEVT_NC_MIDDLE_DCLICK,
649 wxEVT_NC_RIGHT_DCLICK,
650*/
651
497dbbd3
VZ
652// the symbolic names for the mouse buttons
653enum
654{
655 wxMOUSE_BTN_ANY = -1,
656 wxMOUSE_BTN_NONE = -1,
657 wxMOUSE_BTN_LEFT = 0,
658 wxMOUSE_BTN_MIDDLE = 1,
659 wxMOUSE_BTN_RIGHT = 2
660};
661
bddd7a8d 662class WXDLLIMPEXP_CORE wxMouseEvent : public wxEvent
c801d85f 663{
2b854a32
VZ
664public:
665 wxMouseEvent(wxEventType mouseType = wxEVT_NULL);
b2697d42
VZ
666 wxMouseEvent(const wxMouseEvent& event) : wxEvent(event)
667 { Assign(event); }
c801d85f 668
2b854a32 669 // Was it a button event? (*doesn't* mean: is any button *down*?)
497dbbd3 670 bool IsButton() const { return Button(wxMOUSE_BTN_ANY); }
c801d85f 671
2b854a32 672 // Was it a down event from button 1, 2 or 3 or any?
497dbbd3 673 bool ButtonDown(int but = wxMOUSE_BTN_ANY) const;
c801d85f 674
2b854a32 675 // Was it a dclick event from button 1, 2 or 3 or any?
497dbbd3 676 bool ButtonDClick(int but = wxMOUSE_BTN_ANY) const;
c801d85f 677
2b854a32 678 // Was it a up event from button 1, 2 or 3 or any?
497dbbd3 679 bool ButtonUp(int but = wxMOUSE_BTN_ANY) const;
c801d85f 680
2b854a32
VZ
681 // Was the given button 1,2,3 or any changing state?
682 bool Button(int but) const;
c801d85f 683
2b854a32
VZ
684 // Was the given button 1,2,3 or any in Down state?
685 bool ButtonIsDown(int but) const;
c801d85f 686
497dbbd3 687 // Get the button which is changing state (wxMOUSE_BTN_NONE if none)
1e6feb95
VZ
688 int GetButton() const;
689
2b854a32
VZ
690 // Find state of shift/control keys
691 bool ControlDown() const { return m_controlDown; }
692 bool MetaDown() const { return m_metaDown; }
693 bool AltDown() const { return m_altDown; }
694 bool ShiftDown() const { return m_shiftDown; }
c801d85f 695
2b854a32
VZ
696 // Find which event was just generated
697 bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); }
698 bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); }
699 bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); }
c801d85f 700
2b854a32
VZ
701 bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); }
702 bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); }
703 bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); }
c801d85f 704
2b854a32
VZ
705 bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); }
706 bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); }
707 bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); }
c801d85f 708
2b854a32
VZ
709 // Find the current state of the mouse buttons (regardless
710 // of current event type)
711 bool LeftIsDown() const { return m_leftDown; }
712 bool MiddleIsDown() const { return m_middleDown; }
713 bool RightIsDown() const { return m_rightDown; }
c801d85f 714
2b854a32
VZ
715 // True if a button is down and the mouse is moving
716 bool Dragging() const
717 {
718 return ((m_eventType == wxEVT_MOTION) &&
719 (LeftIsDown() || MiddleIsDown() || RightIsDown()));
720 }
c801d85f 721
2b854a32
VZ
722 // True if the mouse is moving, and no button is down
723 bool Moving() const { return (m_eventType == wxEVT_MOTION); }
c801d85f 724
2b854a32
VZ
725 // True if the mouse is just entering the window
726 bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); }
c801d85f 727
2b854a32
VZ
728 // True if the mouse is just leaving the window
729 bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); }
c801d85f 730
2b854a32 731 // Find the position of the event
20947e08 732 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
b02da6b1
VZ
733 {
734 if (xpos)
20947e08 735 *xpos = m_x;
b02da6b1
VZ
736 if (ypos)
737 *ypos = m_y;
738 }
739
0e528b99 740#ifndef __WIN16__
bf57d1ad 741 void GetPosition(long *xpos, long *ypos) const
b02da6b1
VZ
742 {
743 if (xpos)
20947e08 744 *xpos = (long)m_x;
b02da6b1 745 if (ypos)
bf57d1ad 746 *ypos = (long)m_y;
b02da6b1 747 }
0e528b99 748#endif
c801d85f 749
2b854a32
VZ
750 // Find the position of the event
751 wxPoint GetPosition() const { return wxPoint(m_x, m_y); }
c801d85f 752
2b854a32 753 // Find the logical position of the event given the DC
a7bc03c9 754 wxPoint GetLogicalPosition(const wxDC& dc) const;
c801d85f 755
2b854a32 756 // Get X position
6cedba09 757 wxCoord GetX() const { return m_x; }
c801d85f 758
2b854a32 759 // Get Y position
6cedba09 760 wxCoord GetY() const { return m_y; }
c801d85f 761
d2c52078
RD
762 // Get wheel rotation, positive or negative indicates direction of
763 // rotation. Current devices all send an event when rotation is equal to
764 // +/-WheelDelta, but this allows for finer resolution devices to be
765 // created in the future. Because of this you shouldn't assume that one
766 // event is equal to 1 line or whatever, but you should be able to either
767 // do partial line scrolling or wait until +/-WheelDelta rotation values
768 // have been accumulated before scrolling.
769 int GetWheelRotation() const { return m_wheelRotation; }
770
771 // Get wheel delta, normally 120. This is the threshold for action to be
772 // taken, and one such action (for example, scrolling one increment)
773 // should occur for each delta.
774 int GetWheelDelta() const { return m_wheelDelta; }
775
776 // Returns the configured number of lines (or whatever) to be scrolled per
777 // wheel action. Defaults to one.
778 int GetLinesPerAction() const { return m_linesPerAction; }
779
9b9337da 780 // Is the system set to do page scrolling?
c2bbeff0 781 bool IsPageScroll() const { return ((unsigned int)m_linesPerAction == UINT_MAX); }
9b9337da 782
8e72b8b5 783 virtual wxEvent *Clone() const { return new wxMouseEvent(*this); }
aadbdf11 784
55f9eba3 785 wxMouseEvent& operator=(const wxMouseEvent& event) { Assign(event); return *this; }
c7d176e2 786
c801d85f 787public:
b02da6b1
VZ
788 wxCoord m_x, m_y;
789
2b854a32
VZ
790 bool m_leftDown;
791 bool m_middleDown;
792 bool m_rightDown;
793
794 bool m_controlDown;
795 bool m_shiftDown;
796 bool m_altDown;
797 bool m_metaDown;
d2c52078
RD
798
799 int m_wheelRotation;
800 int m_wheelDelta;
801 int m_linesPerAction;
1e6feb95 802
abcbaea7
VZ
803protected:
804 void Assign(const wxMouseEvent& evt);
805
1e6feb95
VZ
806private:
807 DECLARE_DYNAMIC_CLASS(wxMouseEvent)
c801d85f
KB
808};
809
43b5058d
VZ
810// Cursor set event
811
812/*
813 wxEVT_SET_CURSOR
814 */
815
bddd7a8d 816class WXDLLIMPEXP_CORE wxSetCursorEvent : public wxEvent
43b5058d
VZ
817{
818public:
8e72b8b5 819 wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0)
497dbbd3
VZ
820 : wxEvent(0, wxEVT_SET_CURSOR),
821 m_x(x), m_y(y), m_cursor()
e6a6feba 822 { }
43b5058d 823
b2697d42
VZ
824 wxSetCursorEvent(const wxSetCursorEvent & event)
825 : wxEvent(event),
826 m_x(event.m_x),
827 m_y(event.m_y),
828 m_cursor(event.m_cursor)
829 { }
1d2eddff 830
43b5058d
VZ
831 wxCoord GetX() const { return m_x; }
832 wxCoord GetY() const { return m_y; }
833
834 void SetCursor(const wxCursor& cursor) { m_cursor = cursor; }
835 const wxCursor& GetCursor() const { return m_cursor; }
836 bool HasCursor() const { return m_cursor.Ok(); }
837
8e72b8b5 838 virtual wxEvent *Clone() const { return new wxSetCursorEvent(*this); }
f97500b8 839
43b5058d
VZ
840private:
841 wxCoord m_x, m_y;
842 wxCursor m_cursor;
f97500b8 843
8e72b8b5 844private:
fc7a2a60 845 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSetCursorEvent)
43b5058d
VZ
846};
847
c801d85f
KB
848// Keyboard input event class
849
850/*
851 wxEVT_CHAR
852 wxEVT_CHAR_HOOK
4ce81a75 853 wxEVT_KEY_DOWN
c801d85f 854 wxEVT_KEY_UP
5048c832 855 wxEVT_HOTKEY
c801d85f
KB
856 */
857
bddd7a8d 858class WXDLLIMPEXP_CORE wxKeyEvent : public wxEvent
c801d85f 859{
c801d85f 860public:
2b854a32 861 wxKeyEvent(wxEventType keyType = wxEVT_NULL);
b2697d42 862 wxKeyEvent(const wxKeyEvent& evt);
c801d85f 863
2b854a32
VZ
864 // Find state of shift/control keys
865 bool ControlDown() const { return m_controlDown; }
866 bool MetaDown() const { return m_metaDown; }
867 bool AltDown() const { return m_altDown; }
868 bool ShiftDown() const { return m_shiftDown; }
f6bcfd97 869
d11710cb
VZ
870 // exclude MetaDown() from HasModifiers() because NumLock under X is often
871 // configured as mod2 modifier, yet the key events even when it is pressed
872 // should be processed normally, not like Ctrl- or Alt-key
873 bool HasModifiers() const { return ControlDown() || AltDown(); }
f6bcfd97
BP
874
875 // get the key code: an ASCII7 char or an element of wxKeyCode enum
876 int GetKeyCode() const { return (int)m_keyCode; }
c801d85f 877
9c7df356
VZ
878 // get the raw key code (platform-dependent)
879 wxUint32 GetRawKeyCode() const { return m_rawCode; }
880
881 // get the raw key flags (platform-dependent)
882 wxUint32 GetRawKeyFlags() const { return m_rawFlags; }
883
2b854a32 884 // Find the position of the event
b02da6b1
VZ
885 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
886 {
20947e08 887 if (xpos) *xpos = m_x;
b02da6b1
VZ
888 if (ypos) *ypos = m_y;
889 }
890
0e528b99 891#ifndef __WIN16__
bf57d1ad 892 void GetPosition(long *xpos, long *ypos) const
b02da6b1 893 {
20947e08 894 if (xpos) *xpos = (long)m_x;
bf57d1ad 895 if (ypos) *ypos = (long)m_y;
b02da6b1 896 }
0e528b99 897#endif
803ef874
JS
898
899 wxPoint GetPosition() const
900 { return wxPoint(m_x, m_y); }
c801d85f 901
2b854a32 902 // Get X position
b02da6b1 903 wxCoord GetX() const { return m_x; }
c801d85f 904
2b854a32 905 // Get Y position
b02da6b1 906 wxCoord GetY() const { return m_y; }
c801d85f 907
12a3f227
RL
908 // deprecated, Use GetKeyCode instead.
909 wxDEPRECATED( long KeyCode() const );
f6bcfd97 910
8e72b8b5 911 virtual wxEvent *Clone() const { return new wxKeyEvent(*this); }
f97500b8
VZ
912
913 // we do need to copy wxKeyEvent sometimes (in wxTreeCtrl code, for
914 // example)
915 wxKeyEvent& operator=(const wxKeyEvent& evt)
916 {
917 m_x = evt.m_x;
918 m_y = evt.m_y;
919
920 m_keyCode = evt.m_keyCode;
921
922 m_controlDown = evt.m_controlDown;
923 m_shiftDown = evt.m_shiftDown;
924 m_altDown = evt.m_altDown;
925 m_metaDown = evt.m_metaDown;
926 m_scanCode = evt.m_scanCode;
9c7df356
VZ
927 m_rawCode = evt.m_rawCode;
928 m_rawFlags = evt.m_rawFlags;
f97500b8
VZ
929
930 return *this;
931 }
932
2b854a32 933public:
b02da6b1
VZ
934 wxCoord m_x, m_y;
935
2b854a32 936 long m_keyCode;
b02da6b1 937
2b854a32
VZ
938 bool m_controlDown;
939 bool m_shiftDown;
940 bool m_altDown;
941 bool m_metaDown;
b0e813a0 942 bool m_scanCode;
f97500b8 943
2b5f62a0
VZ
944#if wxUSE_UNICODE
945 // This contains the full Unicode character
946 // in a character events in Unicode mode
947 wxChar m_uniChar;
948#endif
949
950 // these fields contain the platform-specific information about
951 // key that was pressed
9c7df356
VZ
952 wxUint32 m_rawCode;
953 wxUint32 m_rawFlags;
954
8e72b8b5
RR
955private:
956 DECLARE_DYNAMIC_CLASS(wxKeyEvent)
c801d85f
KB
957};
958
959// Size event class
960/*
961 wxEVT_SIZE
962 */
963
bddd7a8d 964class WXDLLIMPEXP_CORE wxSizeEvent : public wxEvent
c801d85f 965{
2b854a32 966public:
497dbbd3 967 wxSizeEvent() : wxEvent(0, wxEVT_SIZE)
e6a6feba 968 { }
d9e2e4c2
DE
969 wxSizeEvent(const wxSize& sz, int winid = 0)
970 : wxEvent(winid, wxEVT_SIZE),
497dbbd3 971 m_size(sz)
e6a6feba 972 { }
1d2eddff 973 wxSizeEvent(const wxSizeEvent & event)
b2697d42 974 : wxEvent(event),
5706de1c 975 m_size(event.m_size), m_rect(event.m_rect)
b2697d42 976 { }
5706de1c 977 wxSizeEvent(const wxRect& rect, int id = 0)
e00865fa 978 : m_size(rect.GetSize()), m_rect(rect)
5706de1c 979 { m_eventType = wxEVT_SIZING; m_id = id; }
c2bbeff0 980
2b854a32 981 wxSize GetSize() const { return m_size; }
5706de1c
JS
982 wxRect GetRect() const { return m_rect; }
983 void SetRect(wxRect rect) { m_rect = rect; }
aadbdf11 984
8e72b8b5
RR
985 virtual wxEvent *Clone() const { return new wxSizeEvent(*this); }
986
987public:
988 wxSize m_size;
5706de1c 989 wxRect m_rect; // Used for wxEVT_SIZING
8e72b8b5 990
f97500b8 991private:
fc7a2a60 992 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSizeEvent)
c801d85f
KB
993};
994
995// Move event class
996
997/*
998 wxEVT_MOVE
999 */
1000
bddd7a8d 1001class WXDLLIMPEXP_CORE wxMoveEvent : public wxEvent
c801d85f 1002{
2b854a32 1003public:
e6a6feba
GD
1004 wxMoveEvent()
1005 : wxEvent(0, wxEVT_MOVE)
e6a6feba 1006 { }
d9e2e4c2
DE
1007 wxMoveEvent(const wxPoint& pos, int winid = 0)
1008 : wxEvent(winid, wxEVT_MOVE),
497dbbd3 1009 m_pos(pos)
e6a6feba 1010 { }
1d2eddff
JS
1011 wxMoveEvent(const wxMoveEvent& event)
1012 : wxEvent(event),
b2697d42
VZ
1013 m_pos(event.m_pos)
1014 { }
5706de1c
JS
1015 wxMoveEvent(const wxRect& rect, int id = 0)
1016 : m_pos(rect.GetPosition()), m_rect(rect)
1017 { m_eventType = wxEVT_MOVING; m_id = id; }
c2bbeff0 1018
2b854a32 1019 wxPoint GetPosition() const { return m_pos; }
5706de1c
JS
1020 wxRect GetRect() const { return m_rect; }
1021 void SetRect(wxRect rect) { m_rect = rect; }
aadbdf11 1022
8e72b8b5 1023 virtual wxEvent *Clone() const { return new wxMoveEvent(*this); }
f97500b8 1024
8e72b8b5 1025 wxPoint m_pos;
5706de1c 1026 wxRect m_rect;
f97500b8 1027
8e72b8b5 1028private:
fc7a2a60 1029 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMoveEvent)
c801d85f
KB
1030};
1031
1032// Paint event class
1033/*
1034 wxEVT_PAINT
1035 wxEVT_NC_PAINT
1036 wxEVT_PAINT_ICON
1037 */
1038
b078fa02
JS
1039#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
1040 // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined
bddd7a8d 1041 extern WXDLLIMPEXP_CORE int g_isPainting;
edccf428
VZ
1042#endif // debug
1043
bddd7a8d 1044class WXDLLIMPEXP_CORE wxPaintEvent : public wxEvent
c801d85f 1045{
2b854a32 1046public:
edccf428 1047 wxPaintEvent(int Id = 0)
e6a6feba 1048 : wxEvent(Id, wxEVT_PAINT)
edccf428 1049 {
b078fa02 1050#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
edccf428
VZ
1051 // set the internal flag for the duration of processing of WM_PAINT
1052 g_isPainting++;
1053#endif // debug
1054 }
1055
b078fa02 1056#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
edccf428
VZ
1057 ~wxPaintEvent()
1058 {
1059 g_isPainting--;
1060 }
1061#endif // debug
8e72b8b5
RR
1062
1063 virtual wxEvent *Clone() const { return new wxPaintEvent(*this); }
f97500b8 1064
8e72b8b5 1065private:
fc7a2a60 1066 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaintEvent)
c801d85f
KB
1067};
1068
bddd7a8d 1069class WXDLLIMPEXP_CORE wxNcPaintEvent : public wxEvent
1e6feb95
VZ
1070{
1071public:
d9e2e4c2
DE
1072 wxNcPaintEvent(int winid = 0)
1073 : wxEvent(winid, wxEVT_NC_PAINT)
e6a6feba 1074 { }
f97500b8 1075
8e72b8b5 1076 virtual wxEvent *Clone() const { return new wxNcPaintEvent(*this); }
1e6feb95
VZ
1077
1078private:
fc7a2a60 1079 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNcPaintEvent)
1e6feb95
VZ
1080};
1081
c801d85f
KB
1082// Erase background event class
1083/*
1084 wxEVT_ERASE_BACKGROUND
1085 */
1086
bddd7a8d 1087class WXDLLIMPEXP_CORE wxEraseEvent : public wxEvent
c801d85f 1088{
2b854a32 1089public:
2b854a32 1090 wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL)
497dbbd3
VZ
1091 : wxEvent(Id, wxEVT_ERASE_BACKGROUND),
1092 m_dc(dc)
e6a6feba
GD
1093 { }
1094
1095 wxEraseEvent(const wxEraseEvent& event)
497dbbd3
VZ
1096 : wxEvent(event),
1097 m_dc(event.m_dc)
e6a6feba 1098 { }
f97500b8 1099
2b854a32 1100 wxDC *GetDC() const { return m_dc; }
aadbdf11 1101
8e72b8b5 1102 virtual wxEvent *Clone() const { return new wxEraseEvent(*this); }
f97500b8 1103
8e72b8b5
RR
1104 wxDC *m_dc;
1105
1106private:
fc7a2a60 1107 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxEraseEvent)
c801d85f
KB
1108};
1109
1110// Focus event class
1111/*
1112 wxEVT_SET_FOCUS
1113 wxEVT_KILL_FOCUS
1114 */
1115
bddd7a8d 1116class WXDLLIMPEXP_CORE wxFocusEvent : public wxEvent
c801d85f 1117{
2b854a32 1118public:
d9e2e4c2
DE
1119 wxFocusEvent(wxEventType type = wxEVT_NULL, int winid = 0)
1120 : wxEvent(winid, type)
497dbbd3 1121 { m_win = NULL; }
e6a6feba
GD
1122
1123 wxFocusEvent(const wxFocusEvent& event)
1124 : wxEvent(event)
497dbbd3 1125 { m_win = event.m_win; }
1e6feb95 1126
8e72b8b5 1127 // The window associated with this event is the window which had focus
1e6feb95 1128 // before for SET event and the window which will have focus for the KILL
8e72b8b5 1129 // one. NB: it may be NULL in both cases!
1e6feb95
VZ
1130 wxWindow *GetWindow() const { return m_win; }
1131 void SetWindow(wxWindow *win) { m_win = win; }
1132
8e72b8b5 1133 virtual wxEvent *Clone() const { return new wxFocusEvent(*this); }
f97500b8 1134
1e6feb95
VZ
1135private:
1136 wxWindow *m_win;
1137
8e72b8b5 1138private:
fc7a2a60 1139 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFocusEvent)
c801d85f
KB
1140};
1141
456bc6d9 1142// wxChildFocusEvent notifies the parent that a child has got the focus: unlike
1648d51b 1143// wxFocusEvent it is propagated upwards the window chain
bddd7a8d 1144class WXDLLIMPEXP_CORE wxChildFocusEvent : public wxCommandEvent
456bc6d9
VZ
1145{
1146public:
1147 wxChildFocusEvent(wxWindow *win = NULL);
1148
1149 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
1150
8e72b8b5 1151 virtual wxEvent *Clone() const { return new wxChildFocusEvent(*this); }
f97500b8 1152
8e72b8b5 1153private:
fc7a2a60 1154 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxChildFocusEvent)
456bc6d9
VZ
1155};
1156
c801d85f
KB
1157// Activate event class
1158/*
1159 wxEVT_ACTIVATE
1160 wxEVT_ACTIVATE_APP
1161 */
1162
bddd7a8d 1163class WXDLLIMPEXP_CORE wxActivateEvent : public wxEvent
c801d85f 1164{
2b854a32
VZ
1165public:
1166 wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0)
e6a6feba 1167 : wxEvent(Id, type)
497dbbd3 1168 { m_active = active; }
1d2eddff
JS
1169 wxActivateEvent(const wxActivateEvent& event)
1170 : wxEvent(event)
b2697d42 1171 { m_active = event.m_active; }
c2bbeff0 1172
2b854a32 1173 bool GetActive() const { return m_active; }
c801d85f 1174
8e72b8b5 1175 virtual wxEvent *Clone() const { return new wxActivateEvent(*this); }
aadbdf11 1176
2b854a32
VZ
1177private:
1178 bool m_active;
8e72b8b5
RR
1179
1180private:
fc7a2a60 1181 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxActivateEvent)
c801d85f
KB
1182};
1183
1184// InitDialog event class
1185/*
1186 wxEVT_INIT_DIALOG
1187 */
1188
bddd7a8d 1189class WXDLLIMPEXP_CORE wxInitDialogEvent : public wxEvent
c801d85f 1190{
2b854a32
VZ
1191public:
1192 wxInitDialogEvent(int Id = 0)
e6a6feba
GD
1193 : wxEvent(Id, wxEVT_INIT_DIALOG)
1194 { }
8e72b8b5
RR
1195
1196 virtual wxEvent *Clone() const { return new wxInitDialogEvent(*this); }
f97500b8
VZ
1197
1198private:
fc7a2a60 1199 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxInitDialogEvent)
c801d85f
KB
1200};
1201
1202// Miscellaneous menu event class
1203/*
ccef86c7
VZ
1204 wxEVT_MENU_OPEN,
1205 wxEVT_MENU_CLOSE,
c801d85f 1206 wxEVT_MENU_HIGHLIGHT,
c801d85f
KB
1207*/
1208
bddd7a8d 1209class WXDLLIMPEXP_CORE wxMenuEvent : public wxEvent
c801d85f 1210{
c801d85f 1211public:
92f1a59c 1212 wxMenuEvent(wxEventType type = wxEVT_NULL, int winid = 0, wxMenu* menu = NULL)
d9e2e4c2 1213 : wxEvent(winid, type)
fc7a2a60 1214 { m_menuId = winid; m_menu = menu; }
1d2eddff
JS
1215 wxMenuEvent(const wxMenuEvent & event)
1216 : wxEvent(event)
92f1a59c 1217 { m_menuId = event.m_menuId; m_menu = event.m_menu; }
c2bbeff0 1218
ccef86c7 1219 // only for wxEVT_MENU_HIGHLIGHT
aadbdf11 1220 int GetMenuId() const { return m_menuId; }
c801d85f 1221
ccef86c7
VZ
1222 // only for wxEVT_MENU_OPEN/CLOSE
1223 bool IsPopup() const { return m_menuId == -1; }
1224
92f1a59c
JS
1225 // only for wxEVT_MENU_OPEN/CLOSE
1226 wxMenu* GetMenu() const { return m_menu; }
1227
8e72b8b5 1228 virtual wxEvent *Clone() const { return new wxMenuEvent(*this); }
f97500b8 1229
2b854a32 1230private:
92f1a59c
JS
1231 int m_menuId;
1232 wxMenu* m_menu;
f97500b8 1233
fc7a2a60 1234 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMenuEvent)
c801d85f
KB
1235};
1236
1237// Window close or session close event class
1238/*
1239 wxEVT_CLOSE_WINDOW,
1240 wxEVT_END_SESSION,
1241 wxEVT_QUERY_END_SESSION
1242 */
1243
bddd7a8d 1244class WXDLLIMPEXP_CORE wxCloseEvent : public wxEvent
c801d85f 1245{
c801d85f 1246public:
d9e2e4c2
DE
1247 wxCloseEvent(wxEventType type = wxEVT_NULL, int winid = 0)
1248 : wxEvent(winid, type),
497dbbd3
VZ
1249 m_loggingOff(TRUE),
1250 m_veto(FALSE), // should be FALSE by default
a3bf7524
VS
1251 m_canVeto(TRUE) {}
1252
1d2eddff
JS
1253 wxCloseEvent(const wxCloseEvent & event)
1254 : wxEvent(event),
b2697d42
VZ
1255 m_loggingOff(event.m_loggingOff),
1256 m_veto(event.m_veto),
a3bf7524 1257 m_canVeto(event.m_canVeto) {}
c2bbeff0 1258
2b854a32
VZ
1259 void SetLoggingOff(bool logOff) { m_loggingOff = logOff; }
1260 bool GetLoggingOff() const { return m_loggingOff; }
1261
fe4e9e6c
VZ
1262 void Veto(bool veto = TRUE)
1263 {
1264 // GetVeto() will return FALSE anyhow...
1265 wxCHECK_RET( m_canVeto,
223d09f6 1266 wxT("call to Veto() ignored (can't veto this event)") );
fe4e9e6c
VZ
1267
1268 m_veto = veto;
1269 }
2b854a32 1270 void SetCanVeto(bool canVeto) { m_canVeto = canVeto; }
e3065973 1271 // No more asserts here please, the one you put here was wrong.
2b854a32 1272 bool CanVeto() const { return m_canVeto; }
fe4e9e6c 1273 bool GetVeto() const { return m_canVeto && m_veto; }
c801d85f 1274
8e72b8b5 1275 virtual wxEvent *Clone() const { return new wxCloseEvent(*this); }
aadbdf11 1276
2b854a32
VZ
1277protected:
1278 bool m_loggingOff;
1279 bool m_veto, m_canVeto;
1280
8e72b8b5 1281private:
fc7a2a60 1282 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCloseEvent)
8e72b8b5 1283
c801d85f
KB
1284};
1285
1286/*
1287 wxEVT_SHOW
1288 */
1289
bddd7a8d 1290class WXDLLIMPEXP_CORE wxShowEvent : public wxEvent
c801d85f 1291{
c801d85f 1292public:
d9e2e4c2
DE
1293 wxShowEvent(int winid = 0, bool show = FALSE)
1294 : wxEvent(winid, wxEVT_SHOW)
497dbbd3 1295 { m_show = show; }
1d2eddff
JS
1296 wxShowEvent(const wxShowEvent & event)
1297 : wxEvent(event)
b2697d42 1298 { m_show = event.m_show; }
c2bbeff0 1299
2b854a32
VZ
1300 void SetShow(bool show) { m_show = show; }
1301 bool GetShow() const { return m_show; }
c801d85f 1302
8e72b8b5 1303 virtual wxEvent *Clone() const { return new wxShowEvent(*this); }
aadbdf11 1304
c801d85f 1305protected:
2b854a32 1306 bool m_show;
3dd9b88a 1307
8e72b8b5 1308private:
fc7a2a60 1309 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxShowEvent)
c801d85f
KB
1310};
1311
1312/*
1313 wxEVT_ICONIZE
1314 */
1315
bddd7a8d 1316class WXDLLIMPEXP_CORE wxIconizeEvent : public wxEvent
c801d85f 1317{
2b854a32 1318public:
d9e2e4c2
DE
1319 wxIconizeEvent(int winid = 0, bool iconized = TRUE)
1320 : wxEvent(winid, wxEVT_ICONIZE)
497dbbd3 1321 { m_iconized = iconized; }
1d2eddff
JS
1322 wxIconizeEvent(const wxIconizeEvent & event)
1323 : wxEvent(event)
b2697d42 1324 { m_iconized = event.m_iconized; }
c2bbeff0 1325
3dd9b88a
VZ
1326 // return true if the frame was iconized, false if restored
1327 bool Iconized() const { return m_iconized; }
1328
8e72b8b5 1329 virtual wxEvent *Clone() const { return new wxIconizeEvent(*this); }
f97500b8 1330
3dd9b88a
VZ
1331protected:
1332 bool m_iconized;
1333
8e72b8b5 1334private:
fc7a2a60 1335 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIconizeEvent)
c801d85f 1336};
c801d85f
KB
1337/*
1338 wxEVT_MAXIMIZE
1339 */
1340
bddd7a8d 1341class WXDLLIMPEXP_CORE wxMaximizeEvent : public wxEvent
c801d85f 1342{
2b854a32 1343public:
d9e2e4c2
DE
1344 wxMaximizeEvent(int winid = 0)
1345 : wxEvent(winid, wxEVT_MAXIMIZE)
e6a6feba 1346 { }
3dd9b88a 1347
8e72b8b5 1348 virtual wxEvent *Clone() const { return new wxMaximizeEvent(*this); }
f97500b8 1349
8e72b8b5 1350private:
fc7a2a60 1351 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMaximizeEvent)
c801d85f
KB
1352};
1353
1354// Joystick event class
1355/*
1356 wxEVT_JOY_BUTTON_DOWN,
1357 wxEVT_JOY_BUTTON_UP,
1358 wxEVT_JOY_MOVE,
1359 wxEVT_JOY_ZMOVE
1360*/
1361
1362// Which joystick? Same as Windows ids so no conversion necessary.
497dbbd3
VZ
1363enum
1364{
1365 wxJOYSTICK1,
1366 wxJOYSTICK2
1367};
c801d85f
KB
1368
1369// Which button is down?
497dbbd3
VZ
1370enum
1371{
1372 wxJOY_BUTTON_ANY = -1,
1373 wxJOY_BUTTON1 = 1,
1374 wxJOY_BUTTON2 = 2,
1375 wxJOY_BUTTON3 = 4,
1376 wxJOY_BUTTON4 = 8
1377};
c801d85f 1378
bddd7a8d 1379class WXDLLIMPEXP_CORE wxJoystickEvent : public wxEvent
c801d85f 1380{
2b854a32
VZ
1381public:
1382 wxPoint m_pos;
1383 int m_zPosition;
497dbbd3
VZ
1384 int m_buttonChange; // Which button changed?
1385 int m_buttonState; // Which buttons are down?
1386 int m_joyStick; // Which joystick?
2b854a32
VZ
1387
1388 wxJoystickEvent(wxEventType type = wxEVT_NULL,
1389 int state = 0,
1390 int joystick = wxJOYSTICK1,
1391 int change = 0)
497dbbd3
VZ
1392 : wxEvent(0, type),
1393 m_pos(0, 0),
1394 m_zPosition(0),
1395 m_buttonChange(change),
1396 m_buttonState(state),
1397 m_joyStick(joystick)
2b854a32 1398 {
2b854a32 1399 }
1d2eddff 1400 wxJoystickEvent(const wxJoystickEvent & event)
b2697d42
VZ
1401 : wxEvent(event),
1402 m_pos(event.m_pos),
1403 m_zPosition(event.m_zPosition),
1404 m_buttonChange(event.m_buttonChange),
1405 m_buttonState(event.m_buttonState),
1406 m_joyStick(event.m_joyStick)
1d2eddff 1407 { }
c2bbeff0 1408
2b854a32
VZ
1409 wxPoint GetPosition() const { return m_pos; }
1410 int GetZPosition() const { return m_zPosition; }
1411 int GetButtonState() const { return m_buttonState; }
1412 int GetButtonChange() const { return m_buttonChange; }
1413 int GetJoystick() const { return m_joyStick; }
1414
1415 void SetJoystick(int stick) { m_joyStick = stick; }
1416 void SetButtonState(int state) { m_buttonState = state; }
1417 void SetButtonChange(int change) { m_buttonChange = change; }
1418 void SetPosition(const wxPoint& pos) { m_pos = pos; }
1419 void SetZPosition(int zPos) { m_zPosition = zPos; }
1420
1421 // Was it a button event? (*doesn't* mean: is any button *down*?)
1422 bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) ||
b70ababc 1423 (GetEventType() == wxEVT_JOY_BUTTON_UP)); }
2b854a32
VZ
1424
1425 // Was it a move event?
a7bc03c9 1426 bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE); }
2b854a32
VZ
1427
1428 // Was it a zmove event?
a7bc03c9 1429 bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE); }
2b854a32
VZ
1430
1431 // Was it a down event from button 1, 2, 3, 4 or any?
1432 bool ButtonDown(int but = wxJOY_BUTTON_ANY) const
c801d85f 1433 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) &&
2b854a32 1434 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
c801d85f 1435
2b854a32
VZ
1436 // Was it a up event from button 1, 2, 3 or any?
1437 bool ButtonUp(int but = wxJOY_BUTTON_ANY) const
c801d85f 1438 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) &&
2b854a32 1439 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
c801d85f 1440
2b854a32
VZ
1441 // Was the given button 1,2,3,4 or any in Down state?
1442 bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const
c801d85f 1443 { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) ||
2b854a32 1444 ((m_buttonState & but) == but)); }
f305c661 1445
8e72b8b5 1446 virtual wxEvent *Clone() const { return new wxJoystickEvent(*this); }
f97500b8 1447
8e72b8b5 1448private:
fc7a2a60 1449 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxJoystickEvent)
c801d85f
KB
1450};
1451
1452// Drop files event class
1453/*
1454 wxEVT_DROP_FILES
1455 */
1456
bddd7a8d 1457class WXDLLIMPEXP_CORE wxDropFilesEvent : public wxEvent
c801d85f 1458{
2b854a32
VZ
1459public:
1460 int m_noFiles;
1461 wxPoint m_pos;
c3c39620 1462 wxString* m_files;
2b854a32
VZ
1463
1464 wxDropFilesEvent(wxEventType type = wxEVT_NULL,
1465 int noFiles = 0,
1466 wxString *files = (wxString *) NULL)
497dbbd3
VZ
1467 : wxEvent(0, type),
1468 m_noFiles(noFiles),
1469 m_pos(),
1470 m_files(files)
e6a6feba 1471 { }
2b854a32 1472
c3c39620
VZ
1473 // we need a copy ctor to avoid deleting m_files pointer twice
1474 wxDropFilesEvent(const wxDropFilesEvent& other)
497dbbd3
VZ
1475 : wxEvent(other),
1476 m_noFiles(other.m_noFiles),
1477 m_pos(other.m_pos),
1478 m_files(NULL)
c3c39620 1479 {
c3c39620
VZ
1480 m_files = new wxString[m_noFiles];
1481 for ( int n = 0; n < m_noFiles; n++ )
1482 {
1483 m_files[n] = other.m_files[n];
1484 }
1485 }
1486
1487 virtual ~wxDropFilesEvent()
1488 {
1489 delete [] m_files;
1490 }
1491
2b854a32
VZ
1492 wxPoint GetPosition() const { return m_pos; }
1493 int GetNumberOfFiles() const { return m_noFiles; }
1494 wxString *GetFiles() const { return m_files; }
f305c661 1495
c3c39620 1496 virtual wxEvent *Clone() const { return new wxDropFilesEvent(*this); }
f97500b8 1497
8e72b8b5 1498private:
fc7a2a60 1499 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDropFilesEvent)
c801d85f
KB
1500};
1501
c801d85f
KB
1502// Update UI event
1503/*
1504 wxEVT_UPDATE_UI
1505 */
1506
e39af974
JS
1507// Whether to always send update events to windows, or
1508// to only send update events to those with the
1509// wxWS_EX_PROCESS_UI_UPDATES style.
1510
1511enum wxUpdateUIMode
1512{
1513 // Send UI update events to all windows
1514 wxUPDATE_UI_PROCESS_ALL,
1515
1516 // Send UI update events to windows that have
1517 // the wxWS_EX_PROCESS_UI_UPDATES flag specified
1518 wxUPDATE_UI_PROCESS_SPECIFIED
1519};
1520
bddd7a8d 1521class WXDLLIMPEXP_CORE wxUpdateUIEvent : public wxCommandEvent
c801d85f 1522{
2b854a32
VZ
1523public:
1524 wxUpdateUIEvent(wxWindowID commandId = 0)
e6a6feba 1525 : wxCommandEvent(wxEVT_UPDATE_UI, commandId)
497dbbd3
VZ
1526 {
1527 m_checked =
1528 m_enabled =
1529 m_setEnabled =
9b9337da 1530 m_setText =
497dbbd3
VZ
1531 m_setChecked = FALSE;
1532 }
1d2eddff
JS
1533 wxUpdateUIEvent(const wxUpdateUIEvent & event)
1534 : wxCommandEvent(event),
b2697d42
VZ
1535 m_checked(event.m_checked),
1536 m_enabled(event.m_enabled),
1537 m_setEnabled(event.m_setEnabled),
1538 m_setText(event.m_setText),
1539 m_setChecked(event.m_setChecked),
1540 m_text(event.m_text)
1541 { }
c2bbeff0 1542
2b854a32
VZ
1543 bool GetChecked() const { return m_checked; }
1544 bool GetEnabled() const { return m_enabled; }
1545 wxString GetText() const { return m_text; }
1546 bool GetSetText() const { return m_setText; }
1547 bool GetSetChecked() const { return m_setChecked; }
1548 bool GetSetEnabled() const { return m_setEnabled; }
1549
1550 void Check(bool check) { m_checked = check; m_setChecked = TRUE; }
1551 void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; }
1552 void SetText(const wxString& text) { m_text = text; m_setText = TRUE; }
c801d85f 1553
0b30bb0b
JS
1554 // Sets the interval between updates in milliseconds.
1555 // Set to -1 to disable updates, or to 0 to update as frequently as possible.
e39af974 1556 static void SetUpdateInterval(long updateInterval) { sm_updateInterval = updateInterval; }
0b30bb0b
JS
1557
1558 // Returns the current interval between updates in milliseconds
a7bc03c9 1559 static long GetUpdateInterval() { return sm_updateInterval; }
0b30bb0b 1560
e39af974 1561 // Can we update this window?
a7bc03c9 1562 static bool CanUpdate(wxWindowBase *win);
0b30bb0b
JS
1563
1564 // Reset the update time to provide a delay until the next
1565 // time we should update
a7bc03c9 1566 static void ResetUpdateTime();
0b30bb0b 1567
e39af974
JS
1568 // Specify how wxWindows will send update events: to
1569 // all windows, or only to those which specify that they
1570 // will process the events.
1571 static void SetMode(wxUpdateUIMode mode) { sm_updateMode = mode; }
1572
1573 // Returns the UI update mode
a7bc03c9 1574 static wxUpdateUIMode GetMode() { return sm_updateMode; }
e39af974 1575
8e72b8b5 1576 virtual wxEvent *Clone() const { return new wxUpdateUIEvent(*this); }
f305c661 1577
2b854a32
VZ
1578protected:
1579 bool m_checked;
1580 bool m_enabled;
1581 bool m_setEnabled;
1582 bool m_setText;
1583 bool m_setChecked;
1584 wxString m_text;
0b30bb0b 1585#if wxUSE_LONGLONG
e39af974 1586 static wxLongLong sm_lastUpdate;
0b30bb0b 1587#endif
e39af974
JS
1588 static long sm_updateInterval;
1589 static wxUpdateUIMode sm_updateMode;
f97500b8 1590
8e72b8b5 1591private:
fc7a2a60 1592 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxUpdateUIEvent)
c801d85f
KB
1593};
1594
1595/*
1596 wxEVT_SYS_COLOUR_CHANGED
1597 */
1598
1599// TODO: shouldn't all events record the window ID?
bddd7a8d 1600class WXDLLIMPEXP_CORE wxSysColourChangedEvent : public wxEvent
c801d85f 1601{
2b854a32
VZ
1602public:
1603 wxSysColourChangedEvent()
e6a6feba
GD
1604 : wxEvent(0, wxEVT_SYS_COLOUR_CHANGED)
1605 { }
f97500b8 1606
8e72b8b5 1607 virtual wxEvent *Clone() const { return new wxSysColourChangedEvent(*this); }
f97500b8 1608
8e72b8b5 1609private:
fc7a2a60 1610 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSysColourChangedEvent)
c801d85f
KB
1611};
1612
a5e84126
JS
1613/*
1614 wxEVT_MOUSE_CAPTURE_CHANGED
1615 The window losing the capture receives this message
1616 (even if it released the capture itself).
1617 */
1618
bddd7a8d 1619class WXDLLIMPEXP_CORE wxMouseCaptureChangedEvent : public wxEvent
a5e84126
JS
1620{
1621public:
d9e2e4c2
DE
1622 wxMouseCaptureChangedEvent(wxWindowID winid = 0, wxWindow* gainedCapture = NULL)
1623 : wxEvent(winid, wxEVT_MOUSE_CAPTURE_CHANGED),
497dbbd3 1624 m_gainedCapture(gainedCapture)
e6a6feba
GD
1625 { }
1626
1627 wxMouseCaptureChangedEvent(const wxMouseCaptureChangedEvent& event)
497dbbd3
VZ
1628 : wxEvent(event),
1629 m_gainedCapture(event.m_gainedCapture)
e6a6feba 1630 { }
a5e84126
JS
1631
1632 virtual wxEvent *Clone() const { return new wxMouseCaptureChangedEvent(*this); }
1633
1634 wxWindow* GetCapturedWindow() const { return m_gainedCapture; };
1635
1636private:
1637 wxWindow* m_gainedCapture;
fc7a2a60
VZ
1638
1639 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureChangedEvent)
a5e84126
JS
1640};
1641
574c939e
KB
1642/*
1643 wxEVT_DISPLAY_CHANGED
1644 */
bddd7a8d 1645class WXDLLIMPEXP_CORE wxDisplayChangedEvent : public wxEvent
574c939e
KB
1646{
1647private:
fc7a2a60 1648 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDisplayChangedEvent)
574c939e
KB
1649
1650public:
1651 wxDisplayChangedEvent()
e6a6feba
GD
1652 : wxEvent(0, wxEVT_DISPLAY_CHANGED)
1653 { }
574c939e
KB
1654
1655 virtual wxEvent *Clone() const { return new wxDisplayChangedEvent(*this); }
1656};
1657
f7bd2698
JS
1658/*
1659 wxEVT_PALETTE_CHANGED
1660 */
1661
bddd7a8d 1662class WXDLLIMPEXP_CORE wxPaletteChangedEvent : public wxEvent
f7bd2698 1663{
f7bd2698 1664public:
d9e2e4c2
DE
1665 wxPaletteChangedEvent(wxWindowID winid = 0)
1666 : wxEvent(winid, wxEVT_PALETTE_CHANGED),
497dbbd3
VZ
1667 m_changedWindow((wxWindow *) NULL)
1668 { }
e6a6feba
GD
1669
1670 wxPaletteChangedEvent(const wxPaletteChangedEvent& event)
497dbbd3
VZ
1671 : wxEvent(event),
1672 m_changedWindow(event.m_changedWindow)
e6a6feba 1673 { }
f7bd2698 1674
2b854a32
VZ
1675 void SetChangedWindow(wxWindow* win) { m_changedWindow = win; }
1676 wxWindow* GetChangedWindow() const { return m_changedWindow; }
f7bd2698 1677
8e72b8b5 1678 virtual wxEvent *Clone() const { return new wxPaletteChangedEvent(*this); }
f305c661 1679
f7bd2698 1680protected:
2b854a32 1681 wxWindow* m_changedWindow;
8e72b8b5
RR
1682
1683private:
fc7a2a60 1684 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaletteChangedEvent)
f7bd2698
JS
1685};
1686
1687/*
1688 wxEVT_QUERY_NEW_PALETTE
1689 Indicates the window is getting keyboard focus and should re-do its palette.
1690 */
1691
bddd7a8d 1692class WXDLLIMPEXP_CORE wxQueryNewPaletteEvent : public wxEvent
f7bd2698 1693{
f7bd2698 1694public:
d9e2e4c2
DE
1695 wxQueryNewPaletteEvent(wxWindowID winid = 0)
1696 : wxEvent(winid, wxEVT_QUERY_NEW_PALETTE),
497dbbd3 1697 m_paletteRealized(FALSE)
e6a6feba 1698 { }
1d2eddff
JS
1699 wxQueryNewPaletteEvent(const wxQueryNewPaletteEvent & event)
1700 : wxEvent(event),
b2697d42
VZ
1701 m_paletteRealized(event.m_paletteRealized)
1702 { }
c2bbeff0 1703
2b854a32
VZ
1704 // App sets this if it changes the palette.
1705 void SetPaletteRealized(bool realized) { m_paletteRealized = realized; }
1706 bool GetPaletteRealized() const { return m_paletteRealized; }
f7bd2698 1707
8e72b8b5 1708 virtual wxEvent *Clone() const { return new wxQueryNewPaletteEvent(*this); }
f305c661 1709
f7bd2698 1710protected:
2b854a32 1711 bool m_paletteRealized;
f97500b8 1712
8e72b8b5 1713private:
fc7a2a60 1714 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxQueryNewPaletteEvent)
f7bd2698
JS
1715};
1716
7fdefd57
VZ
1717/*
1718 Event generated by dialog navigation keys
1719 wxEVT_NAVIGATION_KEY
1720 */
d9506e77 1721// NB: don't derive from command event to avoid being propagated to the parent
bddd7a8d 1722class WXDLLIMPEXP_CORE wxNavigationKeyEvent : public wxEvent
7fdefd57 1723{
7fdefd57 1724public:
d9506e77 1725 wxNavigationKeyEvent()
497dbbd3
VZ
1726 : wxEvent(0, wxEVT_NAVIGATION_KEY),
1727 m_flags(IsForward | Propagate), // defaults are for TAB
1728 m_focus((wxWindow *)NULL)
e6a6feba 1729 { }
d9506e77 1730
e6a6feba 1731 wxNavigationKeyEvent(const wxNavigationKeyEvent& event)
497dbbd3
VZ
1732 : wxEvent(event),
1733 m_flags(event.m_flags),
1734 m_focus(event.m_focus)
e6a6feba 1735 { }
7fdefd57 1736
2b854a32 1737 // direction: forward (true) or backward (false)
d9506e77
VZ
1738 bool GetDirection() const
1739 { return (m_flags & IsForward) != 0; }
1740 void SetDirection(bool bForward)
1741 { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; }
7fdefd57 1742
2b854a32
VZ
1743 // it may be a window change event (MDI, notebook pages...) or a control
1744 // change event
d9506e77
VZ
1745 bool IsWindowChange() const
1746 { return (m_flags & WinChange) != 0; }
1747 void SetWindowChange(bool bIs)
1748 { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; }
1749
1750 // some navigation events are meant to be propagated upwards (Windows
1751 // convention is to do this for TAB events) while others should always
1752 // cycle inside the panel/radiobox/whatever we're current inside
1753 bool ShouldPropagate() const
1754 { return (m_flags & Propagate) != 0; }
1755 void SetPropagate(bool bDoIt)
1756 { if ( bDoIt ) m_flags |= Propagate; else m_flags &= ~Propagate; }
7fdefd57 1757
2b854a32
VZ
1758 // the child which has the focus currently (may be NULL - use
1759 // wxWindow::FindFocus then)
d9506e77
VZ
1760 wxWindow* GetCurrentFocus() const { return m_focus; }
1761 void SetCurrentFocus(wxWindow *win) { m_focus = win; }
1762
8e72b8b5
RR
1763 virtual wxEvent *Clone() const { return new wxNavigationKeyEvent(*this); }
1764
d9506e77
VZ
1765private:
1766 enum
1767 {
1768 IsForward = 0x0001,
1769 WinChange = 0x0002,
1770 Propagate = 0x0004
1771 };
1772
1773 long m_flags;
1774 wxWindow *m_focus;
1775
8e72b8b5 1776private:
fc7a2a60 1777 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNavigationKeyEvent)
7fdefd57
VZ
1778};
1779
42e69d6b
VZ
1780// Window creation/destruction events: the first is sent as soon as window is
1781// created (i.e. the underlying GUI object exists), but when the C++ object is
1782// fully initialized (so virtual functions may be called). The second,
1783// wxEVT_DESTROY, is sent right before the window is destroyed - again, it's
1784// still safe to call virtual functions at this moment
1785/*
1786 wxEVT_CREATE
1787 wxEVT_DESTROY
1788 */
1789
bddd7a8d 1790class WXDLLIMPEXP_CORE wxWindowCreateEvent : public wxCommandEvent
42e69d6b 1791{
42e69d6b
VZ
1792public:
1793 wxWindowCreateEvent(wxWindow *win = NULL);
1794
1795 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
f97500b8 1796
8e72b8b5 1797 virtual wxEvent *Clone() const { return new wxWindowCreateEvent(*this); }
f97500b8 1798
8e72b8b5 1799private:
fc7a2a60 1800 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowCreateEvent)
42e69d6b
VZ
1801};
1802
bddd7a8d 1803class WXDLLIMPEXP_CORE wxWindowDestroyEvent : public wxCommandEvent
42e69d6b 1804{
42e69d6b
VZ
1805public:
1806 wxWindowDestroyEvent(wxWindow *win = NULL);
1807
1808 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
f97500b8 1809
8e72b8b5
RR
1810 virtual wxEvent *Clone() const { return new wxWindowDestroyEvent(*this); }
1811
1812private:
fc7a2a60 1813 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowDestroyEvent)
42e69d6b
VZ
1814};
1815
bd83cb56 1816// A help event is sent when the user clicks on a window in context-help mode.
b96340e6 1817/*
bd83cb56
VZ
1818 wxEVT_HELP
1819 wxEVT_DETAILED_HELP
1820*/
b96340e6 1821
bddd7a8d 1822class WXDLLIMPEXP_CORE wxHelpEvent : public wxCommandEvent
b96340e6 1823{
b96340e6 1824public:
bd83cb56 1825 wxHelpEvent(wxEventType type = wxEVT_NULL,
d9e2e4c2 1826 wxWindowID winid = 0,
bd83cb56 1827 const wxPoint& pt = wxDefaultPosition)
d9e2e4c2 1828 : wxCommandEvent(type, winid),
497dbbd3 1829 m_pos(pt), m_target(), m_link()
e6a6feba 1830 { }
1d2eddff
JS
1831 wxHelpEvent(const wxHelpEvent & event)
1832 : wxCommandEvent(event),
b2697d42
VZ
1833 m_pos(event.m_pos),
1834 m_target(event.m_target),
1835 m_link(event.m_link)
1d2eddff 1836 { }
c2bbeff0 1837
bd83cb56
VZ
1838 // Position of event (in screen coordinates)
1839 const wxPoint& GetPosition() const { return m_pos; }
1840 void SetPosition(const wxPoint& pos) { m_pos = pos; }
b96340e6 1841
bd83cb56
VZ
1842 // Optional link to further help
1843 const wxString& GetLink() const { return m_link; }
1844 void SetLink(const wxString& link) { m_link = link; }
fb6261e9 1845
bd83cb56
VZ
1846 // Optional target to display help in. E.g. a window specification
1847 const wxString& GetTarget() const { return m_target; }
1848 void SetTarget(const wxString& target) { m_target = target; }
fb6261e9 1849
8e72b8b5 1850 virtual wxEvent *Clone() const { return new wxHelpEvent(*this); }
f97500b8 1851
bd83cb56
VZ
1852protected:
1853 wxPoint m_pos;
1854 wxString m_target;
1855 wxString m_link;
1856
1857private:
fc7a2a60 1858 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxHelpEvent)
b96340e6
JS
1859};
1860
69231000
JS
1861// A Context event is sent when the user right clicks on a window or
1862// presses Shift-F10
1863// NOTE : Under windows this is a repackaged WM_CONTETXMENU message
1864// Under other systems it may have to be generated from a right click event
1865/*
1866 wxEVT_CONTEXT_MENU
1867*/
1868
bddd7a8d 1869class WXDLLIMPEXP_CORE wxContextMenuEvent : public wxCommandEvent
69231000
JS
1870{
1871public:
1872 wxContextMenuEvent(wxEventType type = wxEVT_NULL,
d9e2e4c2 1873 wxWindowID winid = 0,
e6a6feba 1874 const wxPoint& pt = wxDefaultPosition)
d9e2e4c2 1875 : wxCommandEvent(type, winid),
497dbbd3 1876 m_pos(pt)
e6a6feba 1877 { }
1d2eddff
JS
1878 wxContextMenuEvent(const wxContextMenuEvent & event)
1879 : wxCommandEvent(event),
b2697d42 1880 m_pos(event.m_pos)
1d2eddff 1881 { }
c2bbeff0 1882
69231000
JS
1883 // Position of event (in screen coordinates)
1884 const wxPoint& GetPosition() const { return m_pos; }
1885 void SetPosition(const wxPoint& pos) { m_pos = pos; }
1886
8e72b8b5 1887 virtual wxEvent *Clone() const { return new wxContextMenuEvent(*this); }
f97500b8 1888
69231000
JS
1889protected:
1890 wxPoint m_pos;
1891
1892private:
fc7a2a60 1893 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxContextMenuEvent)
69231000
JS
1894};
1895
e90c1d2a
VZ
1896// Idle event
1897/*
1898 wxEVT_IDLE
1899 */
1900
e39af974
JS
1901// Whether to always send idle events to windows, or
1902// to only send update events to those with the
1903// wxWS_EX_PROCESS_IDLE style.
1904
1905enum wxIdleMode
1906{
1907 // Send idle events to all windows
1908 wxIDLE_PROCESS_ALL,
1909
1910 // Send idle events to windows that have
1911 // the wxWS_EX_PROCESS_IDLE flag specified
1912 wxIDLE_PROCESS_SPECIFIED
1913};
1914
bddd7a8d 1915class WXDLLIMPEXP_CORE wxIdleEvent : public wxEvent
e90c1d2a 1916{
e90c1d2a
VZ
1917public:
1918 wxIdleEvent()
497dbbd3
VZ
1919 : wxEvent(0, wxEVT_IDLE),
1920 m_requestMore(FALSE)
e6a6feba 1921 { }
1d2eddff
JS
1922 wxIdleEvent(const wxIdleEvent & event)
1923 : wxEvent(event),
b2697d42
VZ
1924 m_requestMore(event.m_requestMore)
1925 { }
c2bbeff0 1926
e90c1d2a
VZ
1927 void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; }
1928 bool MoreRequested() const { return m_requestMore; }
1929
8e72b8b5 1930 virtual wxEvent *Clone() const { return new wxIdleEvent(*this); }
e90c1d2a 1931
e39af974
JS
1932 // Specify how wxWindows will send idle events: to
1933 // all windows, or only to those which specify that they
1934 // will process the events.
1935 static void SetMode(wxIdleMode mode) { sm_idleMode = mode; }
1936
1937 // Returns the idle event mode
a7bc03c9 1938 static wxIdleMode GetMode() { return sm_idleMode; }
e39af974
JS
1939
1940 // Can we send an idle event?
a7bc03c9 1941 static bool CanSend(wxWindow* win);
e39af974 1942
e90c1d2a
VZ
1943protected:
1944 bool m_requestMore;
e39af974 1945 static wxIdleMode sm_idleMode;
f97500b8 1946
8e72b8b5 1947private:
fc7a2a60 1948 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIdleEvent)
e90c1d2a
VZ
1949};
1950
6b55490a
VZ
1951#endif // wxUSE_GUI
1952
e5fb7191 1953/* TODO
c801d85f 1954 wxEVT_POWER,
c801d85f
KB
1955 wxEVT_MOUSE_CAPTURE_CHANGED,
1956 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
c801d85f
KB
1957// wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
1958 // wxEVT_FONT_CHANGED to all other windows (maybe).
1959 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
1960 wxEVT_MEASURE_ITEM,
1961 wxEVT_COMPARE_ITEM
1962*/
1963
88a9f974 1964
8e193f38
VZ
1965// ============================================================================
1966// event handler and related classes
1967// ============================================================================
1968
c801d85f
KB
1969typedef void (wxObject::*wxObjectEventFunction)(wxEvent&);
1970
2e4df4bf
VZ
1971// we can't have ctors nor base struct in backwards compatibility mode or
1972// otherwise we won't be able to initialize the objects with an agregate, so
1973// we have to keep both versions
1974#if WXWIN_COMPATIBILITY_EVENT_TYPES
1975
bddd7a8d 1976struct WXDLLIMPEXP_BASE wxEventTableEntry
2e4df4bf
VZ
1977{
1978 // For some reason, this can't be wxEventType, or VC++ complains.
1979 int m_eventType; // main event type
1980 int m_id; // control/menu/toolbar id
1981 int m_lastId; // used for ranges of ids
1982 wxObjectEventFunction m_fn; // function to call: not wxEventFunction,
1983 // because of dependency problems
1984
1985 wxObject* m_callbackUserData;
1986};
1987
1988#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
1989
6164f93c
VZ
1990// struct containing the members common to static and dynamic event tables
1991// entries
bddd7a8d 1992struct WXDLLIMPEXP_BASE wxEventTableEntryBase
77d4384e 1993{
e6a6feba
GD
1994private:
1995 wxEventTableEntryBase& operator=(const wxEventTableEntryBase& event);
abcbaea7 1996
e6a6feba 1997public:
d9e2e4c2 1998 wxEventTableEntryBase(int winid, int idLast,
6164f93c 1999 wxObjectEventFunction fn, wxObject *data)
d9e2e4c2 2000 : m_id(winid),
497dbbd3
VZ
2001 m_lastId(idLast),
2002 m_fn(fn),
2003 m_callbackUserData(data)
e6a6feba
GD
2004 { }
2005
2006 wxEventTableEntryBase(const wxEventTableEntryBase& event)
497dbbd3
VZ
2007 : m_id(event.m_id),
2008 m_lastId(event.m_lastId),
2009 m_fn(event.m_fn),
2010 m_callbackUserData(event.m_callbackUserData)
abcbaea7 2011 { }
6164f93c 2012
497dbbd3
VZ
2013 // the range of ids for this entry: if m_lastId == wxID_ANY, the range
2014 // consists only of m_id, otherwise it is m_id..m_lastId inclusive
2015 int m_id,
2016 m_lastId;
82a5f02c 2017
6164f93c
VZ
2018 // function to call: not wxEventFunction, because of dependency problems
2019 wxObjectEventFunction m_fn;
77d4384e 2020
6164f93c 2021 // arbitrary user data asosciated with the callback
77d4384e
RR
2022 wxObject* m_callbackUserData;
2023};
2024
6164f93c 2025// an entry from a static event table
bddd7a8d 2026struct WXDLLIMPEXP_BASE wxEventTableEntry : public wxEventTableEntryBase
c801d85f 2027{
d9e2e4c2 2028 wxEventTableEntry(const int& evType, int winid, int idLast,
6164f93c 2029 wxObjectEventFunction fn, wxObject *data)
d9e2e4c2 2030 : wxEventTableEntryBase(winid, idLast, fn, data),
e6a6feba
GD
2031 m_eventType(evType)
2032 { }
6164f93c
VZ
2033
2034 // the reference to event type: this allows us to not care about the
2035 // (undefined) order in which the event table entries and the event types
2036 // are initialized: initially the value of this reference might be
2037 // invalid, but by the time it is used for the first time, all global
2038 // objects will have been initialized (including the event type constants)
2039 // and so it will have the correct value when it is needed
2040 const int& m_eventType;
fc7a2a60
VZ
2041
2042private:
2043 wxEventTableEntry& operator=(const wxEventTableEntry&);
6164f93c
VZ
2044};
2045
bddd7a8d 2046class WXDLLIMPEXP_BASE wxEvtHandler;
65b17727 2047
6164f93c 2048// an entry used in dynamic event table managed by wxEvtHandler::Connect()
bddd7a8d 2049struct WXDLLIMPEXP_BASE wxDynamicEventTableEntry : public wxEventTableEntryBase
6164f93c 2050{
d9e2e4c2 2051 wxDynamicEventTableEntry(int evType, int winid, int idLast,
65b17727 2052 wxObjectEventFunction fn, wxObject *data, wxEvtHandler* eventSink)
d9e2e4c2 2053 : wxEventTableEntryBase(winid, idLast, fn, data),
65b17727
JS
2054 m_eventType(evType),
2055 m_eventSink(eventSink)
e6a6feba 2056 { }
6164f93c
VZ
2057
2058 // not a reference here as we can't keep a reference to a temporary int
2059 // created to wrap the constant value typically passed to Connect() - nor
2060 // do we need it
2061 int m_eventType;
65b17727
JS
2062
2063 // Pointer to object whose function is fn - so we don't assume the
2064 // EventFunction is always a member of the EventHandler receiving the
2065 // message
2066 wxEvtHandler* m_eventSink;
fc7a2a60
VZ
2067
2068 DECLARE_NO_COPY_CLASS(wxDynamicEventTableEntry)
c801d85f
KB
2069};
2070
2e4df4bf
VZ
2071#endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
2072
2073// ----------------------------------------------------------------------------
2074// wxEventTable: an array of event entries terminated with {0, 0, 0, 0, 0}
2075// ----------------------------------------------------------------------------
886dd7d2 2076
bddd7a8d 2077struct WXDLLIMPEXP_BASE wxEventTable
c801d85f 2078{
0b5eceb6
VZ
2079 const wxEventTable *baseTable; // base event table (next in chain)
2080 const wxEventTableEntry *entries; // bottom of entry array
c801d85f
KB
2081};
2082
b5a98acd
VZ
2083// ----------------------------------------------------------------------------
2084// wxEventHashTable: a helper of wxEvtHandler to speed up wxEventTable lookups.
2085// ----------------------------------------------------------------------------
2086
6108e3fd 2087WX_DEFINE_ARRAY_NO_PTR(const wxEventTableEntry*, wxEventTableEntryPointerArray);
b5a98acd
VZ
2088class WXDLLIMPEXP_BASE wxEvtHandler;
2089
2090class WXDLLIMPEXP_BASE wxEventHashTable
2091{
2092private:
2093 // Internal data structs
2094 struct EventTypeTable
2095 {
2096 wxEventType eventType;
2097 wxEventTableEntryPointerArray eventEntryTable;
2098 };
2099 typedef EventTypeTable* EventTypeTablePointer;
2100
2101public:
2102 // Constructor, needs the event table it needs to hash later on.
2103 // Note: hashing of the event table is not done in the constructor as it
2104 // can be that the event table is not yet full initialize, the hash
2105 // will gets initialized when handling the first event look-up request.
2106 wxEventHashTable(const wxEventTable &table);
2107 // Destructor.
2108 ~wxEventHashTable();
2109
2110 // Handle the given event, in other words search the event table hash
2111 // and call self->ProcessEvent() if a match was found.
2112 bool HandleEvent(wxEvent &event, wxEvtHandler *self);
2113
2114protected:
2115 // Init the hash table with the entries of the static event table.
2116 void InitHashTable();
2117 // Helper funtion of InitHashTable() to insert 1 entry into the hash table.
2118 void AddEntry(const wxEventTableEntry &entry);
2119 // Allocate and init with null pointers the base hash table.
2120 void AllocEventTypeTable(size_t size);
2121 // Grow the hash table in size and transfer all items currently
2122 // in the table to the correct location in the new table.
2123 void GrowEventTypeTable();
2124
2125protected:
2126 const wxEventTable &m_table;
2127 bool m_rebuildHash;
2128
2129 size_t m_size;
2130 EventTypeTablePointer *m_eventTypeTable;
fc7a2a60
VZ
2131
2132 DECLARE_NO_COPY_CLASS(wxEventHashTable)
b5a98acd
VZ
2133};
2134
6164f93c
VZ
2135// ----------------------------------------------------------------------------
2136// wxEvtHandler: the base class for all objects handling wxWindows events
2137// ----------------------------------------------------------------------------
2138
bddd7a8d 2139class WXDLLIMPEXP_BASE wxEvtHandler : public wxObject
c801d85f 2140{
2b854a32
VZ
2141public:
2142 wxEvtHandler();
6164f93c 2143 virtual ~wxEvtHandler();
2b854a32
VZ
2144
2145 wxEvtHandler *GetNextHandler() const { return m_nextHandler; }
2146 wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; }
2147 void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; }
2148 void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; }
2149
8e193f38 2150 void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; }
2b854a32
VZ
2151 bool GetEvtHandlerEnabled() const { return m_enabled; }
2152
8e193f38
VZ
2153 // process an event right now
2154 virtual bool ProcessEvent(wxEvent& event);
2b854a32 2155
8e193f38
VZ
2156 // add an event to be processed later
2157 void AddPendingEvent(wxEvent& event);
2b854a32 2158
8e193f38
VZ
2159 // process all pending events
2160 void ProcessPendingEvents();
2b854a32 2161
20947e08 2162 // add a
7214297d
GL
2163#if wxUSE_THREADS
2164 bool ProcessThreadEvent(wxEvent& event);
7214297d 2165#endif
2b854a32
VZ
2166
2167 // Dynamic association of a member function handler with the event handler,
d9e2e4c2
DE
2168 // winid and event type
2169 void Connect( int winid, int lastId, int eventType,
2b854a32 2170 wxObjectEventFunction func,
65b17727
JS
2171 wxObject *userData = (wxObject *) NULL,
2172 wxEvtHandler *eventSink = (wxEvtHandler *) NULL );
2b854a32
VZ
2173
2174 // Convenience function: take just one id
d9e2e4c2 2175 void Connect( int winid, int eventType,
2b854a32 2176 wxObjectEventFunction func,
65b17727
JS
2177 wxObject *userData = (wxObject *) NULL,
2178 wxEvtHandler *eventSink = (wxEvtHandler *) NULL )
2179 { Connect(winid, wxID_ANY, eventType, func, userData, eventSink); }
2b854a32 2180
d9e2e4c2 2181 bool Disconnect( int winid, int lastId, wxEventType eventType,
97d7bfb8 2182 wxObjectEventFunction func = NULL,
65b17727
JS
2183 wxObject *userData = (wxObject *) NULL,
2184 wxEvtHandler *eventSink = (wxEvtHandler *) NULL );
97d7bfb8
RR
2185
2186 // Convenience function: take just one id
d9e2e4c2 2187 bool Disconnect( int winid, wxEventType eventType = wxEVT_NULL,
97d7bfb8 2188 wxObjectEventFunction func = NULL,
65b17727
JS
2189 wxObject *userData = (wxObject *) NULL,
2190 wxEvtHandler *eventSink = (wxEvtHandler *) NULL )
2191 { return Disconnect(winid, wxID_ANY, eventType, func, userData, eventSink); }
98243fed 2192
10da6a8f 2193 wxList* GetDynamicEventTable() const { return m_dynamicEvents ; }
b88c44e7
RD
2194
2195 // User data can be associated with each wxEvtHandler
2196 void SetClientObject( wxClientData *data ) { DoSetClientObject(data); }
2197 wxClientData *GetClientObject() const { return DoGetClientObject(); }
2198
2199 void SetClientData( void *data ) { DoSetClientData(data); }
2200 void *GetClientData() const { return DoGetClientData(); }
2201
2202
8e193f38
VZ
2203 // implementation from now on
2204 virtual bool SearchEventTable(wxEventTable& table, wxEvent& event);
2b854a32 2205 bool SearchDynamicEventTable( wxEvent& event );
c801d85f 2206
63863e09 2207#if wxUSE_THREADS
20947e08
DW
2208 void ClearEventLocker()
2209 {
2210# if !defined(__VISAGECPP__)
2211 delete m_eventsLocker;
2212 m_eventsLocker = NULL;
2213#endif
2214 };
63863e09
JS
2215#endif
2216
c801d85f 2217private:
8e193f38 2218 static const wxEventTableEntry sm_eventTableEntries[];
2b854a32 2219
c801d85f 2220protected:
4caf847c
VZ
2221 // hooks for wxWindow used by ProcessEvent()
2222 // -----------------------------------------
2223
6eabf58c
VS
2224 // This one is called before trying our own event table to allow plugging
2225 // in the validators.
2226 //
2227 // NB: This method is intentionally *not* inside wxUSE_VALIDATORS!
2228 // It is part of wxBase which doesn't use validators and the code
2229 // is compiled out when building wxBase w/o GUI classes, which affects
2230 // binary compatiblity and wxBase library can't be used by GUI
2231 // ports.
4caf847c 2232 virtual bool TryValidator(wxEvent& WXUNUSED(event)) { return false; }
4caf847c
VZ
2233
2234 // this one is called after failing to find the event handle in our own
2235 // table to give a chance to the other windows to process it
2236 //
2237 // base class implementation passes the event to wxTheApp
2238 virtual bool TryParent(wxEvent& event);
2239
2240
b5a98acd 2241 static const wxEventTable sm_eventTable;
193bf013
VZ
2242 virtual const wxEventTable *GetEventTable() const;
2243
b5a98acd
VZ
2244 static wxEventHashTable sm_eventHashTable;
2245 virtual wxEventHashTable& GetEventHashTable() const;
2246
63863e09
JS
2247 wxEvtHandler* m_nextHandler;
2248 wxEvtHandler* m_previousHandler;
63863e09 2249 wxList* m_dynamicEvents;
42e69d6b 2250 wxList* m_pendingEvents;
6164f93c 2251
7214297d 2252#if wxUSE_THREADS
20947e08
DW
2253#if defined (__VISAGECPP__)
2254 wxCriticalSection m_eventsLocker;
2255# else
63863e09 2256 wxCriticalSection* m_eventsLocker;
20947e08 2257# endif
7214297d 2258#endif
193bf013 2259
8e193f38
VZ
2260 // Is event handler enabled?
2261 bool m_enabled;
6164f93c 2262
b88c44e7
RD
2263
2264 // The user data: either an object which will be deleted by the container
2265 // when it's deleted or some raw pointer which we do nothing with - only
2266 // one type of data can be used with the given window (i.e. you cannot set
2267 // the void data and then associate the container with wxClientData or vice
2268 // versa)
2269 union
2270 {
2271 wxClientData *m_clientObject;
2272 void *m_clientData;
2273 };
2274
2275 // what kind of data do we have?
2276 wxClientDataType m_clientDataType;
2277
2278 // client data accessors
2279 virtual void DoSetClientObject( wxClientData *data );
2280 virtual wxClientData *DoGetClientObject() const;
2281
2282 virtual void DoSetClientData( void *data );
2283 virtual void *DoGetClientData() const;
2284
6164f93c 2285private:
fc7a2a60 2286 DECLARE_DYNAMIC_CLASS_NO_COPY(wxEvtHandler)
c801d85f
KB
2287};
2288
e2478fde
VZ
2289// Post a message to the given eventhandler which will be processed during the
2290// next event loop iteration
2291inline void wxPostEvent(wxEvtHandler *dest, wxEvent& event)
2292{
2293 wxCHECK_RET( dest, wxT("need an object to post event to in wxPostEvent") );
2294
2295 dest->AddPendingEvent(event);
2296}
2297
c801d85f 2298typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&);
e90c1d2a 2299#if wxUSE_GUI
c801d85f
KB
2300typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&);
2301typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&);
c5b42c87 2302typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&);
c801d85f
KB
2303typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&);
2304typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&);
2305typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&);
2306typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&);
2307typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&);
2308typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&);
2309typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&);
456bc6d9 2310typedef void (wxEvtHandler::*wxChildFocusEventFunction)(wxChildFocusEvent&);
c801d85f
KB
2311typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&);
2312typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&);
2313typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&);
2314typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&);
2315typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&);
2316typedef void (wxEvtHandler::*wxSysColourChangedFunction)(wxSysColourChangedEvent&);
574c939e 2317typedef void (wxEvtHandler::*wxDisplayChangedFunction)(wxDisplayChangedEvent&);
c801d85f
KB
2318typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&);
2319typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&);
2320typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&);
2321typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&);
9bc13858 2322typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxIconizeEvent&);
98e78a5e 2323typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxMaximizeEvent&);
81d66cf3 2324typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&);
f7bd2698
JS
2325typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&);
2326typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&);
43b5058d
VZ
2327typedef void (wxEvtHandler::*wxWindowCreateEventFunction)(wxWindowCreateEvent&);
2328typedef void (wxEvtHandler::*wxWindowDestroyEventFunction)(wxWindowDestroyEvent&);
2329typedef void (wxEvtHandler::*wxSetCursorEventFunction)(wxSetCursorEvent&);
669f7a11 2330typedef void (wxEvtHandler::*wxNotifyEventFunction)(wxNotifyEvent&);
b96340e6 2331typedef void (wxEvtHandler::*wxHelpEventFunction)(wxHelpEvent&);
69231000 2332typedef void (wxEvtHandler::*wxContextMenuEventFunction)(wxContextMenuEvent&);
a5e84126 2333typedef void (wxEvtHandler::*wxMouseCaptureChangedEventFunction)(wxMouseCaptureChangedEvent&);
e90c1d2a 2334#endif // wxUSE_GUI
c801d85f
KB
2335
2336// N.B. In GNU-WIN32, you *have* to take the address of a member function
2337// (use &) or the compiler crashes...
2338
2339#define DECLARE_EVENT_TABLE() \
2e4df4bf
VZ
2340 private: \
2341 static const wxEventTableEntry sm_eventTableEntries[]; \
2342 protected: \
2343 static const wxEventTable sm_eventTable; \
b5a98acd
VZ
2344 virtual const wxEventTable* GetEventTable() const; \
2345 static wxEventHashTable sm_eventHashTable; \
2346 virtual wxEventHashTable& GetEventHashTable() const;
c801d85f 2347
48276300
VZ
2348// N.B.: when building DLL with Borland C++ 5.5 compiler, you must initialize
2349// sm_eventTable before using it in GetEventTable() or the compiler gives
2350// E2233 (see http://groups.google.com/groups?selm=397dcc8a%241_2%40dnews)
b5a98acd 2351
c801d85f 2352#define BEGIN_EVENT_TABLE(theClass, baseClass) \
2e4df4bf
VZ
2353 const wxEventTable theClass::sm_eventTable = \
2354 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] }; \
48276300
VZ
2355 const wxEventTable *theClass::GetEventTable() const \
2356 { return &theClass::sm_eventTable; } \
b5a98acd
VZ
2357 wxEventHashTable theClass::sm_eventHashTable(theClass::sm_eventTable); \
2358 wxEventHashTable &theClass::GetEventHashTable() const \
2359 { return theClass::sm_eventHashTable; } \
2e4df4bf 2360 const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
c801d85f 2361
33e29419 2362#define END_EVENT_TABLE() DECLARE_EVENT_TABLE_ENTRY( wxEVT_NULL, 0, 0, 0, 0 ) };
2b854a32 2363
c801d85f
KB
2364/*
2365 * Event table macros
2366 */
2367
2368// Generic events
d9e2e4c2 2369#define EVT_CUSTOM(event, winid, func) DECLARE_EVENT_TABLE_ENTRY( event, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ),
2e4df4bf 2370#define EVT_CUSTOM_RANGE(event, id1, id2, func) DECLARE_EVENT_TABLE_ENTRY( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
2371
2372// Miscellaneous
497dbbd3 2373#define EVT_SIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ),
5706de1c 2374#define EVT_SIZING(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SIZING, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ),
497dbbd3 2375#define EVT_MOVE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ),
5706de1c 2376#define EVT_MOVING(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVING, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ),
497dbbd3
VZ
2377#define EVT_CLOSE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CLOSE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2378#define EVT_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2379#define EVT_QUERY_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2380#define EVT_PAINT(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PAINT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ),
2381#define EVT_NC_PAINT(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_NC_PAINT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ),
2382#define EVT_ERASE_BACKGROUND(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ERASE_BACKGROUND, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, (wxObject *) NULL ),
2383#define EVT_CHAR(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHAR, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
2384#define EVT_KEY_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KEY_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
2385#define EVT_KEY_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KEY_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
5048c832
JS
2386#if wxUSE_HOTKEY
2387#define EVT_HOTKEY(id, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_HOTKEY, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
2388#endif
497dbbd3
VZ
2389#define EVT_CHAR_HOOK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHAR_HOOK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL ),
2390#define EVT_MENU_OPEN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_OPEN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
2391#define EVT_MENU_CLOSE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_CLOSE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
d9e2e4c2 2392#define EVT_MENU_HIGHLIGHT(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_HIGHLIGHT, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
497dbbd3
VZ
2393#define EVT_MENU_HIGHLIGHT_ALL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_HIGHLIGHT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
2394#define EVT_SET_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SET_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ),
2395#define EVT_KILL_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KILL_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ),
2396#define EVT_CHILD_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHILD_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxChildFocusEventFunction) & func, (wxObject *) NULL ),
2397#define EVT_ACTIVATE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ACTIVATE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ),
2398#define EVT_ACTIVATE_APP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ACTIVATE_APP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ),
2399#define EVT_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2400#define EVT_QUERY_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2401#define EVT_DROP_FILES(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DROP_FILES, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, (wxObject *) NULL ),
2402#define EVT_INIT_DIALOG(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_INIT_DIALOG, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, (wxObject *) NULL ),
2403#define EVT_SYS_COLOUR_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SYS_COLOUR_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, (wxObject *) NULL ),
2404#define EVT_DISPLAY_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DISPLAY_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxDisplayChangedFunction) & func, (wxObject *) NULL ),
2405#define EVT_SHOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SHOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, (wxObject *) NULL ),
2406#define EVT_MAXIMIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MAXIMIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, (wxObject *) NULL ),
2407#define EVT_ICONIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ICONIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, (wxObject *) NULL ),
2408#define EVT_NAVIGATION_KEY(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_NAVIGATION_KEY, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxNavigationKeyEventFunction) & func, (wxObject *) NULL ),
2409#define EVT_PALETTE_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PALETTE_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaletteChangedEventFunction) & func, (wxObject *) NULL ),
2410#define EVT_QUERY_NEW_PALETTE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_NEW_PALETTE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL ),
2411#define EVT_WINDOW_CREATE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CREATE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxWindowCreateEventFunction) & func, (wxObject *) NULL ),
2412#define EVT_WINDOW_DESTROY(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DESTROY, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxWindowDestroyEventFunction) & func, (wxObject *) NULL ),
2413#define EVT_SET_CURSOR(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SET_CURSOR, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSetCursorEventFunction) & func, (wxObject *) NULL ),
2414#define EVT_MOUSE_CAPTURE_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSE_CAPTURE_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseCaptureChangedEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
2415
2416// Mouse events
497dbbd3
VZ
2417#define EVT_LEFT_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2418#define EVT_LEFT_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2419#define EVT_MIDDLE_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2420#define EVT_MIDDLE_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2421#define EVT_RIGHT_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2422#define EVT_RIGHT_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2423#define EVT_MOTION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOTION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2424#define EVT_LEFT_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2425#define EVT_MIDDLE_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2426#define EVT_RIGHT_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2427#define EVT_LEAVE_WINDOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEAVE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2428#define EVT_ENTER_WINDOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ENTER_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2429#define EVT_MOUSEWHEEL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSEWHEEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
2430
2431// All mouse events
2432#define EVT_MOUSE_EVENTS(func) \
497dbbd3
VZ
2433 DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2434 DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2435 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2436 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2437 DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2438 DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2439 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOTION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2440 DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2441 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2442 DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2443 DECLARE_EVENT_TABLE_ENTRY( wxEVT_ENTER_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2444 DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEAVE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2445 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSEWHEEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
2446
2447// EVT_COMMAND
d9e2e4c2 2448#define EVT_COMMAND(winid, event, fn) DECLARE_EVENT_TABLE_ENTRY( event, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2e4df4bf 2449#define EVT_COMMAND_RANGE(id1, id2, event, fn) DECLARE_EVENT_TABLE_ENTRY( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
c801d85f 2450
c5b42c87
RR
2451// Scrolling from wxWindow (sent to wxScrolledWindow)
2452#define EVT_SCROLLWIN(func) \
497dbbd3
VZ
2453 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2454 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2455 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2456 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2457 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2458 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2459 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2460 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2461
2462#define EVT_SCROLLWIN_TOP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2463#define EVT_SCROLLWIN_BOTTOM(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2464#define EVT_SCROLLWIN_LINEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2465#define EVT_SCROLLWIN_LINEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2466#define EVT_SCROLLWIN_PAGEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2467#define EVT_SCROLLWIN_PAGEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2468#define EVT_SCROLLWIN_THUMBTRACK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2469#define EVT_SCROLLWIN_THUMBRELEASE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
c5b42c87
RR
2470
2471// Scrolling from wxSlider and wxScrollBar
c801d85f 2472#define EVT_SCROLL(func) \
497dbbd3
VZ
2473 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2474 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2475 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2476 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2477 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2478 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2479 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
e8b669d3
VZ
2480 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), \
2481 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
497dbbd3
VZ
2482
2483#define EVT_SCROLL_TOP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2484#define EVT_SCROLL_BOTTOM(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2485#define EVT_SCROLL_LINEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2486#define EVT_SCROLL_LINEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2487#define EVT_SCROLL_PAGEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2488#define EVT_SCROLL_PAGEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2489#define EVT_SCROLL_THUMBTRACK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2490#define EVT_SCROLL_THUMBRELEASE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
e8b669d3 2491#define EVT_SCROLL_ENDSCROLL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
c801d85f 2492
c5b42c87 2493// Scrolling from wxSlider and wxScrollBar, with an id
d9e2e4c2
DE
2494#define EVT_COMMAND_SCROLL(winid, func) \
2495 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2496 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2497 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2498 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2499 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2500 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2501 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2502 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), \
2503 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2504
2505#define EVT_COMMAND_SCROLL_TOP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2506#define EVT_COMMAND_SCROLL_BOTTOM(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2507#define EVT_COMMAND_SCROLL_LINEUP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2508#define EVT_COMMAND_SCROLL_LINEDOWN(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2509#define EVT_COMMAND_SCROLL_PAGEUP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2510#define EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2511#define EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2512#define EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2513#define EVT_COMMAND_SCROLL_ENDSCROLL(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
2514
2515// Convenience macros for commonly-used commands
d9e2e4c2
DE
2516#define EVT_BUTTON(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_BUTTON_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2517#define EVT_CHECKBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHECKBOX_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2518#define EVT_CHOICE(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHOICE_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2519#define EVT_LISTBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LISTBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2520#define EVT_LISTBOX_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2521#define EVT_MENU(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_MENU_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2e4df4bf 2522#define EVT_MENU_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
d9e2e4c2
DE
2523#define EVT_SLIDER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SLIDER_UPDATED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2524#define EVT_RADIOBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RADIOBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2525#define EVT_RADIOBUTTON(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RADIOBUTTON_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
c801d85f 2526// EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
d9e2e4c2
DE
2527#define EVT_SCROLLBAR(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SCROLLBAR_UPDATED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2528#define EVT_VLBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_VLBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2529#define EVT_COMBOBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_COMBOBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2530#define EVT_TOOL(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2e4df4bf 2531#define EVT_TOOL_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
d9e2e4c2 2532#define EVT_TOOL_RCLICKED(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_RCLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2e4df4bf 2533#define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
d9e2e4c2
DE
2534#define EVT_TOOL_ENTER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_ENTER, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2535#define EVT_CHECKLISTBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
c801d85f
KB
2536
2537// Generic command events
d9e2e4c2
DE
2538#define EVT_COMMAND_LEFT_CLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LEFT_CLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2539#define EVT_COMMAND_LEFT_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LEFT_DCLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2540#define EVT_COMMAND_RIGHT_CLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RIGHT_CLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2541#define EVT_COMMAND_RIGHT_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RIGHT_DCLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2542#define EVT_COMMAND_SET_FOCUS(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SET_FOCUS, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2543#define EVT_COMMAND_KILL_FOCUS(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_KILL_FOCUS, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2544#define EVT_COMMAND_ENTER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_ENTER, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
c801d85f
KB
2545
2546// Joystick events
1241ab8b
JS
2547
2548#define EVT_JOY_BUTTON_DOWN(func) \
497dbbd3 2549 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
1241ab8b 2550#define EVT_JOY_BUTTON_UP(func) \
497dbbd3 2551 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f 2552#define EVT_JOY_MOVE(func) \
497dbbd3 2553 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f 2554#define EVT_JOY_ZMOVE(func) \
497dbbd3 2555 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_ZMOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f 2556
1241ab8b
JS
2557// These are obsolete, see _BUTTON_ events
2558#define EVT_JOY_DOWN(func) \
2559 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2560#define EVT_JOY_UP(func) \
2561 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2562
c801d85f
KB
2563// All joystick events
2564#define EVT_JOYSTICK_EVENTS(func) \
497dbbd3
VZ
2565 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
2566 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
2567 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
2568 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_ZMOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
2569
2570// Idle event
2571#define EVT_IDLE(func) \
497dbbd3 2572 DECLARE_EVENT_TABLE_ENTRY( wxEVT_IDLE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
2573
2574// Update UI event
d9e2e4c2
DE
2575#define EVT_UPDATE_UI(winid, func) \
2576 DECLARE_EVENT_TABLE_ENTRY( wxEVT_UPDATE_UI, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, (wxObject *) NULL ),
3ca6a5f0 2577#define EVT_UPDATE_UI_RANGE(id1, id2, func) \
2e4df4bf 2578 DECLARE_EVENT_TABLE_ENTRY( wxEVT_UPDATE_UI, id1, id2, (wxObjectEventFunction)(wxEventFunction)(wxUpdateUIEventFunction)&func, (wxObject *) NULL ),
c801d85f 2579
b96340e6 2580// Help events
d9e2e4c2
DE
2581#define EVT_HELP(winid, func) \
2582 DECLARE_EVENT_TABLE_ENTRY( wxEVT_HELP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
b96340e6
JS
2583
2584#define EVT_HELP_RANGE(id1, id2, func) \
2e4df4bf 2585 DECLARE_EVENT_TABLE_ENTRY( wxEVT_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
b96340e6 2586
d9e2e4c2
DE
2587#define EVT_DETAILED_HELP(winid, func) \
2588 DECLARE_EVENT_TABLE_ENTRY( wxEVT_DETAILED_HELP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
fb6261e9
JS
2589
2590#define EVT_DETAILED_HELP_RANGE(id1, id2, func) \
2e4df4bf 2591 DECLARE_EVENT_TABLE_ENTRY( wxEVT_DETAILED_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
fb6261e9 2592
69231000
JS
2593// Context Menu Events
2594#define EVT_CONTEXT_MENU(func) \
497dbbd3 2595 DECLARE_EVENT_TABLE_ENTRY(wxEVT_CONTEXT_MENU, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxContextMenuEventFunction) & func, (wxObject *) NULL ),
69231000 2596
8e193f38
VZ
2597// ----------------------------------------------------------------------------
2598// Global data
2599// ----------------------------------------------------------------------------
2600
2601// for pending event processing - notice that there is intentionally no
2602// WXDLLEXPORT here
bddd7a8d 2603extern WXDLLIMPEXP_BASE wxList *wxPendingEvents;
8e193f38 2604#if wxUSE_THREADS
bddd7a8d 2605 extern WXDLLIMPEXP_BASE wxCriticalSection *wxPendingEventsLocker;
8e193f38
VZ
2606#endif
2607
e90c1d2a
VZ
2608// ----------------------------------------------------------------------------
2609// Helper functions
2610// ----------------------------------------------------------------------------
2611
2612#if wxUSE_GUI
e702ff0f
JS
2613
2614// Find a window with the focus, that is also a descendant of the given window.
2615// This is used to determine the window to initially send commands to.
2616wxWindow* wxFindFocusDescendant(wxWindow* ancestor);
2617
e90c1d2a
VZ
2618#endif // wxUSE_GUI
2619
1648d51b
VZ
2620#endif // _WX_EVENT_H__
2621