1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Event classes
4 // Author: Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "event.h"
20 #include "wx/object.h"
21 #include "wx/gdicmn.h"
33 wxEVT_COMMAND_BUTTON_CLICKED
,
34 wxEVT_COMMAND_CHECKBOX_CLICKED
,
35 wxEVT_COMMAND_CHOICE_SELECTED
,
36 wxEVT_COMMAND_LISTBOX_SELECTED
,
37 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
,
38 wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
,
39 wxEVT_COMMAND_TEXT_UPDATED
,
40 wxEVT_COMMAND_TEXT_ENTER
,
41 wxEVT_COMMAND_MENU_SELECTED
,
42 wxEVT_COMMAND_SLIDER_UPDATED
,
43 wxEVT_COMMAND_RADIOBOX_SELECTED
,
44 wxEVT_COMMAND_RADIOBUTTON_SELECTED
,
45 // wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use wxEVT_SCROLL... events
46 wxEVT_COMMAND_SCROLLBAR_UPDATED
,
47 wxEVT_COMMAND_VLBOX_SELECTED
,
48 wxEVT_COMMAND_COMBOBOX_SELECTED
,
49 wxEVT_COMMAND_TOOL_CLICKED
,
50 wxEVT_COMMAND_TOOL_RCLICKED
,
51 wxEVT_COMMAND_TOOL_ENTER
,
55 /* Mouse event types */
69 // Non-client mouse events
70 wxEVT_NC_LEFT_DOWN
= wxEVT_FIRST
+ 100,
77 wxEVT_NC_ENTER_WINDOW
,
78 wxEVT_NC_LEAVE_WINDOW
,
80 wxEVT_NC_MIDDLE_DCLICK
,
81 wxEVT_NC_RIGHT_DCLICK
,
83 /* Character input event type */
87 * Scrollbar event identifiers
92 wxEVT_SCROLL_LINEDOWN
,
94 wxEVT_SCROLL_PAGEDOWN
,
95 wxEVT_SCROLL_THUMBTRACK
,
97 wxEVT_SIZE
= wxEVT_FIRST
+ 200,
101 wxEVT_QUERY_END_SESSION
,
112 wxEVT_MOUSE_CAPTURE_CHANGED
,
114 wxEVT_ERASE_BACKGROUND
,
119 wxEVT_MENU_HIGHLIGHT
,
120 wxEVT_POPUP_MENU_INIT
,
122 wxEVT_SYS_COLOUR_CHANGED
,
123 wxEVT_SETTING_CHANGED
,
124 wxEVT_QUERY_NEW_PALETTE
,
125 wxEVT_PALETTE_CHANGED
,
126 wxEVT_JOY_BUTTON_DOWN
,
138 /* Generic command events */
139 // Note: a click is a higher-level event
140 // than button down/up
141 wxEVT_COMMAND_LEFT_CLICK
,
142 wxEVT_COMMAND_LEFT_DCLICK
,
143 wxEVT_COMMAND_RIGHT_CLICK
,
144 wxEVT_COMMAND_RIGHT_DCLICK
,
145 wxEVT_COMMAND_SET_FOCUS
,
146 wxEVT_COMMAND_KILL_FOCUS
,
149 /* Tree control event types */
150 wxEVT_COMMAND_TREE_BEGIN_DRAG
,
151 wxEVT_COMMAND_TREE_BEGIN_RDRAG
,
152 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
,
153 wxEVT_COMMAND_TREE_END_LABEL_EDIT
,
154 wxEVT_COMMAND_TREE_DELETE_ITEM
,
155 wxEVT_COMMAND_TREE_GET_INFO
,
156 wxEVT_COMMAND_TREE_SET_INFO
,
157 wxEVT_COMMAND_TREE_ITEM_EXPANDED
,
158 wxEVT_COMMAND_TREE_ITEM_EXPANDING
,
159 wxEVT_COMMAND_TREE_SEL_CHANGED
,
160 wxEVT_COMMAND_TREE_SEL_CHANGING
,
161 wxEVT_COMMAND_TREE_KEY_DOWN
,
163 /* List control event types */
164 wxEVT_COMMAND_LIST_BEGIN_DRAG
,
165 wxEVT_COMMAND_LIST_BEGIN_RDRAG
,
166 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
,
167 wxEVT_COMMAND_LIST_END_LABEL_EDIT
,
168 wxEVT_COMMAND_LIST_DELETE_ITEM
,
169 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
,
170 wxEVT_COMMAND_LIST_GET_INFO
,
171 wxEVT_COMMAND_LIST_SET_INFO
,
172 wxEVT_COMMAND_LIST_ITEM_SELECTED
,
173 wxEVT_COMMAND_LIST_ITEM_DESELECTED
,
174 wxEVT_COMMAND_LIST_KEY_DOWN
,
175 wxEVT_COMMAND_LIST_INSERT_ITEM
,
176 wxEVT_COMMAND_LIST_COL_CLICK
,
178 /* Tab and notebook control event types */
179 wxEVT_COMMAND_TAB_SEL_CHANGED
,
180 wxEVT_COMMAND_TAB_SEL_CHANGING
,
181 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
,
182 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
,
185 wxEVT_END_PROCESS
= wxEVT_FIRST
+ 300
190 #if WXWIN_COMPATIBILITY
192 #define wxEVENT_TYPE_BUTTON_COMMAND wxEVT_COMMAND_BUTTON_CLICKED
193 #define wxEVENT_TYPE_CHECKBOX_COMMAND wxEVT_COMMAND_CHECKBOX_CLICKED
194 #define wxEVENT_TYPE_CHOICE_COMMAND wxEVT_COMMAND_CHOICE_SELECTED
195 #define wxEVENT_TYPE_LISTBOX_COMMAND wxEVT_COMMAND_LISTBOX_SELECTED
196 #define wxEVENT_TYPE_LISTBOX_DCLICK_COMMAND wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
197 #define wxEVENT_TYPE_TEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
198 #define wxEVENT_TYPE_MULTITEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
199 #define wxEVENT_TYPE_MENU_COMMAND wxEVT_COMMAND_MENU_SELECTED
200 #define wxEVENT_TYPE_SLIDER_COMMAND wxEVT_COMMAND_SLIDER_UPDATED
201 #define wxEVENT_TYPE_RADIOBOX_COMMAND wxEVT_COMMAND_RADIOBOX_SELECTED
202 #define wxEVENT_TYPE_RADIOBUTTON_COMMAND wxEVT_COMMAND_RADIOBUTTON_SELECTED
203 #define wxEVENT_TYPE_TEXT_ENTER_COMMAND wxEVT_COMMAND_TEXT_ENTER
204 #define wxEVENT_TYPE_SET_FOCUS wxEVT_SET_FOCUS
205 #define wxEVENT_TYPE_KILL_FOCUS wxEVT_KILL_FOCUS
206 #define wxEVENT_TYPE_SCROLLBAR_COMMAND wxEVT_COMMAND_SCROLLBAR_UPDATED
207 #define wxEVENT_TYPE_VIRT_LISTBOX_COMMAND wxEVT_COMMAND_VLBOX_SELECTED
208 #define wxEVENT_TYPE_COMBOBOX_COMMAND wxEVT_COMMAND_COMBOBOX_SELECTED
210 #define wxEVENT_TYPE_LEFT_DOWN wxEVT_LEFT_DOWN
211 #define wxEVENT_TYPE_LEFT_UP wxEVT_LEFT_UP
212 #define wxEVENT_TYPE_MIDDLE_DOWN wxEVT_MIDDLE_DOWN
213 #define wxEVENT_TYPE_MIDDLE_UP wxEVT_MIDDLE_UP
214 #define wxEVENT_TYPE_RIGHT_DOWN wxEVT_RIGHT_DOWN
215 #define wxEVENT_TYPE_RIGHT_UP wxEVT_RIGHT_UP
216 #define wxEVENT_TYPE_MOTION wxEVT_MOTION
217 #define wxEVENT_TYPE_ENTER_WINDOW wxEVT_ENTER_WINDOW
218 #define wxEVENT_TYPE_LEAVE_WINDOW wxEVT_LEAVE_WINDOW
219 #define wxEVENT_TYPE_LEFT_DCLICK wxEVT_LEFT_DCLICK
220 #define wxEVENT_TYPE_MIDDLE_DCLICK wxEVT_MIDDLE_DCLICK
221 #define wxEVENT_TYPE_RIGHT_DCLICK wxEVT_RIGHT_DCLICK
222 #define wxEVENT_TYPE_CHAR wxEVT_CHAR
223 #define wxEVENT_TYPE_SCROLL_TOP wxEVT_SCROLL_TOP
224 #define wxEVENT_TYPE_SCROLL_BOTTOM wxEVT_SCROLL_BOTTOM
225 #define wxEVENT_TYPE_SCROLL_LINEUP wxEVT_SCROLL_LINEUP
226 #define wxEVENT_TYPE_SCROLL_LINEDOWN wxEVT_SCROLL_LINEDOWN
227 #define wxEVENT_TYPE_SCROLL_PAGEUP wxEVT_SCROLL_PAGEUP
228 #define wxEVENT_TYPE_SCROLL_PAGEDOWN wxEVT_SCROLL_PAGEDOWN
229 #define wxEVENT_TYPE_SCROLL_THUMBTRACK wxEVT_SCROLL_THUMBTRACK
234 * wxWindows events, covering all interesting things that might happen
235 * (button clicking, resizing, setting text in widgets, etc.).
237 * For each completely new event type, derive a new event class.
238 * An event CLASS represents a C++ class defining a range of similar event TYPES;
239 * examples are canvas events, panel item command events.
240 * An event TYPE is a unique identifier for a particular system event,
241 * such as a button press or a listbox deselection.
245 class WXDLLEXPORT wxEvent
: public wxObject
247 DECLARE_ABSTRACT_CLASS(wxEvent
)
251 inline ~wxEvent(void) {}
253 inline void SetEventType(wxEventType typ
) { m_eventType
= typ
; }
254 inline wxEventType
GetEventType(void) const { return m_eventType
; }
255 inline wxObject
*GetEventObject(void) const { return m_eventObject
; }
256 inline void SetEventObject(wxObject
*obj
) { m_eventObject
= obj
; }
257 inline long GetTimestamp(void) const { return m_timeStamp
; }
258 inline void SetTimestamp(long ts
= 0) { m_timeStamp
= ts
; }
259 inline int GetId() const { return m_id
; }
260 inline void SetId(int Id
) { m_id
= Id
; }
262 // Can instruct event processor that we wish to ignore this event
263 // (treat as if the event table entry had not been found)
264 inline void Skip(bool skip
= TRUE
) { m_skipped
= skip
; }
265 inline bool GetSkipped(void) const { return m_skipped
; };
269 wxObject
* m_eventObject
;
270 char* m_eventHandle
; // Handle of an underlying windowing system event
271 wxEventType m_eventType
;
274 wxObject
* m_callbackUserData
;
278 // Item or menu event class
280 wxEVT_COMMAND_BUTTON_CLICKED
281 wxEVT_COMMAND_CHECKBOX_CLICKED
282 wxEVT_COMMAND_CHOICE_SELECTED
283 wxEVT_COMMAND_LISTBOX_SELECTED
284 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
285 wxEVT_COMMAND_TEXT_UPDATED
286 wxEVT_COMMAND_TEXT_ENTER
287 wxEVT_COMMAND_MENU_SELECTED
288 wxEVT_COMMAND_SLIDER_UPDATED
289 wxEVT_COMMAND_RADIOBOX_SELECTED
290 wxEVT_COMMAND_RADIOBUTTON_SELECTED
291 wxEVT_COMMAND_SCROLLBAR_UPDATED
292 wxEVT_COMMAND_VLBOX_SELECTED
293 wxEVT_COMMAND_COMBOBOX_SELECTED
296 class WXDLLEXPORT wxCommandEvent
: public wxEvent
298 DECLARE_DYNAMIC_CLASS(wxCommandEvent
)
300 wxCommandEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0);
301 inline ~wxCommandEvent(void) {}
304 * Accessors dependent on context
308 // Set/Get listbox/choice client data
309 inline void SetClientData(char* clientData
) { m_clientData
= clientData
; }
310 inline char *GetClientData() const { return m_clientData
; }
312 // Get listbox selection if single-choice
313 inline int GetSelection() const { return m_commandInt
; }
315 // Set/Get listbox/choice selection string
316 inline void SetString(char* s
) { m_commandString
= s
; }
317 inline char *GetString() const { return m_commandString
; }
319 // Get checkbox value
320 inline bool Checked() const { return (m_commandInt
!= 0); }
322 // TRUE if the listbox event was a selection.
323 inline bool IsSelection() const { return (m_extraLong
!= 0); }
325 inline void SetExtraLong(long extraLong
) { m_extraLong
= extraLong
; }
326 inline long GetExtraLong(void) const { return m_extraLong
; }
328 inline void SetInt(int i
) { m_commandInt
= i
; }
329 inline long GetInt(void) const { return m_commandInt
; }
332 char* m_commandString
; // String event argument
334 long m_extraLong
; // Additional information (e.g. select/deselect)
335 char* m_clientData
; // Arbitrary client data
338 // Scroll event class
343 wxEVT_SCROLL_LINEDOWN
345 wxEVT_SCROLL_PAGEDOWN
346 wxEVT_SCROLL_THUMBTRACK
349 class WXDLLEXPORT wxScrollEvent
: public wxCommandEvent
351 DECLARE_DYNAMIC_CLASS(wxScrollEvent
)
354 wxScrollEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0, int pos
= 0, int orient
= 0);
355 inline ~wxScrollEvent(void) {}
362 inline int GetOrientation(void) const { return (int) m_extraLong
; }
363 inline int GetPosition(void) const { return m_commandInt
; }
364 inline void SetOrientation(int orient
) { m_extraLong
= (long) orient
; }
365 inline void SetPosition(int pos
) { m_commandInt
= pos
; }
385 wxEVT_NC_MIDDLE_DOWN,
390 wxEVT_NC_ENTER_WINDOW,
391 wxEVT_NC_LEAVE_WINDOW,
392 wxEVT_NC_LEFT_DCLICK,
393 wxEVT_NC_MIDDLE_DCLICK,
394 wxEVT_NC_RIGHT_DCLICK,
397 class WXDLLEXPORT wxMouseEvent
: public wxEvent
399 DECLARE_DYNAMIC_CLASS(wxMouseEvent
)
402 wxMouseEvent(wxEventType mouseType
= wxEVT_NULL
);
404 // Was it a button event? (*doesn't* mean: is any button *down*?)
405 inline bool IsButton(void) const { return Button(-1); }
407 // Was it a down event from button 1, 2 or 3 or any?
408 bool ButtonDown(int but
= -1) const;
410 // Was it a dclick event from button 1, 2 or 3 or any?
411 bool ButtonDClick(int but
= -1) const;
413 // Was it a up event from button 1, 2 or 3 or any?
414 bool ButtonUp(int but
= -1) const;
416 // Was the given button 1,2,3 or any changing state?
417 bool Button(int but
) const;
419 // Was the given button 1,2,3 or any in Down state?
420 bool ButtonIsDown(int but
) const;
422 // Find state of shift/control keys
423 inline bool ControlDown(void) const { return m_controlDown
; }
424 inline bool MetaDown(void) const { return m_metaDown
; }
425 inline bool AltDown(void) const { return m_altDown
; }
426 inline bool ShiftDown(void) const { return m_shiftDown
; }
428 // Find which event was just generated
429 inline bool LeftDown(void) const { return (m_eventType
== wxEVT_LEFT_DOWN
); }
430 inline bool MiddleDown(void) const { return (m_eventType
== wxEVT_MIDDLE_DOWN
); }
431 inline bool RightDown(void) const { return (m_eventType
== wxEVT_RIGHT_DOWN
); }
433 inline bool LeftUp(void) const { return (m_eventType
== wxEVT_LEFT_UP
); }
434 inline bool MiddleUp(void) const { return (m_eventType
== wxEVT_MIDDLE_UP
); }
435 inline bool RightUp(void) const { return (m_eventType
== wxEVT_RIGHT_UP
); }
437 inline bool LeftDClick(void) const { return (m_eventType
== wxEVT_LEFT_DCLICK
); }
438 inline bool MiddleDClick(void) const { return (m_eventType
== wxEVT_MIDDLE_DCLICK
); }
439 inline bool RightDClick(void) const { return (m_eventType
== wxEVT_RIGHT_DCLICK
); }
441 // Find the current state of the mouse buttons (regardless
442 // of current event type)
443 inline bool LeftIsDown(void) const { return m_leftDown
; }
444 inline bool MiddleIsDown(void) const { return m_middleDown
; }
445 inline bool RightIsDown(void) const { return m_rightDown
; }
447 // True if a button is down and the mouse is moving
448 inline bool Dragging(void) const { return ((m_eventType
== wxEVENT_TYPE_MOTION
) && (LeftIsDown() || MiddleIsDown() || RightIsDown())); }
450 // True if the mouse is moving, and no button is down
451 inline bool Moving(void) const { return (m_eventType
== wxEVT_MOTION
); }
453 // True if the mouse is just entering the window
454 inline bool Entering(void) const { return (m_eventType
== wxEVT_ENTER_WINDOW
); }
456 // True if the mouse is just leaving the window
457 inline bool Leaving(void) const { return (m_eventType
== wxEVT_LEAVE_WINDOW
); }
459 // Find the position of the event
460 inline void Position(long *xpos
, long *ypos
) const { *xpos
= m_x
; *ypos
= m_y
; }
462 // Find the position of the event
463 inline wxPoint
GetPosition() const { return wxPoint(m_x
, m_y
); }
465 // Find the logical position of the event given the DC
466 wxPoint
GetLogicalPosition(const wxDC
& dc
) const ;
469 inline void Position(float *xpos
, float *ypos
) const { *xpos
= (float) m_x
; *ypos
= (float) m_y
; }
472 inline long GetX(void) const { return m_x
; }
475 inline long GetY(void) const { return m_y
; }
491 // Keyboard input event class
499 class WXDLLEXPORT wxKeyEvent
: public wxEvent
501 DECLARE_DYNAMIC_CLASS(wxKeyEvent
)
504 wxKeyEvent(wxEventType keyType
= wxEVT_NULL
);
506 // Find state of shift/control keys
507 inline bool ControlDown(void) const { return m_controlDown
; }
508 inline bool MetaDown(void) const { return m_metaDown
; }
509 inline bool AltDown(void) const { return m_altDown
; }
510 inline bool ShiftDown(void) const { return m_shiftDown
; }
511 inline long KeyCode(void) const { return m_keyCode
; }
513 // Find the position of the event
514 inline void Position(float *xpos
, float *ypos
) const { *xpos
= m_x
; *ypos
= m_y
; }
517 inline float GetX(void) const { return m_x
; }
520 inline float GetY(void) const { return m_y
; }
538 class WXDLLEXPORT wxSizeEvent
: public wxEvent
540 DECLARE_DYNAMIC_CLASS(wxSizeEvent
)
545 inline wxSizeEvent(void) { m_eventType
= wxEVT_SIZE
; }
546 inline wxSizeEvent(const wxSize
& sz
, int id
= 0)
547 { m_eventType
= wxEVT_SIZE
; m_size
.x
= sz
.x
; m_size
.y
= sz
.y
; m_id
= id
; }
549 inline wxSize
GetSize(void) const { return m_size
; }
558 class WXDLLEXPORT wxMoveEvent
: public wxEvent
560 DECLARE_DYNAMIC_CLASS(wxMoveEvent
)
565 inline wxMoveEvent(void) { m_eventType
= wxEVT_MOVE
; }
566 inline wxMoveEvent(const wxPoint
& pos
, int id
= 0)
567 { m_eventType
= wxEVT_MOVE
; m_pos
.x
= pos
.x
; m_pos
.y
= pos
.y
; m_id
= id
; }
569 inline wxPoint
GetPosition(void) const { return m_pos
; }
579 class WXDLLEXPORT wxPaintEvent
: public wxEvent
581 DECLARE_DYNAMIC_CLASS(wxPaintEvent
)
584 inline wxPaintEvent(int Id
= 0) { m_eventType
= wxEVT_PAINT
; m_id
= Id
; }
587 // Erase background event class
589 wxEVT_ERASE_BACKGROUND
592 class WXDLLEXPORT wxDC
;
593 class WXDLLEXPORT wxEraseEvent
: public wxEvent
595 DECLARE_DYNAMIC_CLASS(wxEraseEvent
)
598 inline wxEraseEvent(int Id
= 0, wxDC
*dc
= NULL
) { m_eventType
= wxEVT_ERASE_BACKGROUND
; m_id
= Id
; m_dc
= dc
; }
599 inline wxDC
*GetDC() const { return m_dc
; }
608 class WXDLLEXPORT wxFocusEvent
: public wxEvent
610 DECLARE_DYNAMIC_CLASS(wxFocusEvent
)
613 inline wxFocusEvent(wxEventType type
= wxEVT_NULL
, int Id
= 0) { m_eventType
= type
; m_id
= Id
; }
616 // Activate event class
622 class WXDLLEXPORT wxActivateEvent
: public wxEvent
624 DECLARE_DYNAMIC_CLASS(wxActivateEvent
)
628 inline wxActivateEvent(wxEventType type
= wxEVT_NULL
, bool active
= TRUE
, int Id
= 0) { m_eventType
= type
; m_active
= active
; m_id
= Id
; }
629 inline bool GetActive(void) const { return m_active
; }
632 // InitDialog event class
637 class WXDLLEXPORT wxInitDialogEvent
: public wxEvent
639 DECLARE_DYNAMIC_CLASS(wxInitDialogEvent
)
642 inline wxInitDialogEvent(int Id
= 0) { m_eventType
= wxEVT_INIT_DIALOG
; m_id
= Id
; }
645 // Miscellaneous menu event class
649 wxEVT_MENU_HIGHLIGHT,
650 wxEVT_POPUP_MENU_INIT,
654 class WXDLLEXPORT wxMenuEvent
: public wxEvent
656 DECLARE_DYNAMIC_CLASS(wxMenuEvent
)
661 inline wxMenuEvent(wxEventType type
= wxEVT_NULL
, int id
= 0) { m_eventType
= type
; m_menuId
= id
; }
663 inline int GetMenuId(void) const { return m_menuId
; }
666 // Window close or session close event class
670 wxEVT_QUERY_END_SESSION
673 class WXDLLEXPORT wxCloseEvent
: public wxEvent
675 DECLARE_DYNAMIC_CLASS(wxCloseEvent
)
678 inline wxCloseEvent(wxEventType type
= wxEVT_NULL
, int id
= 0)
679 { m_eventType
= type
; m_sessionEnding
= TRUE
; m_loggingOff
= TRUE
; m_veto
= FALSE
;
680 m_id
= id
; m_force
= FALSE
; }
682 inline bool GetSessionEnding(void) const { return m_sessionEnding
; }
683 inline bool GetLoggingOff(void) const { return m_loggingOff
; }
684 inline void Veto(bool veto
= TRUE
) { m_veto
= veto
; }
685 inline bool GetVeto(void) const { return m_veto
; }
686 inline void SetForce(bool force
) { m_force
= force
; }
687 inline bool GetForce(void) const { return m_force
; }
690 bool m_sessionEnding
;
701 class WXDLLEXPORT wxShowEvent
: public wxEvent
703 DECLARE_DYNAMIC_CLASS(wxShowEvent
)
706 inline wxShowEvent(int id
= 0, bool show
= FALSE
)
707 { m_eventType
= wxEVT_SHOW
; m_id
= id
; m_show
= show
; }
709 inline void SetShow(bool show
) { m_show
= show
; }
710 inline bool GetShow(void) const { return m_show
; }
720 class WXDLLEXPORT wxIconizeEvent
: public wxEvent
722 DECLARE_DYNAMIC_CLASS(wxIconizeEvent
)
725 inline wxIconizeEvent(int id
= 0)
726 { m_eventType
= wxEVT_ICONIZE
; m_id
= id
; }
733 class WXDLLEXPORT wxMaximizeEvent
: public wxEvent
735 DECLARE_DYNAMIC_CLASS(wxMaximizeEvent
)
738 inline wxMaximizeEvent(int id
= 0)
739 { m_eventType
= wxEVT_MAXIMIZE
; m_id
= id
; }
742 // Joystick event class
744 wxEVT_JOY_BUTTON_DOWN,
750 // Which joystick? Same as Windows ids so no conversion necessary.
751 #define wxJOYSTICK1 0
752 #define wxJOYSTICK2 1
754 // Which button is down?
755 #define wxJOY_BUTTON1 1
756 #define wxJOY_BUTTON2 2
757 #define wxJOY_BUTTON3 4
758 #define wxJOY_BUTTON4 8
759 #define wxJOY_BUTTON_ANY -1
761 class WXDLLEXPORT wxJoystickEvent
: public wxEvent
763 DECLARE_DYNAMIC_CLASS(wxJoystickEvent
)
768 int m_buttonChange
; // Which button changed?
769 int m_buttonState
; // Which buttons are down?
770 int m_joyStick
; // Which joystick?
772 inline wxJoystickEvent(wxEventType type
= wxEVT_NULL
, int state
= 0, int joystick
= wxJOYSTICK1
, int change
= 0)
773 { m_eventType
= type
; m_buttonState
= state
; m_pos
= wxPoint(0,0); m_zPosition
= 0;
774 m_joyStick
= joystick
; m_buttonChange
= change
; }
776 inline wxPoint
GetPosition(void) const { return m_pos
; }
777 inline int GetZPosition(void) const { return m_zPosition
; }
778 inline int GetButtonState(void) const { return m_buttonState
; }
779 inline int GetButtonChange(void) const { return m_buttonChange
; }
780 inline int GetJoystick(void) const { return m_joyStick
; }
782 inline void SetJoystick(int stick
) { m_joyStick
= stick
; }
783 inline void SetButtonState(int state
) { m_buttonState
= state
; }
784 inline void SetButtonChange(int change
) { m_buttonChange
= change
; }
785 inline void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
786 inline void SetZPosition(int zPos
) { m_zPosition
= zPos
; }
788 // Was it a button event? (*doesn't* mean: is any button *down*?)
789 inline bool IsButton(void) const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN
) ||
790 (GetEventType() == wxEVT_JOY_BUTTON_DOWN
)); }
792 // Was it a move event?
793 inline bool IsMove(void) const { return (GetEventType() == wxEVT_JOY_MOVE
) ; }
795 // Was it a zmove event?
796 inline bool IsZMove(void) const { return (GetEventType() == wxEVT_JOY_ZMOVE
) ; }
798 // Was it a down event from button 1, 2, 3, 4 or any?
799 inline bool ButtonDown(int but
= wxJOY_BUTTON_ANY
) const
800 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN
) &&
801 ((but
== wxJOY_BUTTON_ANY
) || (but
== m_buttonChange
))); }
803 // Was it a up event from button 1, 2, 3 or any?
804 inline bool ButtonUp(int but
= wxJOY_BUTTON_ANY
) const
805 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP
) &&
806 ((but
== wxJOY_BUTTON_ANY
) || (but
== m_buttonChange
))); }
808 // Was the given button 1,2,3,4 or any in Down state?
809 inline bool ButtonIsDown(int but
= wxJOY_BUTTON_ANY
) const
810 { return (((but
== wxJOY_BUTTON_ANY
) && (m_buttonState
!= 0)) ||
811 ((m_buttonState
& but
) == but
)); }
814 // Drop files event class
819 class WXDLLEXPORT wxDropFilesEvent
: public wxEvent
821 DECLARE_DYNAMIC_CLASS(wxDropFilesEvent
)
826 wxString
* m_files
; // Memory (de)allocated by code calling ProcessEvent
828 inline wxDropFilesEvent(wxEventType type
= wxEVT_NULL
, int noFiles
= 0, wxString
*files
= NULL
)
829 { m_eventType
= type
; m_noFiles
= noFiles
; m_files
= files
; }
831 inline wxPoint
GetPosition(void) const { return m_pos
; }
832 inline int GetNumberOfFiles(void) const { return m_noFiles
; }
833 inline wxString
*GetFiles(void) const { return m_files
; }
841 class WXDLLEXPORT wxIdleEvent
: public wxEvent
843 DECLARE_DYNAMIC_CLASS(wxIdleEvent
)
846 inline wxIdleEvent(void)
847 { m_eventType
= wxEVT_IDLE
; m_requestMore
= FALSE
; }
849 inline void RequestMore(bool needMore
= TRUE
) { m_requestMore
= needMore
; }
850 inline bool MoreRequested(void) const { return m_requestMore
; }
861 class WXDLLEXPORT wxMenu
;
862 class WXDLLEXPORT wxWindow
;
864 class WXDLLEXPORT wxUpdateUIEvent
: public wxEvent
866 DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent
)
868 inline wxUpdateUIEvent(wxWindowID commandId
= 0)
869 { m_eventType
= wxEVT_UPDATE_UI
; m_id
= commandId
;
870 m_checked
= FALSE
; m_setChecked
= FALSE
; m_enabled
= FALSE
; m_setEnabled
= FALSE
;
871 m_setText
= FALSE
; m_text
= ""; }
873 inline bool GetChecked(void) const { return m_checked
; }
874 inline bool GetEnabled(void) const { return m_enabled
; }
875 inline wxString
GetText(void) const { return m_text
; }
876 inline bool GetSetText(void) const { return m_setText
; }
877 inline bool GetSetChecked(void) const { return m_setChecked
; }
878 inline bool GetSetEnabled(void) const { return m_setEnabled
; }
880 inline void Check(bool check
) { m_checked
= check
; m_setChecked
= TRUE
; }
881 inline void Enable(bool enable
) { m_enabled
= enable
; m_setEnabled
= TRUE
; }
882 inline void SetText(const wxString
& text
) { m_text
= text
; m_setText
= TRUE
; }
896 wxEVT_SYS_COLOUR_CHANGED
899 // TODO: shouldn't all events record the window ID?
900 class WXDLLEXPORT wxSysColourChangedEvent
: public wxEvent
902 DECLARE_DYNAMIC_CLASS(wxSysColourChangedEvent
)
905 inline wxSysColourChangedEvent(void)
906 { m_eventType
= wxEVT_SYS_COLOUR_CHANGED
; }
913 wxEVT_MOUSE_CAPTURE_CHANGED,
914 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
915 wxEVT_QUERY_NEW_PALETTE,
916 wxEVT_PALETTE_CHANGED,
917 // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
918 // wxEVT_FONT_CHANGED to all other windows (maybe).
919 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
924 class WXDLLEXPORT wxWindow
;
925 class WXDLLEXPORT wxControl
;
927 // struct WXDLLEXPORT wxEventTableEntry;
929 typedef void (wxObject::*wxObjectEventFunction
)(wxEvent
&);
931 struct WXDLLEXPORT wxEventTableEntry
933 // For some reason, this can't be wxEventType, or VC++ complains.
934 int m_eventType
; // main event type
935 int m_id
; // control/menu/toolbar id
936 int m_lastId
; // used for ranges of ids
937 wxObjectEventFunction m_fn
; // function to call: not wxEventFunction, because
938 // of dependency problems
939 wxObject
* m_callbackUserData
;
942 struct WXDLLEXPORT wxEventTable
944 const wxEventTable
*baseTable
; // Points to base event table (next in chain)
945 const wxEventTableEntry
*entries
; // Points to bottom of entry array
948 class WXDLLEXPORT wxEvtHandler
: public wxObject
950 DECLARE_DYNAMIC_CLASS(wxEvtHandler
)
955 inline wxEvtHandler
*GetNextHandler(void) const { return m_nextHandler
; }
956 inline wxEvtHandler
*GetPreviousHandler(void) const { return m_previousHandler
; }
957 inline void SetNextHandler(wxEvtHandler
*handler
) { m_nextHandler
= handler
; }
958 inline void SetPreviousHandler(wxEvtHandler
*handler
) { m_previousHandler
= handler
; }
960 inline void SetEvtHandlerEnabled(bool en
) { m_enabled
= en
; }
961 inline bool GetEvtHandlerEnabled(void) const { return m_enabled
; }
963 inline virtual void OnCommand(wxWindow
& WXUNUSED(win
), wxCommandEvent
& WXUNUSED(event
)) {};
964 // Called if child control has no
967 virtual long Default(void) { if (GetNextHandler()) return GetNextHandler()->Default(); else return 0; };
969 virtual bool OnClose(void);
971 inline char *GetClientData(void) const { return m_clientData
; }
972 inline void SetClientData(char *clientData
) { m_clientData
= clientData
; }
974 virtual bool ProcessEvent(wxEvent
& event
);
975 virtual bool SearchEventTable(wxEventTable
& table
, wxEvent
& event
);
977 void Connect( int id
, int lastId
,
979 wxObjectEventFunction func
,
980 wxObject
*userData
= NULL
);
982 bool SearchDynamicEventTable( wxEvent
& event
);
985 static const wxEventTableEntry sm_eventTableEntries
[];
987 static const wxEventTable sm_eventTable
;
988 virtual const wxEventTable
* GetEventTable() const;
990 wxEvtHandler
* m_nextHandler
;
991 wxEvtHandler
* m_previousHandler
;
992 char* m_clientData
; // Any user client data
993 bool m_enabled
; // Is event handler enabled?
994 wxList
* m_dynamicEvents
;
998 typedef void (wxEvtHandler::*wxEventFunction
)(wxEvent
&);
999 typedef void (wxEvtHandler::*wxCommandEventFunction
)(wxCommandEvent
&);
1000 typedef void (wxEvtHandler::*wxScrollEventFunction
)(wxScrollEvent
&);
1001 typedef void (wxEvtHandler::*wxSizeEventFunction
)(wxSizeEvent
&);
1002 typedef void (wxEvtHandler::*wxMoveEventFunction
)(wxMoveEvent
&);
1003 typedef void (wxEvtHandler::*wxPaintEventFunction
)(wxPaintEvent
&);
1004 typedef void (wxEvtHandler::*wxEraseEventFunction
)(wxEraseEvent
&);
1005 typedef void (wxEvtHandler::*wxMouseEventFunction
)(wxMouseEvent
&);
1006 typedef void (wxEvtHandler::*wxCharEventFunction
)(wxKeyEvent
&);
1007 typedef void (wxEvtHandler::*wxFocusEventFunction
)(wxFocusEvent
&);
1008 typedef void (wxEvtHandler::*wxActivateEventFunction
)(wxActivateEvent
&);
1009 typedef void (wxEvtHandler::*wxMenuEventFunction
)(wxMenuEvent
&);
1010 typedef void (wxEvtHandler::*wxJoystickEventFunction
)(wxJoystickEvent
&);
1011 typedef void (wxEvtHandler::*wxDropFilesEventFunction
)(wxDropFilesEvent
&);
1012 typedef void (wxEvtHandler::*wxInitDialogEventFunction
)(wxInitDialogEvent
&);
1013 typedef void (wxEvtHandler::*wxSysColourChangedFunction
)(wxSysColourChangedEvent
&);
1014 typedef void (wxEvtHandler::*wxUpdateUIEventFunction
)(wxUpdateUIEvent
&);
1015 typedef void (wxEvtHandler::*wxIdleEventFunction
)(wxIdleEvent
&);
1016 typedef void (wxEvtHandler::*wxCloseEventFunction
)(wxCloseEvent
&);
1017 typedef void (wxEvtHandler::*wxShowEventFunction
)(wxShowEvent
&);
1018 typedef void (wxEvtHandler::*wxIconizeEventFunction
)(wxShowEvent
&);
1019 typedef void (wxEvtHandler::*wxMaximizeEventFunction
)(wxShowEvent
&);
1021 // N.B. In GNU-WIN32, you *have* to take the address of a member function
1022 // (use &) or the compiler crashes...
1024 #define DECLARE_EVENT_TABLE() \
1026 static const wxEventTableEntry sm_eventTableEntries[];\
1028 static const wxEventTable sm_eventTable;\
1029 virtual const wxEventTable* GetEventTable() const;
1031 #define BEGIN_EVENT_TABLE(theClass, baseClass) \
1032 const wxEventTable *theClass::GetEventTable() const { return &theClass::sm_eventTable; }\
1033 const wxEventTable theClass::sm_eventTable =\
1034 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] };\
1035 const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
1037 #define END_EVENT_TABLE() \
1041 * Event table macros
1045 #define EVT_CUSTOM(event, id, func) { event, id, -1, (wxObjectEventFunction) (wxEventFunction) & func, NULL },
1046 #define EVT_CUSTOM_RANGE(event, id1, id2, func) { event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, NULL },
1049 #define EVT_SIZE(func) { wxEVT_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, NULL },
1050 #define EVT_MOVE(func) { wxEVT_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, NULL },
1051 #define EVT_CLOSE(func) { wxEVT_CLOSE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, NULL },
1052 #define EVT_PAINT(func) { wxEVT_PAINT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, NULL },
1053 #define EVT_ERASE_BACKGROUND(func) { wxEVT_ERASE_BACKGROUND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, NULL },
1054 #define EVT_CHAR(func) { wxEVT_CHAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL },
1055 #define EVT_CHAR_HOOK(func) { wxEVT_CHAR_HOOK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL },
1056 #define EVT_MENU_HIGHLIGHT(id, func) { wxEVT_MENU_HIGHLIGHT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, NULL },
1057 #define EVT_MENU_HIGHLIGHT_ALL(func) { wxEVT_MENU_HIGHLIGHT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, NULL },
1058 #define EVT_SET_FOCUS(func) { wxEVT_SET_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, NULL },
1059 #define EVT_KILL_FOCUS(func) { wxEVT_KILL_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, NULL },
1060 #define EVT_ACTIVATE(func) { wxEVT_ACTIVATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, NULL },
1061 #define EVT_ACTIVATE_APP(func) { wxEVT_ACTIVATE_APP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, NULL },
1062 #define EVT_END_SESSION(func) { wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, NULL },
1063 #define EVT_QUERY_END_SESSION(func) { wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, NULL },
1064 #define EVT_DROP_FILES(func) { wxEVT_DROP_FILES, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, NULL },
1065 #define EVT_INIT_DIALOG(func) { wxEVT_INIT_DIALOG, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, NULL },
1066 #define EVT_SYS_COLOUR_CHANGED(func) { wxEVT_SYS_COLOUR_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, NULL },
1067 #define EVT_SHOW(func) { wxEVT_SHOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, NULL },
1068 #define EVT_MAXIMIZE(func) { wxEVT_MAXIMIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, NULL },
1069 #define EVT_ICONIZE(func) { wxEVT_ICONIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, NULL },
1072 #define EVT_LEFT_DOWN(func) { wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1073 #define EVT_LEFT_UP(func) { wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1074 #define EVT_MIDDLE_DOWN(func) { wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1075 #define EVT_MIDDLE_UP(func) { wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1076 #define EVT_RIGHT_DOWN(func) { wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1077 #define EVT_RIGHT_UP(func) { wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1078 #define EVT_MOTION(func) { wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1079 #define EVT_LEFT_DCLICK(func) { wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1080 #define EVT_MIDDLE_DCLICK(func) { wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1081 #define EVT_RIGHT_DCLICK(func) { wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1082 #define EVT_LEAVE_WINDOW(func) { wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1083 #define EVT_ENTER_WINDOW(func) { wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1086 #define EVT_MOUSE_EVENTS(func) \
1087 { wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1088 { wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1089 { wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1090 { wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1091 { wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1092 { wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1093 { wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1094 { wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1095 { wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1096 { wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1097 { wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },\
1098 { wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, NULL },
1101 #define EVT_COMMAND(id, cmd, fn) { cmd, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1102 #define EVT_COMMAND_RANGE(id1, id2, cmd, fn) { cmd, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1105 #define EVT_SCROLL(func) \
1106 { wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1107 { wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1108 { wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1109 { wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1110 { wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1111 { wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1112 { wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1114 #define EVT_SCROLL_TOP(func) { wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1115 #define EVT_SCROLL_BOTTOM(func) { wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1116 #define EVT_SCROLL_LINEUP(func) { wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1117 #define EVT_SCROLL_LINEDOWN(func) { wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1118 #define EVT_SCROLL_PAGEUP(func) { wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1119 #define EVT_SCROLL_PAGEDOWN(func) { wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1120 #define EVT_SCROLL_THUMBTRACK(func) { wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1122 // Scrolling, with an id
1123 #define EVT_COMMAND_SCROLL(id, func) \
1124 { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1125 { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1126 { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1127 { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1128 { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1129 { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },\
1130 { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1132 #define EVT_COMMAND_SCROLL_TOP(id, func) { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1133 #define EVT_COMMAND_SCROLL_BOTTOM(id, func) { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1134 #define EVT_COMMAND_SCROLL_LINEUP(id, func) { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1135 #define EVT_COMMAND_SCROLL_LINEDOWN(id, func) { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1136 #define EVT_COMMAND_SCROLL_PAGEUP(id, func) { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1137 #define EVT_COMMAND_SCROLL_PAGEDOWN(id, func) { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1138 #define EVT_COMMAND_SCROLL_THUMBTRACK(id, func) { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, NULL },
1140 // Convenience macros for commonly-used commands
1141 #define EVT_BUTTON(id, fn) { wxEVT_COMMAND_BUTTON_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1142 #define EVT_CHECKBOX(id, fn) { wxEVT_COMMAND_CHECKBOX_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1143 #define EVT_CHOICE(id, fn) { wxEVT_COMMAND_CHOICE_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1144 #define EVT_LISTBOX(id, fn) { wxEVT_COMMAND_LISTBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1145 #define EVT_LISTBOX_DCLICK(id, fn) { wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1146 #define EVT_TEXT(id, fn) { wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1147 #define EVT_TEXT_ENTER(id, fn) { wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1148 #define EVT_MENU(id, fn) { wxEVT_COMMAND_MENU_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1149 #define EVT_MENU_RANGE(id1, id2, fn) { wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1150 #define EVT_SLIDER(id, fn) { wxEVT_COMMAND_SLIDER_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1151 #define EVT_RADIOBOX(id, fn) { wxEVT_COMMAND_RADIOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1152 #define EVT_RADIOBUTTON(id, fn) { wxEVT_COMMAND_RADIOBUTTON_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1153 // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
1154 #define EVT_SCROLLBAR(id, fn) { wxEVT_COMMAND_SCROLLBAR_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1155 #define EVT_VLBOX(id, fn) { wxEVT_COMMAND_VLBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1156 #define EVT_COMBOBOX(id, fn) { wxEVT_COMMAND_COMBOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1157 #define EVT_TOOL(id, fn) { wxEVT_COMMAND_TOOL_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1158 #define EVT_TOOL_RCLICKED(id, fn) { wxEVT_COMMAND_TOOL_RCLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1159 #define EVT_TOOL_ENTER(id, fn) { wxEVT_COMMAND_TOOL_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1160 #define EVT_CHECKLISTBOX(id, fn) { wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1162 // Generic command events
1163 #define EVT_COMMAND_LEFT_CLICK(id, fn) { wxEVT_COMMAND_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1164 #define EVT_COMMAND_LEFT_DCLICK(id, fn) { wxEVT_COMMAND_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1165 #define EVT_COMMAND_RIGHT_CLICK(id, fn) { wxEVT_COMMAND_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1166 #define EVT_COMMAND_RIGHT_DCLICK(id, fn) { wxEVT_COMMAND_RIGHT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1167 #define EVT_COMMAND_SET_FOCUS(id, fn) { wxEVT_COMMAND_SET_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1168 #define EVT_COMMAND_KILL_FOCUS(id, fn) { wxEVT_COMMAND_KILL_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1169 #define EVT_COMMAND_ENTER(id, fn) { wxEVT_COMMAND_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, NULL },
1172 #define EVT_JOY_DOWN(func) \
1173 { wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, NULL },
1174 #define EVT_JOY_UP(func) \
1175 { wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, NULL },
1176 #define EVT_JOY_MOVE(func) \
1177 { wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, NULL },
1178 #define EVT_JOY_ZMOVE(func) \
1179 { wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, NULL },
1181 // All joystick events
1182 #define EVT_JOYSTICK_EVENTS(func) \
1183 { wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, NULL },\
1184 { wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, NULL },\
1185 { wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, NULL },\
1186 { wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, NULL },\
1189 #define EVT_IDLE(func) \
1190 { wxEVT_IDLE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, NULL },\
1193 #define EVT_UPDATE_UI(id, func) \
1194 { wxEVT_UPDATE_UI, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, NULL },\