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