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