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