]> git.saurik.com Git - wxWidgets.git/blame - include/wx/event.h
XPM updates
[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
34138703
JS
12#ifndef _WX_EVENTH__
13#define _WX_EVENTH__
c801d85f
KB
14
15#ifdef __GNUG__
2b854a32 16 #pragma interface "event.h"
c801d85f
KB
17#endif
18
19#include "wx/defs.h"
20#include "wx/object.h"
e90c1d2a
VZ
21
22#if wxUSE_GUI
23 #include "wx/gdicmn.h"
43b5058d 24 #include "wx/cursor.h"
e90c1d2a 25#endif
42e69d6b 26
72cdf4c9 27#include "wx/thread.h"
c801d85f 28
e90c1d2a
VZ
29// ----------------------------------------------------------------------------
30// forward declarations
31// ----------------------------------------------------------------------------
32
33class WXDLLEXPORT wxList;
34
35#if wxUSE_GUI
36 class WXDLLEXPORT wxClientData;
37 class WXDLLEXPORT wxDC;
38 class WXDLLEXPORT wxMenu;
73974df1 39 class WXDLLEXPORT wxWindow;
e90c1d2a
VZ
40#endif // wxUSE_GUI
41
42// ----------------------------------------------------------------------------
43// Event types
44// ----------------------------------------------------------------------------
64693098 45
cbee8f8d
VZ
46typedef int wxEventType;
47
48// in previous versions of wxWindows the event types used to be constants
49// which created difficulties with custom/user event types definition
50//
51// starting from wxWindows 2.4 the event types are now dynamically assigned
52// using wxNewEventType() which solves this problem, however at price of
53// several incompatibilities:
54//
55// a) event table macros declaration changed, it now uses wxEventTableEntry
56// ctor instead of initialisation from an agregate - the macro
57// DECLARE_EVENT_TABLE_ENTRY may be used to write code which can compile
58// with all versions of wxWindows
59//
60// b) event types can't be used as switch() cases as they're not really
61// constant any more - there is no magic solution here, you just have to
62// change the switch()es to if()s
63//
64// if these are real problems for you, define WXWIN_COMPATIBILITY_EVENT_TYPES
65// to get 100% old behaviour, however you won't be able to use the libraries
66// using the new dynamic event type allocation in such case, so avoid it if
67// possible.
68
69#if WXWIN_COMPATIBILITY_EVENT_TYPES
70
71#define DECLARE_EVENT_TABLE_ENTRY(type, id, idLast, fn, obj) \
72 { type, id, idLast, fn, obj }
73
74#define DECLARE_EVENT_TYPE(name, value) name = wxEVT_FIRST + value,
75
76#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
77
78#define DECLARE_EVENT_TABLE_ENTRY(type, id, idLast, fn, obj) \
79 wxEventTableEntry(type, id, idLast, fn, obj)
80
81#define DECLARE_EVENT_TYPE(name, value) extern wxEventType name;
82
83// generate a new unique event type
84extern WXDLLEXPORT wxEventType wxNewEventType();
85
86#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
87
88#if WXWIN_COMPATIBILITY_EVENT_TYPES
89enum
90{
91 wxEVT_NULL = 0,
92 wxEVT_FIRST = 10000,
93#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
94 extern wxEventType wxEVT_NULL;
95 extern wxEventType wxEVT_FIRST;
96#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
97
98DECLARE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED, 1)
99DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED, 2)
100DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED, 3)
101DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED, 4)
102DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, 5)
103DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, 6)
104DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED, 7)
105DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER, 8)
106DECLARE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED, 9)
107DECLARE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED, 10)
108DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED, 11)
109DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED, 12)
110
111// wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use
112// wxEVT_SCROLL... events
113
114DECLARE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED, 13)
115DECLARE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED, 14)
116DECLARE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED, 15)
117DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED, 16)
118DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER, 17)
119DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED, 18)
120
121 // Sockets and timers send events, too
122DECLARE_EVENT_TYPE(wxEVT_SOCKET, 50)
123DECLARE_EVENT_TYPE(wxEVT_TIMER , 80)
124
125 // Mouse event types
126DECLARE_EVENT_TYPE(wxEVT_LEFT_DOWN, 100)
127DECLARE_EVENT_TYPE(wxEVT_LEFT_UP, 101)
128DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DOWN, 102)
129DECLARE_EVENT_TYPE(wxEVT_MIDDLE_UP, 103)
130DECLARE_EVENT_TYPE(wxEVT_RIGHT_DOWN, 104)
131DECLARE_EVENT_TYPE(wxEVT_RIGHT_UP, 105)
132DECLARE_EVENT_TYPE(wxEVT_MOTION, 106)
133DECLARE_EVENT_TYPE(wxEVT_ENTER_WINDOW, 107)
134DECLARE_EVENT_TYPE(wxEVT_LEAVE_WINDOW, 108)
135DECLARE_EVENT_TYPE(wxEVT_LEFT_DCLICK, 109)
136DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK, 110)
137DECLARE_EVENT_TYPE(wxEVT_RIGHT_DCLICK, 111)
138DECLARE_EVENT_TYPE(wxEVT_SET_FOCUS, 112)
139DECLARE_EVENT_TYPE(wxEVT_KILL_FOCUS, 113)
140
141 // Non-client mouse events
142DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN, 200)
143DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_UP, 201)
144DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN, 202)
145DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP, 203)
146DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN, 204)
147DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_UP, 205)
148DECLARE_EVENT_TYPE(wxEVT_NC_MOTION, 206)
149DECLARE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW, 207)
150DECLARE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW, 208)
151DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK, 209)
152DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK, 210)
153DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK, 211)
154
155 // Character input event type
156DECLARE_EVENT_TYPE(wxEVT_CHAR, 212)
157DECLARE_EVENT_TYPE(wxEVT_CHAR_HOOK, 213)
158DECLARE_EVENT_TYPE(wxEVT_NAVIGATION_KEY, 214)
159DECLARE_EVENT_TYPE(wxEVT_KEY_DOWN, 215)
160DECLARE_EVENT_TYPE(wxEVT_KEY_UP, 216)
161
162 // Set cursor event
163DECLARE_EVENT_TYPE(wxEVT_SET_CURSOR, 230)
164
165 // wxScrollbar and wxSlider event identifiers
166DECLARE_EVENT_TYPE(wxEVT_SCROLL_TOP, 300)
167DECLARE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM, 301)
168DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEUP, 302)
169DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN, 303)
170DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP, 304)
171DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN, 305)
172DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK, 306)
173DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE, 307)
174
175 // Scroll events from wxWindow
176DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP, 320)
177DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM, 321)
178DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP, 322)
179DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN, 323)
180DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP, 324)
181DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN, 325)
182DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK, 326)
183DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE, 327)
184
185 // System events
186DECLARE_EVENT_TYPE(wxEVT_SIZE, 400)
187DECLARE_EVENT_TYPE(wxEVT_MOVE, 401)
188DECLARE_EVENT_TYPE(wxEVT_CLOSE_WINDOW, 402)
189DECLARE_EVENT_TYPE(wxEVT_END_SESSION, 403)
190DECLARE_EVENT_TYPE(wxEVT_QUERY_END_SESSION, 404)
191DECLARE_EVENT_TYPE(wxEVT_ACTIVATE_APP, 405)
192DECLARE_EVENT_TYPE(wxEVT_POWER, 406)
193DECLARE_EVENT_TYPE(wxEVT_ACTIVATE, 409)
194DECLARE_EVENT_TYPE(wxEVT_CREATE, 410)
195DECLARE_EVENT_TYPE(wxEVT_DESTROY, 411)
196DECLARE_EVENT_TYPE(wxEVT_SHOW, 412)
197DECLARE_EVENT_TYPE(wxEVT_ICONIZE, 413)
198DECLARE_EVENT_TYPE(wxEVT_MAXIMIZE, 414)
199DECLARE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED, 415)
200DECLARE_EVENT_TYPE(wxEVT_PAINT, 416)
201DECLARE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND, 417)
202DECLARE_EVENT_TYPE(wxEVT_NC_PAINT, 418)
203DECLARE_EVENT_TYPE(wxEVT_PAINT_ICON, 419)
204DECLARE_EVENT_TYPE(wxEVT_MENU_CHAR, 420)
205DECLARE_EVENT_TYPE(wxEVT_MENU_INIT, 421)
206DECLARE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT, 422)
207DECLARE_EVENT_TYPE(wxEVT_POPUP_MENU_INIT, 423)
208DECLARE_EVENT_TYPE(wxEVT_CONTEXT_MENU, 424)
209DECLARE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED, 425)
210DECLARE_EVENT_TYPE(wxEVT_SETTING_CHANGED, 426)
211DECLARE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE, 427)
212DECLARE_EVENT_TYPE(wxEVT_PALETTE_CHANGED, 428)
213DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN, 429)
214DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP, 430)
215DECLARE_EVENT_TYPE(wxEVT_JOY_MOVE, 431)
216DECLARE_EVENT_TYPE(wxEVT_JOY_ZMOVE, 432)
217DECLARE_EVENT_TYPE(wxEVT_DROP_FILES, 433)
218DECLARE_EVENT_TYPE(wxEVT_DRAW_ITEM, 434)
219DECLARE_EVENT_TYPE(wxEVT_MEASURE_ITEM, 435)
220DECLARE_EVENT_TYPE(wxEVT_COMPARE_ITEM, 436)
221DECLARE_EVENT_TYPE(wxEVT_INIT_DIALOG, 437)
222DECLARE_EVENT_TYPE(wxEVT_IDLE, 438)
223DECLARE_EVENT_TYPE(wxEVT_UPDATE_UI, 439)
224
225 // System misc.
226DECLARE_EVENT_TYPE(wxEVT_END_PROCESS, 440)
227
228 // Dial up events
229DECLARE_EVENT_TYPE(wxEVT_DIALUP_CONNECTED, 450)
230DECLARE_EVENT_TYPE(wxEVT_DIALUP_DISCONNECTED, 451)
231
232 // Generic command events
233 // Note: a click is a higher-level event than button down/up
234DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK, 500)
235DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK, 501)
236DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK, 502)
237DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK, 503)
238DECLARE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS, 504)
239DECLARE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS, 505)
240DECLARE_EVENT_TYPE(wxEVT_COMMAND_ENTER, 506)
241
242 // Tree control event types
243DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_DRAG, 600)
244DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_RDRAG, 601)
245DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, 602)
246DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_LABEL_EDIT, 603)
247DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_DELETE_ITEM, 604)
248DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_GET_INFO, 605)
249DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SET_INFO, 606)
250DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDED, 607)
251DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDING, 608)
252DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSED, 609)
253DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSING, 610)
254DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGED, 611)
255DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGING, 612)
256DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_KEY_DOWN, 613)
257DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_ACTIVATED, 614)
258DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, 615)
259DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, 616)
260DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_DRAG, 617)
261
262 // List control event types
263DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG, 700)
264DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG, 701)
265DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, 702)
266DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT, 703)
267DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM, 704)
268DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, 705)
269DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO, 706)
270DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO, 707)
271DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED, 708)
272DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED, 709)
273DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN, 710)
274DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM, 711)
275DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK, 712)
276DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, 713)
277DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 714)
278DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED, 715)
279
280 // Tab and notebook control event types
23f681ec
VZ
281#if defined(__BORLANDC__) && defined(__WIN16__)
282 // For 16-bit BC++, these 2 would be identical otherwise (truncated)
283 #define wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED wxEVT_COMMAND_NB_PAGE_CHANGED
284 #define wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING wxEVT_COMMAND_NB_PAGE_CHANGING
285#endif
286
cbee8f8d
VZ
287DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGED, 800)
288DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGING, 801)
289DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 802)
290DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 803)
291
292 // Splitter events
293DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 850)
294DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 851)
295DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 852)
296DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_UNSPLIT, 853)
297
298 // Wizard events
299DECLARE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGED, 900)
300DECLARE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGING, 901)
301DECLARE_EVENT_TYPE(wxEVT_WIZARD_CANCEL, 902)
302
303 // Calendar events
304DECLARE_EVENT_TYPE(wxEVT_CALENDAR_SEL_CHANGED, 950)
305DECLARE_EVENT_TYPE(wxEVT_CALENDAR_DAY_CHANGED, 951)
306DECLARE_EVENT_TYPE(wxEVT_CALENDAR_MONTH_CHANGED, 952)
307DECLARE_EVENT_TYPE(wxEVT_CALENDAR_YEAR_CHANGED, 953)
308DECLARE_EVENT_TYPE(wxEVT_CALENDAR_DOUBLECLICKED, 954)
309DECLARE_EVENT_TYPE(wxEVT_CALENDAR_WEEKDAY_CLICKED, 955)
310
3794e8d6
VZ
311 // Help events
312DECLARE_EVENT_TYPE(wxEVT_HELP, 1050)
313DECLARE_EVENT_TYPE(wxEVT_DETAILED_HELP, 1051)
314
cbee8f8d
VZ
315DECLARE_EVENT_TYPE(wxEVT_USER_FIRST, 2000)
316
317#if WXWIN_COMPATIBILITY_EVENT_TYPES
318};
319#endif // WXWIN_COMPATIBILITY_EVENT_TYPES
96f6c703 320
cbee8f8d
VZ
321// these 2 events are the same
322#define wxEVT_COMMAND_TOOL_CLICKED wxEVT_COMMAND_MENU_SELECTED
96f6c703 323
77d4384e 324// Compatibility
c801d85f
KB
325
326#if WXWIN_COMPATIBILITY
327
328#define wxEVENT_TYPE_BUTTON_COMMAND wxEVT_COMMAND_BUTTON_CLICKED
329#define wxEVENT_TYPE_CHECKBOX_COMMAND wxEVT_COMMAND_CHECKBOX_CLICKED
330#define wxEVENT_TYPE_CHOICE_COMMAND wxEVT_COMMAND_CHOICE_SELECTED
331#define wxEVENT_TYPE_LISTBOX_COMMAND wxEVT_COMMAND_LISTBOX_SELECTED
332#define wxEVENT_TYPE_LISTBOX_DCLICK_COMMAND wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
333#define wxEVENT_TYPE_TEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
334#define wxEVENT_TYPE_MULTITEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
335#define wxEVENT_TYPE_MENU_COMMAND wxEVT_COMMAND_MENU_SELECTED
336#define wxEVENT_TYPE_SLIDER_COMMAND wxEVT_COMMAND_SLIDER_UPDATED
337#define wxEVENT_TYPE_RADIOBOX_COMMAND wxEVT_COMMAND_RADIOBOX_SELECTED
338#define wxEVENT_TYPE_RADIOBUTTON_COMMAND wxEVT_COMMAND_RADIOBUTTON_SELECTED
339#define wxEVENT_TYPE_TEXT_ENTER_COMMAND wxEVT_COMMAND_TEXT_ENTER
340#define wxEVENT_TYPE_SET_FOCUS wxEVT_SET_FOCUS
341#define wxEVENT_TYPE_KILL_FOCUS wxEVT_KILL_FOCUS
342#define wxEVENT_TYPE_SCROLLBAR_COMMAND wxEVT_COMMAND_SCROLLBAR_UPDATED
343#define wxEVENT_TYPE_VIRT_LISTBOX_COMMAND wxEVT_COMMAND_VLBOX_SELECTED
344#define wxEVENT_TYPE_COMBOBOX_COMMAND wxEVT_COMMAND_COMBOBOX_SELECTED
345
346#define wxEVENT_TYPE_LEFT_DOWN wxEVT_LEFT_DOWN
347#define wxEVENT_TYPE_LEFT_UP wxEVT_LEFT_UP
348#define wxEVENT_TYPE_MIDDLE_DOWN wxEVT_MIDDLE_DOWN
349#define wxEVENT_TYPE_MIDDLE_UP wxEVT_MIDDLE_UP
350#define wxEVENT_TYPE_RIGHT_DOWN wxEVT_RIGHT_DOWN
351#define wxEVENT_TYPE_RIGHT_UP wxEVT_RIGHT_UP
352#define wxEVENT_TYPE_MOTION wxEVT_MOTION
353#define wxEVENT_TYPE_ENTER_WINDOW wxEVT_ENTER_WINDOW
354#define wxEVENT_TYPE_LEAVE_WINDOW wxEVT_LEAVE_WINDOW
355#define wxEVENT_TYPE_LEFT_DCLICK wxEVT_LEFT_DCLICK
356#define wxEVENT_TYPE_MIDDLE_DCLICK wxEVT_MIDDLE_DCLICK
357#define wxEVENT_TYPE_RIGHT_DCLICK wxEVT_RIGHT_DCLICK
358#define wxEVENT_TYPE_CHAR wxEVT_CHAR
359#define wxEVENT_TYPE_SCROLL_TOP wxEVT_SCROLL_TOP
360#define wxEVENT_TYPE_SCROLL_BOTTOM wxEVT_SCROLL_BOTTOM
361#define wxEVENT_TYPE_SCROLL_LINEUP wxEVT_SCROLL_LINEUP
362#define wxEVENT_TYPE_SCROLL_LINEDOWN wxEVT_SCROLL_LINEDOWN
363#define wxEVENT_TYPE_SCROLL_PAGEUP wxEVT_SCROLL_PAGEUP
364#define wxEVENT_TYPE_SCROLL_PAGEDOWN wxEVT_SCROLL_PAGEDOWN
365#define wxEVENT_TYPE_SCROLL_THUMBTRACK wxEVT_SCROLL_THUMBTRACK
366
2b854a32 367#endif // WXWIN_COMPATIBILITY
c801d85f
KB
368
369/*
370 * wxWindows events, covering all interesting things that might happen
371 * (button clicking, resizing, setting text in widgets, etc.).
372 *
373 * For each completely new event type, derive a new event class.
374 * An event CLASS represents a C++ class defining a range of similar event TYPES;
375 * examples are canvas events, panel item command events.
376 * An event TYPE is a unique identifier for a particular system event,
377 * such as a button press or a listbox deselection.
378 *
379 */
380
2b854a32 381class WXDLLEXPORT wxEvent : public wxObject
c801d85f 382{
2b854a32 383 DECLARE_ABSTRACT_CLASS(wxEvent)
c801d85f
KB
384
385public:
2b854a32
VZ
386 wxEvent(int id = 0);
387 ~wxEvent() {}
388
389 void SetEventType(wxEventType typ) { m_eventType = typ; }
390 wxEventType GetEventType() const { return m_eventType; }
391 wxObject *GetEventObject() const { return m_eventObject; }
392 void SetEventObject(wxObject *obj) { m_eventObject = obj; }
393 long GetTimestamp() const { return m_timeStamp; }
394 void SetTimestamp(long ts = 0) { m_timeStamp = ts; }
395 int GetId() const { return m_id; }
396 void SetId(int Id) { m_id = Id; }
397
398 // Can instruct event processor that we wish to ignore this event
399 // (treat as if the event table entry had not been found): this must be done
400 // to allow the event processing by the base classes (calling event.Skip()
401 // is the analog of calling the base class verstion of a virtual function)
402 void Skip(bool skip = TRUE) { m_skipped = skip; }
403 bool GetSkipped() const { return m_skipped; };
c801d85f 404
193bf013
VZ
405 // implementation only: this test is explicitlty anti OO and this functions
406 // exists only for optimization purposes
407 bool IsCommandEvent() const { return m_isCommandEvent; }
408
aadbdf11 409 void CopyObject(wxObject& object_dest) const;
a737331d 410
c801d85f 411public:
2b854a32 412 wxObject* m_eventObject;
2b854a32
VZ
413 wxEventType m_eventType;
414 long m_timeStamp;
415 int m_id;
416 wxObject* m_callbackUserData;
42e69d6b 417 bool m_skipped;
193bf013
VZ
418
419 // optimization: instead of using costly IsKindOf() we keep a flag telling
420 // whether we're a command event (by far the most common case)
421 bool m_isCommandEvent;
c801d85f
KB
422};
423
e90c1d2a
VZ
424#if wxUSE_GUI
425
c801d85f
KB
426// Item or menu event class
427/*
428 wxEVT_COMMAND_BUTTON_CLICKED
429 wxEVT_COMMAND_CHECKBOX_CLICKED
430 wxEVT_COMMAND_CHOICE_SELECTED
431 wxEVT_COMMAND_LISTBOX_SELECTED
432 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
433 wxEVT_COMMAND_TEXT_UPDATED
434 wxEVT_COMMAND_TEXT_ENTER
435 wxEVT_COMMAND_MENU_SELECTED
436 wxEVT_COMMAND_SLIDER_UPDATED
437 wxEVT_COMMAND_RADIOBOX_SELECTED
438 wxEVT_COMMAND_RADIOBUTTON_SELECTED
439 wxEVT_COMMAND_SCROLLBAR_UPDATED
440 wxEVT_COMMAND_VLBOX_SELECTED
441 wxEVT_COMMAND_COMBOBOX_SELECTED
442*/
443
2b854a32 444class WXDLLEXPORT wxCommandEvent : public wxEvent
c801d85f 445{
2b854a32 446 DECLARE_DYNAMIC_CLASS(wxCommandEvent)
c801d85f 447
2b854a32
VZ
448public:
449 wxCommandEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
450 ~wxCommandEvent() {}
c801d85f 451
2b854a32
VZ
452 /*
453 * Accessors dependent on context
454 *
455 */
c801d85f 456
2b854a32
VZ
457 // Set/Get client data from controls
458 void SetClientData(void* clientData) { m_clientData = clientData; }
459 void *GetClientData() const { return m_clientData; }
c801d85f 460
2b854a32
VZ
461 // Set/Get client object from controls
462 void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; }
463 void *GetClientObject() const { return m_clientObject; }
f5e27805 464
2b854a32
VZ
465 // Get listbox selection if single-choice
466 int GetSelection() const { return m_commandInt; }
c801d85f 467
2b854a32 468 // Set/Get listbox/choice selection string
29006414 469 void SetString(const wxString& s) { m_commandString = s; }
7214297d 470 wxString GetString() const { return m_commandString; }
c801d85f 471
2b854a32 472 // Get checkbox value
3ca6a5f0 473 bool IsChecked() const { return m_commandInt != 0; }
c801d85f 474
2b854a32
VZ
475 // TRUE if the listbox event was a selection.
476 bool IsSelection() const { return (m_extraLong != 0); }
c801d85f 477
2b854a32
VZ
478 void SetExtraLong(long extraLong) { m_extraLong = extraLong; }
479 long GetExtraLong() const { return m_extraLong ; }
c801d85f 480
2b854a32
VZ
481 void SetInt(int i) { m_commandInt = i; }
482 long GetInt() const { return m_commandInt ; }
c801d85f 483
aadbdf11
GL
484 void CopyObject(wxObject& obj) const;
485
3ca6a5f0
BP
486#ifdef WXWIN_COMPATIBILITY_2
487 bool Checked() const { return IsChecked(); }
488#endif // WXWIN_COMPATIBILITY_2
489
2b854a32 490public:
29006414 491 wxString m_commandString; // String event argument
2b854a32
VZ
492 int m_commandInt;
493 long m_extraLong; // Additional information (e.g. select/deselect)
494 void* m_clientData; // Arbitrary client data
495 wxClientData* m_clientObject; // Arbitrary client object
c801d85f
KB
496};
497
fd3f686c
VZ
498// this class adds a possibility to react (from the user) code to a control
499// notification: allow or veto the operation being reported.
2b854a32 500class WXDLLEXPORT wxNotifyEvent : public wxCommandEvent
fd3f686c
VZ
501{
502public:
503 wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int id = 0)
504 : wxCommandEvent(commandType, id) { m_bAllow = TRUE; }
505
23f681ec 506 // veto the operation (usually it's allowed by default)
fd3f686c
VZ
507 void Veto() { m_bAllow = FALSE; }
508
23f681ec
VZ
509 // allow the operation if it was disabled by default
510 void Allow() { m_bAllow = TRUE; }
511
fd3f686c
VZ
512 // for implementation code only: is the operation allowed?
513 bool IsAllowed() const { return m_bAllow; }
514
924ef850
RR
515 // probably useless: CopyObject() is used for deferred event
516 // handling but wxNotifyEvent must be processed immediately
517 void CopyObject(wxObject& obj) const;
518
fd3f686c
VZ
519private:
520 bool m_bAllow;
521
92976ab6 522 DECLARE_DYNAMIC_CLASS(wxNotifyEvent)
fd3f686c
VZ
523};
524
d1367c3d
RR
525// Scroll event class, derived form wxCommandEvent. wxScrollEvents are
526// sent by wxSlider and wxScrollbar.
c801d85f
KB
527/*
528 wxEVT_SCROLL_TOP
529 wxEVT_SCROLL_BOTTOM
530 wxEVT_SCROLL_LINEUP
531 wxEVT_SCROLL_LINEDOWN
532 wxEVT_SCROLL_PAGEUP
533 wxEVT_SCROLL_PAGEDOWN
534 wxEVT_SCROLL_THUMBTRACK
7d56fb8f 535 wxEVT_SCROLL_THUMBRELEASE
c801d85f
KB
536*/
537
2b854a32 538class WXDLLEXPORT wxScrollEvent : public wxCommandEvent
c801d85f 539{
2b854a32 540 DECLARE_DYNAMIC_CLASS(wxScrollEvent)
c801d85f 541
2b854a32
VZ
542public:
543 wxScrollEvent(wxEventType commandType = wxEVT_NULL,
544 int id = 0, int pos = 0, int orient = 0);
545 ~wxScrollEvent() {}
546
547 /*
548 * Accessors
549 *
550 */
551
552 int GetOrientation() const { return (int) m_extraLong ; }
553 int GetPosition() const { return m_commandInt ; }
554 void SetOrientation(int orient) { m_extraLong = (long) orient; }
555 void SetPosition(int pos) { m_commandInt = pos; }
c801d85f
KB
556};
557
d1367c3d
RR
558// ScrollWin event class, derived fom wxEvent. wxScrollWinEvents
559// are sent by wxWindow.
560/*
561 wxEVT_SCROLLWIN_TOP
562 wxEVT_SCROLLWIN_BOTTOM
563 wxEVT_SCROLLWIN_LINEUP
564 wxEVT_SCROLLWIN_LINEDOWN
565 wxEVT_SCROLLWIN_PAGEUP
566 wxEVT_SCROLLWIN_PAGEDOWN
567 wxEVT_SCROLLWIN_THUMBTRACK
7d56fb8f 568 wxEVT_SCROLLWIN_THUMBRELEASE
d1367c3d
RR
569*/
570
571class WXDLLEXPORT wxScrollWinEvent : public wxEvent
572{
573 DECLARE_DYNAMIC_CLASS(wxScrollWinEvent)
574
575public:
576 wxScrollWinEvent(wxEventType commandType = wxEVT_NULL,
577 int pos = 0, int orient = 0);
578 ~wxScrollWinEvent() {}
579
580 /*
581 * Accessors
582 */
583
584 int GetOrientation() const { return (int) m_extraLong ; }
585 int GetPosition() const { return m_commandInt ; }
586 void SetOrientation(int orient) { m_extraLong = (long) orient; }
587 void SetPosition(int pos) { m_commandInt = pos; }
588
3c679789 589 void CopyObject(wxObject& object_dest) const;
d1367c3d
RR
590public:
591 int m_commandInt; // Additional information
20947e08 592 long m_extraLong;
d1367c3d
RR
593};
594
c801d85f
KB
595// Mouse event class
596
597/*
598 wxEVT_LEFT_DOWN
599 wxEVT_LEFT_UP
600 wxEVT_MIDDLE_DOWN
601 wxEVT_MIDDLE_UP
602 wxEVT_RIGHT_DOWN
603 wxEVT_RIGHT_UP
604 wxEVT_MOTION
605 wxEVT_ENTER_WINDOW
606 wxEVT_LEAVE_WINDOW
607 wxEVT_LEFT_DCLICK
608 wxEVT_MIDDLE_DCLICK
609 wxEVT_RIGHT_DCLICK
610 wxEVT_NC_LEFT_DOWN
611 wxEVT_NC_LEFT_UP,
612 wxEVT_NC_MIDDLE_DOWN,
613 wxEVT_NC_MIDDLE_UP,
614 wxEVT_NC_RIGHT_DOWN,
615 wxEVT_NC_RIGHT_UP,
616 wxEVT_NC_MOTION,
617 wxEVT_NC_ENTER_WINDOW,
618 wxEVT_NC_LEAVE_WINDOW,
619 wxEVT_NC_LEFT_DCLICK,
620 wxEVT_NC_MIDDLE_DCLICK,
621 wxEVT_NC_RIGHT_DCLICK,
622*/
623
2b854a32 624class WXDLLEXPORT wxMouseEvent : public wxEvent
c801d85f 625{
2b854a32 626 DECLARE_DYNAMIC_CLASS(wxMouseEvent)
c801d85f 627
2b854a32
VZ
628public:
629 wxMouseEvent(wxEventType mouseType = wxEVT_NULL);
c801d85f 630
2b854a32
VZ
631 // Was it a button event? (*doesn't* mean: is any button *down*?)
632 bool IsButton() const { return Button(-1); }
c801d85f 633
2b854a32
VZ
634 // Was it a down event from button 1, 2 or 3 or any?
635 bool ButtonDown(int but = -1) const;
c801d85f 636
2b854a32
VZ
637 // Was it a dclick event from button 1, 2 or 3 or any?
638 bool ButtonDClick(int but = -1) const;
c801d85f 639
2b854a32
VZ
640 // Was it a up event from button 1, 2 or 3 or any?
641 bool ButtonUp(int but = -1) const;
c801d85f 642
2b854a32
VZ
643 // Was the given button 1,2,3 or any changing state?
644 bool Button(int but) const;
c801d85f 645
2b854a32
VZ
646 // Was the given button 1,2,3 or any in Down state?
647 bool ButtonIsDown(int but) const;
c801d85f 648
2b854a32
VZ
649 // Find state of shift/control keys
650 bool ControlDown() const { return m_controlDown; }
651 bool MetaDown() const { return m_metaDown; }
652 bool AltDown() const { return m_altDown; }
653 bool ShiftDown() const { return m_shiftDown; }
c801d85f 654
2b854a32
VZ
655 // Find which event was just generated
656 bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); }
657 bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); }
658 bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); }
c801d85f 659
2b854a32
VZ
660 bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); }
661 bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); }
662 bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); }
c801d85f 663
2b854a32
VZ
664 bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); }
665 bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); }
666 bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); }
c801d85f 667
2b854a32
VZ
668 // Find the current state of the mouse buttons (regardless
669 // of current event type)
670 bool LeftIsDown() const { return m_leftDown; }
671 bool MiddleIsDown() const { return m_middleDown; }
672 bool RightIsDown() const { return m_rightDown; }
c801d85f 673
2b854a32
VZ
674 // True if a button is down and the mouse is moving
675 bool Dragging() const
676 {
677 return ((m_eventType == wxEVT_MOTION) &&
678 (LeftIsDown() || MiddleIsDown() || RightIsDown()));
679 }
c801d85f 680
2b854a32
VZ
681 // True if the mouse is moving, and no button is down
682 bool Moving() const { return (m_eventType == wxEVT_MOTION); }
c801d85f 683
2b854a32
VZ
684 // True if the mouse is just entering the window
685 bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); }
c801d85f 686
2b854a32
VZ
687 // True if the mouse is just leaving the window
688 bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); }
c801d85f 689
2b854a32 690 // Find the position of the event
20947e08 691 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
b02da6b1
VZ
692 {
693 if (xpos)
20947e08 694 *xpos = m_x;
b02da6b1
VZ
695 if (ypos)
696 *ypos = m_y;
697 }
698
0e528b99 699#ifndef __WIN16__
bf57d1ad 700 void GetPosition(long *xpos, long *ypos) const
b02da6b1
VZ
701 {
702 if (xpos)
20947e08 703 *xpos = (long)m_x;
b02da6b1 704 if (ypos)
bf57d1ad 705 *ypos = (long)m_y;
b02da6b1 706 }
0e528b99 707#endif
c801d85f 708
2b854a32
VZ
709 // Find the position of the event
710 wxPoint GetPosition() const { return wxPoint(m_x, m_y); }
c801d85f 711
2b854a32
VZ
712 // Find the logical position of the event given the DC
713 wxPoint GetLogicalPosition(const wxDC& dc) const ;
c801d85f 714
2b854a32
VZ
715 // Compatibility
716#if WXWIN_COMPATIBILITY
20947e08 717 void Position(long *xpos, long *ypos) const
b02da6b1
VZ
718 {
719 if (xpos)
20947e08 720 *xpos = (long)m_x;
b02da6b1
VZ
721 if (ypos)
722 *ypos = (long)m_y;
723 }
724
2b854a32
VZ
725 void Position(float *xpos, float *ypos) const
726 {
727 *xpos = (float) m_x; *ypos = (float) m_y;
728 }
729#endif // WXWIN_COMPATIBILITY
c801d85f 730
2b854a32 731 // Get X position
6cedba09 732 wxCoord GetX() const { return m_x; }
c801d85f 733
2b854a32 734 // Get Y position
6cedba09 735 wxCoord GetY() const { return m_y; }
c801d85f 736
aadbdf11
GL
737 void CopyObject(wxObject& obj) const;
738
c801d85f 739public:
b02da6b1
VZ
740 wxCoord m_x, m_y;
741
2b854a32
VZ
742 bool m_leftDown;
743 bool m_middleDown;
744 bool m_rightDown;
745
746 bool m_controlDown;
747 bool m_shiftDown;
748 bool m_altDown;
749 bool m_metaDown;
c801d85f
KB
750};
751
43b5058d
VZ
752// Cursor set event
753
754/*
755 wxEVT_SET_CURSOR
756 */
757
758class WXDLLEXPORT wxSetCursorEvent : public wxEvent
759{
760public:
761 wxSetCursorEvent(wxCoord x, wxCoord y)
762 {
763 m_eventType = wxEVT_SET_CURSOR;
764
765 m_x = x;
766 m_y = y;
767 }
768
769 wxCoord GetX() const { return m_x; }
770 wxCoord GetY() const { return m_y; }
771
772 void SetCursor(const wxCursor& cursor) { m_cursor = cursor; }
773 const wxCursor& GetCursor() const { return m_cursor; }
774 bool HasCursor() const { return m_cursor.Ok(); }
775
776private:
777 wxCoord m_x, m_y;
778 wxCursor m_cursor;
779};
780
c801d85f
KB
781// Keyboard input event class
782
783/*
784 wxEVT_CHAR
785 wxEVT_CHAR_HOOK
4ce81a75 786 wxEVT_KEY_DOWN
c801d85f
KB
787 wxEVT_KEY_UP
788 */
789
2b854a32 790class WXDLLEXPORT wxKeyEvent : public wxEvent
c801d85f 791{
2b854a32 792 DECLARE_DYNAMIC_CLASS(wxKeyEvent)
c801d85f
KB
793
794public:
2b854a32 795 wxKeyEvent(wxEventType keyType = wxEVT_NULL);
c801d85f 796
2b854a32
VZ
797 // Find state of shift/control keys
798 bool ControlDown() const { return m_controlDown; }
799 bool MetaDown() const { return m_metaDown; }
800 bool AltDown() const { return m_altDown; }
801 bool ShiftDown() const { return m_shiftDown; }
f6bcfd97
BP
802
803 bool HasModifiers() const { return ControlDown() || AltDown() || MetaDown(); }
804
805 // get the key code: an ASCII7 char or an element of wxKeyCode enum
806 int GetKeyCode() const { return (int)m_keyCode; }
c801d85f 807
2b854a32 808 // Find the position of the event
b02da6b1
VZ
809 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
810 {
20947e08 811 if (xpos) *xpos = m_x;
b02da6b1
VZ
812 if (ypos) *ypos = m_y;
813 }
814
0e528b99 815#ifndef __WIN16__
bf57d1ad 816 void GetPosition(long *xpos, long *ypos) const
b02da6b1 817 {
20947e08 818 if (xpos) *xpos = (long)m_x;
bf57d1ad 819 if (ypos) *ypos = (long)m_y;
b02da6b1 820 }
0e528b99 821#endif
803ef874
JS
822
823 wxPoint GetPosition() const
824 { return wxPoint(m_x, m_y); }
c801d85f 825
2b854a32 826 // Get X position
b02da6b1 827 wxCoord GetX() const { return m_x; }
c801d85f 828
2b854a32 829 // Get Y position
b02da6b1 830 wxCoord GetY() const { return m_y; }
c801d85f 831
aadbdf11
GL
832 void CopyObject(wxObject& obj) const;
833
f6bcfd97
BP
834 // deprecated
835 long KeyCode() const { return m_keyCode; }
836
2b854a32 837public:
b02da6b1
VZ
838 wxCoord m_x, m_y;
839
2b854a32 840 long m_keyCode;
b02da6b1 841
2b854a32
VZ
842 bool m_controlDown;
843 bool m_shiftDown;
844 bool m_altDown;
845 bool m_metaDown;
b0e813a0 846 bool m_scanCode;
c801d85f
KB
847};
848
849// Size event class
850/*
851 wxEVT_SIZE
852 */
853
2b854a32 854class WXDLLEXPORT wxSizeEvent : public wxEvent
c801d85f 855{
2b854a32 856 DECLARE_DYNAMIC_CLASS(wxSizeEvent)
c801d85f 857
2b854a32
VZ
858public:
859 wxSize m_size;
c801d85f 860
2b854a32
VZ
861 wxSizeEvent() { m_eventType = wxEVT_SIZE; }
862 wxSizeEvent(const wxSize& sz, int id = 0)
863 : m_size(sz)
864 { m_eventType = wxEVT_SIZE; m_id = id; }
c801d85f 865
2b854a32 866 wxSize GetSize() const { return m_size; }
aadbdf11
GL
867
868 void CopyObject(wxObject& obj) const;
c801d85f
KB
869};
870
871// Move event class
872
873/*
874 wxEVT_MOVE
875 */
876
2b854a32 877class WXDLLEXPORT wxMoveEvent : public wxEvent
c801d85f 878{
2b854a32 879 DECLARE_DYNAMIC_CLASS(wxMoveEvent)
c801d85f 880
2b854a32
VZ
881public:
882 wxPoint m_pos;
c801d85f 883
2b854a32
VZ
884 wxMoveEvent() { m_eventType = wxEVT_MOVE; }
885 wxMoveEvent(const wxPoint& pos, int id = 0)
886 : m_pos(pos)
887 { m_eventType = wxEVT_MOVE; m_id = id; }
c801d85f 888
2b854a32 889 wxPoint GetPosition() const { return m_pos; }
aadbdf11
GL
890
891 void CopyObject(wxObject& obj) const;
c801d85f
KB
892};
893
894// Paint event class
895/*
896 wxEVT_PAINT
897 wxEVT_NC_PAINT
898 wxEVT_PAINT_ICON
899 */
900
b078fa02
JS
901#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
902 // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined
98243fed 903 extern WXDLLEXPORT int g_isPainting;
edccf428
VZ
904#endif // debug
905
2b854a32 906class WXDLLEXPORT wxPaintEvent : public wxEvent
c801d85f 907{
2b854a32 908 DECLARE_DYNAMIC_CLASS(wxPaintEvent)
c801d85f 909
2b854a32 910public:
edccf428
VZ
911 wxPaintEvent(int Id = 0)
912 {
913 m_eventType = wxEVT_PAINT;
914 m_id = Id;
915
b078fa02 916#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
edccf428
VZ
917 // set the internal flag for the duration of processing of WM_PAINT
918 g_isPainting++;
919#endif // debug
920 }
921
b078fa02 922#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
edccf428
VZ
923 ~wxPaintEvent()
924 {
925 g_isPainting--;
926 }
927#endif // debug
c801d85f
KB
928};
929
930// Erase background event class
931/*
932 wxEVT_ERASE_BACKGROUND
933 */
934
2b854a32 935class WXDLLEXPORT wxEraseEvent : public wxEvent
c801d85f 936{
2b854a32
VZ
937 DECLARE_DYNAMIC_CLASS(wxEraseEvent)
938
939public:
940 wxDC *m_dc;
941
942 wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL)
943 { m_eventType = wxEVT_ERASE_BACKGROUND; m_id = Id; m_dc = dc; }
944 wxDC *GetDC() const { return m_dc; }
aadbdf11
GL
945
946 void CopyObject(wxObject& obj) const;
c801d85f
KB
947};
948
949// Focus event class
950/*
951 wxEVT_SET_FOCUS
952 wxEVT_KILL_FOCUS
953 */
954
2b854a32 955class WXDLLEXPORT wxFocusEvent : public wxEvent
c801d85f 956{
2b854a32 957 DECLARE_DYNAMIC_CLASS(wxFocusEvent)
c801d85f 958
2b854a32
VZ
959public:
960 wxFocusEvent(wxEventType type = wxEVT_NULL, int Id = 0)
961 { m_eventType = type; m_id = Id; }
c801d85f
KB
962};
963
964// Activate event class
965/*
966 wxEVT_ACTIVATE
967 wxEVT_ACTIVATE_APP
968 */
969
2b854a32 970class WXDLLEXPORT wxActivateEvent : public wxEvent
c801d85f 971{
2b854a32
VZ
972 DECLARE_DYNAMIC_CLASS(wxActivateEvent)
973
974public:
975 wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0)
976 { m_eventType = type; m_active = active; m_id = Id; }
977 bool GetActive() const { return m_active; }
c801d85f 978
aadbdf11
GL
979 void CopyObject(wxObject& obj) const;
980
2b854a32
VZ
981private:
982 bool m_active;
c801d85f
KB
983};
984
985// InitDialog event class
986/*
987 wxEVT_INIT_DIALOG
988 */
989
2b854a32 990class WXDLLEXPORT wxInitDialogEvent : public wxEvent
c801d85f 991{
2b854a32 992 DECLARE_DYNAMIC_CLASS(wxInitDialogEvent)
c801d85f 993
2b854a32
VZ
994public:
995 wxInitDialogEvent(int Id = 0)
996 { m_eventType = wxEVT_INIT_DIALOG; m_id = Id; }
c801d85f
KB
997};
998
999// Miscellaneous menu event class
1000/*
1001 wxEVT_MENU_CHAR,
1002 wxEVT_MENU_INIT,
1003 wxEVT_MENU_HIGHLIGHT,
1004 wxEVT_POPUP_MENU_INIT,
1005 wxEVT_CONTEXT_MENU,
1006*/
1007
2b854a32 1008class WXDLLEXPORT wxMenuEvent : public wxEvent
c801d85f 1009{
2b854a32 1010 DECLARE_DYNAMIC_CLASS(wxMenuEvent)
c801d85f
KB
1011
1012public:
aadbdf11
GL
1013 wxMenuEvent(wxEventType type = wxEVT_NULL, int id = 0)
1014 { m_eventType = type; m_menuId = id; }
c801d85f 1015
aadbdf11 1016 int GetMenuId() const { return m_menuId; }
c801d85f 1017
aadbdf11 1018 void CopyObject(wxObject& obj) const;
2b854a32 1019private:
aadbdf11 1020 int m_menuId;
c801d85f
KB
1021};
1022
1023// Window close or session close event class
1024/*
1025 wxEVT_CLOSE_WINDOW,
1026 wxEVT_END_SESSION,
1027 wxEVT_QUERY_END_SESSION
1028 */
1029
2b854a32 1030class WXDLLEXPORT wxCloseEvent : public wxEvent
c801d85f 1031{
2b854a32
VZ
1032 DECLARE_DYNAMIC_CLASS(wxCloseEvent)
1033
c801d85f 1034public:
2b854a32
VZ
1035 wxCloseEvent(wxEventType type = wxEVT_NULL, int id = 0)
1036 {
1037 m_eventType = type;
1038 m_loggingOff = TRUE;
1039 m_veto = FALSE; // should be FALSE by default
1040 m_id = id;
1041#if WXWIN_COMPATIBILITY
1042 m_force = FALSE;
1043#endif // WXWIN_COMPATIBILITY
1044 m_canVeto = TRUE;
1045 }
1046
1047 void SetLoggingOff(bool logOff) { m_loggingOff = logOff; }
1048 bool GetLoggingOff() const { return m_loggingOff; }
1049
fe4e9e6c
VZ
1050 void Veto(bool veto = TRUE)
1051 {
1052 // GetVeto() will return FALSE anyhow...
1053 wxCHECK_RET( m_canVeto,
223d09f6 1054 wxT("call to Veto() ignored (can't veto this event)") );
fe4e9e6c
VZ
1055
1056 m_veto = veto;
1057 }
2b854a32 1058 void SetCanVeto(bool canVeto) { m_canVeto = canVeto; }
e3065973 1059 // No more asserts here please, the one you put here was wrong.
2b854a32 1060 bool CanVeto() const { return m_canVeto; }
fe4e9e6c 1061 bool GetVeto() const { return m_canVeto && m_veto; }
c801d85f 1062
2b854a32
VZ
1063#if WXWIN_COMPATIBILITY
1064 // This is probably obsolete now, since we use CanVeto instead, in
1065 // both OnCloseWindow and OnQueryEndSession.
1066 // m_force == ! m_canVeto i.e., can't veto means we must force it to close.
1067 void SetForce(bool force) { m_force = force; }
1068 bool GetForce() const { return m_force; }
1069#endif
1070
aadbdf11
GL
1071 void CopyObject(wxObject& obj) const;
1072
2b854a32
VZ
1073protected:
1074 bool m_loggingOff;
1075 bool m_veto, m_canVeto;
1076
1077#if WXWIN_COMPATIBILITY
1078 bool m_force;
1079#endif
c801d85f
KB
1080};
1081
1082/*
1083 wxEVT_SHOW
1084 */
1085
2b854a32 1086class WXDLLEXPORT wxShowEvent : public wxEvent
c801d85f 1087{
2b854a32
VZ
1088 DECLARE_DYNAMIC_CLASS(wxShowEvent)
1089
c801d85f
KB
1090public:
1091
2b854a32
VZ
1092 wxShowEvent(int id = 0, bool show = FALSE)
1093 { m_eventType = wxEVT_SHOW; m_id = id; m_show = show; }
c801d85f 1094
2b854a32
VZ
1095 void SetShow(bool show) { m_show = show; }
1096 bool GetShow() const { return m_show; }
c801d85f 1097
aadbdf11
GL
1098 void CopyObject(wxObject& obj) const;
1099
c801d85f 1100protected:
2b854a32 1101 bool m_show;
c801d85f
KB
1102};
1103
1104/*
1105 wxEVT_ICONIZE
1106 */
1107
2b854a32 1108class WXDLLEXPORT wxIconizeEvent : public wxEvent
c801d85f 1109{
2b854a32 1110 DECLARE_DYNAMIC_CLASS(wxIconizeEvent)
c801d85f 1111
2b854a32
VZ
1112public:
1113 wxIconizeEvent(int id = 0)
1114 { m_eventType = wxEVT_ICONIZE; m_id = id; }
c801d85f
KB
1115};
1116
1117/*
1118 wxEVT_MAXIMIZE
1119 */
1120
2b854a32 1121class WXDLLEXPORT wxMaximizeEvent : public wxEvent
c801d85f 1122{
2b854a32 1123 DECLARE_DYNAMIC_CLASS(wxMaximizeEvent)
c801d85f 1124
2b854a32
VZ
1125public:
1126 wxMaximizeEvent(int id = 0)
1127 { m_eventType = wxEVT_MAXIMIZE; m_id = id; }
c801d85f
KB
1128};
1129
1130// Joystick event class
1131/*
1132 wxEVT_JOY_BUTTON_DOWN,
1133 wxEVT_JOY_BUTTON_UP,
1134 wxEVT_JOY_MOVE,
1135 wxEVT_JOY_ZMOVE
1136*/
1137
1138// Which joystick? Same as Windows ids so no conversion necessary.
1139#define wxJOYSTICK1 0
1140#define wxJOYSTICK2 1
1141
1142// Which button is down?
1143#define wxJOY_BUTTON1 1
1144#define wxJOY_BUTTON2 2
1145#define wxJOY_BUTTON3 4
1146#define wxJOY_BUTTON4 8
1147#define wxJOY_BUTTON_ANY -1
1148
2b854a32 1149class WXDLLEXPORT wxJoystickEvent : public wxEvent
c801d85f 1150{
2b854a32
VZ
1151 DECLARE_DYNAMIC_CLASS(wxJoystickEvent)
1152
1153public:
1154 wxPoint m_pos;
1155 int m_zPosition;
1156 int m_buttonChange; // Which button changed?
1157 int m_buttonState; // Which buttons are down?
1158 int m_joyStick; // Which joystick?
1159
1160 wxJoystickEvent(wxEventType type = wxEVT_NULL,
1161 int state = 0,
1162 int joystick = wxJOYSTICK1,
1163 int change = 0)
1164 {
1165 m_eventType = type;
1166 m_buttonState = state;
1167 m_pos = wxPoint(0,0);
1168 m_zPosition = 0;
1169 m_joyStick = joystick;
1170 m_buttonChange = change;
1171 }
1172
1173 wxPoint GetPosition() const { return m_pos; }
1174 int GetZPosition() const { return m_zPosition; }
1175 int GetButtonState() const { return m_buttonState; }
1176 int GetButtonChange() const { return m_buttonChange; }
1177 int GetJoystick() const { return m_joyStick; }
1178
1179 void SetJoystick(int stick) { m_joyStick = stick; }
1180 void SetButtonState(int state) { m_buttonState = state; }
1181 void SetButtonChange(int change) { m_buttonChange = change; }
1182 void SetPosition(const wxPoint& pos) { m_pos = pos; }
1183 void SetZPosition(int zPos) { m_zPosition = zPos; }
1184
1185 // Was it a button event? (*doesn't* mean: is any button *down*?)
1186 bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) ||
b70ababc 1187 (GetEventType() == wxEVT_JOY_BUTTON_UP)); }
2b854a32
VZ
1188
1189 // Was it a move event?
1190 bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE) ; }
1191
1192 // Was it a zmove event?
1193 bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE) ; }
1194
1195 // Was it a down event from button 1, 2, 3, 4 or any?
1196 bool ButtonDown(int but = wxJOY_BUTTON_ANY) const
c801d85f 1197 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) &&
2b854a32 1198 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
c801d85f 1199
2b854a32
VZ
1200 // Was it a up event from button 1, 2, 3 or any?
1201 bool ButtonUp(int but = wxJOY_BUTTON_ANY) const
c801d85f 1202 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) &&
2b854a32 1203 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
c801d85f 1204
2b854a32
VZ
1205 // Was the given button 1,2,3,4 or any in Down state?
1206 bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const
c801d85f 1207 { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) ||
2b854a32 1208 ((m_buttonState & but) == but)); }
f305c661
GL
1209
1210 void CopyObject(wxObject& obj) const;
c801d85f
KB
1211};
1212
1213// Drop files event class
1214/*
1215 wxEVT_DROP_FILES
1216 */
1217
2b854a32 1218class WXDLLEXPORT wxDropFilesEvent : public wxEvent
c801d85f 1219{
2b854a32 1220 DECLARE_DYNAMIC_CLASS(wxDropFilesEvent)
c801d85f 1221
2b854a32
VZ
1222public:
1223 int m_noFiles;
1224 wxPoint m_pos;
1225 wxString* m_files; // Memory (de)allocated by code calling ProcessEvent
1226
1227 wxDropFilesEvent(wxEventType type = wxEVT_NULL,
1228 int noFiles = 0,
1229 wxString *files = (wxString *) NULL)
1230 { m_eventType = type; m_noFiles = noFiles; m_files = files; }
1231
1232 wxPoint GetPosition() const { return m_pos; }
1233 int GetNumberOfFiles() const { return m_noFiles; }
1234 wxString *GetFiles() const { return m_files; }
f305c661
GL
1235
1236 void CopyObject(wxObject& obj) const;
c801d85f
KB
1237};
1238
c801d85f
KB
1239// Update UI event
1240/*
1241 wxEVT_UPDATE_UI
1242 */
1243
2b854a32 1244class WXDLLEXPORT wxUpdateUIEvent : public wxCommandEvent
c801d85f 1245{
2b854a32 1246 DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent)
c801d85f 1247
2b854a32
VZ
1248public:
1249 wxUpdateUIEvent(wxWindowID commandId = 0)
1250 {
1251 m_eventType = wxEVT_UPDATE_UI;
1252 m_id = commandId;
1253 m_checked = FALSE;
1254 m_setChecked = FALSE;
1255 m_enabled = FALSE;
1256 m_setEnabled = FALSE;
1257 m_setText = FALSE;
1258 m_text = "";
1259 }
1260
1261 bool GetChecked() const { return m_checked; }
1262 bool GetEnabled() const { return m_enabled; }
1263 wxString GetText() const { return m_text; }
1264 bool GetSetText() const { return m_setText; }
1265 bool GetSetChecked() const { return m_setChecked; }
1266 bool GetSetEnabled() const { return m_setEnabled; }
1267
1268 void Check(bool check) { m_checked = check; m_setChecked = TRUE; }
1269 void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; }
1270 void SetText(const wxString& text) { m_text = text; m_setText = TRUE; }
c801d85f 1271
f305c661
GL
1272 void CopyObject(wxObject& obj) const;
1273
2b854a32
VZ
1274protected:
1275 bool m_checked;
1276 bool m_enabled;
1277 bool m_setEnabled;
1278 bool m_setText;
1279 bool m_setChecked;
1280 wxString m_text;
c801d85f
KB
1281};
1282
1283/*
1284 wxEVT_SYS_COLOUR_CHANGED
1285 */
1286
1287// TODO: shouldn't all events record the window ID?
2b854a32 1288class WXDLLEXPORT wxSysColourChangedEvent : public wxEvent
c801d85f 1289{
2b854a32 1290 DECLARE_DYNAMIC_CLASS(wxSysColourChangedEvent)
c801d85f 1291
2b854a32
VZ
1292public:
1293 wxSysColourChangedEvent()
1294 { m_eventType = wxEVT_SYS_COLOUR_CHANGED; }
c801d85f
KB
1295};
1296
f7bd2698
JS
1297/*
1298 wxEVT_PALETTE_CHANGED
1299 */
1300
2b854a32 1301class WXDLLEXPORT wxPaletteChangedEvent : public wxEvent
f7bd2698 1302{
2b854a32 1303 DECLARE_DYNAMIC_CLASS(wxPaletteChangedEvent)
f7bd2698
JS
1304
1305public:
2b854a32
VZ
1306 wxPaletteChangedEvent(wxWindowID id = 0) : wxEvent(id)
1307 {
1308 m_eventType = wxEVT_PALETTE_CHANGED;
1309 m_changedWindow = (wxWindow *) NULL;
1310 }
f7bd2698 1311
2b854a32
VZ
1312 void SetChangedWindow(wxWindow* win) { m_changedWindow = win; }
1313 wxWindow* GetChangedWindow() const { return m_changedWindow; }
f7bd2698 1314
f305c661
GL
1315 void CopyObject(wxObject& obj) const;
1316
f7bd2698 1317protected:
2b854a32 1318 wxWindow* m_changedWindow;
f7bd2698
JS
1319};
1320
1321/*
1322 wxEVT_QUERY_NEW_PALETTE
1323 Indicates the window is getting keyboard focus and should re-do its palette.
1324 */
1325
2b854a32 1326class WXDLLEXPORT wxQueryNewPaletteEvent : public wxEvent
f7bd2698 1327{
2b854a32 1328 DECLARE_DYNAMIC_CLASS(wxQueryNewPaletteEvent)
f7bd2698
JS
1329
1330public:
2b854a32
VZ
1331 wxQueryNewPaletteEvent(wxWindowID id = 0): wxEvent(id)
1332 { m_eventType = wxEVT_QUERY_NEW_PALETTE; m_paletteRealized = FALSE; }
f7bd2698 1333
2b854a32
VZ
1334 // App sets this if it changes the palette.
1335 void SetPaletteRealized(bool realized) { m_paletteRealized = realized; }
1336 bool GetPaletteRealized() const { return m_paletteRealized; }
f7bd2698 1337
f305c661
GL
1338 void CopyObject(wxObject& obj) const;
1339
f7bd2698 1340protected:
2b854a32 1341 bool m_paletteRealized;
f7bd2698
JS
1342};
1343
7fdefd57
VZ
1344/*
1345 Event generated by dialog navigation keys
1346 wxEVT_NAVIGATION_KEY
1347 */
d9506e77
VZ
1348// NB: don't derive from command event to avoid being propagated to the parent
1349class WXDLLEXPORT wxNavigationKeyEvent : public wxEvent
7fdefd57 1350{
7fdefd57 1351public:
d9506e77
VZ
1352 wxNavigationKeyEvent()
1353 {
1354 SetEventType(wxEVT_NAVIGATION_KEY);
1355
1356 m_flags = IsForward | Propagate; // defaults are for TAB
1357 m_focus = (wxWindow *)NULL;
1358 }
7fdefd57 1359
2b854a32 1360 // direction: forward (true) or backward (false)
d9506e77
VZ
1361 bool GetDirection() const
1362 { return (m_flags & IsForward) != 0; }
1363 void SetDirection(bool bForward)
1364 { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; }
7fdefd57 1365
2b854a32
VZ
1366 // it may be a window change event (MDI, notebook pages...) or a control
1367 // change event
d9506e77
VZ
1368 bool IsWindowChange() const
1369 { return (m_flags & WinChange) != 0; }
1370 void SetWindowChange(bool bIs)
1371 { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; }
1372
1373 // some navigation events are meant to be propagated upwards (Windows
1374 // convention is to do this for TAB events) while others should always
1375 // cycle inside the panel/radiobox/whatever we're current inside
1376 bool ShouldPropagate() const
1377 { return (m_flags & Propagate) != 0; }
1378 void SetPropagate(bool bDoIt)
1379 { if ( bDoIt ) m_flags |= Propagate; else m_flags &= ~Propagate; }
7fdefd57 1380
2b854a32
VZ
1381 // the child which has the focus currently (may be NULL - use
1382 // wxWindow::FindFocus then)
d9506e77
VZ
1383 wxWindow* GetCurrentFocus() const { return m_focus; }
1384 void SetCurrentFocus(wxWindow *win) { m_focus = win; }
1385
1386private:
1387 enum
1388 {
1389 IsForward = 0x0001,
1390 WinChange = 0x0002,
1391 Propagate = 0x0004
1392 };
1393
1394 long m_flags;
1395 wxWindow *m_focus;
1396
1397 DECLARE_DYNAMIC_CLASS(wxNavigationKeyEvent)
7fdefd57
VZ
1398};
1399
42e69d6b
VZ
1400// Window creation/destruction events: the first is sent as soon as window is
1401// created (i.e. the underlying GUI object exists), but when the C++ object is
1402// fully initialized (so virtual functions may be called). The second,
1403// wxEVT_DESTROY, is sent right before the window is destroyed - again, it's
1404// still safe to call virtual functions at this moment
1405/*
1406 wxEVT_CREATE
1407 wxEVT_DESTROY
1408 */
1409
f6bcfd97 1410class WXDLLEXPORT wxWindowCreateEvent : public wxCommandEvent
42e69d6b
VZ
1411{
1412 DECLARE_DYNAMIC_CLASS(wxWindowCreateEvent)
1413
1414public:
1415 wxWindowCreateEvent(wxWindow *win = NULL);
1416
1417 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
1418};
1419
f6bcfd97 1420class WXDLLEXPORT wxWindowDestroyEvent : public wxCommandEvent
42e69d6b
VZ
1421{
1422 DECLARE_DYNAMIC_CLASS(wxWindowDestroyEvent)
1423
1424public:
1425 wxWindowDestroyEvent(wxWindow *win = NULL);
1426
1427 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
1428};
1429
bd83cb56 1430// A help event is sent when the user clicks on a window in context-help mode.
b96340e6 1431/*
bd83cb56
VZ
1432 wxEVT_HELP
1433 wxEVT_DETAILED_HELP
1434*/
b96340e6
JS
1435
1436class WXDLLEXPORT wxHelpEvent : public wxCommandEvent
1437{
b96340e6 1438public:
bd83cb56
VZ
1439 wxHelpEvent(wxEventType type = wxEVT_NULL,
1440 wxWindowID id = 0,
1441 const wxPoint& pt = wxDefaultPosition)
1442 {
1443 m_eventType = type;
1444 m_id = id;
1445 m_pos = pt;
1446 }
b96340e6 1447
bd83cb56
VZ
1448 // Position of event (in screen coordinates)
1449 const wxPoint& GetPosition() const { return m_pos; }
1450 void SetPosition(const wxPoint& pos) { m_pos = pos; }
b96340e6 1451
bd83cb56
VZ
1452 // Optional link to further help
1453 const wxString& GetLink() const { return m_link; }
1454 void SetLink(const wxString& link) { m_link = link; }
fb6261e9 1455
bd83cb56
VZ
1456 // Optional target to display help in. E.g. a window specification
1457 const wxString& GetTarget() const { return m_target; }
1458 void SetTarget(const wxString& target) { m_target = target; }
fb6261e9 1459
bd83cb56
VZ
1460protected:
1461 wxPoint m_pos;
1462 wxString m_target;
1463 wxString m_link;
1464
1465private:
1466 DECLARE_DYNAMIC_CLASS(wxHelpEvent)
b96340e6
JS
1467};
1468
e90c1d2a
VZ
1469#endif // wxUSE_GUI
1470
1471// Idle event
1472/*
1473 wxEVT_IDLE
1474 */
1475
1476class WXDLLEXPORT wxIdleEvent : public wxEvent
1477{
1478 DECLARE_DYNAMIC_CLASS(wxIdleEvent)
1479
1480public:
1481 wxIdleEvent()
1482 { m_eventType = wxEVT_IDLE; m_requestMore = FALSE; }
1483
1484 void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; }
1485 bool MoreRequested() const { return m_requestMore; }
1486
1487 void CopyObject(wxObject& obj) const;
1488
1489protected:
1490 bool m_requestMore;
1491};
1492
e5fb7191 1493/* TODO
c801d85f 1494 wxEVT_POWER,
c801d85f
KB
1495 wxEVT_MOUSE_CAPTURE_CHANGED,
1496 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
c801d85f
KB
1497// wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
1498 // wxEVT_FONT_CHANGED to all other windows (maybe).
1499 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
1500 wxEVT_MEASURE_ITEM,
1501 wxEVT_COMPARE_ITEM
1502*/
1503
8e193f38
VZ
1504// ============================================================================
1505// event handler and related classes
1506// ============================================================================
1507
c801d85f
KB
1508typedef void (wxObject::*wxObjectEventFunction)(wxEvent&);
1509
1510struct WXDLLEXPORT wxEventTableEntry
77d4384e 1511{
cbee8f8d 1512#if !WXWIN_COMPATIBILITY_EVENT_TYPES
0b5eceb6
VZ
1513 wxEventTableEntry(int evType, int id, int idLast,
1514 wxObjectEventFunction fn, wxObject *data);
cbee8f8d 1515#endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
82a5f02c 1516
0b5eceb6 1517 int m_eventType; // the event type
77d4384e
RR
1518 int m_id; // control/menu/toolbar id
1519 int m_lastId; // used for ranges of ids
1520 wxObjectEventFunction m_fn; // function to call: not wxEventFunction,
1521 // because of dependency problems
1522
1523 wxObject* m_callbackUserData;
1524};
1525
0b5eceb6 1526struct WXDLLEXPORT wxDynamicEventTableEntry : public wxEventTableEntry
c801d85f 1527{
cbee8f8d 1528#if !WXWIN_COMPATIBILITY_EVENT_TYPES
0b5eceb6
VZ
1529 wxDynamicEventTableEntry(int evType, int id, int idLast,
1530 wxObjectEventFunction fn, wxObject *data)
1531 : wxEventTableEntry(evType, id, idLast, fn, data)
1532 {
1533 }
cbee8f8d 1534#endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
c801d85f
KB
1535};
1536
1537struct WXDLLEXPORT wxEventTable
1538{
0b5eceb6
VZ
1539 const wxEventTable *baseTable; // base event table (next in chain)
1540 const wxEventTableEntry *entries; // bottom of entry array
c801d85f
KB
1541};
1542
2b854a32 1543class WXDLLEXPORT wxEvtHandler : public wxObject
c801d85f 1544{
2b854a32
VZ
1545 DECLARE_DYNAMIC_CLASS(wxEvtHandler)
1546
1547public:
1548 wxEvtHandler();
1549 ~wxEvtHandler();
1550
1551 wxEvtHandler *GetNextHandler() const { return m_nextHandler; }
1552 wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; }
1553 void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; }
1554 void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; }
1555
8e193f38 1556 void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; }
2b854a32
VZ
1557 bool GetEvtHandlerEnabled() const { return m_enabled; }
1558
8e193f38
VZ
1559 // process an event right now
1560 virtual bool ProcessEvent(wxEvent& event);
2b854a32 1561
8e193f38
VZ
1562 // add an event to be processed later
1563 void AddPendingEvent(wxEvent& event);
2b854a32 1564
8e193f38
VZ
1565 // process all pending events
1566 void ProcessPendingEvents();
2b854a32 1567
20947e08 1568 // add a
7214297d
GL
1569#if wxUSE_THREADS
1570 bool ProcessThreadEvent(wxEvent& event);
7214297d 1571#endif
2b854a32
VZ
1572
1573 // Dynamic association of a member function handler with the event handler,
1574 // id and event type
77d4384e 1575 void Connect( int id, int lastId, int eventType,
2b854a32
VZ
1576 wxObjectEventFunction func,
1577 wxObject *userData = (wxObject *) NULL );
1578
1579 // Convenience function: take just one id
77d4384e 1580 void Connect( int id, int eventType,
2b854a32
VZ
1581 wxObjectEventFunction func,
1582 wxObject *userData = (wxObject *) NULL )
1583 { Connect(id, -1, eventType, func, userData); }
1584
97d7bfb8
RR
1585 bool Disconnect( int id, int lastId = -1, wxEventType eventType = wxEVT_NULL,
1586 wxObjectEventFunction func = NULL,
1587 wxObject *userData = (wxObject *) NULL );
1588
1589 // Convenience function: take just one id
1590 bool Disconnect( int id, wxEventType eventType = wxEVT_NULL,
1591 wxObjectEventFunction func = NULL,
1592 wxObject *userData = (wxObject *) NULL )
1593 { return Disconnect(id, -1, eventType, func, userData); }
98243fed 1594
8e193f38
VZ
1595 // implementation from now on
1596 virtual bool SearchEventTable(wxEventTable& table, wxEvent& event);
2b854a32 1597 bool SearchDynamicEventTable( wxEvent& event );
c801d85f 1598
63863e09 1599#if wxUSE_THREADS
20947e08
DW
1600 void ClearEventLocker()
1601 {
1602# if !defined(__VISAGECPP__)
1603 delete m_eventsLocker;
1604 m_eventsLocker = NULL;
1605#endif
1606 };
63863e09
JS
1607#endif
1608
8e193f38
VZ
1609 // old stuff
1610
1611#if WXWIN_COMPATIBILITY_2
1612 virtual void OnCommand(wxWindow& WXUNUSED(win),
1613 wxCommandEvent& WXUNUSED(event))
1614 {
1615 wxFAIL_MSG(wxT("shouldn't be called any more"));
1616 }
1617
1618 // Called if child control has no callback function
1619 virtual long Default()
1620 { return GetNextHandler() ? GetNextHandler()->Default() : 0; };
1621#endif // WXWIN_COMPATIBILITY_2
1622
1623#if WXWIN_COMPATIBILITY
1624 virtual bool OnClose();
1625#endif
1626
c801d85f 1627private:
8e193f38 1628 static const wxEventTableEntry sm_eventTableEntries[];
2b854a32 1629
c801d85f 1630protected:
193bf013
VZ
1631 static const wxEventTable sm_eventTable;
1632
1633 virtual const wxEventTable *GetEventTable() const;
1634
c801d85f 1635protected:
63863e09
JS
1636 wxEvtHandler* m_nextHandler;
1637 wxEvtHandler* m_previousHandler;
63863e09 1638 wxList* m_dynamicEvents;
42e69d6b 1639 wxList* m_pendingEvents;
7214297d 1640#if wxUSE_THREADS
20947e08
DW
1641#if defined (__VISAGECPP__)
1642 wxCriticalSection m_eventsLocker;
1643# else
63863e09 1644 wxCriticalSection* m_eventsLocker;
20947e08 1645# endif
7214297d 1646#endif
193bf013
VZ
1647
1648 // optimization: instead of using costly IsKindOf() to decide whether we're
1649 // a window (which is true in 99% of cases), use this flag
63863e09 1650 bool m_isWindow;
8e193f38
VZ
1651
1652 // Is event handler enabled?
1653 bool m_enabled;
c801d85f
KB
1654};
1655
1656typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&);
e90c1d2a 1657#if wxUSE_GUI
c801d85f
KB
1658typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&);
1659typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&);
c5b42c87 1660typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&);
c801d85f
KB
1661typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&);
1662typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&);
1663typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&);
1664typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&);
1665typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&);
1666typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&);
1667typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&);
1668typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&);
1669typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&);
1670typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&);
1671typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&);
1672typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&);
1673typedef void (wxEvtHandler::*wxSysColourChangedFunction)(wxSysColourChangedEvent&);
1674typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&);
1675typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&);
1676typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&);
1677typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&);
1678typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxShowEvent&);
1679typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxShowEvent&);
81d66cf3 1680typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&);
f7bd2698
JS
1681typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&);
1682typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&);
43b5058d
VZ
1683typedef void (wxEvtHandler::*wxWindowCreateEventFunction)(wxWindowCreateEvent&);
1684typedef void (wxEvtHandler::*wxWindowDestroyEventFunction)(wxWindowDestroyEvent&);
1685typedef void (wxEvtHandler::*wxSetCursorEventFunction)(wxSetCursorEvent&);
669f7a11 1686typedef void (wxEvtHandler::*wxNotifyEventFunction)(wxNotifyEvent&);
b96340e6 1687typedef void (wxEvtHandler::*wxHelpEventFunction)(wxHelpEvent&);
e90c1d2a 1688#endif // wxUSE_GUI
c801d85f
KB
1689
1690// N.B. In GNU-WIN32, you *have* to take the address of a member function
1691// (use &) or the compiler crashes...
1692
1693#define DECLARE_EVENT_TABLE() \
1694private:\
2b854a32 1695 static const wxEventTableEntry sm_eventTableEntries[];\
c801d85f 1696protected:\
2b854a32
VZ
1697 static const wxEventTable sm_eventTable;\
1698 virtual const wxEventTable* GetEventTable() const;
c801d85f
KB
1699
1700#define BEGIN_EVENT_TABLE(theClass, baseClass) \
1701const wxEventTable *theClass::GetEventTable() const { return &theClass::sm_eventTable; }\
1702const wxEventTable theClass::sm_eventTable =\
2b854a32 1703 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] };\
c801d85f
KB
1704const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
1705
1706#define END_EVENT_TABLE() \
82a5f02c 1707 wxEventTableEntry( 0, 0, 0, 0, 0 ) };
2b854a32 1708
c801d85f
KB
1709/*
1710 * Event table macros
1711 */
1712
1713// Generic events
82a5f02c
RR
1714#define EVT_CUSTOM(event, id, func) wxEventTableEntry( event, id, -1, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ),
1715#define EVT_CUSTOM_RANGE(event, id1, id2, func) wxEventTableEntry( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
1716
1717// Miscellaneous
82a5f02c
RR
1718#define EVT_SIZE(func) wxEventTableEntry( wxEVT_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ),
1719#define EVT_MOVE(func) wxEventTableEntry( wxEVT_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ),
1720#define EVT_CLOSE(func) wxEventTableEntry( wxEVT_CLOSE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1721#define EVT_END_SESSION(func) wxEventTableEntry( wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1722#define EVT_QUERY_END_SESSION(func) wxEventTableEntry( wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1723#define EVT_PAINT(func) wxEventTableEntry( wxEVT_PAINT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ),
1724#define EVT_ERASE_BACKGROUND(func) wxEventTableEntry( wxEVT_ERASE_BACKGROUND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, (wxObject *) NULL ),
1725#define EVT_CHAR(func) wxEventTableEntry( wxEVT_CHAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
1726#define EVT_KEY_DOWN(func) wxEventTableEntry( wxEVT_KEY_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
1727#define EVT_KEY_UP(func) wxEventTableEntry( wxEVT_KEY_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
1728#define EVT_CHAR_HOOK(func) wxEventTableEntry( wxEVT_CHAR_HOOK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL ),
1729#define EVT_MENU_HIGHLIGHT(id, func) wxEventTableEntry( wxEVT_MENU_HIGHLIGHT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
1730#define EVT_MENU_HIGHLIGHT_ALL(func) wxEventTableEntry( wxEVT_MENU_HIGHLIGHT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
1731#define EVT_SET_FOCUS(func) wxEventTableEntry( wxEVT_SET_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ),
1732#define EVT_KILL_FOCUS(func) wxEventTableEntry( wxEVT_KILL_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ),
1733#define EVT_ACTIVATE(func) wxEventTableEntry( wxEVT_ACTIVATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ),
1734#define EVT_ACTIVATE_APP(func) wxEventTableEntry( wxEVT_ACTIVATE_APP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ),
1735#define EVT_END_SESSION(func) wxEventTableEntry( wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1736#define EVT_QUERY_END_SESSION(func) wxEventTableEntry( wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1737#define EVT_DROP_FILES(func) wxEventTableEntry( wxEVT_DROP_FILES, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, (wxObject *) NULL ),
1738#define EVT_INIT_DIALOG(func) wxEventTableEntry( wxEVT_INIT_DIALOG, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, (wxObject *) NULL ),
1739#define EVT_SYS_COLOUR_CHANGED(func) wxEventTableEntry( wxEVT_SYS_COLOUR_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, (wxObject *) NULL ),
1740#define EVT_SHOW(func) wxEventTableEntry( wxEVT_SHOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, (wxObject *) NULL ),
1741#define EVT_MAXIMIZE(func) wxEventTableEntry( wxEVT_MAXIMIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, (wxObject *) NULL ),
1742#define EVT_ICONIZE(func) wxEventTableEntry( wxEVT_ICONIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, (wxObject *) NULL ),
1743#define EVT_NAVIGATION_KEY(func) wxEventTableEntry( wxEVT_NAVIGATION_KEY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxNavigationKeyEventFunction) & func, (wxObject *) NULL ),
1744#define EVT_PALETTE_CHANGED(func) wxEventTableEntry( wxEVT_PALETTE_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaletteChangedEventFunction) & func, (wxObject *) NULL ),
1745#define EVT_QUERY_NEW_PALETTE(func) wxEventTableEntry( wxEVT_QUERY_NEW_PALETTE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL ),
1746#define EVT_WINDOW_CREATE(func) wxEventTableEntry( wxEVT_CREATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxWindowCreateEventFunction) & func, (wxObject *) NULL ),
1747#define EVT_WINDOW_DESTROY(func) wxEventTableEntry( wxEVT_DESTROY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxWindowDestroyEventFunction) & func, (wxObject *) NULL ),
1748#define EVT_SET_CURSOR(func) wxEventTableEntry( wxEVT_SET_CURSOR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSetCursorEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
1749
1750// Mouse events
82a5f02c
RR
1751#define EVT_LEFT_DOWN(func) wxEventTableEntry( wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1752#define EVT_LEFT_UP(func) wxEventTableEntry( wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1753#define EVT_MIDDLE_DOWN(func) wxEventTableEntry( wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1754#define EVT_MIDDLE_UP(func) wxEventTableEntry( wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1755#define EVT_RIGHT_DOWN(func) wxEventTableEntry( wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1756#define EVT_RIGHT_UP(func) wxEventTableEntry( wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1757#define EVT_MOTION(func) wxEventTableEntry( wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1758#define EVT_LEFT_DCLICK(func) wxEventTableEntry( wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1759#define EVT_MIDDLE_DCLICK(func) wxEventTableEntry( wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1760#define EVT_RIGHT_DCLICK(func) wxEventTableEntry( wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1761#define EVT_LEAVE_WINDOW(func) wxEventTableEntry( wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1762#define EVT_ENTER_WINDOW(func) wxEventTableEntry( wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
1763
1764// All mouse events
1765#define EVT_MOUSE_EVENTS(func) \
82a5f02c
RR
1766 wxEventTableEntry( wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1767 wxEventTableEntry( wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1768 wxEventTableEntry( wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1769 wxEventTableEntry( wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1770 wxEventTableEntry( wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1771 wxEventTableEntry( wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1772 wxEventTableEntry( wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1773 wxEventTableEntry( wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1774 wxEventTableEntry( wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1775 wxEventTableEntry( wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1776 wxEventTableEntry( wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1777 wxEventTableEntry( wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
1778
1779// EVT_COMMAND
82a5f02c
RR
1780#define EVT_COMMAND(id, event, fn) wxEventTableEntry( event, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1781#define EVT_COMMAND_RANGE(id1, id2, event, fn) wxEventTableEntry( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
c801d85f 1782
c5b42c87
RR
1783// Scrolling from wxWindow (sent to wxScrolledWindow)
1784#define EVT_SCROLLWIN(func) \
82a5f02c
RR
1785 wxEventTableEntry( wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1786 wxEventTableEntry( wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1787 wxEventTableEntry( wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1788 wxEventTableEntry( wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1789 wxEventTableEntry( wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1790 wxEventTableEntry( wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1791 wxEventTableEntry( wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1792 wxEventTableEntry( wxEVT_SCROLLWIN_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1793
1794#define EVT_SCROLLWIN_TOP(func) wxEventTableEntry( wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1795#define EVT_SCROLLWIN_BOTTOM(func) wxEventTableEntry( wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1796#define EVT_SCROLLWIN_LINEUP(func) wxEventTableEntry( wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1797#define EVT_SCROLLWIN_LINEDOWN(func) wxEventTableEntry( wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1798#define EVT_SCROLLWIN_PAGEUP(func) wxEventTableEntry( wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1799#define EVT_SCROLLWIN_PAGEDOWN(func) wxEventTableEntry( wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1800#define EVT_SCROLLWIN_THUMBTRACK(func) wxEventTableEntry( wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1801#define EVT_SCROLLWIN_THUMBRELEASE(func) wxEventTableEntry( wxEVT_SCROLLWIN_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
c5b42c87
RR
1802
1803// Scrolling from wxSlider and wxScrollBar
c801d85f 1804#define EVT_SCROLL(func) \
82a5f02c
RR
1805 wxEventTableEntry( wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1806 wxEventTableEntry( wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1807 wxEventTableEntry( wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1808 wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1809 wxEventTableEntry( wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1810 wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1811 wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1812 wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1813
1814#define EVT_SCROLL_TOP(func) wxEventTableEntry( wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1815#define EVT_SCROLL_BOTTOM(func) wxEventTableEntry( wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1816#define EVT_SCROLL_LINEUP(func) wxEventTableEntry( wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1817#define EVT_SCROLL_LINEDOWN(func) wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1818#define EVT_SCROLL_PAGEUP(func) wxEventTableEntry( wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1819#define EVT_SCROLL_PAGEDOWN(func) wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1820#define EVT_SCROLL_THUMBTRACK(func) wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1821#define EVT_SCROLL_THUMBRELEASE(func) wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
c801d85f 1822
c5b42c87 1823// Scrolling from wxSlider and wxScrollBar, with an id
c801d85f 1824#define EVT_COMMAND_SCROLL(id, func) \
82a5f02c
RR
1825 wxEventTableEntry( wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1826 wxEventTableEntry( wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1827 wxEventTableEntry( wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1828 wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1829 wxEventTableEntry( wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1830 wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1831 wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1832 wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1833
1834#define EVT_COMMAND_SCROLL_TOP(id, func) wxEventTableEntry( wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1835#define EVT_COMMAND_SCROLL_BOTTOM(id, func) wxEventTableEntry( wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1836#define EVT_COMMAND_SCROLL_LINEUP(id, func) wxEventTableEntry( wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1837#define EVT_COMMAND_SCROLL_LINEDOWN(id, func) wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1838#define EVT_COMMAND_SCROLL_PAGEUP(id, func) wxEventTableEntry( wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1839#define EVT_COMMAND_SCROLL_PAGEDOWN(id, func) wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1840#define EVT_COMMAND_SCROLL_THUMBTRACK(id, func) wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1841#define EVT_COMMAND_SCROLL_THUMBRELEASE(id, func) wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
1842
1843// Convenience macros for commonly-used commands
82a5f02c
RR
1844#define EVT_BUTTON(id, fn) wxEventTableEntry( wxEVT_COMMAND_BUTTON_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1845#define EVT_CHECKBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHECKBOX_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1846#define EVT_CHOICE(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHOICE_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1847#define EVT_LISTBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_LISTBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1848#define EVT_LISTBOX_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1849#define EVT_TEXT(id, fn) wxEventTableEntry( wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1850#define EVT_TEXT_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1851#define EVT_MENU(id, fn) wxEventTableEntry( wxEVT_COMMAND_MENU_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1852#define EVT_MENU_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1853#define EVT_SLIDER(id, fn) wxEventTableEntry( wxEVT_COMMAND_SLIDER_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1854#define EVT_RADIOBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_RADIOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1855#define EVT_RADIOBUTTON(id, fn) wxEventTableEntry( wxEVT_COMMAND_RADIOBUTTON_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
c801d85f 1856// EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
82a5f02c
RR
1857#define EVT_SCROLLBAR(id, fn) wxEventTableEntry( wxEVT_COMMAND_SCROLLBAR_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1858#define EVT_VLBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_VLBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1859#define EVT_COMBOBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_COMBOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1860#define EVT_TOOL(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1861#define EVT_TOOL_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1862#define EVT_TOOL_RCLICKED(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_RCLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1863#define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1864#define EVT_TOOL_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1865#define EVT_CHECKLISTBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
c801d85f
KB
1866
1867// Generic command events
82a5f02c
RR
1868#define EVT_COMMAND_LEFT_CLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1869#define EVT_COMMAND_LEFT_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1870#define EVT_COMMAND_RIGHT_CLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1871#define EVT_COMMAND_RIGHT_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_RIGHT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1872#define EVT_COMMAND_SET_FOCUS(id, fn) wxEventTableEntry( wxEVT_COMMAND_SET_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1873#define EVT_COMMAND_KILL_FOCUS(id, fn) wxEventTableEntry( wxEVT_COMMAND_KILL_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1874#define EVT_COMMAND_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
c801d85f
KB
1875
1876// Joystick events
1877#define EVT_JOY_DOWN(func) \
82a5f02c 1878 wxEventTableEntry( wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f 1879#define EVT_JOY_UP(func) \
82a5f02c 1880 wxEventTableEntry( wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f 1881#define EVT_JOY_MOVE(func) \
82a5f02c 1882 wxEventTableEntry( wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f 1883#define EVT_JOY_ZMOVE(func) \
82a5f02c 1884 wxEventTableEntry( wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
1885
1886// All joystick events
1887#define EVT_JOYSTICK_EVENTS(func) \
82a5f02c
RR
1888 wxEventTableEntry( wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
1889 wxEventTableEntry( wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
1890 wxEventTableEntry( wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
1891 wxEventTableEntry( wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
1892
1893// Idle event
1894#define EVT_IDLE(func) \
82a5f02c 1895 wxEventTableEntry( wxEVT_IDLE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, (wxObject *) NULL ),
c801d85f
KB
1896
1897// Update UI event
1898#define EVT_UPDATE_UI(id, func) \
82a5f02c 1899 wxEventTableEntry( wxEVT_UPDATE_UI, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, (wxObject *) NULL ),
3ca6a5f0 1900#define EVT_UPDATE_UI_RANGE(id1, id2, func) \
82a5f02c 1901 wxEventTableEntry( wxEVT_UPDATE_UI, id1, id2, (wxObjectEventFunction)(wxEventFunction)(wxUpdateUIEventFunction)&func, (wxObject *) NULL ),
c801d85f 1902
b96340e6
JS
1903// Help events
1904#define EVT_HELP(id, func) \
82a5f02c 1905 wxEventTableEntry( wxEVT_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
b96340e6
JS
1906
1907#define EVT_HELP_RANGE(id1, id2, func) \
82a5f02c 1908 wxEventTableEntry( wxEVT_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
b96340e6 1909
fb6261e9 1910#define EVT_DETAILED_HELP(id, func) \
82a5f02c 1911 wxEventTableEntry( wxEVT_DETAILED_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
fb6261e9
JS
1912
1913#define EVT_DETAILED_HELP_RANGE(id1, id2, func) \
82a5f02c 1914 wxEventTableEntry( wxEVT_DETAILED_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
fb6261e9 1915
8e193f38
VZ
1916// ----------------------------------------------------------------------------
1917// Global data
1918// ----------------------------------------------------------------------------
1919
1920// for pending event processing - notice that there is intentionally no
1921// WXDLLEXPORT here
1922extern wxList *wxPendingEvents;
1923#if wxUSE_THREADS
1924 extern wxCriticalSection *wxPendingEventsLocker;
1925#endif
1926
e90c1d2a
VZ
1927// ----------------------------------------------------------------------------
1928// Helper functions
1929// ----------------------------------------------------------------------------
1930
1931#if wxUSE_GUI
e702ff0f
JS
1932
1933// Find a window with the focus, that is also a descendant of the given window.
1934// This is used to determine the window to initially send commands to.
1935wxWindow* wxFindFocusDescendant(wxWindow* ancestor);
1936
e90c1d2a
VZ
1937#endif // wxUSE_GUI
1938
c801d85f 1939#endif
2b854a32 1940 // _WX_EVENTH__