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