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