]> git.saurik.com Git - wxWidgets.git/blame - include/wx/event.h
More key event work. Added SetDetectableAutoRepeat.
[wxWidgets.git] / include / wx / event.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: event.h
3// Purpose: Event classes
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c)
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"
21#include "wx/gdicmn.h"
7214297d
GL
22#if wxUSE_THREADS
23#include "wx/thread.h"
24#endif
c801d85f
KB
25
26/*
27 * Event types
28 *
29 */
64693098 30
0757d27c
JS
31typedef int wxEventType;
32
33const wxEventType wxEVT_NULL = 0;
34const wxEventType wxEVT_FIRST = 10000;
35
36const wxEventType wxEVT_COMMAND_BUTTON_CLICKED = wxEVT_FIRST + 1;
37const wxEventType wxEVT_COMMAND_CHECKBOX_CLICKED = wxEVT_FIRST + 2;
38const wxEventType wxEVT_COMMAND_CHOICE_SELECTED = wxEVT_FIRST + 3;
39const wxEventType wxEVT_COMMAND_LISTBOX_SELECTED = wxEVT_FIRST + 4;
40const wxEventType wxEVT_COMMAND_LISTBOX_DOUBLECLICKED = wxEVT_FIRST + 5;
41const wxEventType wxEVT_COMMAND_CHECKLISTBOX_TOGGLED = wxEVT_FIRST + 6;
42const wxEventType wxEVT_COMMAND_TEXT_UPDATED = wxEVT_FIRST + 7;
43const wxEventType wxEVT_COMMAND_TEXT_ENTER = wxEVT_FIRST + 8;
44const wxEventType wxEVT_COMMAND_MENU_SELECTED = wxEVT_FIRST + 9;
45const wxEventType wxEVT_COMMAND_TOOL_CLICKED = wxEVT_COMMAND_MENU_SELECTED;
46const wxEventType wxEVT_COMMAND_SLIDER_UPDATED = wxEVT_FIRST + 10;
47const wxEventType wxEVT_COMMAND_RADIOBOX_SELECTED = wxEVT_FIRST + 11;
48const wxEventType wxEVT_COMMAND_RADIOBUTTON_SELECTED = wxEVT_FIRST + 12;
49//const wxEventType wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use wxEVT_SCROLL... events
50const wxEventType wxEVT_COMMAND_SCROLLBAR_UPDATED = wxEVT_FIRST + 13;
51const wxEventType wxEVT_COMMAND_VLBOX_SELECTED = wxEVT_FIRST + 14;
52const wxEventType wxEVT_COMMAND_COMBOBOX_SELECTED = wxEVT_FIRST + 15;
53const wxEventType wxEVT_COMMAND_TOOL_RCLICKED = wxEVT_FIRST + 16;
54const wxEventType wxEVT_COMMAND_TOOL_ENTER = wxEVT_FIRST + 17;
c801d85f 55
db131261
RR
56/* Sockets send events, too */
57const wxEventType wxEVT_SOCKET = wxEVT_FIRST + 50;
58
c801d85f 59/* Mouse event types */
0757d27c
JS
60const wxEventType wxEVT_LEFT_DOWN = wxEVT_FIRST + 100;
61const wxEventType wxEVT_LEFT_UP = wxEVT_FIRST + 101;
62const wxEventType wxEVT_MIDDLE_DOWN = wxEVT_FIRST + 102;
63const wxEventType wxEVT_MIDDLE_UP = wxEVT_FIRST + 103;
64const wxEventType wxEVT_RIGHT_DOWN = wxEVT_FIRST + 104;
65const wxEventType wxEVT_RIGHT_UP = wxEVT_FIRST + 105;
66const wxEventType wxEVT_MOTION = wxEVT_FIRST + 106;
67const wxEventType wxEVT_ENTER_WINDOW = wxEVT_FIRST + 107;
68const wxEventType wxEVT_LEAVE_WINDOW = wxEVT_FIRST + 108;
69const wxEventType wxEVT_LEFT_DCLICK = wxEVT_FIRST + 109;
70const wxEventType wxEVT_MIDDLE_DCLICK = wxEVT_FIRST + 110;
71const wxEventType wxEVT_RIGHT_DCLICK = wxEVT_FIRST + 111;
72const wxEventType wxEVT_SET_FOCUS = wxEVT_FIRST + 112;
73const wxEventType wxEVT_KILL_FOCUS = wxEVT_FIRST + 113;
c801d85f 74
db131261 75 /* Non-client mouse events */
0757d27c
JS
76const wxEventType wxEVT_NC_LEFT_DOWN = wxEVT_FIRST + 200;
77const wxEventType wxEVT_NC_LEFT_UP = wxEVT_FIRST + 201;
78const wxEventType wxEVT_NC_MIDDLE_DOWN = wxEVT_FIRST + 202;
79const wxEventType wxEVT_NC_MIDDLE_UP = wxEVT_FIRST + 203;
80const wxEventType wxEVT_NC_RIGHT_DOWN = wxEVT_FIRST + 204;
81const wxEventType wxEVT_NC_RIGHT_UP = wxEVT_FIRST + 205;
82const wxEventType wxEVT_NC_MOTION = wxEVT_FIRST + 206;
83const wxEventType wxEVT_NC_ENTER_WINDOW = wxEVT_FIRST + 207;
84const wxEventType wxEVT_NC_LEAVE_WINDOW = wxEVT_FIRST + 208;
85const wxEventType wxEVT_NC_LEFT_DCLICK = wxEVT_FIRST + 209;
86const wxEventType wxEVT_NC_MIDDLE_DCLICK = wxEVT_FIRST + 210;
87const wxEventType wxEVT_NC_RIGHT_DCLICK = wxEVT_FIRST + 211;
c801d85f
KB
88
89/* Character input event type */
0757d27c 90const wxEventType wxEVT_CHAR = wxEVT_FIRST + 212;
4ce81a75
JS
91const wxEventType wxEVT_CHAR_HOOK = wxEVT_FIRST + 213;
92const wxEventType wxEVT_NAVIGATION_KEY = wxEVT_FIRST + 214;
93const wxEventType wxEVT_KEY_DOWN = wxEVT_FIRST + 215;
94const wxEventType wxEVT_KEY_UP = wxEVT_FIRST + 216;
c801d85f
KB
95
96 /*
d1367c3d 97 * wxScrollbar and wxSlider event identifiers
c801d85f 98 */
0757d27c
JS
99const wxEventType wxEVT_SCROLL_TOP = wxEVT_FIRST + 300;
100const wxEventType wxEVT_SCROLL_BOTTOM = wxEVT_FIRST + 301;
101const wxEventType wxEVT_SCROLL_LINEUP = wxEVT_FIRST + 302;
102const wxEventType wxEVT_SCROLL_LINEDOWN = wxEVT_FIRST + 303;
103const wxEventType wxEVT_SCROLL_PAGEUP = wxEVT_FIRST + 304;
104const wxEventType wxEVT_SCROLL_PAGEDOWN = wxEVT_FIRST + 305;
105const wxEventType wxEVT_SCROLL_THUMBTRACK = wxEVT_FIRST + 306;
106
d1367c3d
RR
107 /*
108 * Scroll events from wxWindow
109 */
110const wxEventType wxEVT_SCROLLWIN_TOP = wxEVT_FIRST + 320;
111const wxEventType wxEVT_SCROLLWIN_BOTTOM = wxEVT_FIRST + 321;
112const wxEventType wxEVT_SCROLLWIN_LINEUP = wxEVT_FIRST + 322;
113const wxEventType wxEVT_SCROLLWIN_LINEDOWN = wxEVT_FIRST + 323;
114const wxEventType wxEVT_SCROLLWIN_PAGEUP = wxEVT_FIRST + 324;
115const wxEventType wxEVT_SCROLLWIN_PAGEDOWN = wxEVT_FIRST + 325;
116const wxEventType wxEVT_SCROLLWIN_THUMBTRACK = wxEVT_FIRST + 326;
117
118 /*
119 * System events
120 */
0757d27c
JS
121const wxEventType wxEVT_SIZE = wxEVT_FIRST + 400;
122const wxEventType wxEVT_MOVE = wxEVT_FIRST + 401;
123const wxEventType wxEVT_CLOSE_WINDOW = wxEVT_FIRST + 402;
124const wxEventType wxEVT_END_SESSION = wxEVT_FIRST + 403;
125const wxEventType wxEVT_QUERY_END_SESSION = wxEVT_FIRST + 404;
126const wxEventType wxEVT_ACTIVATE_APP = wxEVT_FIRST + 405;
127const wxEventType wxEVT_POWER = wxEVT_FIRST + 406;
0757d27c
JS
128const wxEventType wxEVT_ACTIVATE = wxEVT_FIRST + 409;
129const wxEventType wxEVT_CREATE = wxEVT_FIRST + 410;
130const wxEventType wxEVT_DESTROY = wxEVT_FIRST + 411;
131const wxEventType wxEVT_SHOW = wxEVT_FIRST + 412;
132const wxEventType wxEVT_ICONIZE = wxEVT_FIRST + 413;
133const wxEventType wxEVT_MAXIMIZE = wxEVT_FIRST + 414;
134const wxEventType wxEVT_MOUSE_CAPTURE_CHANGED = wxEVT_FIRST + 415;
135const wxEventType wxEVT_PAINT = wxEVT_FIRST + 416;
136const wxEventType wxEVT_ERASE_BACKGROUND = wxEVT_FIRST + 417;
137const wxEventType wxEVT_NC_PAINT = wxEVT_FIRST + 418;
138const wxEventType wxEVT_PAINT_ICON = wxEVT_FIRST + 419;
139const wxEventType wxEVT_MENU_CHAR = wxEVT_FIRST + 420;
140const wxEventType wxEVT_MENU_INIT = wxEVT_FIRST + 421;
141const wxEventType wxEVT_MENU_HIGHLIGHT = wxEVT_FIRST + 422;
142const wxEventType wxEVT_POPUP_MENU_INIT = wxEVT_FIRST + 423;
143const wxEventType wxEVT_CONTEXT_MENU = wxEVT_FIRST + 424;
144const wxEventType wxEVT_SYS_COLOUR_CHANGED = wxEVT_FIRST + 425;
145const wxEventType wxEVT_SETTING_CHANGED = wxEVT_FIRST + 426;
146const wxEventType wxEVT_QUERY_NEW_PALETTE = wxEVT_FIRST + 427;
147const wxEventType wxEVT_PALETTE_CHANGED = wxEVT_FIRST + 428;
148const wxEventType wxEVT_JOY_BUTTON_DOWN = wxEVT_FIRST + 429;
149const wxEventType wxEVT_JOY_BUTTON_UP = wxEVT_FIRST + 430;
150const wxEventType wxEVT_JOY_MOVE = wxEVT_FIRST + 431;
151const wxEventType wxEVT_JOY_ZMOVE = wxEVT_FIRST + 432;
152const wxEventType wxEVT_DROP_FILES = wxEVT_FIRST + 433;
153const wxEventType wxEVT_DRAW_ITEM = wxEVT_FIRST + 434;
154const wxEventType wxEVT_MEASURE_ITEM = wxEVT_FIRST + 435;
155const wxEventType wxEVT_COMPARE_ITEM = wxEVT_FIRST + 436;
156const wxEventType wxEVT_INIT_DIALOG = wxEVT_FIRST + 437;
157const wxEventType wxEVT_IDLE = wxEVT_FIRST + 438;
158const wxEventType wxEVT_UPDATE_UI = wxEVT_FIRST + 439;
159 /* System misc. */
160const wxEventType wxEVT_END_PROCESS = wxEVT_FIRST + 440;
c801d85f
KB
161
162 /* Generic command events */
db131261 163 /* Note: a click is a higher-level event than button down/up */
0757d27c
JS
164const wxEventType wxEVT_COMMAND_LEFT_CLICK = wxEVT_FIRST + 500;
165const wxEventType wxEVT_COMMAND_LEFT_DCLICK = wxEVT_FIRST + 501;
166const wxEventType wxEVT_COMMAND_RIGHT_CLICK = wxEVT_FIRST + 502;
167const wxEventType wxEVT_COMMAND_RIGHT_DCLICK = wxEVT_FIRST + 503;
168const wxEventType wxEVT_COMMAND_SET_FOCUS = wxEVT_FIRST + 504;
169const wxEventType wxEVT_COMMAND_KILL_FOCUS = wxEVT_FIRST + 505;
170const wxEventType wxEVT_COMMAND_ENTER = wxEVT_FIRST + 506;
c801d85f
KB
171
172 /* Tree control event types */
0757d27c
JS
173const wxEventType wxEVT_COMMAND_TREE_BEGIN_DRAG = wxEVT_FIRST + 600;
174const wxEventType wxEVT_COMMAND_TREE_BEGIN_RDRAG = wxEVT_FIRST + 601;
175const wxEventType wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT = wxEVT_FIRST + 602;
176const wxEventType wxEVT_COMMAND_TREE_END_LABEL_EDIT = wxEVT_FIRST + 603;
177const wxEventType wxEVT_COMMAND_TREE_DELETE_ITEM = wxEVT_FIRST + 604;
178const wxEventType wxEVT_COMMAND_TREE_GET_INFO = wxEVT_FIRST + 605;
179const wxEventType wxEVT_COMMAND_TREE_SET_INFO = wxEVT_FIRST + 606;
180const wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDED = wxEVT_FIRST + 607;
181const wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDING = wxEVT_FIRST + 608;
182const wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSED = wxEVT_FIRST + 609;
183const wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSING = wxEVT_FIRST + 610;
184const wxEventType wxEVT_COMMAND_TREE_SEL_CHANGED = wxEVT_FIRST + 611;
185const wxEventType wxEVT_COMMAND_TREE_SEL_CHANGING = wxEVT_FIRST + 612;
186const wxEventType wxEVT_COMMAND_TREE_KEY_DOWN = wxEVT_FIRST + 613;
435fe83e 187const wxEventType wxEVT_COMMAND_TREE_ITEM_ACTIVATED = wxEVT_FIRST + 614;
c801d85f
KB
188
189 /* List control event types */
0757d27c
JS
190const wxEventType wxEVT_COMMAND_LIST_BEGIN_DRAG = wxEVT_FIRST + 700;
191const wxEventType wxEVT_COMMAND_LIST_BEGIN_RDRAG = wxEVT_FIRST + 701;
192const wxEventType wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT = wxEVT_FIRST + 702;
193const wxEventType wxEVT_COMMAND_LIST_END_LABEL_EDIT = wxEVT_FIRST + 703;
194const wxEventType wxEVT_COMMAND_LIST_DELETE_ITEM = wxEVT_FIRST + 704;
195const wxEventType wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS = wxEVT_FIRST + 705;
196const wxEventType wxEVT_COMMAND_LIST_GET_INFO = wxEVT_FIRST + 706;
197const wxEventType wxEVT_COMMAND_LIST_SET_INFO = wxEVT_FIRST + 707;
198const wxEventType wxEVT_COMMAND_LIST_ITEM_SELECTED = wxEVT_FIRST + 708;
199const wxEventType wxEVT_COMMAND_LIST_ITEM_DESELECTED = wxEVT_FIRST + 709;
200const wxEventType wxEVT_COMMAND_LIST_KEY_DOWN = wxEVT_FIRST + 710;
201const wxEventType wxEVT_COMMAND_LIST_INSERT_ITEM = wxEVT_FIRST + 711;
202const wxEventType wxEVT_COMMAND_LIST_COL_CLICK = wxEVT_FIRST + 712;
92976ab6
RR
203const wxEventType wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK = wxEVT_FIRST + 713;
204const wxEventType wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK = wxEVT_FIRST + 714;
435fe83e 205const wxEventType wxEVT_COMMAND_LIST_ITEM_ACTIVATED = wxEVT_FIRST + 715;
c801d85f 206
28bfeb73 207 /* Tab and notebook control event types */
0757d27c
JS
208const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGED = wxEVT_FIRST + 800;
209const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGING = wxEVT_FIRST + 801;
62448488
JS
210
211#if defined(__BORLANDC__) && defined(__WIN16__)
db131261 212/* For 16-bit BC++, these 2 are identical (truncated) */
62448488
JS
213const wxEventType wxEVT_COMMAND_NB_PAGE_CHANGED = wxEVT_FIRST + 802;
214const wxEventType wxEVT_COMMAND_NB_PAGE_CHANGING = wxEVT_FIRST + 803;
215#else
0757d27c
JS
216const wxEventType wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED = wxEVT_FIRST + 802;
217const wxEventType wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING = wxEVT_FIRST + 803;
62448488 218#endif
c801d85f 219
fbc535ff
JS
220const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000;
221
db131261 222/* Compatibility */
c801d85f
KB
223
224#if WXWIN_COMPATIBILITY
225
226#define wxEVENT_TYPE_BUTTON_COMMAND wxEVT_COMMAND_BUTTON_CLICKED
227#define wxEVENT_TYPE_CHECKBOX_COMMAND wxEVT_COMMAND_CHECKBOX_CLICKED
228#define wxEVENT_TYPE_CHOICE_COMMAND wxEVT_COMMAND_CHOICE_SELECTED
229#define wxEVENT_TYPE_LISTBOX_COMMAND wxEVT_COMMAND_LISTBOX_SELECTED
230#define wxEVENT_TYPE_LISTBOX_DCLICK_COMMAND wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
231#define wxEVENT_TYPE_TEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
232#define wxEVENT_TYPE_MULTITEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
233#define wxEVENT_TYPE_MENU_COMMAND wxEVT_COMMAND_MENU_SELECTED
234#define wxEVENT_TYPE_SLIDER_COMMAND wxEVT_COMMAND_SLIDER_UPDATED
235#define wxEVENT_TYPE_RADIOBOX_COMMAND wxEVT_COMMAND_RADIOBOX_SELECTED
236#define wxEVENT_TYPE_RADIOBUTTON_COMMAND wxEVT_COMMAND_RADIOBUTTON_SELECTED
237#define wxEVENT_TYPE_TEXT_ENTER_COMMAND wxEVT_COMMAND_TEXT_ENTER
238#define wxEVENT_TYPE_SET_FOCUS wxEVT_SET_FOCUS
239#define wxEVENT_TYPE_KILL_FOCUS wxEVT_KILL_FOCUS
240#define wxEVENT_TYPE_SCROLLBAR_COMMAND wxEVT_COMMAND_SCROLLBAR_UPDATED
241#define wxEVENT_TYPE_VIRT_LISTBOX_COMMAND wxEVT_COMMAND_VLBOX_SELECTED
242#define wxEVENT_TYPE_COMBOBOX_COMMAND wxEVT_COMMAND_COMBOBOX_SELECTED
243
244#define wxEVENT_TYPE_LEFT_DOWN wxEVT_LEFT_DOWN
245#define wxEVENT_TYPE_LEFT_UP wxEVT_LEFT_UP
246#define wxEVENT_TYPE_MIDDLE_DOWN wxEVT_MIDDLE_DOWN
247#define wxEVENT_TYPE_MIDDLE_UP wxEVT_MIDDLE_UP
248#define wxEVENT_TYPE_RIGHT_DOWN wxEVT_RIGHT_DOWN
249#define wxEVENT_TYPE_RIGHT_UP wxEVT_RIGHT_UP
250#define wxEVENT_TYPE_MOTION wxEVT_MOTION
251#define wxEVENT_TYPE_ENTER_WINDOW wxEVT_ENTER_WINDOW
252#define wxEVENT_TYPE_LEAVE_WINDOW wxEVT_LEAVE_WINDOW
253#define wxEVENT_TYPE_LEFT_DCLICK wxEVT_LEFT_DCLICK
254#define wxEVENT_TYPE_MIDDLE_DCLICK wxEVT_MIDDLE_DCLICK
255#define wxEVENT_TYPE_RIGHT_DCLICK wxEVT_RIGHT_DCLICK
256#define wxEVENT_TYPE_CHAR wxEVT_CHAR
257#define wxEVENT_TYPE_SCROLL_TOP wxEVT_SCROLL_TOP
258#define wxEVENT_TYPE_SCROLL_BOTTOM wxEVT_SCROLL_BOTTOM
259#define wxEVENT_TYPE_SCROLL_LINEUP wxEVT_SCROLL_LINEUP
260#define wxEVENT_TYPE_SCROLL_LINEDOWN wxEVT_SCROLL_LINEDOWN
261#define wxEVENT_TYPE_SCROLL_PAGEUP wxEVT_SCROLL_PAGEUP
262#define wxEVENT_TYPE_SCROLL_PAGEDOWN wxEVT_SCROLL_PAGEDOWN
263#define wxEVENT_TYPE_SCROLL_THUMBTRACK wxEVT_SCROLL_THUMBTRACK
264
2b854a32 265#endif // WXWIN_COMPATIBILITY
c801d85f
KB
266
267/*
268 * wxWindows events, covering all interesting things that might happen
269 * (button clicking, resizing, setting text in widgets, etc.).
270 *
271 * For each completely new event type, derive a new event class.
272 * An event CLASS represents a C++ class defining a range of similar event TYPES;
273 * examples are canvas events, panel item command events.
274 * An event TYPE is a unique identifier for a particular system event,
275 * such as a button press or a listbox deselection.
276 *
277 */
278
2b854a32 279class WXDLLEXPORT wxEvent : public wxObject
c801d85f 280{
2b854a32 281 DECLARE_ABSTRACT_CLASS(wxEvent)
c801d85f
KB
282
283public:
2b854a32
VZ
284 wxEvent(int id = 0);
285 ~wxEvent() {}
286
287 void SetEventType(wxEventType typ) { m_eventType = typ; }
288 wxEventType GetEventType() const { return m_eventType; }
289 wxObject *GetEventObject() const { return m_eventObject; }
290 void SetEventObject(wxObject *obj) { m_eventObject = obj; }
291 long GetTimestamp() const { return m_timeStamp; }
292 void SetTimestamp(long ts = 0) { m_timeStamp = ts; }
293 int GetId() const { return m_id; }
294 void SetId(int Id) { m_id = Id; }
295
296 // Can instruct event processor that we wish to ignore this event
297 // (treat as if the event table entry had not been found): this must be done
298 // to allow the event processing by the base classes (calling event.Skip()
299 // is the analog of calling the base class verstion of a virtual function)
300 void Skip(bool skip = TRUE) { m_skipped = skip; }
301 bool GetSkipped() const { return m_skipped; };
c801d85f 302
193bf013
VZ
303 // implementation only: this test is explicitlty anti OO and this functions
304 // exists only for optimization purposes
305 bool IsCommandEvent() const { return m_isCommandEvent; }
306
aadbdf11 307 void CopyObject(wxObject& object_dest) const;
a737331d 308
c801d85f 309public:
2b854a32
VZ
310 bool m_skipped;
311 wxObject* m_eventObject;
312 char* m_eventHandle; // Handle of an underlying windowing system event
313 wxEventType m_eventType;
314 long m_timeStamp;
315 int m_id;
316 wxObject* m_callbackUserData;
193bf013
VZ
317
318 // optimization: instead of using costly IsKindOf() we keep a flag telling
319 // whether we're a command event (by far the most common case)
320 bool m_isCommandEvent;
c801d85f
KB
321};
322
323// Item or menu event class
324/*
325 wxEVT_COMMAND_BUTTON_CLICKED
326 wxEVT_COMMAND_CHECKBOX_CLICKED
327 wxEVT_COMMAND_CHOICE_SELECTED
328 wxEVT_COMMAND_LISTBOX_SELECTED
329 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
330 wxEVT_COMMAND_TEXT_UPDATED
331 wxEVT_COMMAND_TEXT_ENTER
332 wxEVT_COMMAND_MENU_SELECTED
333 wxEVT_COMMAND_SLIDER_UPDATED
334 wxEVT_COMMAND_RADIOBOX_SELECTED
335 wxEVT_COMMAND_RADIOBUTTON_SELECTED
336 wxEVT_COMMAND_SCROLLBAR_UPDATED
337 wxEVT_COMMAND_VLBOX_SELECTED
338 wxEVT_COMMAND_COMBOBOX_SELECTED
339*/
340
f5e27805
RR
341class WXDLLEXPORT wxClientData;
342
2b854a32 343class WXDLLEXPORT wxCommandEvent : public wxEvent
c801d85f 344{
2b854a32 345 DECLARE_DYNAMIC_CLASS(wxCommandEvent)
c801d85f 346
2b854a32
VZ
347public:
348 wxCommandEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
349 ~wxCommandEvent() {}
c801d85f 350
2b854a32
VZ
351 /*
352 * Accessors dependent on context
353 *
354 */
c801d85f 355
2b854a32
VZ
356 // Set/Get client data from controls
357 void SetClientData(void* clientData) { m_clientData = clientData; }
358 void *GetClientData() const { return m_clientData; }
c801d85f 359
2b854a32
VZ
360 // Set/Get client object from controls
361 void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; }
362 void *GetClientObject() const { return m_clientObject; }
f5e27805 363
2b854a32
VZ
364 // Get listbox selection if single-choice
365 int GetSelection() const { return m_commandInt; }
c801d85f 366
2b854a32 367 // Set/Get listbox/choice selection string
29006414 368 void SetString(const wxString& s) { m_commandString = s; }
7214297d 369 wxString GetString() const { return m_commandString; }
c801d85f 370
2b854a32
VZ
371 // Get checkbox value
372 bool Checked() const { return (m_commandInt != 0); }
c801d85f 373
2b854a32
VZ
374 // TRUE if the listbox event was a selection.
375 bool IsSelection() const { return (m_extraLong != 0); }
c801d85f 376
2b854a32
VZ
377 void SetExtraLong(long extraLong) { m_extraLong = extraLong; }
378 long GetExtraLong() const { return m_extraLong ; }
c801d85f 379
2b854a32
VZ
380 void SetInt(int i) { m_commandInt = i; }
381 long GetInt() const { return m_commandInt ; }
c801d85f 382
aadbdf11
GL
383 void CopyObject(wxObject& obj) const;
384
2b854a32 385public:
29006414 386 wxString m_commandString; // String event argument
2b854a32
VZ
387 int m_commandInt;
388 long m_extraLong; // Additional information (e.g. select/deselect)
389 void* m_clientData; // Arbitrary client data
390 wxClientData* m_clientObject; // Arbitrary client object
c801d85f
KB
391};
392
fd3f686c
VZ
393// this class adds a possibility to react (from the user) code to a control
394// notification: allow or veto the operation being reported.
2b854a32 395class WXDLLEXPORT wxNotifyEvent : public wxCommandEvent
fd3f686c
VZ
396{
397public:
398 wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int id = 0)
399 : wxCommandEvent(commandType, id) { m_bAllow = TRUE; }
400
401 // veto the operation (by default it's allowed)
402 void Veto() { m_bAllow = FALSE; }
403
404 // for implementation code only: is the operation allowed?
405 bool IsAllowed() const { return m_bAllow; }
406
407private:
408 bool m_bAllow;
409
92976ab6 410 DECLARE_DYNAMIC_CLASS(wxNotifyEvent)
fd3f686c
VZ
411};
412
d1367c3d
RR
413// Scroll event class, derived form wxCommandEvent. wxScrollEvents are
414// sent by wxSlider and wxScrollbar.
c801d85f
KB
415/*
416 wxEVT_SCROLL_TOP
417 wxEVT_SCROLL_BOTTOM
418 wxEVT_SCROLL_LINEUP
419 wxEVT_SCROLL_LINEDOWN
420 wxEVT_SCROLL_PAGEUP
421 wxEVT_SCROLL_PAGEDOWN
422 wxEVT_SCROLL_THUMBTRACK
423*/
424
2b854a32 425class WXDLLEXPORT wxScrollEvent : public wxCommandEvent
c801d85f 426{
2b854a32 427 DECLARE_DYNAMIC_CLASS(wxScrollEvent)
c801d85f 428
2b854a32
VZ
429public:
430 wxScrollEvent(wxEventType commandType = wxEVT_NULL,
431 int id = 0, int pos = 0, int orient = 0);
432 ~wxScrollEvent() {}
433
434 /*
435 * Accessors
436 *
437 */
438
439 int GetOrientation() const { return (int) m_extraLong ; }
440 int GetPosition() const { return m_commandInt ; }
441 void SetOrientation(int orient) { m_extraLong = (long) orient; }
442 void SetPosition(int pos) { m_commandInt = pos; }
c801d85f
KB
443};
444
d1367c3d
RR
445// ScrollWin event class, derived fom wxEvent. wxScrollWinEvents
446// are sent by wxWindow.
447/*
448 wxEVT_SCROLLWIN_TOP
449 wxEVT_SCROLLWIN_BOTTOM
450 wxEVT_SCROLLWIN_LINEUP
451 wxEVT_SCROLLWIN_LINEDOWN
452 wxEVT_SCROLLWIN_PAGEUP
453 wxEVT_SCROLLWIN_PAGEDOWN
454 wxEVT_SCROLLWIN_THUMBTRACK
455*/
456
457class WXDLLEXPORT wxScrollWinEvent : public wxEvent
458{
459 DECLARE_DYNAMIC_CLASS(wxScrollWinEvent)
460
461public:
462 wxScrollWinEvent(wxEventType commandType = wxEVT_NULL,
463 int pos = 0, int orient = 0);
464 ~wxScrollWinEvent() {}
465
466 /*
467 * Accessors
468 */
469
470 int GetOrientation() const { return (int) m_extraLong ; }
471 int GetPosition() const { return m_commandInt ; }
472 void SetOrientation(int orient) { m_extraLong = (long) orient; }
473 void SetPosition(int pos) { m_commandInt = pos; }
474
475public:
476 int m_commandInt; // Additional information
477 long m_extraLong;
478};
479
c801d85f
KB
480// Mouse event class
481
482/*
483 wxEVT_LEFT_DOWN
484 wxEVT_LEFT_UP
485 wxEVT_MIDDLE_DOWN
486 wxEVT_MIDDLE_UP
487 wxEVT_RIGHT_DOWN
488 wxEVT_RIGHT_UP
489 wxEVT_MOTION
490 wxEVT_ENTER_WINDOW
491 wxEVT_LEAVE_WINDOW
492 wxEVT_LEFT_DCLICK
493 wxEVT_MIDDLE_DCLICK
494 wxEVT_RIGHT_DCLICK
495 wxEVT_NC_LEFT_DOWN
496 wxEVT_NC_LEFT_UP,
497 wxEVT_NC_MIDDLE_DOWN,
498 wxEVT_NC_MIDDLE_UP,
499 wxEVT_NC_RIGHT_DOWN,
500 wxEVT_NC_RIGHT_UP,
501 wxEVT_NC_MOTION,
502 wxEVT_NC_ENTER_WINDOW,
503 wxEVT_NC_LEAVE_WINDOW,
504 wxEVT_NC_LEFT_DCLICK,
505 wxEVT_NC_MIDDLE_DCLICK,
506 wxEVT_NC_RIGHT_DCLICK,
507*/
508
34138703 509class WXDLLEXPORT wxDC;
2b854a32 510class WXDLLEXPORT wxMouseEvent : public wxEvent
c801d85f 511{
2b854a32 512 DECLARE_DYNAMIC_CLASS(wxMouseEvent)
c801d85f 513
2b854a32
VZ
514public:
515 wxMouseEvent(wxEventType mouseType = wxEVT_NULL);
c801d85f 516
2b854a32
VZ
517 // Was it a button event? (*doesn't* mean: is any button *down*?)
518 bool IsButton() const { return Button(-1); }
c801d85f 519
2b854a32
VZ
520 // Was it a down event from button 1, 2 or 3 or any?
521 bool ButtonDown(int but = -1) const;
c801d85f 522
2b854a32
VZ
523 // Was it a dclick event from button 1, 2 or 3 or any?
524 bool ButtonDClick(int but = -1) const;
c801d85f 525
2b854a32
VZ
526 // Was it a up event from button 1, 2 or 3 or any?
527 bool ButtonUp(int but = -1) const;
c801d85f 528
2b854a32
VZ
529 // Was the given button 1,2,3 or any changing state?
530 bool Button(int but) const;
c801d85f 531
2b854a32
VZ
532 // Was the given button 1,2,3 or any in Down state?
533 bool ButtonIsDown(int but) const;
c801d85f 534
2b854a32
VZ
535 // Find state of shift/control keys
536 bool ControlDown() const { return m_controlDown; }
537 bool MetaDown() const { return m_metaDown; }
538 bool AltDown() const { return m_altDown; }
539 bool ShiftDown() const { return m_shiftDown; }
c801d85f 540
2b854a32
VZ
541 // Find which event was just generated
542 bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); }
543 bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); }
544 bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); }
c801d85f 545
2b854a32
VZ
546 bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); }
547 bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); }
548 bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); }
c801d85f 549
2b854a32
VZ
550 bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); }
551 bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); }
552 bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); }
c801d85f 553
2b854a32
VZ
554 // Find the current state of the mouse buttons (regardless
555 // of current event type)
556 bool LeftIsDown() const { return m_leftDown; }
557 bool MiddleIsDown() const { return m_middleDown; }
558 bool RightIsDown() const { return m_rightDown; }
c801d85f 559
2b854a32
VZ
560 // True if a button is down and the mouse is moving
561 bool Dragging() const
562 {
563 return ((m_eventType == wxEVT_MOTION) &&
564 (LeftIsDown() || MiddleIsDown() || RightIsDown()));
565 }
c801d85f 566
2b854a32
VZ
567 // True if the mouse is moving, and no button is down
568 bool Moving() const { return (m_eventType == wxEVT_MOTION); }
c801d85f 569
2b854a32
VZ
570 // True if the mouse is just entering the window
571 bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); }
c801d85f 572
2b854a32
VZ
573 // True if the mouse is just leaving the window
574 bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); }
c801d85f 575
2b854a32 576 // Find the position of the event
803ef874 577 void GetPosition(long *xpos, long *ypos) const { *xpos = m_x; *ypos = m_y; }
2b854a32 578 void Position(long *xpos, long *ypos) const { *xpos = m_x; *ypos = m_y; }
c801d85f 579
2b854a32
VZ
580 // Find the position of the event
581 wxPoint GetPosition() const { return wxPoint(m_x, m_y); }
c801d85f 582
2b854a32
VZ
583 // Find the logical position of the event given the DC
584 wxPoint GetLogicalPosition(const wxDC& dc) const ;
c801d85f 585
2b854a32
VZ
586 // Compatibility
587#if WXWIN_COMPATIBILITY
588 void Position(float *xpos, float *ypos) const
589 {
590 *xpos = (float) m_x; *ypos = (float) m_y;
591 }
592#endif // WXWIN_COMPATIBILITY
c801d85f 593
2b854a32
VZ
594 // Get X position
595 long GetX() const { return m_x; }
c801d85f 596
2b854a32
VZ
597 // Get Y position
598 long GetY() const { return m_y; }
c801d85f 599
aadbdf11
GL
600 void CopyObject(wxObject& obj) const;
601
c801d85f 602public:
2b854a32
VZ
603 long m_x;
604 long m_y;
605 bool m_leftDown;
606 bool m_middleDown;
607 bool m_rightDown;
608
609 bool m_controlDown;
610 bool m_shiftDown;
611 bool m_altDown;
612 bool m_metaDown;
c801d85f
KB
613};
614
615// Keyboard input event class
616
617/*
618 wxEVT_CHAR
619 wxEVT_CHAR_HOOK
4ce81a75 620 wxEVT_KEY_DOWN
c801d85f
KB
621 wxEVT_KEY_UP
622 */
623
2b854a32 624class WXDLLEXPORT wxKeyEvent : public wxEvent
c801d85f 625{
2b854a32 626 DECLARE_DYNAMIC_CLASS(wxKeyEvent)
c801d85f
KB
627
628public:
2b854a32 629 wxKeyEvent(wxEventType keyType = wxEVT_NULL);
c801d85f 630
2b854a32
VZ
631 // Find state of shift/control keys
632 bool ControlDown() const { return m_controlDown; }
633 bool MetaDown() const { return m_metaDown; }
634 bool AltDown() const { return m_altDown; }
635 bool ShiftDown() const { return m_shiftDown; }
636 long KeyCode() const { return m_keyCode; }
c801d85f 637
2b854a32 638 // Find the position of the event
803ef874
JS
639 void GetPosition(long *xpos, long *ypos) const
640 { *xpos = m_x; *ypos = m_y; }
641
642 wxPoint GetPosition() const
643 { return wxPoint(m_x, m_y); }
c801d85f 644
2b854a32 645 // Get X position
803ef874 646 long GetX() const { return m_x; }
c801d85f 647
2b854a32 648 // Get Y position
803ef874 649 long GetY() const { return m_y; }
c801d85f 650
aadbdf11
GL
651 void CopyObject(wxObject& obj) const;
652
2b854a32
VZ
653public:
654 long m_x;
655 long m_y;
656 long m_keyCode;
657 bool m_controlDown;
658 bool m_shiftDown;
659 bool m_altDown;
660 bool m_metaDown;
b0e813a0 661 bool m_scanCode;
c801d85f
KB
662};
663
664// Size event class
665/*
666 wxEVT_SIZE
667 */
668
2b854a32 669class WXDLLEXPORT wxSizeEvent : public wxEvent
c801d85f 670{
2b854a32 671 DECLARE_DYNAMIC_CLASS(wxSizeEvent)
c801d85f 672
2b854a32
VZ
673public:
674 wxSize m_size;
c801d85f 675
2b854a32
VZ
676 wxSizeEvent() { m_eventType = wxEVT_SIZE; }
677 wxSizeEvent(const wxSize& sz, int id = 0)
678 : m_size(sz)
679 { m_eventType = wxEVT_SIZE; m_id = id; }
c801d85f 680
2b854a32 681 wxSize GetSize() const { return m_size; }
aadbdf11
GL
682
683 void CopyObject(wxObject& obj) const;
c801d85f
KB
684};
685
686// Move event class
687
688/*
689 wxEVT_MOVE
690 */
691
2b854a32 692class WXDLLEXPORT wxMoveEvent : public wxEvent
c801d85f 693{
2b854a32 694 DECLARE_DYNAMIC_CLASS(wxMoveEvent)
c801d85f 695
2b854a32
VZ
696public:
697 wxPoint m_pos;
c801d85f 698
2b854a32
VZ
699 wxMoveEvent() { m_eventType = wxEVT_MOVE; }
700 wxMoveEvent(const wxPoint& pos, int id = 0)
701 : m_pos(pos)
702 { m_eventType = wxEVT_MOVE; m_id = id; }
c801d85f 703
2b854a32 704 wxPoint GetPosition() const { return m_pos; }
aadbdf11
GL
705
706 void CopyObject(wxObject& obj) const;
c801d85f
KB
707};
708
709// Paint event class
710/*
711 wxEVT_PAINT
712 wxEVT_NC_PAINT
713 wxEVT_PAINT_ICON
714 */
715
2b854a32 716class WXDLLEXPORT wxPaintEvent : public wxEvent
c801d85f 717{
2b854a32 718 DECLARE_DYNAMIC_CLASS(wxPaintEvent)
c801d85f 719
2b854a32
VZ
720public:
721 wxPaintEvent(int Id = 0) { m_eventType = wxEVT_PAINT; m_id = Id; }
c801d85f
KB
722};
723
724// Erase background event class
725/*
726 wxEVT_ERASE_BACKGROUND
727 */
728
729class WXDLLEXPORT wxDC;
2b854a32 730class WXDLLEXPORT wxEraseEvent : public wxEvent
c801d85f 731{
2b854a32
VZ
732 DECLARE_DYNAMIC_CLASS(wxEraseEvent)
733
734public:
735 wxDC *m_dc;
736
737 wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL)
738 { m_eventType = wxEVT_ERASE_BACKGROUND; m_id = Id; m_dc = dc; }
739 wxDC *GetDC() const { return m_dc; }
aadbdf11
GL
740
741 void CopyObject(wxObject& obj) const;
c801d85f
KB
742};
743
744// Focus event class
745/*
746 wxEVT_SET_FOCUS
747 wxEVT_KILL_FOCUS
748 */
749
2b854a32 750class WXDLLEXPORT wxFocusEvent : public wxEvent
c801d85f 751{
2b854a32 752 DECLARE_DYNAMIC_CLASS(wxFocusEvent)
c801d85f 753
2b854a32
VZ
754public:
755 wxFocusEvent(wxEventType type = wxEVT_NULL, int Id = 0)
756 { m_eventType = type; m_id = Id; }
c801d85f
KB
757};
758
759// Activate event class
760/*
761 wxEVT_ACTIVATE
762 wxEVT_ACTIVATE_APP
763 */
764
2b854a32 765class WXDLLEXPORT wxActivateEvent : public wxEvent
c801d85f 766{
2b854a32
VZ
767 DECLARE_DYNAMIC_CLASS(wxActivateEvent)
768
769public:
770 wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0)
771 { m_eventType = type; m_active = active; m_id = Id; }
772 bool GetActive() const { return m_active; }
c801d85f 773
aadbdf11
GL
774 void CopyObject(wxObject& obj) const;
775
2b854a32
VZ
776private:
777 bool m_active;
c801d85f
KB
778};
779
780// InitDialog event class
781/*
782 wxEVT_INIT_DIALOG
783 */
784
2b854a32 785class WXDLLEXPORT wxInitDialogEvent : public wxEvent
c801d85f 786{
2b854a32 787 DECLARE_DYNAMIC_CLASS(wxInitDialogEvent)
c801d85f 788
2b854a32
VZ
789public:
790 wxInitDialogEvent(int Id = 0)
791 { m_eventType = wxEVT_INIT_DIALOG; m_id = Id; }
c801d85f
KB
792};
793
794// Miscellaneous menu event class
795/*
796 wxEVT_MENU_CHAR,
797 wxEVT_MENU_INIT,
798 wxEVT_MENU_HIGHLIGHT,
799 wxEVT_POPUP_MENU_INIT,
800 wxEVT_CONTEXT_MENU,
801*/
802
2b854a32 803class WXDLLEXPORT wxMenuEvent : public wxEvent
c801d85f 804{
2b854a32 805 DECLARE_DYNAMIC_CLASS(wxMenuEvent)
c801d85f
KB
806
807public:
aadbdf11
GL
808 wxMenuEvent(wxEventType type = wxEVT_NULL, int id = 0)
809 { m_eventType = type; m_menuId = id; }
c801d85f 810
aadbdf11 811 int GetMenuId() const { return m_menuId; }
c801d85f 812
aadbdf11 813 void CopyObject(wxObject& obj) const;
2b854a32 814private:
aadbdf11 815 int m_menuId;
c801d85f
KB
816};
817
818// Window close or session close event class
819/*
820 wxEVT_CLOSE_WINDOW,
821 wxEVT_END_SESSION,
822 wxEVT_QUERY_END_SESSION
823 */
824
2b854a32 825class WXDLLEXPORT wxCloseEvent : public wxEvent
c801d85f 826{
2b854a32
VZ
827 DECLARE_DYNAMIC_CLASS(wxCloseEvent)
828
c801d85f 829public:
2b854a32
VZ
830 wxCloseEvent(wxEventType type = wxEVT_NULL, int id = 0)
831 {
832 m_eventType = type;
833 m_loggingOff = TRUE;
834 m_veto = FALSE; // should be FALSE by default
835 m_id = id;
836#if WXWIN_COMPATIBILITY
837 m_force = FALSE;
838#endif // WXWIN_COMPATIBILITY
839 m_canVeto = TRUE;
840 }
841
842 void SetLoggingOff(bool logOff) { m_loggingOff = logOff; }
843 bool GetLoggingOff() const { return m_loggingOff; }
844
fe4e9e6c
VZ
845 void Veto(bool veto = TRUE)
846 {
847 // GetVeto() will return FALSE anyhow...
848 wxCHECK_RET( m_canVeto,
9d2f3c71 849 _T("call to Veto() ignored (can't veto this event)") );
fe4e9e6c
VZ
850
851 m_veto = veto;
852 }
2b854a32 853 void SetCanVeto(bool canVeto) { m_canVeto = canVeto; }
e3065973 854 // No more asserts here please, the one you put here was wrong.
2b854a32 855 bool CanVeto() const { return m_canVeto; }
fe4e9e6c 856 bool GetVeto() const { return m_canVeto && m_veto; }
c801d85f 857
2b854a32
VZ
858#if WXWIN_COMPATIBILITY
859 // This is probably obsolete now, since we use CanVeto instead, in
860 // both OnCloseWindow and OnQueryEndSession.
861 // m_force == ! m_canVeto i.e., can't veto means we must force it to close.
862 void SetForce(bool force) { m_force = force; }
863 bool GetForce() const { return m_force; }
864#endif
865
aadbdf11
GL
866 void CopyObject(wxObject& obj) const;
867
2b854a32
VZ
868protected:
869 bool m_loggingOff;
870 bool m_veto, m_canVeto;
871
872#if WXWIN_COMPATIBILITY
873 bool m_force;
874#endif
c801d85f
KB
875};
876
877/*
878 wxEVT_SHOW
879 */
880
2b854a32 881class WXDLLEXPORT wxShowEvent : public wxEvent
c801d85f 882{
2b854a32
VZ
883 DECLARE_DYNAMIC_CLASS(wxShowEvent)
884
c801d85f
KB
885public:
886
2b854a32
VZ
887 wxShowEvent(int id = 0, bool show = FALSE)
888 { m_eventType = wxEVT_SHOW; m_id = id; m_show = show; }
c801d85f 889
2b854a32
VZ
890 void SetShow(bool show) { m_show = show; }
891 bool GetShow() const { return m_show; }
c801d85f 892
aadbdf11
GL
893 void CopyObject(wxObject& obj) const;
894
c801d85f 895protected:
2b854a32 896 bool m_show;
c801d85f
KB
897};
898
899/*
900 wxEVT_ICONIZE
901 */
902
2b854a32 903class WXDLLEXPORT wxIconizeEvent : public wxEvent
c801d85f 904{
2b854a32 905 DECLARE_DYNAMIC_CLASS(wxIconizeEvent)
c801d85f 906
2b854a32
VZ
907public:
908 wxIconizeEvent(int id = 0)
909 { m_eventType = wxEVT_ICONIZE; m_id = id; }
c801d85f
KB
910};
911
912/*
913 wxEVT_MAXIMIZE
914 */
915
2b854a32 916class WXDLLEXPORT wxMaximizeEvent : public wxEvent
c801d85f 917{
2b854a32 918 DECLARE_DYNAMIC_CLASS(wxMaximizeEvent)
c801d85f 919
2b854a32
VZ
920public:
921 wxMaximizeEvent(int id = 0)
922 { m_eventType = wxEVT_MAXIMIZE; m_id = id; }
c801d85f
KB
923};
924
925// Joystick event class
926/*
927 wxEVT_JOY_BUTTON_DOWN,
928 wxEVT_JOY_BUTTON_UP,
929 wxEVT_JOY_MOVE,
930 wxEVT_JOY_ZMOVE
931*/
932
933// Which joystick? Same as Windows ids so no conversion necessary.
934#define wxJOYSTICK1 0
935#define wxJOYSTICK2 1
936
937// Which button is down?
938#define wxJOY_BUTTON1 1
939#define wxJOY_BUTTON2 2
940#define wxJOY_BUTTON3 4
941#define wxJOY_BUTTON4 8
942#define wxJOY_BUTTON_ANY -1
943
2b854a32 944class WXDLLEXPORT wxJoystickEvent : public wxEvent
c801d85f 945{
2b854a32
VZ
946 DECLARE_DYNAMIC_CLASS(wxJoystickEvent)
947
948public:
949 wxPoint m_pos;
950 int m_zPosition;
951 int m_buttonChange; // Which button changed?
952 int m_buttonState; // Which buttons are down?
953 int m_joyStick; // Which joystick?
954
955 wxJoystickEvent(wxEventType type = wxEVT_NULL,
956 int state = 0,
957 int joystick = wxJOYSTICK1,
958 int change = 0)
959 {
960 m_eventType = type;
961 m_buttonState = state;
962 m_pos = wxPoint(0,0);
963 m_zPosition = 0;
964 m_joyStick = joystick;
965 m_buttonChange = change;
966 }
967
968 wxPoint GetPosition() const { return m_pos; }
969 int GetZPosition() const { return m_zPosition; }
970 int GetButtonState() const { return m_buttonState; }
971 int GetButtonChange() const { return m_buttonChange; }
972 int GetJoystick() const { return m_joyStick; }
973
974 void SetJoystick(int stick) { m_joyStick = stick; }
975 void SetButtonState(int state) { m_buttonState = state; }
976 void SetButtonChange(int change) { m_buttonChange = change; }
977 void SetPosition(const wxPoint& pos) { m_pos = pos; }
978 void SetZPosition(int zPos) { m_zPosition = zPos; }
979
980 // Was it a button event? (*doesn't* mean: is any button *down*?)
981 bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) ||
982 (GetEventType() == wxEVT_JOY_BUTTON_DOWN)); }
983
984 // Was it a move event?
985 bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE) ; }
986
987 // Was it a zmove event?
988 bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE) ; }
989
990 // Was it a down event from button 1, 2, 3, 4 or any?
991 bool ButtonDown(int but = wxJOY_BUTTON_ANY) const
c801d85f 992 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) &&
2b854a32 993 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
c801d85f 994
2b854a32
VZ
995 // Was it a up event from button 1, 2, 3 or any?
996 bool ButtonUp(int but = wxJOY_BUTTON_ANY) const
c801d85f 997 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) &&
2b854a32 998 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
c801d85f 999
2b854a32
VZ
1000 // Was the given button 1,2,3,4 or any in Down state?
1001 bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const
c801d85f 1002 { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) ||
2b854a32 1003 ((m_buttonState & but) == but)); }
f305c661
GL
1004
1005 void CopyObject(wxObject& obj) const;
c801d85f
KB
1006};
1007
1008// Drop files event class
1009/*
1010 wxEVT_DROP_FILES
1011 */
1012
2b854a32 1013class WXDLLEXPORT wxDropFilesEvent : public wxEvent
c801d85f 1014{
2b854a32 1015 DECLARE_DYNAMIC_CLASS(wxDropFilesEvent)
c801d85f 1016
2b854a32
VZ
1017public:
1018 int m_noFiles;
1019 wxPoint m_pos;
1020 wxString* m_files; // Memory (de)allocated by code calling ProcessEvent
1021
1022 wxDropFilesEvent(wxEventType type = wxEVT_NULL,
1023 int noFiles = 0,
1024 wxString *files = (wxString *) NULL)
1025 { m_eventType = type; m_noFiles = noFiles; m_files = files; }
1026
1027 wxPoint GetPosition() const { return m_pos; }
1028 int GetNumberOfFiles() const { return m_noFiles; }
1029 wxString *GetFiles() const { return m_files; }
f305c661
GL
1030
1031 void CopyObject(wxObject& obj) const;
c801d85f
KB
1032};
1033
1034// Idle event
1035/*
1036 wxEVT_IDLE
1037 */
1038
2b854a32 1039class WXDLLEXPORT wxIdleEvent : public wxEvent
c801d85f 1040{
2b854a32 1041 DECLARE_DYNAMIC_CLASS(wxIdleEvent)
c801d85f
KB
1042
1043public:
2b854a32
VZ
1044 wxIdleEvent()
1045 { m_eventType = wxEVT_IDLE; m_requestMore = FALSE; }
c801d85f 1046
2b854a32
VZ
1047 void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; }
1048 bool MoreRequested() const { return m_requestMore; }
c801d85f 1049
f305c661
GL
1050 void CopyObject(wxObject& obj) const;
1051
c801d85f 1052protected:
2b854a32 1053 bool m_requestMore;
c801d85f
KB
1054};
1055
1056// Update UI event
1057/*
1058 wxEVT_UPDATE_UI
1059 */
1060
1061class WXDLLEXPORT wxMenu;
1062class WXDLLEXPORT wxWindow;
1063
2b854a32 1064class WXDLLEXPORT wxUpdateUIEvent : public wxCommandEvent
c801d85f 1065{
2b854a32 1066 DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent)
c801d85f 1067
2b854a32
VZ
1068public:
1069 wxUpdateUIEvent(wxWindowID commandId = 0)
1070 {
1071 m_eventType = wxEVT_UPDATE_UI;
1072 m_id = commandId;
1073 m_checked = FALSE;
1074 m_setChecked = FALSE;
1075 m_enabled = FALSE;
1076 m_setEnabled = FALSE;
1077 m_setText = FALSE;
1078 m_text = "";
1079 }
1080
1081 bool GetChecked() const { return m_checked; }
1082 bool GetEnabled() const { return m_enabled; }
1083 wxString GetText() const { return m_text; }
1084 bool GetSetText() const { return m_setText; }
1085 bool GetSetChecked() const { return m_setChecked; }
1086 bool GetSetEnabled() const { return m_setEnabled; }
1087
1088 void Check(bool check) { m_checked = check; m_setChecked = TRUE; }
1089 void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; }
1090 void SetText(const wxString& text) { m_text = text; m_setText = TRUE; }
c801d85f 1091
f305c661
GL
1092 void CopyObject(wxObject& obj) const;
1093
2b854a32
VZ
1094protected:
1095 bool m_checked;
1096 bool m_enabled;
1097 bool m_setEnabled;
1098 bool m_setText;
1099 bool m_setChecked;
1100 wxString m_text;
c801d85f
KB
1101};
1102
1103/*
1104 wxEVT_SYS_COLOUR_CHANGED
1105 */
1106
1107// TODO: shouldn't all events record the window ID?
2b854a32 1108class WXDLLEXPORT wxSysColourChangedEvent : public wxEvent
c801d85f 1109{
2b854a32 1110 DECLARE_DYNAMIC_CLASS(wxSysColourChangedEvent)
c801d85f 1111
2b854a32
VZ
1112public:
1113 wxSysColourChangedEvent()
1114 { m_eventType = wxEVT_SYS_COLOUR_CHANGED; }
c801d85f
KB
1115};
1116
f7bd2698
JS
1117/*
1118 wxEVT_PALETTE_CHANGED
1119 */
1120
2b854a32 1121class WXDLLEXPORT wxPaletteChangedEvent : public wxEvent
f7bd2698 1122{
2b854a32 1123 DECLARE_DYNAMIC_CLASS(wxPaletteChangedEvent)
f7bd2698
JS
1124
1125public:
2b854a32
VZ
1126 wxPaletteChangedEvent(wxWindowID id = 0) : wxEvent(id)
1127 {
1128 m_eventType = wxEVT_PALETTE_CHANGED;
1129 m_changedWindow = (wxWindow *) NULL;
1130 }
f7bd2698 1131
2b854a32
VZ
1132 void SetChangedWindow(wxWindow* win) { m_changedWindow = win; }
1133 wxWindow* GetChangedWindow() const { return m_changedWindow; }
f7bd2698 1134
f305c661
GL
1135 void CopyObject(wxObject& obj) const;
1136
f7bd2698 1137protected:
2b854a32 1138 wxWindow* m_changedWindow;
f7bd2698
JS
1139};
1140
1141/*
1142 wxEVT_QUERY_NEW_PALETTE
1143 Indicates the window is getting keyboard focus and should re-do its palette.
1144 */
1145
2b854a32 1146class WXDLLEXPORT wxQueryNewPaletteEvent : public wxEvent
f7bd2698 1147{
2b854a32 1148 DECLARE_DYNAMIC_CLASS(wxQueryNewPaletteEvent)
f7bd2698
JS
1149
1150public:
2b854a32
VZ
1151 wxQueryNewPaletteEvent(wxWindowID id = 0): wxEvent(id)
1152 { m_eventType = wxEVT_QUERY_NEW_PALETTE; m_paletteRealized = FALSE; }
f7bd2698 1153
2b854a32
VZ
1154 // App sets this if it changes the palette.
1155 void SetPaletteRealized(bool realized) { m_paletteRealized = realized; }
1156 bool GetPaletteRealized() const { return m_paletteRealized; }
f7bd2698 1157
f305c661
GL
1158 void CopyObject(wxObject& obj) const;
1159
f7bd2698 1160protected:
2b854a32 1161 bool m_paletteRealized;
f7bd2698
JS
1162};
1163
7fdefd57
VZ
1164/*
1165 Event generated by dialog navigation keys
1166 wxEVT_NAVIGATION_KEY
1167 */
1168// must derive from command event to be propagated to the parent
2b854a32 1169class WXDLLEXPORT wxNavigationKeyEvent : public wxCommandEvent
7fdefd57 1170{
2b854a32 1171 DECLARE_DYNAMIC_CLASS(wxNavigationKeyEvent)
7fdefd57
VZ
1172
1173public:
2b854a32 1174 wxNavigationKeyEvent() : wxCommandEvent(wxEVT_NAVIGATION_KEY) { }
7fdefd57 1175
2b854a32
VZ
1176 // direction: forward (true) or backward (false)
1177 bool GetDirection() const { return m_commandInt == 1; }
1178 void SetDirection(bool bForward) { m_commandInt = bForward; }
7fdefd57 1179
2b854a32
VZ
1180 // it may be a window change event (MDI, notebook pages...) or a control
1181 // change event
1182 bool IsWindowChange() const { return m_extraLong == 1; }
1183 void SetWindowChange(bool bIs) { m_extraLong = bIs; }
7fdefd57 1184
2b854a32
VZ
1185 // the child which has the focus currently (may be NULL - use
1186 // wxWindow::FindFocus then)
1187 wxWindow* GetCurrentFocus() const { return (wxWindow *)m_clientData; }
1188 void SetCurrentFocus(wxWindow *win) { m_clientData = (void *)win; }
7fdefd57
VZ
1189};
1190
e5fb7191 1191/* TODO
c801d85f
KB
1192 wxEVT_POWER,
1193 wxEVT_CREATE,
1194 wxEVT_DESTROY,
c801d85f
KB
1195 wxEVT_MOUSE_CAPTURE_CHANGED,
1196 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
c801d85f
KB
1197// wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
1198 // wxEVT_FONT_CHANGED to all other windows (maybe).
1199 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
1200 wxEVT_MEASURE_ITEM,
1201 wxEVT_COMPARE_ITEM
1202*/
1203
1204class WXDLLEXPORT wxWindow;
1205class WXDLLEXPORT wxControl;
1206
1207// struct WXDLLEXPORT wxEventTableEntry;
1208
1209typedef void (wxObject::*wxObjectEventFunction)(wxEvent&);
1210
1211struct WXDLLEXPORT wxEventTableEntry
1212{
003a43dc 1213 // For some reason, this can't be wxEventType, or VC++ complains.
2b854a32
VZ
1214 int m_eventType; // main event type
1215 int m_id; // control/menu/toolbar id
1216 int m_lastId; // used for ranges of ids
1217 wxObjectEventFunction m_fn; // function to call: not wxEventFunction,
1218 // because of dependency problems
1219
1220 wxObject* m_callbackUserData;
c801d85f
KB
1221};
1222
1223struct WXDLLEXPORT wxEventTable
1224{
2b854a32
VZ
1225 const wxEventTable *baseTable; // Points to base event table (next in chain)
1226 const wxEventTableEntry *entries; // Points to bottom of entry array
c801d85f
KB
1227};
1228
2b854a32 1229class WXDLLEXPORT wxEvtHandler : public wxObject
c801d85f 1230{
2b854a32
VZ
1231 DECLARE_DYNAMIC_CLASS(wxEvtHandler)
1232
1233public:
1234 wxEvtHandler();
1235 ~wxEvtHandler();
1236
1237 wxEvtHandler *GetNextHandler() const { return m_nextHandler; }
1238 wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; }
1239 void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; }
1240 void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; }
1241
1242 void SetEvtHandlerEnabled(bool en) { m_enabled = en; }
1243 bool GetEvtHandlerEnabled() const { return m_enabled; }
1244
1245 virtual void OnCommand(wxWindow& WXUNUSED(win),
1246 wxCommandEvent& WXUNUSED(event))
1247 {
1248 }
1249
1250 // Called if child control has no
1251 // callback function
1252 // Default behaviour
1253 virtual long Default()
1254 { return GetNextHandler() ? GetNextHandler()->Default() : 0; };
1255
e3065973 1256#if WXWIN_COMPATIBILITY
2b854a32 1257 virtual bool OnClose();
e3065973 1258#endif
2b854a32 1259
7214297d
GL
1260#if wxUSE_THREADS
1261 bool ProcessThreadEvent(wxEvent& event);
1262 void ProcessPendingEvents();
1263#endif
2b854a32
VZ
1264 virtual bool ProcessEvent(wxEvent& event);
1265 virtual bool SearchEventTable(wxEventTable& table, wxEvent& event);
1266
1267 // Dynamic association of a member function handler with the event handler,
1268 // id and event type
1269 void Connect( int id, int lastId, wxEventType eventType,
1270 wxObjectEventFunction func,
1271 wxObject *userData = (wxObject *) NULL );
1272
1273 // Convenience function: take just one id
1274 void Connect( int id, wxEventType eventType,
1275 wxObjectEventFunction func,
1276 wxObject *userData = (wxObject *) NULL )
1277 { Connect(id, -1, eventType, func, userData); }
1278
1279 bool SearchDynamicEventTable( wxEvent& event );
c801d85f 1280
63863e09
JS
1281#if wxUSE_THREADS
1282 void ClearEventLocker() { delete m_eventsLocker; m_eventsLocker = NULL; };
1283#endif
1284
c801d85f 1285private:
2b854a32
VZ
1286 static const wxEventTableEntry sm_eventTableEntries[];
1287
c801d85f 1288protected:
193bf013
VZ
1289 static const wxEventTable sm_eventTable;
1290
1291 virtual const wxEventTable *GetEventTable() const;
1292
c801d85f 1293protected:
63863e09
JS
1294 wxEvtHandler* m_nextHandler;
1295 wxEvtHandler* m_previousHandler;
1296 bool m_enabled; // Is event handler enabled?
1297 wxList* m_dynamicEvents;
1298 wxList* m_pendingEvents;
7214297d 1299#if wxUSE_THREADS
63863e09 1300 wxCriticalSection* m_eventsLocker;
7214297d 1301#endif
193bf013
VZ
1302
1303 // optimization: instead of using costly IsKindOf() to decide whether we're
1304 // a window (which is true in 99% of cases), use this flag
63863e09 1305 bool m_isWindow;
c801d85f
KB
1306};
1307
1308typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&);
1309typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&);
1310typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&);
c5b42c87 1311typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&);
c801d85f
KB
1312typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&);
1313typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&);
1314typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&);
1315typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&);
1316typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&);
1317typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&);
1318typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&);
1319typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&);
1320typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&);
1321typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&);
1322typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&);
1323typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&);
1324typedef void (wxEvtHandler::*wxSysColourChangedFunction)(wxSysColourChangedEvent&);
1325typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&);
1326typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&);
1327typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&);
1328typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&);
1329typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxShowEvent&);
1330typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxShowEvent&);
81d66cf3 1331typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&);
f7bd2698
JS
1332typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&);
1333typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&);
c801d85f
KB
1334
1335// N.B. In GNU-WIN32, you *have* to take the address of a member function
1336// (use &) or the compiler crashes...
1337
1338#define DECLARE_EVENT_TABLE() \
1339private:\
2b854a32 1340 static const wxEventTableEntry sm_eventTableEntries[];\
c801d85f 1341protected:\
2b854a32
VZ
1342 static const wxEventTable sm_eventTable;\
1343 virtual const wxEventTable* GetEventTable() const;
c801d85f
KB
1344
1345#define BEGIN_EVENT_TABLE(theClass, baseClass) \
1346const wxEventTable *theClass::GetEventTable() const { return &theClass::sm_eventTable; }\
1347const wxEventTable theClass::sm_eventTable =\
2b854a32 1348 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] };\
c801d85f
KB
1349const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
1350
1351#define END_EVENT_TABLE() \
74e34480 1352 { 0, 0, 0, 0, 0 } };
2b854a32 1353
c801d85f
KB
1354/*
1355 * Event table macros
1356 */
1357
1358// Generic events
c67daf87
UR
1359#define EVT_CUSTOM(event, id, func) { event, id, -1, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL },
1360#define EVT_CUSTOM_RANGE(event, id1, id2, func) { event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL },
c801d85f
KB
1361
1362// Miscellaneous
c67daf87
UR
1363#define EVT_SIZE(func) { wxEVT_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL },
1364#define EVT_MOVE(func) { wxEVT_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL },
1365#define EVT_CLOSE(func) { wxEVT_CLOSE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
387a3b02
JS
1366#define EVT_END_SESSION(func) { wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
1367#define EVT_QUERY_END_SESSION(func) { wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
c67daf87
UR
1368#define EVT_PAINT(func) { wxEVT_PAINT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL },
1369#define EVT_ERASE_BACKGROUND(func) { wxEVT_ERASE_BACKGROUND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, (wxObject *) NULL },
1370#define EVT_CHAR(func) { wxEVT_CHAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL },
4ce81a75
JS
1371#define EVT_KEY_DOWN(func) { wxEVT_KEY_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL },
1372#define EVT_KEY_UP(func) { wxEVT_KEY_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL },
fe71f65c 1373#define EVT_CHAR_HOOK(func) { wxEVT_CHAR_HOOK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL },
c67daf87
UR
1374#define EVT_MENU_HIGHLIGHT(id, func) { wxEVT_MENU_HIGHLIGHT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL },
1375#define EVT_MENU_HIGHLIGHT_ALL(func) { wxEVT_MENU_HIGHLIGHT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL },
1376#define EVT_SET_FOCUS(func) { wxEVT_SET_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL },
1377#define EVT_KILL_FOCUS(func) { wxEVT_KILL_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL },
1378#define EVT_ACTIVATE(func) { wxEVT_ACTIVATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL },
1379#define EVT_ACTIVATE_APP(func) { wxEVT_ACTIVATE_APP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL },
1380#define EVT_END_SESSION(func) { wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
1381#define EVT_QUERY_END_SESSION(func) { wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
1382#define EVT_DROP_FILES(func) { wxEVT_DROP_FILES, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, (wxObject *) NULL },
1383#define EVT_INIT_DIALOG(func) { wxEVT_INIT_DIALOG, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, (wxObject *) NULL },
1384#define EVT_SYS_COLOUR_CHANGED(func) { wxEVT_SYS_COLOUR_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, (wxObject *) NULL },
1385#define EVT_SHOW(func) { wxEVT_SHOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, (wxObject *) NULL },
1386#define EVT_MAXIMIZE(func) { wxEVT_MAXIMIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, (wxObject *) NULL },
1387#define EVT_ICONIZE(func) { wxEVT_ICONIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, (wxObject *) NULL },
1388#define EVT_NAVIGATION_KEY(func) { wxEVT_NAVIGATION_KEY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxNavigationKeyEventFunction) & func, (wxObject *) NULL },
1389#define EVT_PALETTE_CHANGED(func) { wxEVT_PALETTE_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaletteChangedEventFunction) & func, (wxObject *) NULL },
1390#define EVT_QUERY_NEW_PALETTE(func) { wxEVT_QUERY_NEW_PALETTE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL },
c801d85f
KB
1391
1392// Mouse events
c67daf87
UR
1393#define EVT_LEFT_DOWN(func) { wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1394#define EVT_LEFT_UP(func) { wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1395#define EVT_MIDDLE_DOWN(func) { wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1396#define EVT_MIDDLE_UP(func) { wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1397#define EVT_RIGHT_DOWN(func) { wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1398#define EVT_RIGHT_UP(func) { wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1399#define EVT_MOTION(func) { wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1400#define EVT_LEFT_DCLICK(func) { wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1401#define EVT_MIDDLE_DCLICK(func) { wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1402#define EVT_RIGHT_DCLICK(func) { wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1403#define EVT_LEAVE_WINDOW(func) { wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1404#define EVT_ENTER_WINDOW(func) { wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
c801d85f
KB
1405
1406// All mouse events
1407#define EVT_MOUSE_EVENTS(func) \
c67daf87
UR
1408 { wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1409 { wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1410 { wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1411 { wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1412 { wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1413 { wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1414 { wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1415 { wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1416 { wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1417 { wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1418 { wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1419 { wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
c801d85f
KB
1420
1421// EVT_COMMAND
1f112209 1422#define EVT_COMMAND(id, event, fn) { event, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
dbdb39b2 1423#define EVT_COMMAND_RANGE(id1, id2, event, fn) { event, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
c801d85f 1424
c5b42c87
RR
1425// Scrolling from wxWindow (sent to wxScrolledWindow)
1426#define EVT_SCROLLWIN(func) \
1427 { wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1428 { wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1429 { wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1430 { wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1431 { wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1432 { wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1433 { wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1434
1435#define EVT_SCROLLWIN_TOP(func) { wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1436#define EVT_SCROLLWIN_BOTTOM(func) { wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1437#define EVT_SCROLLWIN_LINEUP(func) { wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1438#define EVT_SCROLLWIN_LINEDOWN(func) { wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1439#define EVT_SCROLLWIN_PAGEUP(func) { wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1440#define EVT_SCROLLWIN_PAGEDOWN(func) { wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1441#define EVT_SCROLLWIN_THUMBTRACK(func) { wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1442
1443// Scrolling from wxSlider and wxScrollBar
c801d85f 1444#define EVT_SCROLL(func) \
c67daf87
UR
1445 { wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1446 { wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1447 { wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1448 { wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1449 { wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1450 { wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1451 { wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1452
1453#define EVT_SCROLL_TOP(func) { wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1454#define EVT_SCROLL_BOTTOM(func) { wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1455#define EVT_SCROLL_LINEUP(func) { wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1456#define EVT_SCROLL_LINEDOWN(func) { wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1457#define EVT_SCROLL_PAGEUP(func) { wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1458#define EVT_SCROLL_PAGEDOWN(func) { wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1459#define EVT_SCROLL_THUMBTRACK(func) { wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
c801d85f 1460
c5b42c87 1461// Scrolling from wxSlider and wxScrollBar, with an id
c801d85f 1462#define EVT_COMMAND_SCROLL(id, func) \
c67daf87
UR
1463 { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1464 { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1465 { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1466 { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1467 { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1468 { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1469 { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1470
1471#define EVT_COMMAND_SCROLL_TOP(id, func) { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1472#define EVT_COMMAND_SCROLL_BOTTOM(id, func) { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1473#define EVT_COMMAND_SCROLL_LINEUP(id, func) { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1474#define EVT_COMMAND_SCROLL_LINEDOWN(id, func) { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1475#define EVT_COMMAND_SCROLL_PAGEUP(id, func) { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1476#define EVT_COMMAND_SCROLL_PAGEDOWN(id, func) { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1477#define EVT_COMMAND_SCROLL_THUMBTRACK(id, func) { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
c801d85f
KB
1478
1479// Convenience macros for commonly-used commands
c67daf87
UR
1480#define EVT_BUTTON(id, fn) { wxEVT_COMMAND_BUTTON_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1481#define EVT_CHECKBOX(id, fn) { wxEVT_COMMAND_CHECKBOX_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1482#define EVT_CHOICE(id, fn) { wxEVT_COMMAND_CHOICE_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1483#define EVT_LISTBOX(id, fn) { wxEVT_COMMAND_LISTBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1484#define EVT_LISTBOX_DCLICK(id, fn) { wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1485#define EVT_TEXT(id, fn) { wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1486#define EVT_TEXT_ENTER(id, fn) { wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1487#define EVT_MENU(id, fn) { wxEVT_COMMAND_MENU_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1488#define EVT_MENU_RANGE(id1, id2, fn) { wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1489#define EVT_SLIDER(id, fn) { wxEVT_COMMAND_SLIDER_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1490#define EVT_RADIOBOX(id, fn) { wxEVT_COMMAND_RADIOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1491#define EVT_RADIOBUTTON(id, fn) { wxEVT_COMMAND_RADIOBUTTON_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
c801d85f 1492// EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
c67daf87
UR
1493#define EVT_SCROLLBAR(id, fn) { wxEVT_COMMAND_SCROLLBAR_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1494#define EVT_VLBOX(id, fn) { wxEVT_COMMAND_VLBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1495#define EVT_COMBOBOX(id, fn) { wxEVT_COMMAND_COMBOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1496#define EVT_TOOL(id, fn) { wxEVT_COMMAND_TOOL_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1497#define EVT_TOOL_RANGE(id1, id2, fn) { wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1498#define EVT_TOOL_RCLICKED(id, fn) { wxEVT_COMMAND_TOOL_RCLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1499#define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) { wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1500#define EVT_TOOL_ENTER(id, fn) { wxEVT_COMMAND_TOOL_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1501#define EVT_CHECKLISTBOX(id, fn) { wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
c801d85f
KB
1502
1503// Generic command events
c67daf87
UR
1504#define EVT_COMMAND_LEFT_CLICK(id, fn) { wxEVT_COMMAND_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1505#define EVT_COMMAND_LEFT_DCLICK(id, fn) { wxEVT_COMMAND_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1506#define EVT_COMMAND_RIGHT_CLICK(id, fn) { wxEVT_COMMAND_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1507#define EVT_COMMAND_RIGHT_DCLICK(id, fn) { wxEVT_COMMAND_RIGHT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1508#define EVT_COMMAND_SET_FOCUS(id, fn) { wxEVT_COMMAND_SET_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1509#define EVT_COMMAND_KILL_FOCUS(id, fn) { wxEVT_COMMAND_KILL_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1510#define EVT_COMMAND_ENTER(id, fn) { wxEVT_COMMAND_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
c801d85f
KB
1511
1512// Joystick events
1513#define EVT_JOY_DOWN(func) \
c67daf87 1514 { wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },
c801d85f 1515#define EVT_JOY_UP(func) \
c67daf87 1516 { wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },
c801d85f 1517#define EVT_JOY_MOVE(func) \
c67daf87 1518 { wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },
c801d85f 1519#define EVT_JOY_ZMOVE(func) \
c67daf87 1520 { wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },
c801d85f
KB
1521
1522// All joystick events
1523#define EVT_JOYSTICK_EVENTS(func) \
c67daf87
UR
1524 { wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },\
1525 { wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },\
1526 { wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },\
1527 { wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },\
c801d85f
KB
1528
1529// Idle event
1530#define EVT_IDLE(func) \
c67daf87 1531 { wxEVT_IDLE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, (wxObject *) NULL },\
c801d85f
KB
1532
1533// Update UI event
1534#define EVT_UPDATE_UI(id, func) \
c67daf87 1535 { wxEVT_UPDATE_UI, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, (wxObject *) NULL },\
c801d85f 1536
e702ff0f
JS
1537/*
1538 * Helper functions
1539 */
1540
1541// Find a window with the focus, that is also a descendant of the given window.
1542// This is used to determine the window to initially send commands to.
1543wxWindow* wxFindFocusDescendant(wxWindow* ancestor);
1544
c801d85f 1545#endif
2b854a32 1546 // _WX_EVENTH__