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