1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Event classes
4 // Author: Julian Smart
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
17 #include "wx/object.h"
18 #include "wx/clntdata.h"
21 #include "wx/gdicmn.h"
22 #include "wx/cursor.h"
23 #include "wx/mousestate.h"
26 #include "wx/dynarray.h"
27 #include "wx/thread.h"
28 #include "wx/tracker.h"
29 #include "wx/typeinfo.h"
32 #ifdef wxHAS_EVENT_BIND
33 #include "wx/meta/convertible.h"
36 // Currently VC6 and VC7 are known to not be able to compile CallAfter() code,
37 // so disable it for them.
38 #if !defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(8)
39 #include "wx/meta/removeref.h"
41 #define wxHAS_CALL_AFTER
44 // ----------------------------------------------------------------------------
45 // forward declarations
46 // ----------------------------------------------------------------------------
48 class WXDLLIMPEXP_FWD_BASE wxList
;
49 class WXDLLIMPEXP_FWD_BASE wxEvent
;
50 class WXDLLIMPEXP_FWD_BASE wxEventFilter
;
52 class WXDLLIMPEXP_FWD_CORE wxDC
;
53 class WXDLLIMPEXP_FWD_CORE wxMenu
;
54 class WXDLLIMPEXP_FWD_CORE wxWindow
;
55 class WXDLLIMPEXP_FWD_CORE wxWindowBase
;
58 // We operate with pointer to members of wxEvtHandler (such functions are used
59 // as event handlers in the event tables or as arguments to Connect()) but by
60 // default MSVC uses a restricted (but more efficient) representation of
61 // pointers to members which can't deal with multiple base classes. To avoid
62 // mysterious (as the compiler is not good enough to detect this and give a
63 // sensible error message) errors in the user code as soon as it defines
64 // classes inheriting from both wxEvtHandler (possibly indirectly, e.g. via
65 // wxWindow) and something else (including our own wxTrackable but not limited
66 // to it), we use the special MSVC keyword telling the compiler to use a more
67 // general pointer to member representation for the classes inheriting from
70 #define wxMSVC_FWD_MULTIPLE_BASES __multiple_inheritance
72 #define wxMSVC_FWD_MULTIPLE_BASES
75 class WXDLLIMPEXP_FWD_BASE wxMSVC_FWD_MULTIPLE_BASES wxEvtHandler
;
76 class wxEventConnectionRef
;
78 // ----------------------------------------------------------------------------
80 // ----------------------------------------------------------------------------
82 typedef int wxEventType
;
84 #define wxEVT_ANY ((wxEventType)-1)
86 // this is used to make the event table entry type safe, so that for an event
87 // handler only a function with proper parameter list can be given. See also
88 // the wxEVENT_HANDLER_CAST-macro.
89 #define wxStaticCastEvent(type, val) static_cast<type>(val)
91 #define wxDECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \
92 wxEventTableEntry(type, winid, idLast, wxNewEventTableFunctor(type, fn), obj)
94 #define wxDECLARE_EVENT_TABLE_TERMINATOR() \
95 wxEventTableEntry(wxEVT_NULL, 0, 0, 0, 0)
97 // generate a new unique event type
98 extern WXDLLIMPEXP_BASE wxEventType
wxNewEventType();
100 // define macros to create new event types:
101 #ifdef wxHAS_EVENT_BIND
102 // events are represented by an instance of wxEventTypeTag and the
103 // corresponding type must be specified for type-safety checks
105 // define a new custom event type, can be used alone or after event
106 // declaration in the header using one of the macros below
107 #define wxDEFINE_EVENT( name, type ) \
108 const wxEventTypeTag< type > name( wxNewEventType() )
110 // the general version allowing exporting the event type from DLL, used by
112 #define wxDECLARE_EXPORTED_EVENT( expdecl, name, type ) \
113 extern const expdecl wxEventTypeTag< type > name
115 // this is the version which will normally be used in the user code
116 #define wxDECLARE_EVENT( name, type ) \
117 wxDECLARE_EXPORTED_EVENT( wxEMPTY_PARAMETER_VALUE, name, type )
120 // these macros are only used internally for backwards compatibility and
121 // allow to define an alias for an existing event type (this is used by
123 #define wxDEFINE_EVENT_ALIAS( name, type, value ) \
124 const wxEventTypeTag< type > name( value )
126 #define wxDECLARE_EXPORTED_EVENT_ALIAS( expdecl, name, type ) \
127 extern const expdecl wxEventTypeTag< type > name
128 #else // !wxHAS_EVENT_BIND
129 // the macros are the same ones as above but defined differently as we only
130 // use the integer event type values to identify events in this case
132 #define wxDEFINE_EVENT( name, type ) \
133 const wxEventType name( wxNewEventType() )
135 #define wxDECLARE_EXPORTED_EVENT( expdecl, name, type ) \
136 extern const expdecl wxEventType name
137 #define wxDECLARE_EVENT( name, type ) \
138 wxDECLARE_EXPORTED_EVENT( wxEMPTY_PARAMETER_VALUE, name, type )
140 #define wxDEFINE_EVENT_ALIAS( name, type, value ) \
141 const wxEventType name = value
142 #define wxDECLARE_EXPORTED_EVENT_ALIAS( expdecl, name, type ) \
143 extern const expdecl wxEventType name
144 #endif // wxHAS_EVENT_BIND/!wxHAS_EVENT_BIND
146 // Try to cast the given event handler to the correct handler type:
148 #define wxEVENT_HANDLER_CAST( functype, func ) \
149 ( wxObjectEventFunction )( wxEventFunction )wxStaticCastEvent( functype, &func )
152 #ifdef wxHAS_EVENT_BIND
154 // The tag is a type associated to the event type (which is an integer itself,
155 // in spite of its name) value. It exists in order to be used as a template
156 // parameter and provide a mapping between the event type values and their
157 // corresponding wxEvent-derived classes.
158 template <typename T
>
162 // The class of wxEvent-derived class carried by the events of this type.
163 typedef T EventClass
;
165 wxEventTypeTag(wxEventType type
) { m_type
= type
; }
167 // Return a wxEventType reference for the initialization of the static
168 // event tables. See wxEventTableEntry::m_eventType for a more thorough
170 operator const wxEventType
&() const { return m_type
; }
176 #endif // wxHAS_EVENT_BIND
178 // These are needed for the functor definitions
179 typedef void (wxEvtHandler::*wxEventFunction
)(wxEvent
&);
181 // We had some trouble (specifically with eVC for ARM WinCE build) with using
182 // wxEventFunction in the past so we had introduced wxObjectEventFunction which
183 // used to be a typedef for a member of wxObject and not wxEvtHandler to work
184 // around this but as eVC is not really supported any longer we now only keep
185 // this for backwards compatibility and, despite its name, this is a typedef
186 // for wxEvtHandler member now -- but if we have the same problem with another
187 // compiler we can restore its old definition for it.
188 typedef wxEventFunction wxObjectEventFunction
;
190 // The event functor which is stored in the static and dynamic event tables:
191 class WXDLLIMPEXP_BASE wxEventFunctor
194 virtual ~wxEventFunctor();
196 // Invoke the actual event handler:
197 virtual void operator()(wxEvtHandler
*, wxEvent
&) = 0;
199 // this function tests whether this functor is matched, for the purpose of
200 // finding it in an event table in Unbind(), by the given functor:
201 virtual bool IsMatching(const wxEventFunctor
& functor
) const = 0;
203 // If the functor holds an wxEvtHandler, then get access to it and track
204 // its lifetime with wxEventConnectionRef:
205 virtual wxEvtHandler
*GetEvtHandler() const
208 // This is only used to maintain backward compatibility in
209 // wxAppConsoleBase::CallEventHandler and ensures that an overwritten
210 // wxAppConsoleBase::HandleEvent is still called for functors which hold an
212 virtual wxEventFunction
GetEvtMethod() const
216 WX_DECLARE_ABSTRACT_TYPEINFO(wxEventFunctor
)
219 // A plain method functor for the untyped legacy event types:
220 class WXDLLIMPEXP_BASE wxObjectEventFunctor
: public wxEventFunctor
223 wxObjectEventFunctor(wxObjectEventFunction method
, wxEvtHandler
*handler
)
224 : m_handler( handler
), m_method( method
)
227 virtual void operator()(wxEvtHandler
*handler
, wxEvent
& event
);
229 virtual bool IsMatching(const wxEventFunctor
& functor
) const
231 if ( wxTypeId(functor
) == wxTypeId(*this) )
233 const wxObjectEventFunctor
&other
=
234 static_cast< const wxObjectEventFunctor
& >( functor
);
236 // FIXME-VC6: amazing but true: replacing "m_method == 0" here
237 // with "!m_method" makes VC6 crash with an ICE in DLL build (only!)
238 // Also notice that using "NULL" instead of "0" results in warnings
239 // about "using NULL in arithmetics" from arm-linux-androideabi-g++
240 // 4.4.3 used for wxAndroid build.
242 return ( m_method
== other
.m_method
|| other
.m_method
== 0 ) &&
243 ( m_handler
== other
.m_handler
|| other
.m_handler
== NULL
);
249 virtual wxEvtHandler
*GetEvtHandler() const
250 { return m_handler
; }
252 virtual wxEventFunction
GetEvtMethod() const
256 wxEvtHandler
*m_handler
;
257 wxEventFunction m_method
;
259 // Provide a dummy default ctor for type info purposes
260 wxObjectEventFunctor() { }
262 WX_DECLARE_TYPEINFO_INLINE(wxObjectEventFunctor
)
265 // Create a functor for the legacy events: used by Connect()
266 inline wxObjectEventFunctor
*
267 wxNewEventFunctor(const wxEventType
& WXUNUSED(evtType
),
268 wxObjectEventFunction method
,
269 wxEvtHandler
*handler
)
271 return new wxObjectEventFunctor(method
, handler
);
274 // This version is used by wxDECLARE_EVENT_TABLE_ENTRY()
275 inline wxObjectEventFunctor
*
276 wxNewEventTableFunctor(const wxEventType
& WXUNUSED(evtType
),
277 wxObjectEventFunction method
)
279 return new wxObjectEventFunctor(method
, NULL
);
282 inline wxObjectEventFunctor
283 wxMakeEventFunctor(const wxEventType
& WXUNUSED(evtType
),
284 wxObjectEventFunction method
,
285 wxEvtHandler
*handler
)
287 return wxObjectEventFunctor(method
, handler
);
290 #ifdef wxHAS_EVENT_BIND
295 // helper template defining nested "type" typedef as the event class
296 // corresponding to the given event type
297 template <typename T
> struct EventClassOf
;
299 // the typed events provide the information about the class of the events they
301 template <typename T
>
302 struct EventClassOf
< wxEventTypeTag
<T
> >
304 typedef typename wxEventTypeTag
<T
>::EventClass type
;
307 // for the old untyped events we don't have information about the exact event
308 // class carried by them
310 struct EventClassOf
<wxEventType
>
312 typedef wxEvent type
;
316 // helper class defining operations different for method functors using an
317 // object of wxEvtHandler-derived class as handler and the others
318 template <typename T
, typename A
, bool> struct HandlerImpl
;
320 // specialization for handlers deriving from wxEvtHandler
321 template <typename T
, typename A
>
322 struct HandlerImpl
<T
, A
, true>
324 static bool IsEvtHandler()
326 static T
*ConvertFromEvtHandler(wxEvtHandler
*p
)
327 { return static_cast<T
*>(p
); }
328 static wxEvtHandler
*ConvertToEvtHandler(T
*p
)
330 static wxEventFunction
ConvertToEvtMethod(void (T::*f
)(A
&))
331 { return static_cast<wxEventFunction
>(
332 reinterpret_cast<void (T::*)(wxEvent
&)>(f
)); }
335 // specialization for handlers not deriving from wxEvtHandler
336 template <typename T
, typename A
>
337 struct HandlerImpl
<T
, A
, false>
339 static bool IsEvtHandler()
341 static T
*ConvertFromEvtHandler(wxEvtHandler
*)
343 static wxEvtHandler
*ConvertToEvtHandler(T
*)
345 static wxEventFunction
ConvertToEvtMethod(void (T::*)(A
&))
349 } // namespace wxPrivate
351 // functor forwarding the event to a method of the given object
353 // notice that the object class may be different from the class in which the
354 // method is defined but it must be convertible to this class
356 // also, the type of the handler parameter doesn't need to be exactly the same
357 // as EventTag::EventClass but it must be its base class -- this is explicitly
358 // allowed to handle different events in the same handler taking wxEvent&, for
361 <typename EventTag
, typename Class
, typename EventArg
, typename EventHandler
>
362 class wxEventFunctorMethod
363 : public wxEventFunctor
,
364 private wxPrivate::HandlerImpl
368 wxConvertibleTo
<Class
, wxEvtHandler
>::value
!= 0
372 static void CheckHandlerArgument(EventArg
*) { }
375 // the event class associated with the given event tag
376 typedef typename
wxPrivate::EventClassOf
<EventTag
>::type EventClass
;
379 wxEventFunctorMethod(void (Class::*method
)(EventArg
&), EventHandler
*handler
)
380 : m_handler( handler
), m_method( method
)
382 wxASSERT_MSG( handler
|| this->IsEvtHandler(),
383 "handlers defined in non-wxEvtHandler-derived classes "
384 "must be connected with a valid sink object" );
386 // if you get an error here it means that the signature of the handler
387 // you're trying to use is not compatible with (i.e. is not the same as
388 // or a base class of) the real event class used for this event type
389 CheckHandlerArgument(static_cast<EventClass
*>(NULL
));
392 virtual void operator()(wxEvtHandler
*handler
, wxEvent
& event
)
394 Class
* realHandler
= m_handler
;
397 realHandler
= this->ConvertFromEvtHandler(handler
);
399 // this is not supposed to happen but check for it nevertheless
400 wxCHECK_RET( realHandler
, "invalid event handler" );
403 // the real (run-time) type of event is EventClass and we checked in
404 // the ctor that EventClass can be converted to EventArg, so this cast
406 (realHandler
->*m_method
)(static_cast<EventArg
&>(event
));
409 virtual bool IsMatching(const wxEventFunctor
& functor
) const
411 if ( wxTypeId(functor
) != wxTypeId(*this) )
414 typedef wxEventFunctorMethod
<EventTag
, Class
, EventArg
, EventHandler
>
417 // the cast is valid because wxTypeId()s matched above
418 const ThisFunctor
& other
= static_cast<const ThisFunctor
&>(functor
);
420 return (m_method
== other
.m_method
|| other
.m_method
== NULL
) &&
421 (m_handler
== other
.m_handler
|| other
.m_handler
== NULL
);
424 virtual wxEvtHandler
*GetEvtHandler() const
425 { return this->ConvertToEvtHandler(m_handler
); }
427 virtual wxEventFunction
GetEvtMethod() const
428 { return this->ConvertToEvtMethod(m_method
); }
431 EventHandler
*m_handler
;
432 void (Class::*m_method
)(EventArg
&);
434 // Provide a dummy default ctor for type info purposes
435 wxEventFunctorMethod() { }
437 typedef wxEventFunctorMethod
<EventTag
, Class
,
438 EventArg
, EventHandler
> thisClass
;
439 WX_DECLARE_TYPEINFO_INLINE(thisClass
)
443 // functor forwarding the event to function (function, static method)
444 template <typename EventTag
, typename EventArg
>
445 class wxEventFunctorFunction
: public wxEventFunctor
448 static void CheckHandlerArgument(EventArg
*) { }
451 // the event class associated with the given event tag
452 typedef typename
wxPrivate::EventClassOf
<EventTag
>::type EventClass
;
454 wxEventFunctorFunction( void ( *handler
)( EventArg
& ))
455 : m_handler( handler
)
457 // if you get an error here it means that the signature of the handler
458 // you're trying to use is not compatible with (i.e. is not the same as
459 // or a base class of) the real event class used for this event type
460 CheckHandlerArgument(static_cast<EventClass
*>(NULL
));
463 virtual void operator()(wxEvtHandler
*WXUNUSED(handler
), wxEvent
& event
)
465 // If you get an error here like "must use .* or ->* to call
466 // pointer-to-member function" then you probably tried to call
467 // Bind/Unbind with a method pointer but without a handler pointer or
468 // NULL as a handler e.g.:
469 // Unbind( wxEVT_XXX, &EventHandler::method );
471 // Unbind( wxEVT_XXX, &EventHandler::method, NULL )
472 m_handler(static_cast<EventArg
&>(event
));
475 virtual bool IsMatching(const wxEventFunctor
&functor
) const
477 if ( wxTypeId(functor
) != wxTypeId(*this) )
480 typedef wxEventFunctorFunction
<EventTag
, EventArg
> ThisFunctor
;
482 const ThisFunctor
& other
= static_cast<const ThisFunctor
&>( functor
);
484 return m_handler
== other
.m_handler
;
488 void (*m_handler
)(EventArg
&);
490 // Provide a dummy default ctor for type info purposes
491 wxEventFunctorFunction() { }
493 typedef wxEventFunctorFunction
<EventTag
, EventArg
> thisClass
;
494 WX_DECLARE_TYPEINFO_INLINE(thisClass
)
498 template <typename EventTag
, typename Functor
>
499 class wxEventFunctorFunctor
: public wxEventFunctor
502 typedef typename
EventTag::EventClass EventArg
;
504 wxEventFunctorFunctor(const Functor
& handler
)
505 : m_handler(handler
), m_handlerAddr(&handler
)
508 virtual void operator()(wxEvtHandler
*WXUNUSED(handler
), wxEvent
& event
)
510 // If you get an error here like "must use '.*' or '->*' to call
511 // pointer-to-member function" then you probably tried to call
512 // Bind/Unbind with a method pointer but without a handler pointer or
513 // NULL as a handler e.g.:
514 // Unbind( wxEVT_XXX, &EventHandler::method );
516 // Unbind( wxEVT_XXX, &EventHandler::method, NULL )
517 m_handler(static_cast<EventArg
&>(event
));
520 virtual bool IsMatching(const wxEventFunctor
&functor
) const
522 if ( wxTypeId(functor
) != wxTypeId(*this) )
525 typedef wxEventFunctorFunctor
<EventTag
, Functor
> FunctorThis
;
527 const FunctorThis
& other
= static_cast<const FunctorThis
&>(functor
);
529 // The only reliable/portable way to compare two functors is by
531 return m_handlerAddr
== other
.m_handlerAddr
;
535 // Store a copy of the functor to prevent using/calling an already
536 // destroyed instance:
539 // Use the address of the original functor for comparison in IsMatching:
540 const void *m_handlerAddr
;
542 // Provide a dummy default ctor for type info purposes
543 wxEventFunctorFunctor() { }
545 typedef wxEventFunctorFunctor
<EventTag
, Functor
> thisClass
;
546 WX_DECLARE_TYPEINFO_INLINE(thisClass
)
549 // Create functors for the templatized events, either allocated on the heap for
550 // wxNewXXX() variants (this is needed in wxEvtHandler::Bind<>() to store them
551 // in dynamic event table) or just by returning them as temporary objects (this
552 // is enough for Unbind<>() and we avoid unnecessary heap allocation like this).
555 // Create functors wrapping functions:
556 template <typename EventTag
, typename EventArg
>
557 inline wxEventFunctorFunction
<EventTag
, EventArg
> *
558 wxNewEventFunctor(const EventTag
&, void (*func
)(EventArg
&))
560 return new wxEventFunctorFunction
<EventTag
, EventArg
>(func
);
563 template <typename EventTag
, typename EventArg
>
564 inline wxEventFunctorFunction
<EventTag
, EventArg
>
565 wxMakeEventFunctor(const EventTag
&, void (*func
)(EventArg
&))
567 return wxEventFunctorFunction
<EventTag
, EventArg
>(func
);
570 // Create functors wrapping other functors:
571 template <typename EventTag
, typename Functor
>
572 inline wxEventFunctorFunctor
<EventTag
, Functor
> *
573 wxNewEventFunctor(const EventTag
&, const Functor
&func
)
575 return new wxEventFunctorFunctor
<EventTag
, Functor
>(func
);
578 template <typename EventTag
, typename Functor
>
579 inline wxEventFunctorFunctor
<EventTag
, Functor
>
580 wxMakeEventFunctor(const EventTag
&, const Functor
&func
)
582 return wxEventFunctorFunctor
<EventTag
, Functor
>(func
);
585 // Create functors wrapping methods:
587 <typename EventTag
, typename Class
, typename EventArg
, typename EventHandler
>
588 inline wxEventFunctorMethod
<EventTag
, Class
, EventArg
, EventHandler
> *
589 wxNewEventFunctor(const EventTag
&,
590 void (Class::*method
)(EventArg
&),
591 EventHandler
*handler
)
593 return new wxEventFunctorMethod
<EventTag
, Class
, EventArg
, EventHandler
>(
598 <typename EventTag
, typename Class
, typename EventArg
, typename EventHandler
>
599 inline wxEventFunctorMethod
<EventTag
, Class
, EventArg
, EventHandler
>
600 wxMakeEventFunctor(const EventTag
&,
601 void (Class::*method
)(EventArg
&),
602 EventHandler
*handler
)
604 return wxEventFunctorMethod
<EventTag
, Class
, EventArg
, EventHandler
>(
608 // Create an event functor for the event table via wxDECLARE_EVENT_TABLE_ENTRY:
609 // in this case we don't have the handler (as it's always the same as the
610 // object which generated the event) so we must use Class as its type
611 template <typename EventTag
, typename Class
, typename EventArg
>
612 inline wxEventFunctorMethod
<EventTag
, Class
, EventArg
, Class
> *
613 wxNewEventTableFunctor(const EventTag
&, void (Class::*method
)(EventArg
&))
615 return new wxEventFunctorMethod
<EventTag
, Class
, EventArg
, Class
>(
619 #endif // wxHAS_EVENT_BIND
622 // many, but not all, standard event types
624 // some generic events
625 extern WXDLLIMPEXP_BASE
const wxEventType wxEVT_NULL
;
626 extern WXDLLIMPEXP_BASE
const wxEventType wxEVT_FIRST
;
627 extern WXDLLIMPEXP_BASE
const wxEventType wxEVT_USER_FIRST
;
629 // Need events declared to do this
630 class WXDLLIMPEXP_FWD_BASE wxIdleEvent
;
631 class WXDLLIMPEXP_FWD_BASE wxThreadEvent
;
632 class WXDLLIMPEXP_FWD_BASE wxAsyncMethodCallEvent
;
633 class WXDLLIMPEXP_FWD_CORE wxCommandEvent
;
634 class WXDLLIMPEXP_FWD_CORE wxMouseEvent
;
635 class WXDLLIMPEXP_FWD_CORE wxFocusEvent
;
636 class WXDLLIMPEXP_FWD_CORE wxChildFocusEvent
;
637 class WXDLLIMPEXP_FWD_CORE wxKeyEvent
;
638 class WXDLLIMPEXP_FWD_CORE wxNavigationKeyEvent
;
639 class WXDLLIMPEXP_FWD_CORE wxSetCursorEvent
;
640 class WXDLLIMPEXP_FWD_CORE wxScrollEvent
;
641 class WXDLLIMPEXP_FWD_CORE wxSpinEvent
;
642 class WXDLLIMPEXP_FWD_CORE wxScrollWinEvent
;
643 class WXDLLIMPEXP_FWD_CORE wxSizeEvent
;
644 class WXDLLIMPEXP_FWD_CORE wxMoveEvent
;
645 class WXDLLIMPEXP_FWD_CORE wxCloseEvent
;
646 class WXDLLIMPEXP_FWD_CORE wxActivateEvent
;
647 class WXDLLIMPEXP_FWD_CORE wxWindowCreateEvent
;
648 class WXDLLIMPEXP_FWD_CORE wxWindowDestroyEvent
;
649 class WXDLLIMPEXP_FWD_CORE wxShowEvent
;
650 class WXDLLIMPEXP_FWD_CORE wxIconizeEvent
;
651 class WXDLLIMPEXP_FWD_CORE wxMaximizeEvent
;
652 class WXDLLIMPEXP_FWD_CORE wxMouseCaptureChangedEvent
;
653 class WXDLLIMPEXP_FWD_CORE wxMouseCaptureLostEvent
;
654 class WXDLLIMPEXP_FWD_CORE wxPaintEvent
;
655 class WXDLLIMPEXP_FWD_CORE wxEraseEvent
;
656 class WXDLLIMPEXP_FWD_CORE wxNcPaintEvent
;
657 class WXDLLIMPEXP_FWD_CORE wxMenuEvent
;
658 class WXDLLIMPEXP_FWD_CORE wxContextMenuEvent
;
659 class WXDLLIMPEXP_FWD_CORE wxSysColourChangedEvent
;
660 class WXDLLIMPEXP_FWD_CORE wxDisplayChangedEvent
;
661 class WXDLLIMPEXP_FWD_CORE wxQueryNewPaletteEvent
;
662 class WXDLLIMPEXP_FWD_CORE wxPaletteChangedEvent
;
663 class WXDLLIMPEXP_FWD_CORE wxJoystickEvent
;
664 class WXDLLIMPEXP_FWD_CORE wxDropFilesEvent
;
665 class WXDLLIMPEXP_FWD_CORE wxInitDialogEvent
;
666 class WXDLLIMPEXP_FWD_CORE wxUpdateUIEvent
;
667 class WXDLLIMPEXP_FWD_CORE wxClipboardTextEvent
;
668 class WXDLLIMPEXP_FWD_CORE wxHelpEvent
;
672 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_BUTTON_CLICKED
, wxCommandEvent
);
673 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_CHECKBOX_CLICKED
, wxCommandEvent
);
674 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_CHOICE_SELECTED
, wxCommandEvent
);
675 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_LISTBOX_SELECTED
, wxCommandEvent
);
676 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
, wxCommandEvent
);
677 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, wxCommandEvent
);
678 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_MENU_SELECTED
, wxCommandEvent
);
679 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_SLIDER_UPDATED
, wxCommandEvent
);
680 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_RADIOBOX_SELECTED
, wxCommandEvent
);
681 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_RADIOBUTTON_SELECTED
, wxCommandEvent
);
683 // wxEVT_COMMAND_SCROLLBAR_UPDATED is deprecated, use wxEVT_SCROLL... events
684 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_SCROLLBAR_UPDATED
, wxCommandEvent
);
685 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_VLBOX_SELECTED
, wxCommandEvent
);
686 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_COMBOBOX_SELECTED
, wxCommandEvent
);
687 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_TOOL_RCLICKED
, wxCommandEvent
);
688 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED
, wxCommandEvent
);
689 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_TOOL_ENTER
, wxCommandEvent
);
690 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_COMBOBOX_DROPDOWN
, wxCommandEvent
);
691 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_COMBOBOX_CLOSEUP
, wxCommandEvent
);
693 // Thread and asynchronous method call events
694 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_BASE
, wxEVT_THREAD
, wxThreadEvent
);
695 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_BASE
, wxEVT_ASYNC_METHOD_CALL
, wxAsyncMethodCallEvent
);
698 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_LEFT_DOWN
, wxMouseEvent
);
699 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_LEFT_UP
, wxMouseEvent
);
700 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MIDDLE_DOWN
, wxMouseEvent
);
701 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MIDDLE_UP
, wxMouseEvent
);
702 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_RIGHT_DOWN
, wxMouseEvent
);
703 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_RIGHT_UP
, wxMouseEvent
);
704 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MOTION
, wxMouseEvent
);
705 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_ENTER_WINDOW
, wxMouseEvent
);
706 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_LEAVE_WINDOW
, wxMouseEvent
);
707 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_LEFT_DCLICK
, wxMouseEvent
);
708 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MIDDLE_DCLICK
, wxMouseEvent
);
709 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_RIGHT_DCLICK
, wxMouseEvent
);
710 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SET_FOCUS
, wxFocusEvent
);
711 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_KILL_FOCUS
, wxFocusEvent
);
712 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_CHILD_FOCUS
, wxChildFocusEvent
);
713 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MOUSEWHEEL
, wxMouseEvent
);
714 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_AUX1_DOWN
, wxMouseEvent
);
715 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_AUX1_UP
, wxMouseEvent
);
716 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_AUX1_DCLICK
, wxMouseEvent
);
717 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_AUX2_DOWN
, wxMouseEvent
);
718 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_AUX2_UP
, wxMouseEvent
);
719 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_AUX2_DCLICK
, wxMouseEvent
);
721 // Character input event type
722 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_CHAR
, wxKeyEvent
);
723 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_CHAR_HOOK
, wxKeyEvent
);
724 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_NAVIGATION_KEY
, wxNavigationKeyEvent
);
725 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_KEY_DOWN
, wxKeyEvent
);
726 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_KEY_UP
, wxKeyEvent
);
728 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_HOTKEY
, wxKeyEvent
);
730 // This is a private event used by wxMSW code only and subject to change or
731 // disappear in the future. Don't use.
732 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_AFTER_CHAR
, wxKeyEvent
);
735 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SET_CURSOR
, wxSetCursorEvent
);
737 // wxScrollBar and wxSlider event identifiers
738 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_TOP
, wxScrollEvent
);
739 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_BOTTOM
, wxScrollEvent
);
740 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_LINEUP
, wxScrollEvent
);
741 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_LINEDOWN
, wxScrollEvent
);
742 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_PAGEUP
, wxScrollEvent
);
743 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_PAGEDOWN
, wxScrollEvent
);
744 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_THUMBTRACK
, wxScrollEvent
);
745 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_THUMBRELEASE
, wxScrollEvent
);
746 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLL_CHANGED
, wxScrollEvent
);
748 // Due to a bug in older wx versions, wxSpinEvents were being sent with type of
749 // wxEVT_SCROLL_LINEUP, wxEVT_SCROLL_LINEDOWN and wxEVT_SCROLL_THUMBTRACK. But
750 // with the type-safe events in place, these event types are associated with
751 // wxScrollEvent. To allow handling of spin events, new event types have been
752 // defined in spinbutt.h/spinnbuttcmn.cpp. To maintain backward compatibility
753 // the spin event types are being initialized with the scroll event types.
757 wxDECLARE_EXPORTED_EVENT_ALIAS( WXDLLIMPEXP_CORE
, wxEVT_SPIN_UP
, wxSpinEvent
);
758 wxDECLARE_EXPORTED_EVENT_ALIAS( WXDLLIMPEXP_CORE
, wxEVT_SPIN_DOWN
, wxSpinEvent
);
759 wxDECLARE_EXPORTED_EVENT_ALIAS( WXDLLIMPEXP_CORE
, wxEVT_SPIN
, wxSpinEvent
);
763 // Scroll events from wxWindow
764 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLLWIN_TOP
, wxScrollWinEvent
);
765 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLLWIN_BOTTOM
, wxScrollWinEvent
);
766 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLLWIN_LINEUP
, wxScrollWinEvent
);
767 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLLWIN_LINEDOWN
, wxScrollWinEvent
);
768 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLLWIN_PAGEUP
, wxScrollWinEvent
);
769 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLLWIN_PAGEDOWN
, wxScrollWinEvent
);
770 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLLWIN_THUMBTRACK
, wxScrollWinEvent
);
771 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SCROLLWIN_THUMBRELEASE
, wxScrollWinEvent
);
774 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SIZE
, wxSizeEvent
);
775 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MOVE
, wxMoveEvent
);
776 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_CLOSE_WINDOW
, wxCloseEvent
);
777 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_END_SESSION
, wxCloseEvent
);
778 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_QUERY_END_SESSION
, wxCloseEvent
);
779 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_ACTIVATE_APP
, wxActivateEvent
);
780 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_ACTIVATE
, wxActivateEvent
);
781 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_CREATE
, wxWindowCreateEvent
);
782 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_DESTROY
, wxWindowDestroyEvent
);
783 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SHOW
, wxShowEvent
);
784 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_ICONIZE
, wxIconizeEvent
);
785 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MAXIMIZE
, wxMaximizeEvent
);
786 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MOUSE_CAPTURE_CHANGED
, wxMouseCaptureChangedEvent
);
787 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MOUSE_CAPTURE_LOST
, wxMouseCaptureLostEvent
);
788 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_PAINT
, wxPaintEvent
);
789 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_ERASE_BACKGROUND
, wxEraseEvent
);
790 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_NC_PAINT
, wxNcPaintEvent
);
791 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MENU_OPEN
, wxMenuEvent
);
792 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MENU_CLOSE
, wxMenuEvent
);
793 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MENU_HIGHLIGHT
, wxMenuEvent
);
794 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_CONTEXT_MENU
, wxContextMenuEvent
);
795 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SYS_COLOUR_CHANGED
, wxSysColourChangedEvent
);
796 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_DISPLAY_CHANGED
, wxDisplayChangedEvent
);
797 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_QUERY_NEW_PALETTE
, wxQueryNewPaletteEvent
);
798 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_PALETTE_CHANGED
, wxPaletteChangedEvent
);
799 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_JOY_BUTTON_DOWN
, wxJoystickEvent
);
800 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_JOY_BUTTON_UP
, wxJoystickEvent
);
801 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_JOY_MOVE
, wxJoystickEvent
);
802 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_JOY_ZMOVE
, wxJoystickEvent
);
803 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_DROP_FILES
, wxDropFilesEvent
);
804 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_INIT_DIALOG
, wxInitDialogEvent
);
805 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_BASE
, wxEVT_IDLE
, wxIdleEvent
);
806 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_UPDATE_UI
, wxUpdateUIEvent
);
807 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_SIZING
, wxSizeEvent
);
808 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MOVING
, wxMoveEvent
);
809 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MOVE_START
, wxMoveEvent
);
810 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_MOVE_END
, wxMoveEvent
);
811 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_HIBERNATE
, wxActivateEvent
);
814 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_TEXT_COPY
, wxClipboardTextEvent
);
815 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_TEXT_CUT
, wxClipboardTextEvent
);
816 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_TEXT_PASTE
, wxClipboardTextEvent
);
818 // Generic command events
819 // Note: a click is a higher-level event than button down/up
820 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_LEFT_CLICK
, wxCommandEvent
);
821 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_LEFT_DCLICK
, wxCommandEvent
);
822 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_RIGHT_CLICK
, wxCommandEvent
);
823 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_RIGHT_DCLICK
, wxCommandEvent
);
824 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_SET_FOCUS
, wxCommandEvent
);
825 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_KILL_FOCUS
, wxCommandEvent
);
826 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_ENTER
, wxCommandEvent
);
829 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_HELP
, wxHelpEvent
);
830 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_DETAILED_HELP
, wxHelpEvent
);
832 // these 2 events are the same
833 #define wxEVT_COMMAND_TOOL_CLICKED wxEVT_COMMAND_MENU_SELECTED
835 // ----------------------------------------------------------------------------
837 // ----------------------------------------------------------------------------
839 // this event is also used by wxComboBox and wxSpinCtrl which don't include
840 // wx/textctrl.h in all ports [yet], so declare it here as well
842 // still, any new code using it should include wx/textctrl.h explicitly
843 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
);
846 // ----------------------------------------------------------------------------
847 // wxEvent(-derived) classes
848 // ----------------------------------------------------------------------------
850 // the predefined constants for the number of times we propagate event
851 // upwards window child-parent chain
852 enum wxEventPropagation
854 // don't propagate it at all
855 wxEVENT_PROPAGATE_NONE
= 0,
857 // propagate it until it is processed
858 wxEVENT_PROPAGATE_MAX
= INT_MAX
861 // The different categories for a wxEvent; see wxEvent::GetEventCategory.
862 // NOTE: they are used as OR-combinable flags by wxEventLoopBase::YieldFor
865 // this is the category for those events which are generated to update
866 // the appearance of the GUI but which (usually) do not comport data
867 // processing, i.e. which do not provide input or output data
868 // (e.g. size events, scroll events, etc).
869 // They are events NOT directly generated by the user's input devices.
870 wxEVT_CATEGORY_UI
= 1,
872 // this category groups those events which are generated directly from the
873 // user through input devices like mouse and keyboard and usually result in
874 // data to be processed from the application.
875 // (e.g. mouse clicks, key presses, etc)
876 wxEVT_CATEGORY_USER_INPUT
= 2,
878 // this category is for wxSocketEvent
879 wxEVT_CATEGORY_SOCKET
= 4,
881 // this category is for wxTimerEvent
882 wxEVT_CATEGORY_TIMER
= 8,
884 // this category is for any event used to send notifications from the
885 // secondary threads to the main one or in general for notifications among
886 // different threads (which may or may not be user-generated)
887 wxEVT_CATEGORY_THREAD
= 16,
890 // implementation only
892 // used in the implementations of wxEventLoopBase::YieldFor
893 wxEVT_CATEGORY_UNKNOWN
= 32,
895 // a special category used as an argument to wxEventLoopBase::YieldFor to indicate that
896 // Yield() should leave all wxEvents on the queue while emptying the native event queue
897 // (native events will be processed but the wxEvents they generate will be queued)
898 wxEVT_CATEGORY_CLIPBOARD
= 64,
903 // this category groups those events which are emitted in response to
904 // events of the native toolkit and which typically are not-"delayable".
905 wxEVT_CATEGORY_NATIVE_EVENTS
= wxEVT_CATEGORY_UI
|wxEVT_CATEGORY_USER_INPUT
,
907 // used in wxEventLoopBase::YieldFor to specify all event categories should be processed:
909 wxEVT_CATEGORY_UI
|wxEVT_CATEGORY_USER_INPUT
|wxEVT_CATEGORY_SOCKET
| \
910 wxEVT_CATEGORY_TIMER
|wxEVT_CATEGORY_THREAD
|wxEVT_CATEGORY_UNKNOWN
| \
911 wxEVT_CATEGORY_CLIPBOARD
915 * wxWidgets events, covering all interesting things that might happen
916 * (button clicking, resizing, setting text in widgets, etc.).
918 * For each completely new event type, derive a new event class.
919 * An event CLASS represents a C++ class defining a range of similar event TYPES;
920 * examples are canvas events, panel item command events.
921 * An event TYPE is a unique identifier for a particular system event,
922 * such as a button press or a listbox deselection.
926 class WXDLLIMPEXP_BASE wxEvent
: public wxObject
929 wxEvent(int winid
= 0, wxEventType commandType
= wxEVT_NULL
);
931 void SetEventType(wxEventType typ
) { m_eventType
= typ
; }
932 wxEventType
GetEventType() const { return m_eventType
; }
934 wxObject
*GetEventObject() const { return m_eventObject
; }
935 void SetEventObject(wxObject
*obj
) { m_eventObject
= obj
; }
937 long GetTimestamp() const { return m_timeStamp
; }
938 void SetTimestamp(long ts
= 0) { m_timeStamp
= ts
; }
940 int GetId() const { return m_id
; }
941 void SetId(int Id
) { m_id
= Id
; }
943 // Returns the user data optionally associated with the event handler when
944 // using Connect() or Bind().
945 wxObject
*GetEventUserData() const { return m_callbackUserData
; }
947 // Can instruct event processor that we wish to ignore this event
948 // (treat as if the event table entry had not been found): this must be done
949 // to allow the event processing by the base classes (calling event.Skip()
950 // is the analog of calling the base class version of a virtual function)
951 void Skip(bool skip
= true) { m_skipped
= skip
; }
952 bool GetSkipped() const { return m_skipped
; }
954 // This function is used to create a copy of the event polymorphically and
955 // all derived classes must implement it because otherwise wxPostEvent()
956 // for them wouldn't work (it needs to do a copy of the event)
957 virtual wxEvent
*Clone() const = 0;
959 // this function is used to selectively process events in wxEventLoopBase::YieldFor
960 // NOTE: by default it returns wxEVT_CATEGORY_UI just because the major
961 // part of wxWidgets events belong to that category.
962 virtual wxEventCategory
GetEventCategory() const
963 { return wxEVT_CATEGORY_UI
; }
965 // Implementation only: this test is explicitly anti OO and this function
966 // exists only for optimization purposes.
967 bool IsCommandEvent() const { return m_isCommandEvent
; }
969 // Determine if this event should be propagating to the parent window.
970 bool ShouldPropagate() const
971 { return m_propagationLevel
!= wxEVENT_PROPAGATE_NONE
; }
973 // Stop an event from propagating to its parent window, returns the old
974 // propagation level value
975 int StopPropagation()
977 int propagationLevel
= m_propagationLevel
;
978 m_propagationLevel
= wxEVENT_PROPAGATE_NONE
;
979 return propagationLevel
;
982 // Resume the event propagation by restoring the propagation level
983 // (returned by StopPropagation())
984 void ResumePropagation(int propagationLevel
)
986 m_propagationLevel
= propagationLevel
;
990 // This is for internal use only and is only called by
991 // wxEvtHandler::ProcessEvent() to check whether it's the first time this
992 // event is being processed
995 if ( m_wasProcessed
)
998 m_wasProcessed
= true;
1003 // This is also used only internally by ProcessEvent() to check if it
1004 // should process the event normally or only restrict the search for the
1005 // event handler to this object itself.
1006 bool ShouldProcessOnlyIn(wxEvtHandler
*h
) const
1008 return h
== m_handlerToProcessOnlyIn
;
1011 // Called to indicate that the result of ShouldProcessOnlyIn() wasn't taken
1012 // into account. The existence of this function may seem counterintuitive
1013 // but unfortunately it's needed by wxScrollHelperEvtHandler, see comments
1014 // there. Don't even think of using this in your own code, this is a gross
1015 // hack and is only needed because of wx complicated history and should
1016 // never be used anywhere else.
1017 void DidntHonourProcessOnlyIn()
1019 m_handlerToProcessOnlyIn
= NULL
;
1023 wxObject
* m_eventObject
;
1024 wxEventType m_eventType
;
1029 // m_callbackUserData is for internal usage only
1030 wxObject
* m_callbackUserData
;
1034 wxEvtHandler
*m_handlerToProcessOnlyIn
;
1037 // the propagation level: while it is positive, we propagate the event to
1038 // the parent window (if any)
1039 int m_propagationLevel
;
1042 bool m_isCommandEvent
;
1044 // initially false but becomes true as soon as WasProcessed() is called for
1045 // the first time, as this is done only by ProcessEvent() it explains the
1046 // variable name: it becomes true after ProcessEvent() was called at least
1047 // once for this event
1048 bool m_wasProcessed
;
1051 wxEvent(const wxEvent
&); // for implementing Clone()
1052 wxEvent
& operator=(const wxEvent
&); // for derived classes operator=()
1055 // it needs to access our m_propagationLevel
1056 friend class WXDLLIMPEXP_FWD_BASE wxPropagateOnce
;
1058 // and this one needs to access our m_handlerToProcessOnlyIn
1059 friend class WXDLLIMPEXP_FWD_BASE wxEventProcessInHandlerOnly
;
1062 DECLARE_ABSTRACT_CLASS(wxEvent
)
1066 * Helper class to temporarily change an event not to propagate.
1068 class WXDLLIMPEXP_BASE wxPropagationDisabler
1071 wxPropagationDisabler(wxEvent
& event
) : m_event(event
)
1073 m_propagationLevelOld
= m_event
.StopPropagation();
1076 ~wxPropagationDisabler()
1078 m_event
.ResumePropagation(m_propagationLevelOld
);
1083 int m_propagationLevelOld
;
1085 wxDECLARE_NO_COPY_CLASS(wxPropagationDisabler
);
1089 * Another one to temporarily lower propagation level.
1091 class WXDLLIMPEXP_BASE wxPropagateOnce
1094 wxPropagateOnce(wxEvent
& event
) : m_event(event
)
1096 wxASSERT_MSG( m_event
.m_propagationLevel
> 0,
1097 wxT("shouldn't be used unless ShouldPropagate()!") );
1099 m_event
.m_propagationLevel
--;
1104 m_event
.m_propagationLevel
++;
1110 wxDECLARE_NO_COPY_CLASS(wxPropagateOnce
);
1113 // A helper object used to temporarily make wxEvent::ShouldProcessOnlyIn()
1114 // return true for the handler passed to its ctor.
1115 class wxEventProcessInHandlerOnly
1118 wxEventProcessInHandlerOnly(wxEvent
& event
, wxEvtHandler
*handler
)
1120 m_handlerToProcessOnlyInOld(event
.m_handlerToProcessOnlyIn
)
1122 m_event
.m_handlerToProcessOnlyIn
= handler
;
1125 ~wxEventProcessInHandlerOnly()
1127 m_event
.m_handlerToProcessOnlyIn
= m_handlerToProcessOnlyInOld
;
1132 wxEvtHandler
* const m_handlerToProcessOnlyInOld
;
1134 wxDECLARE_NO_COPY_CLASS(wxEventProcessInHandlerOnly
);
1138 class WXDLLIMPEXP_BASE wxEventBasicPayloadMixin
1141 wxEventBasicPayloadMixin()
1147 void SetString(const wxString
& s
) { m_cmdString
= s
; }
1148 const wxString
& GetString() const { return m_cmdString
; }
1150 void SetInt(int i
) { m_commandInt
= i
; }
1151 int GetInt() const { return m_commandInt
; }
1153 void SetExtraLong(long extraLong
) { m_extraLong
= extraLong
; }
1154 long GetExtraLong() const { return m_extraLong
; }
1157 // Note: these variables have "cmd" or "command" in their name for backward compatibility:
1158 // they used to be part of wxCommandEvent, not this mixin.
1159 wxString m_cmdString
; // String event argument
1161 long m_extraLong
; // Additional information (e.g. select/deselect)
1163 wxDECLARE_NO_ASSIGN_CLASS(wxEventBasicPayloadMixin
);
1166 class WXDLLIMPEXP_BASE wxEventAnyPayloadMixin
: public wxEventBasicPayloadMixin
1169 wxEventAnyPayloadMixin() : wxEventBasicPayloadMixin() {}
1171 #if wxUSE_ANY && (!defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7))
1172 template<typename T
>
1173 void SetPayload(const T
& payload
)
1175 m_payload
= payload
;
1178 template<typename T
>
1179 T
GetPayload() const
1181 return m_payload
.As
<T
>();
1186 #endif // wxUSE_ANY && (!defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7))
1188 wxDECLARE_NO_ASSIGN_CLASS(wxEventBasicPayloadMixin
);
1197 // Whether to always send idle events to windows, or
1198 // to only send update events to those with the
1199 // wxWS_EX_PROCESS_IDLE style.
1203 // Send idle events to all windows
1206 // Send idle events to windows that have
1207 // the wxWS_EX_PROCESS_IDLE flag specified
1208 wxIDLE_PROCESS_SPECIFIED
1211 class WXDLLIMPEXP_BASE wxIdleEvent
: public wxEvent
1215 : wxEvent(0, wxEVT_IDLE
),
1216 m_requestMore(false)
1218 wxIdleEvent(const wxIdleEvent
& event
)
1220 m_requestMore(event
.m_requestMore
)
1223 void RequestMore(bool needMore
= true) { m_requestMore
= needMore
; }
1224 bool MoreRequested() const { return m_requestMore
; }
1226 virtual wxEvent
*Clone() const { return new wxIdleEvent(*this); }
1228 // Specify how wxWidgets will send idle events: to
1229 // all windows, or only to those which specify that they
1230 // will process the events.
1231 static void SetMode(wxIdleMode mode
) { sm_idleMode
= mode
; }
1233 // Returns the idle event mode
1234 static wxIdleMode
GetMode() { return sm_idleMode
; }
1238 static wxIdleMode sm_idleMode
;
1241 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIdleEvent
)
1247 class WXDLLIMPEXP_BASE wxThreadEvent
: public wxEvent
,
1248 public wxEventAnyPayloadMixin
1251 wxThreadEvent(wxEventType eventType
= wxEVT_THREAD
, int id
= wxID_ANY
)
1252 : wxEvent(id
, eventType
)
1255 wxThreadEvent(const wxThreadEvent
& event
)
1257 wxEventAnyPayloadMixin(event
)
1259 // make sure our string member (which uses COW, aka refcounting) is not
1260 // shared by other wxString instances:
1261 SetString(GetString().Clone());
1264 virtual wxEvent
*Clone() const
1266 return new wxThreadEvent(*this);
1269 // this is important to avoid that calling wxEventLoopBase::YieldFor thread events
1270 // gets processed when this is unwanted:
1271 virtual wxEventCategory
GetEventCategory() const
1272 { return wxEVT_CATEGORY_THREAD
; }
1275 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxThreadEvent
)
1279 // Asynchronous method call events: these event are processed by wxEvtHandler
1280 // itself and result in a call to its Execute() method which simply calls the
1281 // specified method. The difference with a simple method call is that this is
1282 // done asynchronously, i.e. at some later time, instead of immediately when
1283 // the event object is constructed.
1285 #ifdef wxHAS_CALL_AFTER
1287 // This is a base class used to process all method calls.
1288 class wxAsyncMethodCallEvent
: public wxEvent
1291 wxAsyncMethodCallEvent(wxObject
* object
)
1292 : wxEvent(wxID_ANY
, wxEVT_ASYNC_METHOD_CALL
)
1294 SetEventObject(object
);
1297 wxAsyncMethodCallEvent(const wxAsyncMethodCallEvent
& other
)
1302 virtual void Execute() = 0;
1305 // This is a version for calling methods without parameters.
1306 template <typename T
>
1307 class wxAsyncMethodCallEvent0
: public wxAsyncMethodCallEvent
1310 typedef T ObjectType
;
1311 typedef void (ObjectType::*MethodType
)();
1313 wxAsyncMethodCallEvent0(ObjectType
* object
,
1315 : wxAsyncMethodCallEvent(object
),
1321 wxAsyncMethodCallEvent0(const wxAsyncMethodCallEvent0
& other
)
1322 : wxAsyncMethodCallEvent(other
),
1323 m_object(other
.m_object
),
1324 m_method(other
.m_method
)
1328 virtual wxEvent
*Clone() const
1330 return new wxAsyncMethodCallEvent0(*this);
1333 virtual void Execute()
1335 (m_object
->*m_method
)();
1339 ObjectType
* const m_object
;
1340 const MethodType m_method
;
1343 // This is a version for calling methods with a single parameter.
1344 template <typename T
, typename T1
>
1345 class wxAsyncMethodCallEvent1
: public wxAsyncMethodCallEvent
1348 typedef T ObjectType
;
1349 typedef void (ObjectType::*MethodType
)(T1 x1
);
1350 typedef typename wxRemoveRef
<T1
>::type ParamType1
;
1352 wxAsyncMethodCallEvent1(ObjectType
* object
,
1354 const ParamType1
& x1
)
1355 : wxAsyncMethodCallEvent(object
),
1362 wxAsyncMethodCallEvent1(const wxAsyncMethodCallEvent1
& other
)
1363 : wxAsyncMethodCallEvent(other
),
1364 m_object(other
.m_object
),
1365 m_method(other
.m_method
),
1366 m_param1(other
.m_param1
)
1370 virtual wxEvent
*Clone() const
1372 return new wxAsyncMethodCallEvent1(*this);
1375 virtual void Execute()
1377 (m_object
->*m_method
)(m_param1
);
1381 ObjectType
* const m_object
;
1382 const MethodType m_method
;
1383 const ParamType1 m_param1
;
1386 // This is a version for calling methods with two parameters.
1387 template <typename T
, typename T1
, typename T2
>
1388 class wxAsyncMethodCallEvent2
: public wxAsyncMethodCallEvent
1391 typedef T ObjectType
;
1392 typedef void (ObjectType::*MethodType
)(T1 x1
, T2 x2
);
1393 typedef typename wxRemoveRef
<T1
>::type ParamType1
;
1394 typedef typename wxRemoveRef
<T2
>::type ParamType2
;
1396 wxAsyncMethodCallEvent2(ObjectType
* object
,
1398 const ParamType1
& x1
,
1399 const ParamType2
& x2
)
1400 : wxAsyncMethodCallEvent(object
),
1408 wxAsyncMethodCallEvent2(const wxAsyncMethodCallEvent2
& other
)
1409 : wxAsyncMethodCallEvent(other
),
1410 m_object(other
.m_object
),
1411 m_method(other
.m_method
),
1412 m_param1(other
.m_param1
),
1413 m_param2(other
.m_param2
)
1417 virtual wxEvent
*Clone() const
1419 return new wxAsyncMethodCallEvent2(*this);
1422 virtual void Execute()
1424 (m_object
->*m_method
)(m_param1
, m_param2
);
1428 ObjectType
* const m_object
;
1429 const MethodType m_method
;
1430 const ParamType1 m_param1
;
1431 const ParamType2 m_param2
;
1434 #endif // wxHAS_CALL_AFTER
1440 // Item or menu event class
1442 wxEVT_COMMAND_BUTTON_CLICKED
1443 wxEVT_COMMAND_CHECKBOX_CLICKED
1444 wxEVT_COMMAND_CHOICE_SELECTED
1445 wxEVT_COMMAND_LISTBOX_SELECTED
1446 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
1447 wxEVT_COMMAND_TEXT_UPDATED
1448 wxEVT_COMMAND_TEXT_ENTER
1449 wxEVT_COMMAND_MENU_SELECTED
1450 wxEVT_COMMAND_SLIDER_UPDATED
1451 wxEVT_COMMAND_RADIOBOX_SELECTED
1452 wxEVT_COMMAND_RADIOBUTTON_SELECTED
1453 wxEVT_COMMAND_SCROLLBAR_UPDATED
1454 wxEVT_COMMAND_VLBOX_SELECTED
1455 wxEVT_COMMAND_COMBOBOX_SELECTED
1456 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
1459 class WXDLLIMPEXP_CORE wxCommandEvent
: public wxEvent
,
1460 public wxEventBasicPayloadMixin
1463 wxCommandEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0);
1465 wxCommandEvent(const wxCommandEvent
& event
)
1467 wxEventBasicPayloadMixin(event
),
1468 m_clientData(event
.m_clientData
),
1469 m_clientObject(event
.m_clientObject
)
1471 // Because GetString() can retrieve the string text only on demand, we
1472 // need to copy it explicitly.
1473 if ( m_cmdString
.empty() )
1474 m_cmdString
= event
.GetString();
1477 // Set/Get client data from controls
1478 void SetClientData(void* clientData
) { m_clientData
= clientData
; }
1479 void *GetClientData() const { return m_clientData
; }
1481 // Set/Get client object from controls
1482 void SetClientObject(wxClientData
* clientObject
) { m_clientObject
= clientObject
; }
1483 wxClientData
*GetClientObject() const { return m_clientObject
; }
1485 // Note: this shadows wxEventBasicPayloadMixin::GetString(), because it does some
1486 // GUI-specific hacks
1487 wxString
GetString() const;
1489 // Get listbox selection if single-choice
1490 int GetSelection() const { return m_commandInt
; }
1492 // Get checkbox value
1493 bool IsChecked() const { return m_commandInt
!= 0; }
1495 // true if the listbox event was a selection.
1496 bool IsSelection() const { return (m_extraLong
!= 0); }
1498 virtual wxEvent
*Clone() const { return new wxCommandEvent(*this); }
1499 virtual wxEventCategory
GetEventCategory() const { return wxEVT_CATEGORY_USER_INPUT
; }
1502 void* m_clientData
; // Arbitrary client data
1503 wxClientData
* m_clientObject
; // Arbitrary client object
1506 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCommandEvent
)
1509 // this class adds a possibility to react (from the user) code to a control
1510 // notification: allow or veto the operation being reported.
1511 class WXDLLIMPEXP_CORE wxNotifyEvent
: public wxCommandEvent
1514 wxNotifyEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
1515 : wxCommandEvent(commandType
, winid
)
1516 { m_bAllow
= true; }
1518 wxNotifyEvent(const wxNotifyEvent
& event
)
1519 : wxCommandEvent(event
)
1520 { m_bAllow
= event
.m_bAllow
; }
1522 // veto the operation (usually it's allowed by default)
1523 void Veto() { m_bAllow
= false; }
1525 // allow the operation if it was disabled by default
1526 void Allow() { m_bAllow
= true; }
1528 // for implementation code only: is the operation allowed?
1529 bool IsAllowed() const { return m_bAllow
; }
1531 virtual wxEvent
*Clone() const { return new wxNotifyEvent(*this); }
1537 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotifyEvent
)
1541 // Scroll event class, derived form wxCommandEvent. wxScrollEvents are
1542 // sent by wxSlider and wxScrollBar.
1547 wxEVT_SCROLL_LINEDOWN
1549 wxEVT_SCROLL_PAGEDOWN
1550 wxEVT_SCROLL_THUMBTRACK
1551 wxEVT_SCROLL_THUMBRELEASE
1552 wxEVT_SCROLL_CHANGED
1555 class WXDLLIMPEXP_CORE wxScrollEvent
: public wxCommandEvent
1558 wxScrollEvent(wxEventType commandType
= wxEVT_NULL
,
1559 int winid
= 0, int pos
= 0, int orient
= 0);
1561 int GetOrientation() const { return (int) m_extraLong
; }
1562 int GetPosition() const { return m_commandInt
; }
1563 void SetOrientation(int orient
) { m_extraLong
= (long) orient
; }
1564 void SetPosition(int pos
) { m_commandInt
= pos
; }
1566 virtual wxEvent
*Clone() const { return new wxScrollEvent(*this); }
1569 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollEvent
)
1572 // ScrollWin event class, derived fom wxEvent. wxScrollWinEvents
1573 // are sent by wxWindow.
1576 wxEVT_SCROLLWIN_BOTTOM
1577 wxEVT_SCROLLWIN_LINEUP
1578 wxEVT_SCROLLWIN_LINEDOWN
1579 wxEVT_SCROLLWIN_PAGEUP
1580 wxEVT_SCROLLWIN_PAGEDOWN
1581 wxEVT_SCROLLWIN_THUMBTRACK
1582 wxEVT_SCROLLWIN_THUMBRELEASE
1585 class WXDLLIMPEXP_CORE wxScrollWinEvent
: public wxEvent
1588 wxScrollWinEvent(wxEventType commandType
= wxEVT_NULL
,
1589 int pos
= 0, int orient
= 0);
1590 wxScrollWinEvent(const wxScrollWinEvent
& event
) : wxEvent(event
)
1591 { m_commandInt
= event
.m_commandInt
;
1592 m_extraLong
= event
.m_extraLong
; }
1594 int GetOrientation() const { return (int) m_extraLong
; }
1595 int GetPosition() const { return m_commandInt
; }
1596 void SetOrientation(int orient
) { m_extraLong
= (long) orient
; }
1597 void SetPosition(int pos
) { m_commandInt
= pos
; }
1599 virtual wxEvent
*Clone() const { return new wxScrollWinEvent(*this); }
1606 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollWinEvent
)
1611 // Mouse event class
1628 enum wxMouseWheelAxis
1630 wxMOUSE_WHEEL_VERTICAL
,
1631 wxMOUSE_WHEEL_HORIZONTAL
1634 class WXDLLIMPEXP_CORE wxMouseEvent
: public wxEvent
,
1638 wxMouseEvent(wxEventType mouseType
= wxEVT_NULL
);
1639 wxMouseEvent(const wxMouseEvent
& event
)
1646 // Was it a button event? (*doesn't* mean: is any button *down*?)
1647 bool IsButton() const { return Button(wxMOUSE_BTN_ANY
); }
1649 // Was it a down event from this (or any) button?
1650 bool ButtonDown(int but
= wxMOUSE_BTN_ANY
) const;
1652 // Was it a dclick event from this (or any) button?
1653 bool ButtonDClick(int but
= wxMOUSE_BTN_ANY
) const;
1655 // Was it a up event from this (or any) button?
1656 bool ButtonUp(int but
= wxMOUSE_BTN_ANY
) const;
1658 // Was this event generated by the given button?
1659 bool Button(int but
) const;
1661 // Get the button which is changing state (wxMOUSE_BTN_NONE if none)
1662 int GetButton() const;
1664 // Find which event was just generated
1665 bool LeftDown() const { return (m_eventType
== wxEVT_LEFT_DOWN
); }
1666 bool MiddleDown() const { return (m_eventType
== wxEVT_MIDDLE_DOWN
); }
1667 bool RightDown() const { return (m_eventType
== wxEVT_RIGHT_DOWN
); }
1668 bool Aux1Down() const { return (m_eventType
== wxEVT_AUX1_DOWN
); }
1669 bool Aux2Down() const { return (m_eventType
== wxEVT_AUX2_DOWN
); }
1671 bool LeftUp() const { return (m_eventType
== wxEVT_LEFT_UP
); }
1672 bool MiddleUp() const { return (m_eventType
== wxEVT_MIDDLE_UP
); }
1673 bool RightUp() const { return (m_eventType
== wxEVT_RIGHT_UP
); }
1674 bool Aux1Up() const { return (m_eventType
== wxEVT_AUX1_UP
); }
1675 bool Aux2Up() const { return (m_eventType
== wxEVT_AUX2_UP
); }
1677 bool LeftDClick() const { return (m_eventType
== wxEVT_LEFT_DCLICK
); }
1678 bool MiddleDClick() const { return (m_eventType
== wxEVT_MIDDLE_DCLICK
); }
1679 bool RightDClick() const { return (m_eventType
== wxEVT_RIGHT_DCLICK
); }
1680 bool Aux1DClick() const { return (m_eventType
== wxEVT_AUX1_DCLICK
); }
1681 bool Aux2DClick() const { return (m_eventType
== wxEVT_AUX2_DCLICK
); }
1683 // True if a button is down and the mouse is moving
1684 bool Dragging() const
1686 return (m_eventType
== wxEVT_MOTION
) && ButtonIsDown(wxMOUSE_BTN_ANY
);
1689 // True if the mouse is moving, and no button is down
1692 return (m_eventType
== wxEVT_MOTION
) && !ButtonIsDown(wxMOUSE_BTN_ANY
);
1695 // True if the mouse is just entering the window
1696 bool Entering() const { return (m_eventType
== wxEVT_ENTER_WINDOW
); }
1698 // True if the mouse is just leaving the window
1699 bool Leaving() const { return (m_eventType
== wxEVT_LEAVE_WINDOW
); }
1701 // Returns the number of mouse clicks associated with this event.
1702 int GetClickCount() const { return m_clickCount
; }
1704 // Find the logical position of the event given the DC
1705 wxPoint
GetLogicalPosition(const wxDC
& dc
) const;
1707 // Get wheel rotation, positive or negative indicates direction of
1708 // rotation. Current devices all send an event when rotation is equal to
1709 // +/-WheelDelta, but this allows for finer resolution devices to be
1710 // created in the future. Because of this you shouldn't assume that one
1711 // event is equal to 1 line or whatever, but you should be able to either
1712 // do partial line scrolling or wait until +/-WheelDelta rotation values
1713 // have been accumulated before scrolling.
1714 int GetWheelRotation() const { return m_wheelRotation
; }
1716 // Get wheel delta, normally 120. This is the threshold for action to be
1717 // taken, and one such action (for example, scrolling one increment)
1718 // should occur for each delta.
1719 int GetWheelDelta() const { return m_wheelDelta
; }
1721 // Gets the axis the wheel operation concerns; wxMOUSE_WHEEL_VERTICAL
1722 // (most common case) or wxMOUSE_WHEEL_HORIZONTAL (for horizontal scrolling
1723 // using e.g. a trackpad).
1724 wxMouseWheelAxis
GetWheelAxis() const { return m_wheelAxis
; }
1726 // Returns the configured number of lines (or whatever) to be scrolled per
1727 // wheel action. Defaults to one.
1728 int GetLinesPerAction() const { return m_linesPerAction
; }
1730 // Is the system set to do page scrolling?
1731 bool IsPageScroll() const { return ((unsigned int)m_linesPerAction
== UINT_MAX
); }
1733 virtual wxEvent
*Clone() const { return new wxMouseEvent(*this); }
1734 virtual wxEventCategory
GetEventCategory() const { return wxEVT_CATEGORY_USER_INPUT
; }
1736 wxMouseEvent
& operator=(const wxMouseEvent
& event
)
1746 wxMouseWheelAxis m_wheelAxis
;
1747 int m_wheelRotation
;
1749 int m_linesPerAction
;
1752 void Assign(const wxMouseEvent
& evt
);
1755 DECLARE_DYNAMIC_CLASS(wxMouseEvent
)
1764 class WXDLLIMPEXP_CORE wxSetCursorEvent
: public wxEvent
1767 wxSetCursorEvent(wxCoord x
= 0, wxCoord y
= 0)
1768 : wxEvent(0, wxEVT_SET_CURSOR
),
1769 m_x(x
), m_y(y
), m_cursor()
1772 wxSetCursorEvent(const wxSetCursorEvent
& event
)
1776 m_cursor(event
.m_cursor
)
1779 wxCoord
GetX() const { return m_x
; }
1780 wxCoord
GetY() const { return m_y
; }
1782 void SetCursor(const wxCursor
& cursor
) { m_cursor
= cursor
; }
1783 const wxCursor
& GetCursor() const { return m_cursor
; }
1784 bool HasCursor() const { return m_cursor
.IsOk(); }
1786 virtual wxEvent
*Clone() const { return new wxSetCursorEvent(*this); }
1793 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSetCursorEvent
)
1796 // Keyboard input event class
1806 // key categories: the bit flags for IsKeyInCategory() function
1808 // the enum values used may change in future version of wx
1809 // use the named constants only, or bitwise combinations thereof
1810 enum wxKeyCategoryFlags
1812 // arrow keys, on and off numeric keypads
1813 WXK_CATEGORY_ARROW
= 1,
1815 // page up and page down keys, on and off numeric keypads
1816 WXK_CATEGORY_PAGING
= 2,
1818 // home and end keys, on and off numeric keypads
1819 WXK_CATEGORY_JUMP
= 4,
1821 // tab key, on and off numeric keypads
1822 WXK_CATEGORY_TAB
= 8,
1824 // backspace and delete keys, on and off numeric keypads
1825 WXK_CATEGORY_CUT
= 16,
1827 // all keys usually used for navigation
1828 WXK_CATEGORY_NAVIGATION
= WXK_CATEGORY_ARROW
|
1829 WXK_CATEGORY_PAGING
|
1833 class WXDLLIMPEXP_CORE wxKeyEvent
: public wxEvent
,
1834 public wxKeyboardState
1837 wxKeyEvent(wxEventType keyType
= wxEVT_NULL
);
1839 // Normal copy ctor and a ctor creating a new event for the same key as the
1840 // given one but a different event type (this is used in implementation
1841 // code only, do not use outside of the library).
1842 wxKeyEvent(const wxKeyEvent
& evt
);
1843 wxKeyEvent(wxEventType eventType
, const wxKeyEvent
& evt
);
1845 // get the key code: an ASCII7 char or an element of wxKeyCode enum
1846 int GetKeyCode() const { return (int)m_keyCode
; }
1848 // returns true iff this event's key code is of a certain type
1849 bool IsKeyInCategory(int category
) const;
1852 // get the Unicode character corresponding to this key
1853 wxChar
GetUnicodeKey() const { return m_uniChar
; }
1854 #endif // wxUSE_UNICODE
1856 // get the raw key code (platform-dependent)
1857 wxUint32
GetRawKeyCode() const { return m_rawCode
; }
1859 // get the raw key flags (platform-dependent)
1860 wxUint32
GetRawKeyFlags() const { return m_rawFlags
; }
1862 // Find the position of the event
1863 void GetPosition(wxCoord
*xpos
, wxCoord
*ypos
) const
1865 if (xpos
) *xpos
= m_x
;
1866 if (ypos
) *ypos
= m_y
;
1869 void GetPosition(long *xpos
, long *ypos
) const
1871 if (xpos
) *xpos
= (long)m_x
;
1872 if (ypos
) *ypos
= (long)m_y
;
1875 wxPoint
GetPosition() const
1876 { return wxPoint(m_x
, m_y
); }
1879 wxCoord
GetX() const;
1882 wxCoord
GetY() const;
1884 // Can be called from wxEVT_CHAR_HOOK handler to allow generation of normal
1885 // key events even though the event had been handled (by default they would
1886 // not be generated in this case).
1887 void DoAllowNextEvent() { m_allowNext
= true; }
1889 // Return the value of the "allow next" flag, for internal use only.
1890 bool IsNextEventAllowed() const { return m_allowNext
; }
1893 virtual wxEvent
*Clone() const { return new wxKeyEvent(*this); }
1894 virtual wxEventCategory
GetEventCategory() const { return wxEVT_CATEGORY_USER_INPUT
; }
1896 // we do need to copy wxKeyEvent sometimes (in wxTreeCtrl code, for
1898 wxKeyEvent
& operator=(const wxKeyEvent
& evt
)
1902 wxEvent::operator=(evt
);
1904 // Borland C++ 5.82 doesn't compile an explicit call to an
1905 // implicitly defined operator=() so need to do it this way:
1906 *static_cast<wxKeyboardState
*>(this) = evt
;
1908 DoAssignMembers(evt
);
1919 // This contains the full Unicode character
1920 // in a character events in Unicode mode
1924 // these fields contain the platform-specific information about
1925 // key that was pressed
1927 wxUint32 m_rawFlags
;
1930 // Set the event to propagate if necessary, i.e. if it's of wxEVT_CHAR_HOOK
1931 // type. This is used by all ctors.
1932 void InitPropagation()
1934 if ( m_eventType
== wxEVT_CHAR_HOOK
)
1935 m_propagationLevel
= wxEVENT_PROPAGATE_MAX
;
1937 m_allowNext
= false;
1940 // Copy only the event data present in this class, this is used by
1941 // AssignKeyData() and copy ctor.
1942 void DoAssignMembers(const wxKeyEvent
& evt
)
1946 m_hasPosition
= evt
.m_hasPosition
;
1948 m_keyCode
= evt
.m_keyCode
;
1950 m_rawCode
= evt
.m_rawCode
;
1951 m_rawFlags
= evt
.m_rawFlags
;
1953 m_uniChar
= evt
.m_uniChar
;
1957 // Initialize m_x and m_y using the current mouse cursor position if
1959 void InitPositionIfNecessary() const;
1961 // If this flag is true, the normal key events should still be generated
1962 // even if wxEVT_CHAR_HOOK had been handled. By default it is false as
1963 // handling wxEVT_CHAR_HOOK suppresses all the subsequent events.
1966 // If true, m_x and m_y were already initialized. If false, try to get them
1967 // when they're requested.
1970 DECLARE_DYNAMIC_CLASS(wxKeyEvent
)
1978 class WXDLLIMPEXP_CORE wxSizeEvent
: public wxEvent
1981 wxSizeEvent() : wxEvent(0, wxEVT_SIZE
)
1983 wxSizeEvent(const wxSize
& sz
, int winid
= 0)
1984 : wxEvent(winid
, wxEVT_SIZE
),
1987 wxSizeEvent(const wxSizeEvent
& event
)
1989 m_size(event
.m_size
), m_rect(event
.m_rect
)
1991 wxSizeEvent(const wxRect
& rect
, int id
= 0)
1992 : m_size(rect
.GetSize()), m_rect(rect
)
1993 { m_eventType
= wxEVT_SIZING
; m_id
= id
; }
1995 wxSize
GetSize() const { return m_size
; }
1996 void SetSize(wxSize size
) { m_size
= size
; }
1997 wxRect
GetRect() const { return m_rect
; }
1998 void SetRect(const wxRect
& rect
) { m_rect
= rect
; }
2000 virtual wxEvent
*Clone() const { return new wxSizeEvent(*this); }
2003 // For internal usage only. Will be converted to protected members.
2005 wxRect m_rect
; // Used for wxEVT_SIZING
2008 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSizeEvent
)
2017 class WXDLLIMPEXP_CORE wxMoveEvent
: public wxEvent
2021 : wxEvent(0, wxEVT_MOVE
)
2023 wxMoveEvent(const wxPoint
& pos
, int winid
= 0)
2024 : wxEvent(winid
, wxEVT_MOVE
),
2027 wxMoveEvent(const wxMoveEvent
& event
)
2031 wxMoveEvent(const wxRect
& rect
, int id
= 0)
2032 : m_pos(rect
.GetPosition()), m_rect(rect
)
2033 { m_eventType
= wxEVT_MOVING
; m_id
= id
; }
2035 wxPoint
GetPosition() const { return m_pos
; }
2036 void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
2037 wxRect
GetRect() const { return m_rect
; }
2038 void SetRect(const wxRect
& rect
) { m_rect
= rect
; }
2040 virtual wxEvent
*Clone() const { return new wxMoveEvent(*this); }
2047 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMoveEvent
)
2050 // Paint event class
2056 #if wxDEBUG_LEVEL && (defined(__WXMSW__) || defined(__WXPM__))
2057 #define wxHAS_PAINT_DEBUG
2059 // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined
2060 extern WXDLLIMPEXP_CORE
int g_isPainting
;
2063 class WXDLLIMPEXP_CORE wxPaintEvent
: public wxEvent
2066 wxPaintEvent(int Id
= 0)
2067 : wxEvent(Id
, wxEVT_PAINT
)
2069 #ifdef wxHAS_PAINT_DEBUG
2070 // set the internal flag for the duration of redrawing
2075 // default copy ctor and dtor are normally fine, we only need them to keep
2076 // g_isPainting updated in debug build
2077 #ifdef wxHAS_PAINT_DEBUG
2078 wxPaintEvent(const wxPaintEvent
& event
)
2084 virtual ~wxPaintEvent()
2090 virtual wxEvent
*Clone() const { return new wxPaintEvent(*this); }
2093 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaintEvent
)
2096 class WXDLLIMPEXP_CORE wxNcPaintEvent
: public wxEvent
2099 wxNcPaintEvent(int winid
= 0)
2100 : wxEvent(winid
, wxEVT_NC_PAINT
)
2103 virtual wxEvent
*Clone() const { return new wxNcPaintEvent(*this); }
2106 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNcPaintEvent
)
2109 // Erase background event class
2111 wxEVT_ERASE_BACKGROUND
2114 class WXDLLIMPEXP_CORE wxEraseEvent
: public wxEvent
2117 wxEraseEvent(int Id
= 0, wxDC
*dc
= NULL
)
2118 : wxEvent(Id
, wxEVT_ERASE_BACKGROUND
),
2122 wxEraseEvent(const wxEraseEvent
& event
)
2127 wxDC
*GetDC() const { return m_dc
; }
2129 virtual wxEvent
*Clone() const { return new wxEraseEvent(*this); }
2135 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxEraseEvent
)
2138 // Focus event class
2144 class WXDLLIMPEXP_CORE wxFocusEvent
: public wxEvent
2147 wxFocusEvent(wxEventType type
= wxEVT_NULL
, int winid
= 0)
2148 : wxEvent(winid
, type
)
2151 wxFocusEvent(const wxFocusEvent
& event
)
2153 { m_win
= event
.m_win
; }
2155 // The window associated with this event is the window which had focus
2156 // before for SET event and the window which will have focus for the KILL
2157 // one. NB: it may be NULL in both cases!
2158 wxWindow
*GetWindow() const { return m_win
; }
2159 void SetWindow(wxWindow
*win
) { m_win
= win
; }
2161 virtual wxEvent
*Clone() const { return new wxFocusEvent(*this); }
2167 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFocusEvent
)
2170 // wxChildFocusEvent notifies the parent that a child has got the focus: unlike
2171 // wxFocusEvent it is propagated upwards the window chain
2172 class WXDLLIMPEXP_CORE wxChildFocusEvent
: public wxCommandEvent
2175 wxChildFocusEvent(wxWindow
*win
= NULL
);
2177 wxWindow
*GetWindow() const { return (wxWindow
*)GetEventObject(); }
2179 virtual wxEvent
*Clone() const { return new wxChildFocusEvent(*this); }
2182 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxChildFocusEvent
)
2185 // Activate event class
2192 class WXDLLIMPEXP_CORE wxActivateEvent
: public wxEvent
2195 wxActivateEvent(wxEventType type
= wxEVT_NULL
, bool active
= true, int Id
= 0)
2197 { m_active
= active
; }
2198 wxActivateEvent(const wxActivateEvent
& event
)
2200 { m_active
= event
.m_active
; }
2202 bool GetActive() const { return m_active
; }
2204 virtual wxEvent
*Clone() const { return new wxActivateEvent(*this); }
2210 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxActivateEvent
)
2213 // InitDialog event class
2218 class WXDLLIMPEXP_CORE wxInitDialogEvent
: public wxEvent
2221 wxInitDialogEvent(int Id
= 0)
2222 : wxEvent(Id
, wxEVT_INIT_DIALOG
)
2225 virtual wxEvent
*Clone() const { return new wxInitDialogEvent(*this); }
2228 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxInitDialogEvent
)
2231 // Miscellaneous menu event class
2235 wxEVT_MENU_HIGHLIGHT,
2238 class WXDLLIMPEXP_CORE wxMenuEvent
: public wxEvent
2241 wxMenuEvent(wxEventType type
= wxEVT_NULL
, int winid
= 0, wxMenu
* menu
= NULL
)
2242 : wxEvent(winid
, type
)
2243 { m_menuId
= winid
; m_menu
= menu
; }
2244 wxMenuEvent(const wxMenuEvent
& event
)
2246 { m_menuId
= event
.m_menuId
; m_menu
= event
.m_menu
; }
2248 // only for wxEVT_MENU_HIGHLIGHT
2249 int GetMenuId() const { return m_menuId
; }
2251 // only for wxEVT_MENU_OPEN/CLOSE
2252 bool IsPopup() const { return m_menuId
== wxID_ANY
; }
2254 // only for wxEVT_MENU_OPEN/CLOSE
2255 wxMenu
* GetMenu() const { return m_menu
; }
2257 virtual wxEvent
*Clone() const { return new wxMenuEvent(*this); }
2263 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMenuEvent
)
2266 // Window close or session close event class
2270 wxEVT_QUERY_END_SESSION
2273 class WXDLLIMPEXP_CORE wxCloseEvent
: public wxEvent
2276 wxCloseEvent(wxEventType type
= wxEVT_NULL
, int winid
= 0)
2277 : wxEvent(winid
, type
),
2279 m_veto(false), // should be false by default
2282 wxCloseEvent(const wxCloseEvent
& event
)
2284 m_loggingOff(event
.m_loggingOff
),
2285 m_veto(event
.m_veto
),
2286 m_canVeto(event
.m_canVeto
) {}
2288 void SetLoggingOff(bool logOff
) { m_loggingOff
= logOff
; }
2289 bool GetLoggingOff() const
2291 // m_loggingOff flag is only used by wxEVT_[QUERY_]END_SESSION, it
2292 // doesn't make sense for wxEVT_CLOSE_WINDOW
2293 wxASSERT_MSG( m_eventType
!= wxEVT_CLOSE_WINDOW
,
2294 wxT("this flag is for end session events only") );
2296 return m_loggingOff
;
2299 void Veto(bool veto
= true)
2301 // GetVeto() will return false anyhow...
2302 wxCHECK_RET( m_canVeto
,
2303 wxT("call to Veto() ignored (can't veto this event)") );
2307 void SetCanVeto(bool canVeto
) { m_canVeto
= canVeto
; }
2308 bool CanVeto() const { return m_canVeto
; }
2309 bool GetVeto() const { return m_canVeto
&& m_veto
; }
2311 virtual wxEvent
*Clone() const { return new wxCloseEvent(*this); }
2319 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCloseEvent
)
2326 class WXDLLIMPEXP_CORE wxShowEvent
: public wxEvent
2329 wxShowEvent(int winid
= 0, bool show
= false)
2330 : wxEvent(winid
, wxEVT_SHOW
)
2332 wxShowEvent(const wxShowEvent
& event
)
2334 { m_show
= event
.m_show
; }
2336 void SetShow(bool show
) { m_show
= show
; }
2338 // return true if the window was shown, false if hidden
2339 bool IsShown() const { return m_show
; }
2341 #if WXWIN_COMPATIBILITY_2_8
2342 wxDEPRECATED( bool GetShow() const { return IsShown(); } )
2345 virtual wxEvent
*Clone() const { return new wxShowEvent(*this); }
2351 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxShowEvent
)
2358 class WXDLLIMPEXP_CORE wxIconizeEvent
: public wxEvent
2361 wxIconizeEvent(int winid
= 0, bool iconized
= true)
2362 : wxEvent(winid
, wxEVT_ICONIZE
)
2363 { m_iconized
= iconized
; }
2364 wxIconizeEvent(const wxIconizeEvent
& event
)
2366 { m_iconized
= event
.m_iconized
; }
2368 #if WXWIN_COMPATIBILITY_2_8
2369 wxDEPRECATED( bool Iconized() const { return IsIconized(); } )
2371 // return true if the frame was iconized, false if restored
2372 bool IsIconized() const { return m_iconized
; }
2374 virtual wxEvent
*Clone() const { return new wxIconizeEvent(*this); }
2380 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIconizeEvent
)
2386 class WXDLLIMPEXP_CORE wxMaximizeEvent
: public wxEvent
2389 wxMaximizeEvent(int winid
= 0)
2390 : wxEvent(winid
, wxEVT_MAXIMIZE
)
2393 virtual wxEvent
*Clone() const { return new wxMaximizeEvent(*this); }
2396 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMaximizeEvent
)
2399 // Joystick event class
2401 wxEVT_JOY_BUTTON_DOWN,
2402 wxEVT_JOY_BUTTON_UP,
2407 // Which joystick? Same as Windows ids so no conversion necessary.
2414 // Which button is down?
2417 wxJOY_BUTTON_ANY
= -1,
2424 class WXDLLIMPEXP_CORE wxJoystickEvent
: public wxEvent
2429 int m_buttonChange
; // Which button changed?
2430 int m_buttonState
; // Which buttons are down?
2431 int m_joyStick
; // Which joystick?
2434 wxJoystickEvent(wxEventType type
= wxEVT_NULL
,
2436 int joystick
= wxJOYSTICK1
,
2441 m_buttonChange(change
),
2442 m_buttonState(state
),
2443 m_joyStick(joystick
)
2446 wxJoystickEvent(const wxJoystickEvent
& event
)
2449 m_zPosition(event
.m_zPosition
),
2450 m_buttonChange(event
.m_buttonChange
),
2451 m_buttonState(event
.m_buttonState
),
2452 m_joyStick(event
.m_joyStick
)
2455 wxPoint
GetPosition() const { return m_pos
; }
2456 int GetZPosition() const { return m_zPosition
; }
2457 int GetButtonState() const { return m_buttonState
; }
2458 int GetButtonChange() const { return m_buttonChange
; }
2459 int GetJoystick() const { return m_joyStick
; }
2461 void SetJoystick(int stick
) { m_joyStick
= stick
; }
2462 void SetButtonState(int state
) { m_buttonState
= state
; }
2463 void SetButtonChange(int change
) { m_buttonChange
= change
; }
2464 void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
2465 void SetZPosition(int zPos
) { m_zPosition
= zPos
; }
2467 // Was it a button event? (*doesn't* mean: is any button *down*?)
2468 bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN
) ||
2469 (GetEventType() == wxEVT_JOY_BUTTON_UP
)); }
2471 // Was it a move event?
2472 bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE
); }
2474 // Was it a zmove event?
2475 bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE
); }
2477 // Was it a down event from button 1, 2, 3, 4 or any?
2478 bool ButtonDown(int but
= wxJOY_BUTTON_ANY
) const
2479 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN
) &&
2480 ((but
== wxJOY_BUTTON_ANY
) || (but
== m_buttonChange
))); }
2482 // Was it a up event from button 1, 2, 3 or any?
2483 bool ButtonUp(int but
= wxJOY_BUTTON_ANY
) const
2484 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP
) &&
2485 ((but
== wxJOY_BUTTON_ANY
) || (but
== m_buttonChange
))); }
2487 // Was the given button 1,2,3,4 or any in Down state?
2488 bool ButtonIsDown(int but
= wxJOY_BUTTON_ANY
) const
2489 { return (((but
== wxJOY_BUTTON_ANY
) && (m_buttonState
!= 0)) ||
2490 ((m_buttonState
& but
) == but
)); }
2492 virtual wxEvent
*Clone() const { return new wxJoystickEvent(*this); }
2495 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxJoystickEvent
)
2498 // Drop files event class
2503 class WXDLLIMPEXP_CORE wxDropFilesEvent
: public wxEvent
2510 wxDropFilesEvent(wxEventType type
= wxEVT_NULL
,
2512 wxString
*files
= NULL
)
2519 // we need a copy ctor to avoid deleting m_files pointer twice
2520 wxDropFilesEvent(const wxDropFilesEvent
& other
)
2522 m_noFiles(other
.m_noFiles
),
2526 m_files
= new wxString
[m_noFiles
];
2527 for ( int n
= 0; n
< m_noFiles
; n
++ )
2529 m_files
[n
] = other
.m_files
[n
];
2533 virtual ~wxDropFilesEvent()
2538 wxPoint
GetPosition() const { return m_pos
; }
2539 int GetNumberOfFiles() const { return m_noFiles
; }
2540 wxString
*GetFiles() const { return m_files
; }
2542 virtual wxEvent
*Clone() const { return new wxDropFilesEvent(*this); }
2545 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDropFilesEvent
)
2553 // Whether to always send update events to windows, or
2554 // to only send update events to those with the
2555 // wxWS_EX_PROCESS_UI_UPDATES style.
2559 // Send UI update events to all windows
2560 wxUPDATE_UI_PROCESS_ALL
,
2562 // Send UI update events to windows that have
2563 // the wxWS_EX_PROCESS_UI_UPDATES flag specified
2564 wxUPDATE_UI_PROCESS_SPECIFIED
2567 class WXDLLIMPEXP_CORE wxUpdateUIEvent
: public wxCommandEvent
2570 wxUpdateUIEvent(wxWindowID commandId
= 0)
2571 : wxCommandEvent(wxEVT_UPDATE_UI
, commandId
)
2579 m_setChecked
= false;
2581 wxUpdateUIEvent(const wxUpdateUIEvent
& event
)
2582 : wxCommandEvent(event
),
2583 m_checked(event
.m_checked
),
2584 m_enabled(event
.m_enabled
),
2585 m_shown(event
.m_shown
),
2586 m_setEnabled(event
.m_setEnabled
),
2587 m_setShown(event
.m_setShown
),
2588 m_setText(event
.m_setText
),
2589 m_setChecked(event
.m_setChecked
),
2590 m_text(event
.m_text
)
2593 bool GetChecked() const { return m_checked
; }
2594 bool GetEnabled() const { return m_enabled
; }
2595 bool GetShown() const { return m_shown
; }
2596 wxString
GetText() const { return m_text
; }
2597 bool GetSetText() const { return m_setText
; }
2598 bool GetSetChecked() const { return m_setChecked
; }
2599 bool GetSetEnabled() const { return m_setEnabled
; }
2600 bool GetSetShown() const { return m_setShown
; }
2602 void Check(bool check
) { m_checked
= check
; m_setChecked
= true; }
2603 void Enable(bool enable
) { m_enabled
= enable
; m_setEnabled
= true; }
2604 void Show(bool show
) { m_shown
= show
; m_setShown
= true; }
2605 void SetText(const wxString
& text
) { m_text
= text
; m_setText
= true; }
2607 // Sets the interval between updates in milliseconds.
2608 // Set to -1 to disable updates, or to 0 to update as frequently as possible.
2609 static void SetUpdateInterval(long updateInterval
) { sm_updateInterval
= updateInterval
; }
2611 // Returns the current interval between updates in milliseconds
2612 static long GetUpdateInterval() { return sm_updateInterval
; }
2614 // Can we update this window?
2615 static bool CanUpdate(wxWindowBase
*win
);
2617 // Reset the update time to provide a delay until the next
2618 // time we should update
2619 static void ResetUpdateTime();
2621 // Specify how wxWidgets will send update events: to
2622 // all windows, or only to those which specify that they
2623 // will process the events.
2624 static void SetMode(wxUpdateUIMode mode
) { sm_updateMode
= mode
; }
2626 // Returns the UI update mode
2627 static wxUpdateUIMode
GetMode() { return sm_updateMode
; }
2629 virtual wxEvent
*Clone() const { return new wxUpdateUIEvent(*this); }
2641 static wxLongLong sm_lastUpdate
;
2643 static long sm_updateInterval
;
2644 static wxUpdateUIMode sm_updateMode
;
2647 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxUpdateUIEvent
)
2651 wxEVT_SYS_COLOUR_CHANGED
2654 // TODO: shouldn't all events record the window ID?
2655 class WXDLLIMPEXP_CORE wxSysColourChangedEvent
: public wxEvent
2658 wxSysColourChangedEvent()
2659 : wxEvent(0, wxEVT_SYS_COLOUR_CHANGED
)
2662 virtual wxEvent
*Clone() const { return new wxSysColourChangedEvent(*this); }
2665 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSysColourChangedEvent
)
2669 wxEVT_MOUSE_CAPTURE_CHANGED
2670 The window losing the capture receives this message
2671 (even if it released the capture itself).
2674 class WXDLLIMPEXP_CORE wxMouseCaptureChangedEvent
: public wxEvent
2677 wxMouseCaptureChangedEvent(wxWindowID winid
= 0, wxWindow
* gainedCapture
= NULL
)
2678 : wxEvent(winid
, wxEVT_MOUSE_CAPTURE_CHANGED
),
2679 m_gainedCapture(gainedCapture
)
2682 wxMouseCaptureChangedEvent(const wxMouseCaptureChangedEvent
& event
)
2684 m_gainedCapture(event
.m_gainedCapture
)
2687 virtual wxEvent
*Clone() const { return new wxMouseCaptureChangedEvent(*this); }
2689 wxWindow
* GetCapturedWindow() const { return m_gainedCapture
; }
2692 wxWindow
* m_gainedCapture
;
2694 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureChangedEvent
)
2698 wxEVT_MOUSE_CAPTURE_LOST
2699 The window losing the capture receives this message, unless it released it
2700 it itself or unless wxWindow::CaptureMouse was called on another window
2701 (and so capture will be restored when the new capturer releases it).
2704 class WXDLLIMPEXP_CORE wxMouseCaptureLostEvent
: public wxEvent
2707 wxMouseCaptureLostEvent(wxWindowID winid
= 0)
2708 : wxEvent(winid
, wxEVT_MOUSE_CAPTURE_LOST
)
2711 wxMouseCaptureLostEvent(const wxMouseCaptureLostEvent
& event
)
2715 virtual wxEvent
*Clone() const { return new wxMouseCaptureLostEvent(*this); }
2717 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureLostEvent
)
2721 wxEVT_DISPLAY_CHANGED
2723 class WXDLLIMPEXP_CORE wxDisplayChangedEvent
: public wxEvent
2726 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDisplayChangedEvent
)
2729 wxDisplayChangedEvent()
2730 : wxEvent(0, wxEVT_DISPLAY_CHANGED
)
2733 virtual wxEvent
*Clone() const { return new wxDisplayChangedEvent(*this); }
2737 wxEVT_PALETTE_CHANGED
2740 class WXDLLIMPEXP_CORE wxPaletteChangedEvent
: public wxEvent
2743 wxPaletteChangedEvent(wxWindowID winid
= 0)
2744 : wxEvent(winid
, wxEVT_PALETTE_CHANGED
),
2745 m_changedWindow(NULL
)
2748 wxPaletteChangedEvent(const wxPaletteChangedEvent
& event
)
2750 m_changedWindow(event
.m_changedWindow
)
2753 void SetChangedWindow(wxWindow
* win
) { m_changedWindow
= win
; }
2754 wxWindow
* GetChangedWindow() const { return m_changedWindow
; }
2756 virtual wxEvent
*Clone() const { return new wxPaletteChangedEvent(*this); }
2759 wxWindow
* m_changedWindow
;
2762 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaletteChangedEvent
)
2766 wxEVT_QUERY_NEW_PALETTE
2767 Indicates the window is getting keyboard focus and should re-do its palette.
2770 class WXDLLIMPEXP_CORE wxQueryNewPaletteEvent
: public wxEvent
2773 wxQueryNewPaletteEvent(wxWindowID winid
= 0)
2774 : wxEvent(winid
, wxEVT_QUERY_NEW_PALETTE
),
2775 m_paletteRealized(false)
2777 wxQueryNewPaletteEvent(const wxQueryNewPaletteEvent
& event
)
2779 m_paletteRealized(event
.m_paletteRealized
)
2782 // App sets this if it changes the palette.
2783 void SetPaletteRealized(bool realized
) { m_paletteRealized
= realized
; }
2784 bool GetPaletteRealized() const { return m_paletteRealized
; }
2786 virtual wxEvent
*Clone() const { return new wxQueryNewPaletteEvent(*this); }
2789 bool m_paletteRealized
;
2792 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxQueryNewPaletteEvent
)
2796 Event generated by dialog navigation keys
2797 wxEVT_NAVIGATION_KEY
2799 // NB: don't derive from command event to avoid being propagated to the parent
2800 class WXDLLIMPEXP_CORE wxNavigationKeyEvent
: public wxEvent
2803 wxNavigationKeyEvent()
2804 : wxEvent(0, wxEVT_NAVIGATION_KEY
),
2805 m_flags(IsForward
| FromTab
), // defaults are for TAB
2808 m_propagationLevel
= wxEVENT_PROPAGATE_NONE
;
2811 wxNavigationKeyEvent(const wxNavigationKeyEvent
& event
)
2813 m_flags(event
.m_flags
),
2814 m_focus(event
.m_focus
)
2817 // direction: forward (true) or backward (false)
2818 bool GetDirection() const
2819 { return (m_flags
& IsForward
) != 0; }
2820 void SetDirection(bool bForward
)
2821 { if ( bForward
) m_flags
|= IsForward
; else m_flags
&= ~IsForward
; }
2823 // it may be a window change event (MDI, notebook pages...) or a control
2825 bool IsWindowChange() const
2826 { return (m_flags
& WinChange
) != 0; }
2827 void SetWindowChange(bool bIs
)
2828 { if ( bIs
) m_flags
|= WinChange
; else m_flags
&= ~WinChange
; }
2830 // Set to true under MSW if the event was generated using the tab key.
2831 // This is required for proper navogation over radio buttons
2832 bool IsFromTab() const
2833 { return (m_flags
& FromTab
) != 0; }
2834 void SetFromTab(bool bIs
)
2835 { if ( bIs
) m_flags
|= FromTab
; else m_flags
&= ~FromTab
; }
2837 // the child which has the focus currently (may be NULL - use
2838 // wxWindow::FindFocus then)
2839 wxWindow
* GetCurrentFocus() const { return m_focus
; }
2840 void SetCurrentFocus(wxWindow
*win
) { m_focus
= win
; }
2843 void SetFlags(long flags
) { m_flags
= flags
; }
2845 virtual wxEvent
*Clone() const { return new wxNavigationKeyEvent(*this); }
2847 enum wxNavigationKeyEventFlags
2849 IsBackward
= 0x0000,
2859 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNavigationKeyEvent
)
2862 // Window creation/destruction events: the first is sent as soon as window is
2863 // created (i.e. the underlying GUI object exists), but when the C++ object is
2864 // fully initialized (so virtual functions may be called). The second,
2865 // wxEVT_DESTROY, is sent right before the window is destroyed - again, it's
2866 // still safe to call virtual functions at this moment
2872 class WXDLLIMPEXP_CORE wxWindowCreateEvent
: public wxCommandEvent
2875 wxWindowCreateEvent(wxWindow
*win
= NULL
);
2877 wxWindow
*GetWindow() const { return (wxWindow
*)GetEventObject(); }
2879 virtual wxEvent
*Clone() const { return new wxWindowCreateEvent(*this); }
2882 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowCreateEvent
)
2885 class WXDLLIMPEXP_CORE wxWindowDestroyEvent
: public wxCommandEvent
2888 wxWindowDestroyEvent(wxWindow
*win
= NULL
);
2890 wxWindow
*GetWindow() const { return (wxWindow
*)GetEventObject(); }
2892 virtual wxEvent
*Clone() const { return new wxWindowDestroyEvent(*this); }
2895 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowDestroyEvent
)
2898 // A help event is sent when the user clicks on a window in context-help mode.
2904 class WXDLLIMPEXP_CORE wxHelpEvent
: public wxCommandEvent
2907 // how was this help event generated?
2910 Origin_Unknown
, // unrecognized event source
2911 Origin_Keyboard
, // event generated from F1 key press
2912 Origin_HelpButton
// event from [?] button on the title bar (Windows)
2915 wxHelpEvent(wxEventType type
= wxEVT_NULL
,
2916 wxWindowID winid
= 0,
2917 const wxPoint
& pt
= wxDefaultPosition
,
2918 Origin origin
= Origin_Unknown
)
2919 : wxCommandEvent(type
, winid
),
2921 m_origin(GuessOrigin(origin
))
2923 wxHelpEvent(const wxHelpEvent
& event
)
2924 : wxCommandEvent(event
),
2926 m_target(event
.m_target
),
2927 m_link(event
.m_link
),
2928 m_origin(event
.m_origin
)
2931 // Position of event (in screen coordinates)
2932 const wxPoint
& GetPosition() const { return m_pos
; }
2933 void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
2935 // Optional link to further help
2936 const wxString
& GetLink() const { return m_link
; }
2937 void SetLink(const wxString
& link
) { m_link
= link
; }
2939 // Optional target to display help in. E.g. a window specification
2940 const wxString
& GetTarget() const { return m_target
; }
2941 void SetTarget(const wxString
& target
) { m_target
= target
; }
2943 virtual wxEvent
*Clone() const { return new wxHelpEvent(*this); }
2945 // optional indication of the event source
2946 Origin
GetOrigin() const { return m_origin
; }
2947 void SetOrigin(Origin origin
) { m_origin
= origin
; }
2955 // we can try to guess the event origin ourselves, even if none is
2956 // specified in the ctor
2957 static Origin
GuessOrigin(Origin origin
);
2960 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxHelpEvent
)
2963 // A Clipboard Text event is sent when a window intercepts text copy/cut/paste
2964 // message, i.e. the user has cut/copied/pasted data from/into a text control
2965 // via ctrl-C/X/V, ctrl/shift-del/insert, a popup menu command, etc.
2966 // NOTE : under windows these events are *NOT* generated automatically
2967 // for a Rich Edit text control.
2969 wxEVT_COMMAND_TEXT_COPY
2970 wxEVT_COMMAND_TEXT_CUT
2971 wxEVT_COMMAND_TEXT_PASTE
2974 class WXDLLIMPEXP_CORE wxClipboardTextEvent
: public wxCommandEvent
2977 wxClipboardTextEvent(wxEventType type
= wxEVT_NULL
,
2978 wxWindowID winid
= 0)
2979 : wxCommandEvent(type
, winid
)
2981 wxClipboardTextEvent(const wxClipboardTextEvent
& event
)
2982 : wxCommandEvent(event
)
2985 virtual wxEvent
*Clone() const { return new wxClipboardTextEvent(*this); }
2988 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxClipboardTextEvent
)
2991 // A Context event is sent when the user right clicks on a window or
2992 // presses Shift-F10
2993 // NOTE : Under windows this is a repackaged WM_CONTETXMENU message
2994 // Under other systems it may have to be generated from a right click event
2999 class WXDLLIMPEXP_CORE wxContextMenuEvent
: public wxCommandEvent
3002 wxContextMenuEvent(wxEventType type
= wxEVT_NULL
,
3003 wxWindowID winid
= 0,
3004 const wxPoint
& pt
= wxDefaultPosition
)
3005 : wxCommandEvent(type
, winid
),
3008 wxContextMenuEvent(const wxContextMenuEvent
& event
)
3009 : wxCommandEvent(event
),
3013 // Position of event (in screen coordinates)
3014 const wxPoint
& GetPosition() const { return m_pos
; }
3015 void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
3017 virtual wxEvent
*Clone() const { return new wxContextMenuEvent(*this); }
3023 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxContextMenuEvent
)
3028 wxEVT_MOUSE_CAPTURE_CHANGED,
3029 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
3030 // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
3031 // wxEVT_FONT_CHANGED to all other windows (maybe).
3032 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
3040 // ============================================================================
3041 // event handler and related classes
3042 // ============================================================================
3045 // struct containing the members common to static and dynamic event tables
3047 struct WXDLLIMPEXP_BASE wxEventTableEntryBase
3049 wxEventTableEntryBase(int winid
, int idLast
,
3050 wxEventFunctor
* fn
, wxObject
*data
)
3054 m_callbackUserData(data
)
3056 wxASSERT_MSG( idLast
== wxID_ANY
|| winid
<= idLast
,
3057 "invalid IDs range: lower bound > upper bound" );
3060 wxEventTableEntryBase( const wxEventTableEntryBase
&entry
)
3061 : m_id( entry
.m_id
),
3062 m_lastId( entry
.m_lastId
),
3064 m_callbackUserData( entry
.m_callbackUserData
)
3066 // This is a 'hack' to ensure that only one instance tries to delete
3067 // the functor pointer. It is safe as long as the only place where the
3068 // copy constructor is being called is when the static event tables are
3069 // being initialized (a temporary instance is created and then this
3070 // constructor is called).
3072 const_cast<wxEventTableEntryBase
&>( entry
).m_fn
= NULL
;
3075 ~wxEventTableEntryBase()
3080 // the range of ids for this entry: if m_lastId == wxID_ANY, the range
3081 // consists only of m_id, otherwise it is m_id..m_lastId inclusive
3085 // function/method/functor to call
3086 wxEventFunctor
* m_fn
;
3088 // arbitrary user data associated with the callback
3089 wxObject
* m_callbackUserData
;
3092 wxDECLARE_NO_ASSIGN_CLASS(wxEventTableEntryBase
);
3095 // an entry from a static event table
3096 struct WXDLLIMPEXP_BASE wxEventTableEntry
: public wxEventTableEntryBase
3098 wxEventTableEntry(const int& evType
, int winid
, int idLast
,
3099 wxEventFunctor
* fn
, wxObject
*data
)
3100 : wxEventTableEntryBase(winid
, idLast
, fn
, data
),
3104 // the reference to event type: this allows us to not care about the
3105 // (undefined) order in which the event table entries and the event types
3106 // are initialized: initially the value of this reference might be
3107 // invalid, but by the time it is used for the first time, all global
3108 // objects will have been initialized (including the event type constants)
3109 // and so it will have the correct value when it is needed
3110 const int& m_eventType
;
3113 wxDECLARE_NO_ASSIGN_CLASS(wxEventTableEntry
);
3116 // an entry used in dynamic event table managed by wxEvtHandler::Connect()
3117 struct WXDLLIMPEXP_BASE wxDynamicEventTableEntry
: public wxEventTableEntryBase
3119 wxDynamicEventTableEntry(int evType
, int winid
, int idLast
,
3120 wxEventFunctor
* fn
, wxObject
*data
)
3121 : wxEventTableEntryBase(winid
, idLast
, fn
, data
),
3125 // not a reference here as we can't keep a reference to a temporary int
3126 // created to wrap the constant value typically passed to Connect() - nor
3131 wxDECLARE_NO_ASSIGN_CLASS(wxDynamicEventTableEntry
);
3134 // ----------------------------------------------------------------------------
3135 // wxEventTable: an array of event entries terminated with {0, 0, 0, 0, 0}
3136 // ----------------------------------------------------------------------------
3138 struct WXDLLIMPEXP_BASE wxEventTable
3140 const wxEventTable
*baseTable
; // base event table (next in chain)
3141 const wxEventTableEntry
*entries
; // bottom of entry array
3144 // ----------------------------------------------------------------------------
3145 // wxEventHashTable: a helper of wxEvtHandler to speed up wxEventTable lookups.
3146 // ----------------------------------------------------------------------------
3148 WX_DEFINE_ARRAY_PTR(const wxEventTableEntry
*, wxEventTableEntryPointerArray
);
3150 class WXDLLIMPEXP_BASE wxEventHashTable
3153 // Internal data structs
3154 struct EventTypeTable
3156 wxEventType eventType
;
3157 wxEventTableEntryPointerArray eventEntryTable
;
3159 typedef EventTypeTable
* EventTypeTablePointer
;
3162 // Constructor, needs the event table it needs to hash later on.
3163 // Note: hashing of the event table is not done in the constructor as it
3164 // can be that the event table is not yet full initialize, the hash
3165 // will gets initialized when handling the first event look-up request.
3166 wxEventHashTable(const wxEventTable
&table
);
3168 ~wxEventHashTable();
3170 // Handle the given event, in other words search the event table hash
3171 // and call self->ProcessEvent() if a match was found.
3172 bool HandleEvent(wxEvent
& event
, wxEvtHandler
*self
);
3177 #if wxUSE_MEMORY_TRACING
3178 // Clear all tables: only used to work around problems in memory tracing
3180 static void ClearAll();
3181 #endif // wxUSE_MEMORY_TRACING
3184 // Init the hash table with the entries of the static event table.
3185 void InitHashTable();
3186 // Helper function of InitHashTable() to insert 1 entry into the hash table.
3187 void AddEntry(const wxEventTableEntry
&entry
);
3188 // Allocate and init with null pointers the base hash table.
3189 void AllocEventTypeTable(size_t size
);
3190 // Grow the hash table in size and transfer all items currently
3191 // in the table to the correct location in the new table.
3192 void GrowEventTypeTable();
3195 const wxEventTable
&m_table
;
3199 EventTypeTablePointer
*m_eventTypeTable
;
3201 static wxEventHashTable
* sm_first
;
3202 wxEventHashTable
* m_previous
;
3203 wxEventHashTable
* m_next
;
3205 wxDECLARE_NO_COPY_CLASS(wxEventHashTable
);
3208 // ----------------------------------------------------------------------------
3209 // wxEvtHandler: the base class for all objects handling wxWidgets events
3210 // ----------------------------------------------------------------------------
3212 class WXDLLIMPEXP_BASE wxEvtHandler
: public wxObject
3213 , public wxTrackable
3217 virtual ~wxEvtHandler();
3220 // Event handler chain
3221 // -------------------
3223 wxEvtHandler
*GetNextHandler() const { return m_nextHandler
; }
3224 wxEvtHandler
*GetPreviousHandler() const { return m_previousHandler
; }
3225 virtual void SetNextHandler(wxEvtHandler
*handler
) { m_nextHandler
= handler
; }
3226 virtual void SetPreviousHandler(wxEvtHandler
*handler
) { m_previousHandler
= handler
; }
3228 void SetEvtHandlerEnabled(bool enabled
) { m_enabled
= enabled
; }
3229 bool GetEvtHandlerEnabled() const { return m_enabled
; }
3232 bool IsUnlinked() const;
3235 // Global event filters
3236 // --------------------
3238 // Add an event filter whose FilterEvent() method will be called for each
3239 // and every event processed by wxWidgets. The filters are called in LIFO
3240 // order and wxApp is registered as an event filter by default. The pointer
3241 // must remain valid until it's removed with RemoveFilter() and is not
3242 // deleted by wxEvtHandler.
3243 static void AddFilter(wxEventFilter
* filter
);
3245 // Remove a filter previously installed with AddFilter().
3246 static void RemoveFilter(wxEventFilter
* filter
);
3249 // Event queuing and processing
3250 // ----------------------------
3252 // Process an event right now: this can only be called from the main
3253 // thread, use QueueEvent() for scheduling the events for
3254 // processing from other threads.
3255 virtual bool ProcessEvent(wxEvent
& event
);
3257 // Process an event by calling ProcessEvent and handling any exceptions
3258 // thrown by event handlers. It's mostly useful when processing wx events
3259 // when called from C code (e.g. in GTK+ callback) when the exception
3260 // wouldn't correctly propagate to wxEventLoop.
3261 bool SafelyProcessEvent(wxEvent
& event
);
3262 // NOTE: uses ProcessEvent()
3264 // This method tries to process the event in this event handler, including
3265 // any preprocessing done by TryBefore() and all the handlers chained to
3266 // it, but excluding the post-processing done in TryAfter().
3268 // It is meant to be called from ProcessEvent() only and is not virtual,
3269 // additional event handlers can be hooked into the normal event processing
3270 // logic using TryBefore() and TryAfter() hooks.
3272 // You can also call it yourself to forward an event to another handler but
3273 // without propagating it upwards if it's unhandled (this is usually
3274 // unwanted when forwarding as the original handler would already do it if
3275 // needed normally).
3276 bool ProcessEventLocally(wxEvent
& event
);
3278 // Schedule the given event to be processed later. It takes ownership of
3279 // the event pointer, i.e. it will be deleted later. This is safe to call
3280 // from multiple threads although you still need to ensure that wxString
3281 // fields of the event object are deep copies and not use the same string
3282 // buffer as other wxString objects in this thread.
3283 virtual void QueueEvent(wxEvent
*event
);
3285 // Add an event to be processed later: notice that this function is not
3286 // safe to call from threads other than main, use QueueEvent()
3287 virtual void AddPendingEvent(const wxEvent
& event
)
3289 // notice that the thread-safety problem comes from the fact that
3290 // Clone() doesn't make deep copies of wxString fields of wxEvent
3291 // object and so the same wxString could be used from both threads when
3292 // the event object is destroyed in this one -- QueueEvent() avoids
3293 // this problem as the event pointer is not used any more in this
3294 // thread at all after it is called.
3295 QueueEvent(event
.Clone());
3298 void ProcessPendingEvents();
3299 // NOTE: uses ProcessEvent()
3301 void DeletePendingEvents();
3304 bool ProcessThreadEvent(const wxEvent
& event
);
3305 // NOTE: uses AddPendingEvent(); call only from secondary threads
3308 #ifdef wxHAS_CALL_AFTER
3309 // Asynchronous method calls: these methods schedule the given method
3310 // pointer for a later call (during the next idle event loop iteration).
3312 // Notice that the method is called on this object itself, so the object
3313 // CallAfter() is called on must have the correct dynamic type.
3315 // These method can be used from another thread.
3317 template <typename T
>
3318 void CallAfter(void (T::*method
)())
3321 new wxAsyncMethodCallEvent0
<T
>(static_cast<T
*>(this), method
)
3325 // Notice that we use P1 and not T1 for the parameter to allow passing
3326 // parameters that are convertible to the type taken by the method
3327 // instead of being exactly the same, to be closer to the usual method call
3329 template <typename T
, typename T1
, typename P1
>
3330 void CallAfter(void (T::*method
)(T1 x1
), P1 x1
)
3333 new wxAsyncMethodCallEvent1
<T
, T1
>(
3334 static_cast<T
*>(this), method
, x1
)
3338 template <typename T
, typename T1
, typename T2
, typename P1
, typename P2
>
3339 void CallAfter(void (T::*method
)(T1 x1
, T2 x2
), P1 x1
, P2 x2
)
3342 new wxAsyncMethodCallEvent2
<T
, T1
, T2
>(
3343 static_cast<T
*>(this), method
, x1
, x2
)
3346 #endif // wxHAS_CALL_AFTER
3349 // Connecting and disconnecting
3350 // ----------------------------
3352 // These functions are used for old, untyped, event handlers and don't
3353 // check that the type of the function passed to them actually matches the
3354 // type of the event. They also only allow connecting events to methods of
3355 // wxEvtHandler-derived classes.
3357 // The template Connect() methods below are safer and allow connecting
3358 // events to arbitrary functions or functors -- but require compiler
3359 // support for templates.
3361 // Dynamic association of a member function handler with the event handler,
3362 // winid and event type
3363 void Connect(int winid
,
3365 wxEventType eventType
,
3366 wxObjectEventFunction func
,
3367 wxObject
*userData
= NULL
,
3368 wxEvtHandler
*eventSink
= NULL
)
3370 DoBind(winid
, lastId
, eventType
,
3371 wxNewEventFunctor(eventType
, func
, eventSink
),
3375 // Convenience function: take just one id
3376 void Connect(int winid
,
3377 wxEventType eventType
,
3378 wxObjectEventFunction func
,
3379 wxObject
*userData
= NULL
,
3380 wxEvtHandler
*eventSink
= NULL
)
3381 { Connect(winid
, wxID_ANY
, eventType
, func
, userData
, eventSink
); }
3383 // Even more convenient: without id (same as using id of wxID_ANY)
3384 void Connect(wxEventType eventType
,
3385 wxObjectEventFunction func
,
3386 wxObject
*userData
= NULL
,
3387 wxEvtHandler
*eventSink
= NULL
)
3388 { Connect(wxID_ANY
, wxID_ANY
, eventType
, func
, userData
, eventSink
); }
3390 bool Disconnect(int winid
,
3392 wxEventType eventType
,
3393 wxObjectEventFunction func
= NULL
,
3394 wxObject
*userData
= NULL
,
3395 wxEvtHandler
*eventSink
= NULL
)
3397 return DoUnbind(winid
, lastId
, eventType
,
3398 wxMakeEventFunctor(eventType
, func
, eventSink
),
3402 bool Disconnect(int winid
= wxID_ANY
,
3403 wxEventType eventType
= wxEVT_NULL
,
3404 wxObjectEventFunction func
= NULL
,
3405 wxObject
*userData
= NULL
,
3406 wxEvtHandler
*eventSink
= NULL
)
3407 { return Disconnect(winid
, wxID_ANY
, eventType
, func
, userData
, eventSink
); }
3409 bool Disconnect(wxEventType eventType
,
3410 wxObjectEventFunction func
,
3411 wxObject
*userData
= NULL
,
3412 wxEvtHandler
*eventSink
= NULL
)
3413 { return Disconnect(wxID_ANY
, eventType
, func
, userData
, eventSink
); }
3415 #ifdef wxHAS_EVENT_BIND
3416 // Bind functions to an event:
3417 template <typename EventTag
, typename EventArg
>
3418 void Bind(const EventTag
& eventType
,
3419 void (*function
)(EventArg
&),
3420 int winid
= wxID_ANY
,
3421 int lastId
= wxID_ANY
,
3422 wxObject
*userData
= NULL
)
3424 DoBind(winid
, lastId
, eventType
,
3425 wxNewEventFunctor(eventType
, function
),
3430 template <typename EventTag
, typename EventArg
>
3431 bool Unbind(const EventTag
& eventType
,
3432 void (*function
)(EventArg
&),
3433 int winid
= wxID_ANY
,
3434 int lastId
= wxID_ANY
,
3435 wxObject
*userData
= NULL
)
3437 return DoUnbind(winid
, lastId
, eventType
,
3438 wxMakeEventFunctor(eventType
, function
),
3442 // Bind functors to an event:
3443 template <typename EventTag
, typename Functor
>
3444 void Bind(const EventTag
& eventType
,
3445 const Functor
&functor
,
3446 int winid
= wxID_ANY
,
3447 int lastId
= wxID_ANY
,
3448 wxObject
*userData
= NULL
)
3450 DoBind(winid
, lastId
, eventType
,
3451 wxNewEventFunctor(eventType
, functor
),
3456 template <typename EventTag
, typename Functor
>
3457 bool Unbind(const EventTag
& eventType
,
3458 const Functor
&functor
,
3459 int winid
= wxID_ANY
,
3460 int lastId
= wxID_ANY
,
3461 wxObject
*userData
= NULL
)
3463 return DoUnbind(winid
, lastId
, eventType
,
3464 wxMakeEventFunctor(eventType
, functor
),
3469 // Bind a method of a class (called on the specified handler which must
3470 // be convertible to this class) object to an event:
3472 template <typename EventTag
, typename Class
, typename EventArg
, typename EventHandler
>
3473 void Bind(const EventTag
&eventType
,
3474 void (Class::*method
)(EventArg
&),
3475 EventHandler
*handler
,
3476 int winid
= wxID_ANY
,
3477 int lastId
= wxID_ANY
,
3478 wxObject
*userData
= NULL
)
3480 DoBind(winid
, lastId
, eventType
,
3481 wxNewEventFunctor(eventType
, method
, handler
),
3485 template <typename EventTag
, typename Class
, typename EventArg
, typename EventHandler
>
3486 bool Unbind(const EventTag
&eventType
,
3487 void (Class::*method
)(EventArg
&),
3488 EventHandler
*handler
,
3489 int winid
= wxID_ANY
,
3490 int lastId
= wxID_ANY
,
3491 wxObject
*userData
= NULL
)
3493 return DoUnbind(winid
, lastId
, eventType
,
3494 wxMakeEventFunctor(eventType
, method
, handler
),
3497 #endif // wxHAS_EVENT_BIND
3499 wxList
* GetDynamicEventTable() const { return m_dynamicEvents
; }
3501 // User data can be associated with each wxEvtHandler
3502 void SetClientObject( wxClientData
*data
) { DoSetClientObject(data
); }
3503 wxClientData
*GetClientObject() const { return DoGetClientObject(); }
3505 void SetClientData( void *data
) { DoSetClientData(data
); }
3506 void *GetClientData() const { return DoGetClientData(); }
3509 // implementation from now on
3510 // --------------------------
3512 // check if the given event table entry matches this event by id (the check
3513 // for the event type should be done by caller) and call the handler if it
3516 // return true if the event was processed, false otherwise (no match or the
3517 // handler decided to skip the event)
3518 static bool ProcessEventIfMatchesId(const wxEventTableEntryBase
& tableEntry
,
3519 wxEvtHandler
*handler
,
3522 virtual bool SearchEventTable(wxEventTable
& table
, wxEvent
& event
);
3523 bool SearchDynamicEventTable( wxEvent
& event
);
3525 // Avoid problems at exit by cleaning up static hash table gracefully
3526 void ClearEventHashTable() { GetEventHashTable().Clear(); }
3527 void OnSinkDestroyed( wxEvtHandler
*sink
);
3531 void DoBind(int winid
,
3533 wxEventType eventType
,
3534 wxEventFunctor
*func
,
3535 wxObject
* userData
= NULL
);
3537 bool DoUnbind(int winid
,
3539 wxEventType eventType
,
3540 const wxEventFunctor
& func
,
3541 wxObject
*userData
= NULL
);
3543 static const wxEventTableEntry sm_eventTableEntries
[];
3546 // hooks for wxWindow used by ProcessEvent()
3547 // -----------------------------------------
3549 // this one is called before trying our own event table to allow plugging
3550 // in the event handlers overriding the default logic, this is used by e.g.
3552 virtual bool TryBefore(wxEvent
& event
);
3554 // This one is not a hook but just a helper which looks up the handler in
3555 // this object itself.
3557 // It is called from ProcessEventLocally() and normally shouldn't be called
3558 // directly as doing it would ignore any chained event handlers
3559 bool TryHereOnly(wxEvent
& event
);
3561 // Another helper which simply calls pre-processing hook and then tries to
3562 // handle the event at this handler level.
3563 bool TryBeforeAndHere(wxEvent
& event
)
3565 return TryBefore(event
) || TryHereOnly(event
);
3568 // this one is called after failing to find the event handle in our own
3569 // table to give a chance to the other windows to process it
3571 // base class implementation passes the event to wxTheApp
3572 virtual bool TryAfter(wxEvent
& event
);
3574 #if WXWIN_COMPATIBILITY_2_8
3575 // deprecated method: override TryBefore() instead of this one
3576 wxDEPRECATED_BUT_USED_INTERNALLY_INLINE(
3577 virtual bool TryValidator(wxEvent
& WXUNUSED(event
)), return false; )
3579 wxDEPRECATED_BUT_USED_INTERNALLY_INLINE(
3580 virtual bool TryParent(wxEvent
& event
), return DoTryApp(event
); )
3581 #endif // WXWIN_COMPATIBILITY_2_8
3584 static const wxEventTable sm_eventTable
;
3585 virtual const wxEventTable
*GetEventTable() const;
3587 static wxEventHashTable sm_eventHashTable
;
3588 virtual wxEventHashTable
& GetEventHashTable() const;
3590 wxEvtHandler
* m_nextHandler
;
3591 wxEvtHandler
* m_previousHandler
;
3592 wxList
* m_dynamicEvents
;
3593 wxList
* m_pendingEvents
;
3596 // critical section protecting m_pendingEvents
3597 wxCriticalSection m_pendingEventsLock
;
3598 #endif // wxUSE_THREADS
3600 // Is event handler enabled?
3604 // The user data: either an object which will be deleted by the container
3605 // when it's deleted or some raw pointer which we do nothing with - only
3606 // one type of data can be used with the given window (i.e. you cannot set
3607 // the void data and then associate the container with wxClientData or vice
3611 wxClientData
*m_clientObject
;
3615 // what kind of data do we have?
3616 wxClientDataType m_clientDataType
;
3618 // client data accessors
3619 virtual void DoSetClientObject( wxClientData
*data
);
3620 virtual wxClientData
*DoGetClientObject() const;
3622 virtual void DoSetClientData( void *data
);
3623 virtual void *DoGetClientData() const;
3625 // Search tracker objects for event connection with this sink
3626 wxEventConnectionRef
*FindRefInTrackerList(wxEvtHandler
*handler
);
3629 // pass the event to wxTheApp instance, called from TryAfter()
3630 bool DoTryApp(wxEvent
& event
);
3632 // try to process events in all handlers chained to this one
3633 bool DoTryChain(wxEvent
& event
);
3635 // Head of the event filter linked list.
3636 static wxEventFilter
* ms_filterList
;
3638 DECLARE_DYNAMIC_CLASS_NO_COPY(wxEvtHandler
)
3641 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxEvtHandler
*, wxEvtHandlerArray
, class WXDLLIMPEXP_BASE
);
3644 // Define an inline method of wxObjectEventFunctor which couldn't be defined
3645 // before wxEvtHandler declaration: at least Sun CC refuses to compile function
3646 // calls through pointer to member for forward-declared classes (see #12452).
3647 inline void wxObjectEventFunctor::operator()(wxEvtHandler
*handler
, wxEvent
& event
)
3649 wxEvtHandler
* const realHandler
= m_handler
? m_handler
: handler
;
3651 (realHandler
->*m_method
)(event
);
3654 // ----------------------------------------------------------------------------
3655 // wxEventConnectionRef represents all connections between two event handlers
3656 // and enables automatic disconnect when an event handler sink goes out of
3657 // scope. Each connection/disconnect increases/decreases ref count, and
3658 // when it reaches zero the node goes out of scope.
3659 // ----------------------------------------------------------------------------
3661 class wxEventConnectionRef
: public wxTrackerNode
3664 wxEventConnectionRef() : m_src(NULL
), m_sink(NULL
), m_refCount(0) { }
3665 wxEventConnectionRef(wxEvtHandler
*src
, wxEvtHandler
*sink
)
3666 : m_src(src
), m_sink(sink
), m_refCount(1)
3668 m_sink
->AddNode(this);
3671 // The sink is being destroyed
3672 virtual void OnObjectDestroy( )
3675 m_src
->OnSinkDestroyed( m_sink
);
3679 virtual wxEventConnectionRef
*ToEventConnection() { return this; }
3681 void IncRef() { m_refCount
++; }
3684 if ( !--m_refCount
)
3686 // The sink holds the only external pointer to this object
3688 m_sink
->RemoveNode(this);
3694 wxEvtHandler
*m_src
,
3698 friend class wxEvtHandler
;
3700 wxDECLARE_NO_ASSIGN_CLASS(wxEventConnectionRef
);
3703 // Post a message to the given event handler which will be processed during the
3704 // next event loop iteration.
3706 // Notice that this one is not thread-safe, use wxQueueEvent()
3707 inline void wxPostEvent(wxEvtHandler
*dest
, const wxEvent
& event
)
3709 wxCHECK_RET( dest
, "need an object to post event to" );
3711 dest
->AddPendingEvent(event
);
3714 // Wrapper around wxEvtHandler::QueueEvent(): adds an event for later
3715 // processing, unlike wxPostEvent it is safe to use from different thread even
3716 // for events with wxString members
3717 inline void wxQueueEvent(wxEvtHandler
*dest
, wxEvent
*event
)
3719 wxCHECK_RET( dest
, "need an object to queue event for" );
3721 dest
->QueueEvent(event
);
3724 typedef void (wxEvtHandler::*wxEventFunction
)(wxEvent
&);
3725 typedef void (wxEvtHandler::*wxIdleEventFunction
)(wxIdleEvent
&);
3726 typedef void (wxEvtHandler::*wxThreadEventFunction
)(wxThreadEvent
&);
3728 #define wxEventHandler(func) \
3729 wxEVENT_HANDLER_CAST(wxEventFunction, func)
3730 #define wxIdleEventHandler(func) \
3731 wxEVENT_HANDLER_CAST(wxIdleEventFunction, func)
3732 #define wxThreadEventHandler(func) \
3733 wxEVENT_HANDLER_CAST(wxThreadEventFunction, func)
3737 // ----------------------------------------------------------------------------
3738 // wxEventBlocker: helper class to temporarily disable event handling for a window
3739 // ----------------------------------------------------------------------------
3741 class WXDLLIMPEXP_CORE wxEventBlocker
: public wxEvtHandler
3744 wxEventBlocker(wxWindow
*win
, wxEventType type
= wxEVT_ANY
);
3745 virtual ~wxEventBlocker();
3747 void Block(wxEventType type
)
3749 m_eventsToBlock
.push_back(type
);
3752 virtual bool ProcessEvent(wxEvent
& event
);
3755 wxArrayInt m_eventsToBlock
;
3758 wxDECLARE_NO_COPY_CLASS(wxEventBlocker
);
3761 typedef void (wxEvtHandler::*wxCommandEventFunction
)(wxCommandEvent
&);
3762 typedef void (wxEvtHandler::*wxScrollEventFunction
)(wxScrollEvent
&);
3763 typedef void (wxEvtHandler::*wxScrollWinEventFunction
)(wxScrollWinEvent
&);
3764 typedef void (wxEvtHandler::*wxSizeEventFunction
)(wxSizeEvent
&);
3765 typedef void (wxEvtHandler::*wxMoveEventFunction
)(wxMoveEvent
&);
3766 typedef void (wxEvtHandler::*wxPaintEventFunction
)(wxPaintEvent
&);
3767 typedef void (wxEvtHandler::*wxNcPaintEventFunction
)(wxNcPaintEvent
&);
3768 typedef void (wxEvtHandler::*wxEraseEventFunction
)(wxEraseEvent
&);
3769 typedef void (wxEvtHandler::*wxMouseEventFunction
)(wxMouseEvent
&);
3770 typedef void (wxEvtHandler::*wxCharEventFunction
)(wxKeyEvent
&);
3771 typedef void (wxEvtHandler::*wxFocusEventFunction
)(wxFocusEvent
&);
3772 typedef void (wxEvtHandler::*wxChildFocusEventFunction
)(wxChildFocusEvent
&);
3773 typedef void (wxEvtHandler::*wxActivateEventFunction
)(wxActivateEvent
&);
3774 typedef void (wxEvtHandler::*wxMenuEventFunction
)(wxMenuEvent
&);
3775 typedef void (wxEvtHandler::*wxJoystickEventFunction
)(wxJoystickEvent
&);
3776 typedef void (wxEvtHandler::*wxDropFilesEventFunction
)(wxDropFilesEvent
&);
3777 typedef void (wxEvtHandler::*wxInitDialogEventFunction
)(wxInitDialogEvent
&);
3778 typedef void (wxEvtHandler::*wxSysColourChangedEventFunction
)(wxSysColourChangedEvent
&);
3779 typedef void (wxEvtHandler::*wxDisplayChangedEventFunction
)(wxDisplayChangedEvent
&);
3780 typedef void (wxEvtHandler::*wxUpdateUIEventFunction
)(wxUpdateUIEvent
&);
3781 typedef void (wxEvtHandler::*wxCloseEventFunction
)(wxCloseEvent
&);
3782 typedef void (wxEvtHandler::*wxShowEventFunction
)(wxShowEvent
&);
3783 typedef void (wxEvtHandler::*wxIconizeEventFunction
)(wxIconizeEvent
&);
3784 typedef void (wxEvtHandler::*wxMaximizeEventFunction
)(wxMaximizeEvent
&);
3785 typedef void (wxEvtHandler::*wxNavigationKeyEventFunction
)(wxNavigationKeyEvent
&);
3786 typedef void (wxEvtHandler::*wxPaletteChangedEventFunction
)(wxPaletteChangedEvent
&);
3787 typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction
)(wxQueryNewPaletteEvent
&);
3788 typedef void (wxEvtHandler::*wxWindowCreateEventFunction
)(wxWindowCreateEvent
&);
3789 typedef void (wxEvtHandler::*wxWindowDestroyEventFunction
)(wxWindowDestroyEvent
&);
3790 typedef void (wxEvtHandler::*wxSetCursorEventFunction
)(wxSetCursorEvent
&);
3791 typedef void (wxEvtHandler::*wxNotifyEventFunction
)(wxNotifyEvent
&);
3792 typedef void (wxEvtHandler::*wxHelpEventFunction
)(wxHelpEvent
&);
3793 typedef void (wxEvtHandler::*wxContextMenuEventFunction
)(wxContextMenuEvent
&);
3794 typedef void (wxEvtHandler::*wxMouseCaptureChangedEventFunction
)(wxMouseCaptureChangedEvent
&);
3795 typedef void (wxEvtHandler::*wxMouseCaptureLostEventFunction
)(wxMouseCaptureLostEvent
&);
3796 typedef void (wxEvtHandler::*wxClipboardTextEventFunction
)(wxClipboardTextEvent
&);
3799 #define wxCommandEventHandler(func) \
3800 wxEVENT_HANDLER_CAST(wxCommandEventFunction, func)
3801 #define wxScrollEventHandler(func) \
3802 wxEVENT_HANDLER_CAST(wxScrollEventFunction, func)
3803 #define wxScrollWinEventHandler(func) \
3804 wxEVENT_HANDLER_CAST(wxScrollWinEventFunction, func)
3805 #define wxSizeEventHandler(func) \
3806 wxEVENT_HANDLER_CAST(wxSizeEventFunction, func)
3807 #define wxMoveEventHandler(func) \
3808 wxEVENT_HANDLER_CAST(wxMoveEventFunction, func)
3809 #define wxPaintEventHandler(func) \
3810 wxEVENT_HANDLER_CAST(wxPaintEventFunction, func)
3811 #define wxNcPaintEventHandler(func) \
3812 wxEVENT_HANDLER_CAST(wxNcPaintEventFunction, func)
3813 #define wxEraseEventHandler(func) \
3814 wxEVENT_HANDLER_CAST(wxEraseEventFunction, func)
3815 #define wxMouseEventHandler(func) \
3816 wxEVENT_HANDLER_CAST(wxMouseEventFunction, func)
3817 #define wxCharEventHandler(func) \
3818 wxEVENT_HANDLER_CAST(wxCharEventFunction, func)
3819 #define wxKeyEventHandler(func) wxCharEventHandler(func)
3820 #define wxFocusEventHandler(func) \
3821 wxEVENT_HANDLER_CAST(wxFocusEventFunction, func)
3822 #define wxChildFocusEventHandler(func) \
3823 wxEVENT_HANDLER_CAST(wxChildFocusEventFunction, func)
3824 #define wxActivateEventHandler(func) \
3825 wxEVENT_HANDLER_CAST(wxActivateEventFunction, func)
3826 #define wxMenuEventHandler(func) \
3827 wxEVENT_HANDLER_CAST(wxMenuEventFunction, func)
3828 #define wxJoystickEventHandler(func) \
3829 wxEVENT_HANDLER_CAST(wxJoystickEventFunction, func)
3830 #define wxDropFilesEventHandler(func) \
3831 wxEVENT_HANDLER_CAST(wxDropFilesEventFunction, func)
3832 #define wxInitDialogEventHandler(func) \
3833 wxEVENT_HANDLER_CAST(wxInitDialogEventFunction, func)
3834 #define wxSysColourChangedEventHandler(func) \
3835 wxEVENT_HANDLER_CAST(wxSysColourChangedEventFunction, func)
3836 #define wxDisplayChangedEventHandler(func) \
3837 wxEVENT_HANDLER_CAST(wxDisplayChangedEventFunction, func)
3838 #define wxUpdateUIEventHandler(func) \
3839 wxEVENT_HANDLER_CAST(wxUpdateUIEventFunction, func)
3840 #define wxCloseEventHandler(func) \
3841 wxEVENT_HANDLER_CAST(wxCloseEventFunction, func)
3842 #define wxShowEventHandler(func) \
3843 wxEVENT_HANDLER_CAST(wxShowEventFunction, func)
3844 #define wxIconizeEventHandler(func) \
3845 wxEVENT_HANDLER_CAST(wxIconizeEventFunction, func)
3846 #define wxMaximizeEventHandler(func) \
3847 wxEVENT_HANDLER_CAST(wxMaximizeEventFunction, func)
3848 #define wxNavigationKeyEventHandler(func) \
3849 wxEVENT_HANDLER_CAST(wxNavigationKeyEventFunction, func)
3850 #define wxPaletteChangedEventHandler(func) \
3851 wxEVENT_HANDLER_CAST(wxPaletteChangedEventFunction, func)
3852 #define wxQueryNewPaletteEventHandler(func) \
3853 wxEVENT_HANDLER_CAST(wxQueryNewPaletteEventFunction, func)
3854 #define wxWindowCreateEventHandler(func) \
3855 wxEVENT_HANDLER_CAST(wxWindowCreateEventFunction, func)
3856 #define wxWindowDestroyEventHandler(func) \
3857 wxEVENT_HANDLER_CAST(wxWindowDestroyEventFunction, func)
3858 #define wxSetCursorEventHandler(func) \
3859 wxEVENT_HANDLER_CAST(wxSetCursorEventFunction, func)
3860 #define wxNotifyEventHandler(func) \
3861 wxEVENT_HANDLER_CAST(wxNotifyEventFunction, func)
3862 #define wxHelpEventHandler(func) \
3863 wxEVENT_HANDLER_CAST(wxHelpEventFunction, func)
3864 #define wxContextMenuEventHandler(func) \
3865 wxEVENT_HANDLER_CAST(wxContextMenuEventFunction, func)
3866 #define wxMouseCaptureChangedEventHandler(func) \
3867 wxEVENT_HANDLER_CAST(wxMouseCaptureChangedEventFunction, func)
3868 #define wxMouseCaptureLostEventHandler(func) \
3869 wxEVENT_HANDLER_CAST(wxMouseCaptureLostEventFunction, func)
3870 #define wxClipboardTextEventHandler(func) \
3871 wxEVENT_HANDLER_CAST(wxClipboardTextEventFunction, func)
3875 // N.B. In GNU-WIN32, you *have* to take the address of a member function
3876 // (use &) or the compiler crashes...
3878 #define wxDECLARE_EVENT_TABLE() \
3880 static const wxEventTableEntry sm_eventTableEntries[]; \
3882 static const wxEventTable sm_eventTable; \
3883 virtual const wxEventTable* GetEventTable() const; \
3884 static wxEventHashTable sm_eventHashTable; \
3885 virtual wxEventHashTable& GetEventHashTable() const
3887 // N.B.: when building DLL with Borland C++ 5.5 compiler, you must initialize
3888 // sm_eventTable before using it in GetEventTable() or the compiler gives
3889 // E2233 (see http://groups.google.com/groups?selm=397dcc8a%241_2%40dnews)
3891 #define wxBEGIN_EVENT_TABLE(theClass, baseClass) \
3892 const wxEventTable theClass::sm_eventTable = \
3893 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] }; \
3894 const wxEventTable *theClass::GetEventTable() const \
3895 { return &theClass::sm_eventTable; } \
3896 wxEventHashTable theClass::sm_eventHashTable(theClass::sm_eventTable); \
3897 wxEventHashTable &theClass::GetEventHashTable() const \
3898 { return theClass::sm_eventHashTable; } \
3899 const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
3901 #define wxBEGIN_EVENT_TABLE_TEMPLATE1(theClass, baseClass, T1) \
3902 template<typename T1> \
3903 const wxEventTable theClass<T1>::sm_eventTable = \
3904 { &baseClass::sm_eventTable, &theClass<T1>::sm_eventTableEntries[0] }; \
3905 template<typename T1> \
3906 const wxEventTable *theClass<T1>::GetEventTable() const \
3907 { return &theClass<T1>::sm_eventTable; } \
3908 template<typename T1> \
3909 wxEventHashTable theClass<T1>::sm_eventHashTable(theClass<T1>::sm_eventTable); \
3910 template<typename T1> \
3911 wxEventHashTable &theClass<T1>::GetEventHashTable() const \
3912 { return theClass<T1>::sm_eventHashTable; } \
3913 template<typename T1> \
3914 const wxEventTableEntry theClass<T1>::sm_eventTableEntries[] = { \
3916 #define wxBEGIN_EVENT_TABLE_TEMPLATE2(theClass, baseClass, T1, T2) \
3917 template<typename T1, typename T2> \
3918 const wxEventTable theClass<T1, T2>::sm_eventTable = \
3919 { &baseClass::sm_eventTable, &theClass<T1, T2>::sm_eventTableEntries[0] }; \
3920 template<typename T1, typename T2> \
3921 const wxEventTable *theClass<T1, T2>::GetEventTable() const \
3922 { return &theClass<T1, T2>::sm_eventTable; } \
3923 template<typename T1, typename T2> \
3924 wxEventHashTable theClass<T1, T2>::sm_eventHashTable(theClass<T1, T2>::sm_eventTable); \
3925 template<typename T1, typename T2> \
3926 wxEventHashTable &theClass<T1, T2>::GetEventHashTable() const \
3927 { return theClass<T1, T2>::sm_eventHashTable; } \
3928 template<typename T1, typename T2> \
3929 const wxEventTableEntry theClass<T1, T2>::sm_eventTableEntries[] = { \
3931 #define wxBEGIN_EVENT_TABLE_TEMPLATE3(theClass, baseClass, T1, T2, T3) \
3932 template<typename T1, typename T2, typename T3> \
3933 const wxEventTable theClass<T1, T2, T3>::sm_eventTable = \
3934 { &baseClass::sm_eventTable, &theClass<T1, T2, T3>::sm_eventTableEntries[0] }; \
3935 template<typename T1, typename T2, typename T3> \
3936 const wxEventTable *theClass<T1, T2, T3>::GetEventTable() const \
3937 { return &theClass<T1, T2, T3>::sm_eventTable; } \
3938 template<typename T1, typename T2, typename T3> \
3939 wxEventHashTable theClass<T1, T2, T3>::sm_eventHashTable(theClass<T1, T2, T3>::sm_eventTable); \
3940 template<typename T1, typename T2, typename T3> \
3941 wxEventHashTable &theClass<T1, T2, T3>::GetEventHashTable() const \
3942 { return theClass<T1, T2, T3>::sm_eventHashTable; } \
3943 template<typename T1, typename T2, typename T3> \
3944 const wxEventTableEntry theClass<T1, T2, T3>::sm_eventTableEntries[] = { \
3946 #define wxBEGIN_EVENT_TABLE_TEMPLATE4(theClass, baseClass, T1, T2, T3, T4) \
3947 template<typename T1, typename T2, typename T3, typename T4> \
3948 const wxEventTable theClass<T1, T2, T3, T4>::sm_eventTable = \
3949 { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4>::sm_eventTableEntries[0] }; \
3950 template<typename T1, typename T2, typename T3, typename T4> \
3951 const wxEventTable *theClass<T1, T2, T3, T4>::GetEventTable() const \
3952 { return &theClass<T1, T2, T3, T4>::sm_eventTable; } \
3953 template<typename T1, typename T2, typename T3, typename T4> \
3954 wxEventHashTable theClass<T1, T2, T3, T4>::sm_eventHashTable(theClass<T1, T2, T3, T4>::sm_eventTable); \
3955 template<typename T1, typename T2, typename T3, typename T4> \
3956 wxEventHashTable &theClass<T1, T2, T3, T4>::GetEventHashTable() const \
3957 { return theClass<T1, T2, T3, T4>::sm_eventHashTable; } \
3958 template<typename T1, typename T2, typename T3, typename T4> \
3959 const wxEventTableEntry theClass<T1, T2, T3, T4>::sm_eventTableEntries[] = { \
3961 #define wxBEGIN_EVENT_TABLE_TEMPLATE5(theClass, baseClass, T1, T2, T3, T4, T5) \
3962 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
3963 const wxEventTable theClass<T1, T2, T3, T4, T5>::sm_eventTable = \
3964 { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5>::sm_eventTableEntries[0] }; \
3965 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
3966 const wxEventTable *theClass<T1, T2, T3, T4, T5>::GetEventTable() const \
3967 { return &theClass<T1, T2, T3, T4, T5>::sm_eventTable; } \
3968 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
3969 wxEventHashTable theClass<T1, T2, T3, T4, T5>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5>::sm_eventTable); \
3970 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
3971 wxEventHashTable &theClass<T1, T2, T3, T4, T5>::GetEventHashTable() const \
3972 { return theClass<T1, T2, T3, T4, T5>::sm_eventHashTable; } \
3973 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
3974 const wxEventTableEntry theClass<T1, T2, T3, T4, T5>::sm_eventTableEntries[] = { \
3976 #define wxBEGIN_EVENT_TABLE_TEMPLATE7(theClass, baseClass, T1, T2, T3, T4, T5, T6, T7) \
3977 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
3978 const wxEventTable theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable = \
3979 { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTableEntries[0] }; \
3980 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
3981 const wxEventTable *theClass<T1, T2, T3, T4, T5, T6, T7>::GetEventTable() const \
3982 { return &theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable; } \
3983 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
3984 wxEventHashTable theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable); \
3985 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
3986 wxEventHashTable &theClass<T1, T2, T3, T4, T5, T6, T7>::GetEventHashTable() const \
3987 { return theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventHashTable; } \
3988 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
3989 const wxEventTableEntry theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTableEntries[] = { \
3991 #define wxBEGIN_EVENT_TABLE_TEMPLATE8(theClass, baseClass, T1, T2, T3, T4, T5, T6, T7, T8) \
3992 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
3993 const wxEventTable theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable = \
3994 { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTableEntries[0] }; \
3995 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
3996 const wxEventTable *theClass<T1, T2, T3, T4, T5, T6, T7, T8>::GetEventTable() const \
3997 { return &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable; } \
3998 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
3999 wxEventHashTable theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable); \
4000 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
4001 wxEventHashTable &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::GetEventHashTable() const \
4002 { return theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventHashTable; } \
4003 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
4004 const wxEventTableEntry theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTableEntries[] = { \
4006 #define wxEND_EVENT_TABLE() \
4007 wxDECLARE_EVENT_TABLE_TERMINATOR() };
4010 * Event table macros
4013 // helpers for writing shorter code below: declare an event macro taking 2, 1
4014 // or none ids (the missing ids default to wxID_ANY)
4017 // - evt one of wxEVT_XXX constants
4018 // - id1, id2 ids of the first/last id
4019 // - fn the function (should be cast to the right type)
4020 #define wx__DECLARE_EVT2(evt, id1, id2, fn) \
4021 wxDECLARE_EVENT_TABLE_ENTRY(evt, id1, id2, fn, NULL),
4022 #define wx__DECLARE_EVT1(evt, id, fn) \
4023 wx__DECLARE_EVT2(evt, id, wxID_ANY, fn)
4024 #define wx__DECLARE_EVT0(evt, fn) \
4025 wx__DECLARE_EVT1(evt, wxID_ANY, fn)
4029 #define EVT_CUSTOM(event, winid, func) \
4030 wx__DECLARE_EVT1(event, winid, wxEventHandler(func))
4031 #define EVT_CUSTOM_RANGE(event, id1, id2, func) \
4032 wx__DECLARE_EVT2(event, id1, id2, wxEventHandler(func))
4035 #define EVT_COMMAND(winid, event, func) \
4036 wx__DECLARE_EVT1(event, winid, wxCommandEventHandler(func))
4038 #define EVT_COMMAND_RANGE(id1, id2, event, func) \
4039 wx__DECLARE_EVT2(event, id1, id2, wxCommandEventHandler(func))
4041 #define EVT_NOTIFY(event, winid, func) \
4042 wx__DECLARE_EVT1(event, winid, wxNotifyEventHandler(func))
4044 #define EVT_NOTIFY_RANGE(event, id1, id2, func) \
4045 wx__DECLARE_EVT2(event, id1, id2, wxNotifyEventHandler(func))
4048 #define EVT_SIZE(func) wx__DECLARE_EVT0(wxEVT_SIZE, wxSizeEventHandler(func))
4049 #define EVT_SIZING(func) wx__DECLARE_EVT0(wxEVT_SIZING, wxSizeEventHandler(func))
4050 #define EVT_MOVE(func) wx__DECLARE_EVT0(wxEVT_MOVE, wxMoveEventHandler(func))
4051 #define EVT_MOVING(func) wx__DECLARE_EVT0(wxEVT_MOVING, wxMoveEventHandler(func))
4052 #define EVT_MOVE_START(func) wx__DECLARE_EVT0(wxEVT_MOVE_START, wxMoveEventHandler(func))
4053 #define EVT_MOVE_END(func) wx__DECLARE_EVT0(wxEVT_MOVE_END, wxMoveEventHandler(func))
4054 #define EVT_CLOSE(func) wx__DECLARE_EVT0(wxEVT_CLOSE_WINDOW, wxCloseEventHandler(func))
4055 #define EVT_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_END_SESSION, wxCloseEventHandler(func))
4056 #define EVT_QUERY_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_QUERY_END_SESSION, wxCloseEventHandler(func))
4057 #define EVT_PAINT(func) wx__DECLARE_EVT0(wxEVT_PAINT, wxPaintEventHandler(func))
4058 #define EVT_NC_PAINT(func) wx__DECLARE_EVT0(wxEVT_NC_PAINT, wxNcPaintEventHandler(func))
4059 #define EVT_ERASE_BACKGROUND(func) wx__DECLARE_EVT0(wxEVT_ERASE_BACKGROUND, wxEraseEventHandler(func))
4060 #define EVT_CHAR(func) wx__DECLARE_EVT0(wxEVT_CHAR, wxCharEventHandler(func))
4061 #define EVT_KEY_DOWN(func) wx__DECLARE_EVT0(wxEVT_KEY_DOWN, wxKeyEventHandler(func))
4062 #define EVT_KEY_UP(func) wx__DECLARE_EVT0(wxEVT_KEY_UP, wxKeyEventHandler(func))
4064 #define EVT_HOTKEY(winid, func) wx__DECLARE_EVT1(wxEVT_HOTKEY, winid, wxCharEventHandler(func))
4066 #define EVT_CHAR_HOOK(func) wx__DECLARE_EVT0(wxEVT_CHAR_HOOK, wxCharEventHandler(func))
4067 #define EVT_MENU_OPEN(func) wx__DECLARE_EVT0(wxEVT_MENU_OPEN, wxMenuEventHandler(func))
4068 #define EVT_MENU_CLOSE(func) wx__DECLARE_EVT0(wxEVT_MENU_CLOSE, wxMenuEventHandler(func))
4069 #define EVT_MENU_HIGHLIGHT(winid, func) wx__DECLARE_EVT1(wxEVT_MENU_HIGHLIGHT, winid, wxMenuEventHandler(func))
4070 #define EVT_MENU_HIGHLIGHT_ALL(func) wx__DECLARE_EVT0(wxEVT_MENU_HIGHLIGHT, wxMenuEventHandler(func))
4071 #define EVT_SET_FOCUS(func) wx__DECLARE_EVT0(wxEVT_SET_FOCUS, wxFocusEventHandler(func))
4072 #define EVT_KILL_FOCUS(func) wx__DECLARE_EVT0(wxEVT_KILL_FOCUS, wxFocusEventHandler(func))
4073 #define EVT_CHILD_FOCUS(func) wx__DECLARE_EVT0(wxEVT_CHILD_FOCUS, wxChildFocusEventHandler(func))
4074 #define EVT_ACTIVATE(func) wx__DECLARE_EVT0(wxEVT_ACTIVATE, wxActivateEventHandler(func))
4075 #define EVT_ACTIVATE_APP(func) wx__DECLARE_EVT0(wxEVT_ACTIVATE_APP, wxActivateEventHandler(func))
4076 #define EVT_HIBERNATE(func) wx__DECLARE_EVT0(wxEVT_HIBERNATE, wxActivateEventHandler(func))
4077 #define EVT_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_END_SESSION, wxCloseEventHandler(func))
4078 #define EVT_QUERY_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_QUERY_END_SESSION, wxCloseEventHandler(func))
4079 #define EVT_DROP_FILES(func) wx__DECLARE_EVT0(wxEVT_DROP_FILES, wxDropFilesEventHandler(func))
4080 #define EVT_INIT_DIALOG(func) wx__DECLARE_EVT0(wxEVT_INIT_DIALOG, wxInitDialogEventHandler(func))
4081 #define EVT_SYS_COLOUR_CHANGED(func) wx__DECLARE_EVT0(wxEVT_SYS_COLOUR_CHANGED, wxSysColourChangedEventHandler(func))
4082 #define EVT_DISPLAY_CHANGED(func) wx__DECLARE_EVT0(wxEVT_DISPLAY_CHANGED, wxDisplayChangedEventHandler(func))
4083 #define EVT_SHOW(func) wx__DECLARE_EVT0(wxEVT_SHOW, wxShowEventHandler(func))
4084 #define EVT_MAXIMIZE(func) wx__DECLARE_EVT0(wxEVT_MAXIMIZE, wxMaximizeEventHandler(func))
4085 #define EVT_ICONIZE(func) wx__DECLARE_EVT0(wxEVT_ICONIZE, wxIconizeEventHandler(func))
4086 #define EVT_NAVIGATION_KEY(func) wx__DECLARE_EVT0(wxEVT_NAVIGATION_KEY, wxNavigationKeyEventHandler(func))
4087 #define EVT_PALETTE_CHANGED(func) wx__DECLARE_EVT0(wxEVT_PALETTE_CHANGED, wxPaletteChangedEventHandler(func))
4088 #define EVT_QUERY_NEW_PALETTE(func) wx__DECLARE_EVT0(wxEVT_QUERY_NEW_PALETTE, wxQueryNewPaletteEventHandler(func))
4089 #define EVT_WINDOW_CREATE(func) wx__DECLARE_EVT0(wxEVT_CREATE, wxWindowCreateEventHandler(func))
4090 #define EVT_WINDOW_DESTROY(func) wx__DECLARE_EVT0(wxEVT_DESTROY, wxWindowDestroyEventHandler(func))
4091 #define EVT_SET_CURSOR(func) wx__DECLARE_EVT0(wxEVT_SET_CURSOR, wxSetCursorEventHandler(func))
4092 #define EVT_MOUSE_CAPTURE_CHANGED(func) wx__DECLARE_EVT0(wxEVT_MOUSE_CAPTURE_CHANGED, wxMouseCaptureChangedEventHandler(func))
4093 #define EVT_MOUSE_CAPTURE_LOST(func) wx__DECLARE_EVT0(wxEVT_MOUSE_CAPTURE_LOST, wxMouseCaptureLostEventHandler(func))
4096 #define EVT_LEFT_DOWN(func) wx__DECLARE_EVT0(wxEVT_LEFT_DOWN, wxMouseEventHandler(func))
4097 #define EVT_LEFT_UP(func) wx__DECLARE_EVT0(wxEVT_LEFT_UP, wxMouseEventHandler(func))
4098 #define EVT_MIDDLE_DOWN(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_DOWN, wxMouseEventHandler(func))
4099 #define EVT_MIDDLE_UP(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_UP, wxMouseEventHandler(func))
4100 #define EVT_RIGHT_DOWN(func) wx__DECLARE_EVT0(wxEVT_RIGHT_DOWN, wxMouseEventHandler(func))
4101 #define EVT_RIGHT_UP(func) wx__DECLARE_EVT0(wxEVT_RIGHT_UP, wxMouseEventHandler(func))
4102 #define EVT_MOTION(func) wx__DECLARE_EVT0(wxEVT_MOTION, wxMouseEventHandler(func))
4103 #define EVT_LEFT_DCLICK(func) wx__DECLARE_EVT0(wxEVT_LEFT_DCLICK, wxMouseEventHandler(func))
4104 #define EVT_MIDDLE_DCLICK(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_DCLICK, wxMouseEventHandler(func))
4105 #define EVT_RIGHT_DCLICK(func) wx__DECLARE_EVT0(wxEVT_RIGHT_DCLICK, wxMouseEventHandler(func))
4106 #define EVT_LEAVE_WINDOW(func) wx__DECLARE_EVT0(wxEVT_LEAVE_WINDOW, wxMouseEventHandler(func))
4107 #define EVT_ENTER_WINDOW(func) wx__DECLARE_EVT0(wxEVT_ENTER_WINDOW, wxMouseEventHandler(func))
4108 #define EVT_MOUSEWHEEL(func) wx__DECLARE_EVT0(wxEVT_MOUSEWHEEL, wxMouseEventHandler(func))
4109 #define EVT_MOUSE_AUX1_DOWN(func) wx__DECLARE_EVT0(wxEVT_AUX1_DOWN, wxMouseEventHandler(func))
4110 #define EVT_MOUSE_AUX1_UP(func) wx__DECLARE_EVT0(wxEVT_AUX1_UP, wxMouseEventHandler(func))
4111 #define EVT_MOUSE_AUX1_DCLICK(func) wx__DECLARE_EVT0(wxEVT_AUX1_DCLICK, wxMouseEventHandler(func))
4112 #define EVT_MOUSE_AUX2_DOWN(func) wx__DECLARE_EVT0(wxEVT_AUX2_DOWN, wxMouseEventHandler(func))
4113 #define EVT_MOUSE_AUX2_UP(func) wx__DECLARE_EVT0(wxEVT_AUX2_UP, wxMouseEventHandler(func))
4114 #define EVT_MOUSE_AUX2_DCLICK(func) wx__DECLARE_EVT0(wxEVT_AUX2_DCLICK, wxMouseEventHandler(func))
4117 #define EVT_MOUSE_EVENTS(func) \
4118 EVT_LEFT_DOWN(func) \
4120 EVT_LEFT_DCLICK(func) \
4121 EVT_MIDDLE_DOWN(func) \
4122 EVT_MIDDLE_UP(func) \
4123 EVT_MIDDLE_DCLICK(func) \
4124 EVT_RIGHT_DOWN(func) \
4125 EVT_RIGHT_UP(func) \
4126 EVT_RIGHT_DCLICK(func) \
4127 EVT_MOUSE_AUX1_DOWN(func) \
4128 EVT_MOUSE_AUX1_UP(func) \
4129 EVT_MOUSE_AUX1_DCLICK(func) \
4130 EVT_MOUSE_AUX2_DOWN(func) \
4131 EVT_MOUSE_AUX2_UP(func) \
4132 EVT_MOUSE_AUX2_DCLICK(func) \
4134 EVT_LEAVE_WINDOW(func) \
4135 EVT_ENTER_WINDOW(func) \
4136 EVT_MOUSEWHEEL(func)
4138 // Scrolling from wxWindow (sent to wxScrolledWindow)
4139 #define EVT_SCROLLWIN_TOP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_TOP, wxScrollWinEventHandler(func))
4140 #define EVT_SCROLLWIN_BOTTOM(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEventHandler(func))
4141 #define EVT_SCROLLWIN_LINEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_LINEUP, wxScrollWinEventHandler(func))
4142 #define EVT_SCROLLWIN_LINEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEventHandler(func))
4143 #define EVT_SCROLLWIN_PAGEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEventHandler(func))
4144 #define EVT_SCROLLWIN_PAGEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEventHandler(func))
4145 #define EVT_SCROLLWIN_THUMBTRACK(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEventHandler(func))
4146 #define EVT_SCROLLWIN_THUMBRELEASE(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEventHandler(func))
4148 #define EVT_SCROLLWIN(func) \
4149 EVT_SCROLLWIN_TOP(func) \
4150 EVT_SCROLLWIN_BOTTOM(func) \
4151 EVT_SCROLLWIN_LINEUP(func) \
4152 EVT_SCROLLWIN_LINEDOWN(func) \
4153 EVT_SCROLLWIN_PAGEUP(func) \
4154 EVT_SCROLLWIN_PAGEDOWN(func) \
4155 EVT_SCROLLWIN_THUMBTRACK(func) \
4156 EVT_SCROLLWIN_THUMBRELEASE(func)
4158 // Scrolling from wxSlider and wxScrollBar
4159 #define EVT_SCROLL_TOP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_TOP, wxScrollEventHandler(func))
4160 #define EVT_SCROLL_BOTTOM(func) wx__DECLARE_EVT0(wxEVT_SCROLL_BOTTOM, wxScrollEventHandler(func))
4161 #define EVT_SCROLL_LINEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_LINEUP, wxScrollEventHandler(func))
4162 #define EVT_SCROLL_LINEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLL_LINEDOWN, wxScrollEventHandler(func))
4163 #define EVT_SCROLL_PAGEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_PAGEUP, wxScrollEventHandler(func))
4164 #define EVT_SCROLL_PAGEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLL_PAGEDOWN, wxScrollEventHandler(func))
4165 #define EVT_SCROLL_THUMBTRACK(func) wx__DECLARE_EVT0(wxEVT_SCROLL_THUMBTRACK, wxScrollEventHandler(func))
4166 #define EVT_SCROLL_THUMBRELEASE(func) wx__DECLARE_EVT0(wxEVT_SCROLL_THUMBRELEASE, wxScrollEventHandler(func))
4167 #define EVT_SCROLL_CHANGED(func) wx__DECLARE_EVT0(wxEVT_SCROLL_CHANGED, wxScrollEventHandler(func))
4169 #define EVT_SCROLL(func) \
4170 EVT_SCROLL_TOP(func) \
4171 EVT_SCROLL_BOTTOM(func) \
4172 EVT_SCROLL_LINEUP(func) \
4173 EVT_SCROLL_LINEDOWN(func) \
4174 EVT_SCROLL_PAGEUP(func) \
4175 EVT_SCROLL_PAGEDOWN(func) \
4176 EVT_SCROLL_THUMBTRACK(func) \
4177 EVT_SCROLL_THUMBRELEASE(func) \
4178 EVT_SCROLL_CHANGED(func)
4180 // Scrolling from wxSlider and wxScrollBar, with an id
4181 #define EVT_COMMAND_SCROLL_TOP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_TOP, winid, wxScrollEventHandler(func))
4182 #define EVT_COMMAND_SCROLL_BOTTOM(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_BOTTOM, winid, wxScrollEventHandler(func))
4183 #define EVT_COMMAND_SCROLL_LINEUP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_LINEUP, winid, wxScrollEventHandler(func))
4184 #define EVT_COMMAND_SCROLL_LINEDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_LINEDOWN, winid, wxScrollEventHandler(func))
4185 #define EVT_COMMAND_SCROLL_PAGEUP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_PAGEUP, winid, wxScrollEventHandler(func))
4186 #define EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_PAGEDOWN, winid, wxScrollEventHandler(func))
4187 #define EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_THUMBTRACK, winid, wxScrollEventHandler(func))
4188 #define EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_THUMBRELEASE, winid, wxScrollEventHandler(func))
4189 #define EVT_COMMAND_SCROLL_CHANGED(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_CHANGED, winid, wxScrollEventHandler(func))
4191 #define EVT_COMMAND_SCROLL(winid, func) \
4192 EVT_COMMAND_SCROLL_TOP(winid, func) \
4193 EVT_COMMAND_SCROLL_BOTTOM(winid, func) \
4194 EVT_COMMAND_SCROLL_LINEUP(winid, func) \
4195 EVT_COMMAND_SCROLL_LINEDOWN(winid, func) \
4196 EVT_COMMAND_SCROLL_PAGEUP(winid, func) \
4197 EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) \
4198 EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) \
4199 EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) \
4200 EVT_COMMAND_SCROLL_CHANGED(winid, func)
4202 #if WXWIN_COMPATIBILITY_2_6
4203 // compatibility macros for the old name, deprecated in 2.8
4204 #define wxEVT_SCROLL_ENDSCROLL wxEVT_SCROLL_CHANGED
4205 #define EVT_COMMAND_SCROLL_ENDSCROLL EVT_COMMAND_SCROLL_CHANGED
4206 #define EVT_SCROLL_ENDSCROLL EVT_SCROLL_CHANGED
4207 #endif // WXWIN_COMPATIBILITY_2_6
4209 // Convenience macros for commonly-used commands
4210 #define EVT_CHECKBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_CHECKBOX_CLICKED, winid, wxCommandEventHandler(func))
4211 #define EVT_CHOICE(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_CHOICE_SELECTED, winid, wxCommandEventHandler(func))
4212 #define EVT_LISTBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOX_SELECTED, winid, wxCommandEventHandler(func))
4213 #define EVT_LISTBOX_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, winid, wxCommandEventHandler(func))
4214 #define EVT_MENU(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_MENU_SELECTED, winid, wxCommandEventHandler(func))
4215 #define EVT_MENU_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_COMMAND_MENU_SELECTED, id1, id2, wxCommandEventHandler(func))
4216 #if defined(__SMARTPHONE__)
4217 # define EVT_BUTTON(winid, func) EVT_MENU(winid, func)
4219 # define EVT_BUTTON(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_BUTTON_CLICKED, winid, wxCommandEventHandler(func))
4221 #define EVT_SLIDER(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_SLIDER_UPDATED, winid, wxCommandEventHandler(func))
4222 #define EVT_RADIOBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RADIOBOX_SELECTED, winid, wxCommandEventHandler(func))
4223 #define EVT_RADIOBUTTON(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RADIOBUTTON_SELECTED, winid, wxCommandEventHandler(func))
4224 // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
4225 #define EVT_SCROLLBAR(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_SCROLLBAR_UPDATED, winid, wxCommandEventHandler(func))
4226 #define EVT_VLBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_VLBOX_SELECTED, winid, wxCommandEventHandler(func))
4227 #define EVT_COMBOBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_COMBOBOX_SELECTED, winid, wxCommandEventHandler(func))
4228 #define EVT_TOOL(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TOOL_CLICKED, winid, wxCommandEventHandler(func))
4229 #define EVT_TOOL_DROPDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED, winid, wxCommandEventHandler(func))
4230 #define EVT_TOOL_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_COMMAND_TOOL_CLICKED, id1, id2, wxCommandEventHandler(func))
4231 #define EVT_TOOL_RCLICKED(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TOOL_RCLICKED, winid, wxCommandEventHandler(func))
4232 #define EVT_TOOL_RCLICKED_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, wxCommandEventHandler(func))
4233 #define EVT_TOOL_ENTER(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TOOL_ENTER, winid, wxCommandEventHandler(func))
4234 #define EVT_CHECKLISTBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, winid, wxCommandEventHandler(func))
4235 #define EVT_COMBOBOX_DROPDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_COMBOBOX_DROPDOWN, winid, wxCommandEventHandler(func))
4236 #define EVT_COMBOBOX_CLOSEUP(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_COMBOBOX_CLOSEUP, winid, wxCommandEventHandler(func))
4238 // Generic command events
4239 #define EVT_COMMAND_LEFT_CLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LEFT_CLICK, winid, wxCommandEventHandler(func))
4240 #define EVT_COMMAND_LEFT_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LEFT_DCLICK, winid, wxCommandEventHandler(func))
4241 #define EVT_COMMAND_RIGHT_CLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RIGHT_CLICK, winid, wxCommandEventHandler(func))
4242 #define EVT_COMMAND_RIGHT_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RIGHT_DCLICK, winid, wxCommandEventHandler(func))
4243 #define EVT_COMMAND_SET_FOCUS(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_SET_FOCUS, winid, wxCommandEventHandler(func))
4244 #define EVT_COMMAND_KILL_FOCUS(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_KILL_FOCUS, winid, wxCommandEventHandler(func))
4245 #define EVT_COMMAND_ENTER(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_ENTER, winid, wxCommandEventHandler(func))
4249 #define EVT_JOY_BUTTON_DOWN(func) wx__DECLARE_EVT0(wxEVT_JOY_BUTTON_DOWN, wxJoystickEventHandler(func))
4250 #define EVT_JOY_BUTTON_UP(func) wx__DECLARE_EVT0(wxEVT_JOY_BUTTON_UP, wxJoystickEventHandler(func))
4251 #define EVT_JOY_MOVE(func) wx__DECLARE_EVT0(wxEVT_JOY_MOVE, wxJoystickEventHandler(func))
4252 #define EVT_JOY_ZMOVE(func) wx__DECLARE_EVT0(wxEVT_JOY_ZMOVE, wxJoystickEventHandler(func))
4254 // All joystick events
4255 #define EVT_JOYSTICK_EVENTS(func) \
4256 EVT_JOY_BUTTON_DOWN(func) \
4257 EVT_JOY_BUTTON_UP(func) \
4258 EVT_JOY_MOVE(func) \
4262 #define EVT_IDLE(func) wx__DECLARE_EVT0(wxEVT_IDLE, wxIdleEventHandler(func))
4265 #define EVT_UPDATE_UI(winid, func) wx__DECLARE_EVT1(wxEVT_UPDATE_UI, winid, wxUpdateUIEventHandler(func))
4266 #define EVT_UPDATE_UI_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_UPDATE_UI, id1, id2, wxUpdateUIEventHandler(func))
4269 #define EVT_HELP(winid, func) wx__DECLARE_EVT1(wxEVT_HELP, winid, wxHelpEventHandler(func))
4270 #define EVT_HELP_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_HELP, id1, id2, wxHelpEventHandler(func))
4271 #define EVT_DETAILED_HELP(winid, func) wx__DECLARE_EVT1(wxEVT_DETAILED_HELP, winid, wxHelpEventHandler(func))
4272 #define EVT_DETAILED_HELP_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_DETAILED_HELP, id1, id2, wxHelpEventHandler(func))
4274 // Context Menu Events
4275 #define EVT_CONTEXT_MENU(func) wx__DECLARE_EVT0(wxEVT_CONTEXT_MENU, wxContextMenuEventHandler(func))
4276 #define EVT_COMMAND_CONTEXT_MENU(winid, func) wx__DECLARE_EVT1(wxEVT_CONTEXT_MENU, winid, wxContextMenuEventHandler(func))
4278 // Clipboard text Events
4279 #define EVT_TEXT_CUT(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TEXT_CUT, winid, wxClipboardTextEventHandler(func))
4280 #define EVT_TEXT_COPY(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TEXT_COPY, winid, wxClipboardTextEventHandler(func))
4281 #define EVT_TEXT_PASTE(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TEXT_PASTE, winid, wxClipboardTextEventHandler(func))
4284 #define EVT_THREAD(id, func) wx__DECLARE_EVT1(wxEVT_THREAD, id, wxThreadEventHandler(func))
4285 // alias for backward compatibility with 2.9.0:
4286 #define wxEVT_COMMAND_THREAD wxEVT_THREAD
4288 // ----------------------------------------------------------------------------
4290 // ----------------------------------------------------------------------------
4292 // This is an ugly hack to allow the use of Bind() instead of Connect() inside
4293 // the library code if the library was built with support for it, here is how
4296 // class SomeEventHandlingClass : wxBIND_OR_CONNECT_HACK_BASE_CLASS
4297 // public SomeBaseClass
4300 // SomeEventHandlingClass(wxWindow *win)
4302 // // connect to the event for the given window
4303 // wxBIND_OR_CONNECT_HACK(win, wxEVT_SOMETHING, wxSomeEventHandler,
4304 // SomeEventHandlingClass::OnSomeEvent, this);
4308 // void OnSomeEvent(wxSomeEvent&) { ... }
4311 // This is *not* meant to be used by library users, it is only defined here
4312 // (and not in a private header) because the base class must be visible from
4313 // other public headers, please do NOT use this in your code, it will be
4314 // removed from future wx versions without warning.
4315 #ifdef wxHAS_EVENT_BIND
4316 #define wxBIND_OR_CONNECT_HACK_BASE_CLASS
4317 #define wxBIND_OR_CONNECT_HACK_ONLY_BASE_CLASS
4318 #define wxBIND_OR_CONNECT_HACK(win, evt, handler, func, obj) \
4319 win->Bind(evt, &func, obj)
4320 #else // wxHAS_EVENT_BIND
4321 #define wxBIND_OR_CONNECT_HACK_BASE_CLASS public wxEvtHandler,
4322 #define wxBIND_OR_CONNECT_HACK_ONLY_BASE_CLASS : public wxEvtHandler
4323 #define wxBIND_OR_CONNECT_HACK(win, evt, handler, func, obj) \
4324 win->Connect(evt, handler(func), NULL, obj)
4325 #endif // wxHAS_EVENT_BIND
4329 // Find a window with the focus, that is also a descendant of the given window.
4330 // This is used to determine the window to initially send commands to.
4331 WXDLLIMPEXP_CORE wxWindow
* wxFindFocusDescendant(wxWindow
* ancestor
);
4336 // ----------------------------------------------------------------------------
4337 // Compatibility macro aliases
4338 // ----------------------------------------------------------------------------
4340 // deprecated variants _not_ requiring a semicolon after them and without wx prefix
4341 // (note that also some wx-prefixed macro do _not_ require a semicolon because
4342 // it's not always possible to force the compire to require it)
4344 #define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \
4345 wxDECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj)
4346 #define DECLARE_EVENT_TABLE_TERMINATOR() wxDECLARE_EVENT_TABLE_TERMINATOR()
4347 #define DECLARE_EVENT_TABLE() wxDECLARE_EVENT_TABLE();
4348 #define BEGIN_EVENT_TABLE(a,b) wxBEGIN_EVENT_TABLE(a,b)
4349 #define BEGIN_EVENT_TABLE_TEMPLATE1(a,b,c) wxBEGIN_EVENT_TABLE_TEMPLATE1(a,b,c)
4350 #define BEGIN_EVENT_TABLE_TEMPLATE2(a,b,c,d) wxBEGIN_EVENT_TABLE_TEMPLATE1(a,b,c,d)
4351 #define BEGIN_EVENT_TABLE_TEMPLATE3(a,b,c,d,e) wxBEGIN_EVENT_TABLE_TEMPLATE1(a,b,c,d,e)
4352 #define BEGIN_EVENT_TABLE_TEMPLATE4(a,b,c,d,e,f) wxBEGIN_EVENT_TABLE_TEMPLATE1(a,b,c,d,e,f)
4353 #define BEGIN_EVENT_TABLE_TEMPLATE5(a,b,c,d,e,f,g) wxBEGIN_EVENT_TABLE_TEMPLATE1(a,b,c,d,e,f,g)
4354 #define BEGIN_EVENT_TABLE_TEMPLATE6(a,b,c,d,e,f,g,h) wxBEGIN_EVENT_TABLE_TEMPLATE1(a,b,c,d,e,f,g,h)
4355 #define END_EVENT_TABLE() wxEND_EVENT_TABLE()
4357 // other obsolete event declaration/definition macros; we don't need them any longer
4358 // but we keep them for compatibility as it doesn't cost us anything anyhow
4359 #define BEGIN_DECLARE_EVENT_TYPES()
4360 #define END_DECLARE_EVENT_TYPES()
4361 #define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \
4362 extern expdecl const wxEventType name;
4363 #define DECLARE_EVENT_TYPE(name, value) \
4364 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_CORE, name, value)
4365 #define DECLARE_LOCAL_EVENT_TYPE(name, value) \
4366 DECLARE_EXPORTED_EVENT_TYPE(wxEMPTY_PARAMETER_VALUE, name, value)
4367 #define DEFINE_EVENT_TYPE(name) const wxEventType name = wxNewEventType();
4368 #define DEFINE_LOCAL_EVENT_TYPE(name) DEFINE_EVENT_TYPE(name)
4370 #endif // _WX_EVENT_H_