]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/event.h
support retina display
[wxWidgets.git] / include / wx / event.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/event.h
3// Purpose: Event classes
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) wxWidgets team
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_EVENT_H_
13#define _WX_EVENT_H_
14
15#include "wx/defs.h"
16#include "wx/cpp.h"
17#include "wx/object.h"
18#include "wx/clntdata.h"
19
20#if wxUSE_GUI
21 #include "wx/gdicmn.h"
22 #include "wx/cursor.h"
23 #include "wx/mousestate.h"
24#endif
25
26#include "wx/dynarray.h"
27#include "wx/thread.h"
28#include "wx/tracker.h"
29#include "wx/typeinfo.h"
30#include "wx/any.h"
31
32#ifdef wxHAS_EVENT_BIND
33 #include "wx/meta/convertible.h"
34#endif
35
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"
40
41 #define wxHAS_CALL_AFTER
42#endif
43
44// ----------------------------------------------------------------------------
45// forward declarations
46// ----------------------------------------------------------------------------
47
48class WXDLLIMPEXP_FWD_BASE wxList;
49class WXDLLIMPEXP_FWD_BASE wxEvent;
50class WXDLLIMPEXP_FWD_BASE wxEventFilter;
51#if wxUSE_GUI
52 class WXDLLIMPEXP_FWD_CORE wxDC;
53 class WXDLLIMPEXP_FWD_CORE wxMenu;
54 class WXDLLIMPEXP_FWD_CORE wxWindow;
55 class WXDLLIMPEXP_FWD_CORE wxWindowBase;
56#endif // wxUSE_GUI
57
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
68// wxEvtHandler.
69#ifdef __VISUALC__
70 #define wxMSVC_FWD_MULTIPLE_BASES __multiple_inheritance
71#else
72 #define wxMSVC_FWD_MULTIPLE_BASES
73#endif
74
75class WXDLLIMPEXP_FWD_BASE wxMSVC_FWD_MULTIPLE_BASES wxEvtHandler;
76class wxEventConnectionRef;
77
78// ----------------------------------------------------------------------------
79// Event types
80// ----------------------------------------------------------------------------
81
82typedef int wxEventType;
83
84#define wxEVT_ANY ((wxEventType)-1)
85
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)
90
91#define wxDECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \
92 wxEventTableEntry(type, winid, idLast, wxNewEventTableFunctor(type, fn), obj)
93
94#define wxDECLARE_EVENT_TABLE_TERMINATOR() \
95 wxEventTableEntry(wxEVT_NULL, 0, 0, 0, 0)
96
97// generate a new unique event type
98extern WXDLLIMPEXP_BASE wxEventType wxNewEventType();
99
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
104
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() )
109
110 // the general version allowing exporting the event type from DLL, used by
111 // wxWidgets itself
112 #define wxDECLARE_EXPORTED_EVENT( expdecl, name, type ) \
113 extern const expdecl wxEventTypeTag< type > name
114
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 )
118
119
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
122 // wxEVT_SPIN_XXX)
123 #define wxDEFINE_EVENT_ALIAS( name, type, value ) \
124 const wxEventTypeTag< type > name( value )
125
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
131
132 #define wxDEFINE_EVENT( name, type ) \
133 const wxEventType name( wxNewEventType() )
134
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 )
139
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
145
146// Try to cast the given event handler to the correct handler type:
147
148#define wxEVENT_HANDLER_CAST( functype, func ) \
149 ( wxObjectEventFunction )( wxEventFunction )wxStaticCastEvent( functype, &func )
150
151
152#ifdef wxHAS_EVENT_BIND
153
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.
158template <typename T>
159class wxEventTypeTag
160{
161public:
162 // The class of wxEvent-derived class carried by the events of this type.
163 typedef T EventClass;
164
165 wxEventTypeTag(wxEventType type) { m_type = type; }
166
167 // Return a wxEventType reference for the initialization of the static
168 // event tables. See wxEventTableEntry::m_eventType for a more thorough
169 // explanation.
170 operator const wxEventType&() const { return m_type; }
171
172private:
173 wxEventType m_type;
174};
175
176#endif // wxHAS_EVENT_BIND
177
178// These are needed for the functor definitions
179typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&);
180
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.
188typedef wxEventFunction wxObjectEventFunction;
189
190// The event functor which is stored in the static and dynamic event tables:
191class WXDLLIMPEXP_BASE wxEventFunctor
192{
193public:
194 virtual ~wxEventFunctor();
195
196 // Invoke the actual event handler:
197 virtual void operator()(wxEvtHandler *, wxEvent&) = 0;
198
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;
202
203 // If the functor holds an wxEvtHandler, then get access to it and track
204 // its lifetime with wxEventConnectionRef:
205 virtual wxEvtHandler *GetEvtHandler() const
206 { return NULL; }
207
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
211 // wxEventFunction:
212 virtual wxEventFunction GetEvtMethod() const
213 { return NULL; }
214
215private:
216 WX_DECLARE_ABSTRACT_TYPEINFO(wxEventFunctor)
217};
218
219// A plain method functor for the untyped legacy event types:
220class WXDLLIMPEXP_BASE wxObjectEventFunctor : public wxEventFunctor
221{
222public:
223 wxObjectEventFunctor(wxObjectEventFunction method, wxEvtHandler *handler)
224 : m_handler( handler ), m_method( method )
225 { }
226
227 virtual void operator()(wxEvtHandler *handler, wxEvent& event);
228
229 virtual bool IsMatching(const wxEventFunctor& functor) const
230 {
231 if ( wxTypeId(functor) == wxTypeId(*this) )
232 {
233 const wxObjectEventFunctor &other =
234 static_cast< const wxObjectEventFunctor & >( functor );
235
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.
241
242 return ( m_method == other.m_method || other.m_method == 0 ) &&
243 ( m_handler == other.m_handler || other.m_handler == NULL );
244 }
245 else
246 return false;
247 }
248
249 virtual wxEvtHandler *GetEvtHandler() const
250 { return m_handler; }
251
252 virtual wxEventFunction GetEvtMethod() const
253 { return m_method; }
254
255private:
256 wxEvtHandler *m_handler;
257 wxEventFunction m_method;
258
259 // Provide a dummy default ctor for type info purposes
260 wxObjectEventFunctor() { }
261
262 WX_DECLARE_TYPEINFO_INLINE(wxObjectEventFunctor)
263};
264
265// Create a functor for the legacy events: used by Connect()
266inline wxObjectEventFunctor *
267wxNewEventFunctor(const wxEventType& WXUNUSED(evtType),
268 wxObjectEventFunction method,
269 wxEvtHandler *handler)
270{
271 return new wxObjectEventFunctor(method, handler);
272}
273
274// This version is used by wxDECLARE_EVENT_TABLE_ENTRY()
275inline wxObjectEventFunctor *
276wxNewEventTableFunctor(const wxEventType& WXUNUSED(evtType),
277 wxObjectEventFunction method)
278{
279 return new wxObjectEventFunctor(method, NULL);
280}
281
282inline wxObjectEventFunctor
283wxMakeEventFunctor(const wxEventType& WXUNUSED(evtType),
284 wxObjectEventFunction method,
285 wxEvtHandler *handler)
286{
287 return wxObjectEventFunctor(method, handler);
288}
289
290#ifdef wxHAS_EVENT_BIND
291
292namespace wxPrivate
293{
294
295// helper template defining nested "type" typedef as the event class
296// corresponding to the given event type
297template <typename T> struct EventClassOf;
298
299// the typed events provide the information about the class of the events they
300// carry themselves:
301template <typename T>
302struct EventClassOf< wxEventTypeTag<T> >
303{
304 typedef typename wxEventTypeTag<T>::EventClass type;
305};
306
307// for the old untyped events we don't have information about the exact event
308// class carried by them
309template <>
310struct EventClassOf<wxEventType>
311{
312 typedef wxEvent type;
313};
314
315
316// helper class defining operations different for method functors using an
317// object of wxEvtHandler-derived class as handler and the others
318template <typename T, typename A, bool> struct HandlerImpl;
319
320// specialization for handlers deriving from wxEvtHandler
321template <typename T, typename A>
322struct HandlerImpl<T, A, true>
323{
324 static bool IsEvtHandler()
325 { return true; }
326 static T *ConvertFromEvtHandler(wxEvtHandler *p)
327 { return static_cast<T *>(p); }
328 static wxEvtHandler *ConvertToEvtHandler(T *p)
329 { return p; }
330 static wxEventFunction ConvertToEvtMethod(void (T::*f)(A&))
331 { return static_cast<wxEventFunction>(
332 reinterpret_cast<void (T::*)(wxEvent&)>(f)); }
333};
334
335// specialization for handlers not deriving from wxEvtHandler
336template <typename T, typename A>
337struct HandlerImpl<T, A, false>
338{
339 static bool IsEvtHandler()
340 { return false; }
341 static T *ConvertFromEvtHandler(wxEvtHandler *)
342 { return NULL; }
343 static wxEvtHandler *ConvertToEvtHandler(T *)
344 { return NULL; }
345 static wxEventFunction ConvertToEvtMethod(void (T::*)(A&))
346 { return NULL; }
347};
348
349} // namespace wxPrivate
350
351// functor forwarding the event to a method of the given object
352//
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
355//
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
359// example
360template
361 <typename EventTag, typename Class, typename EventArg, typename EventHandler>
362class wxEventFunctorMethod
363 : public wxEventFunctor,
364 private wxPrivate::HandlerImpl
365 <
366 Class,
367 EventArg,
368 wxConvertibleTo<Class, wxEvtHandler>::value != 0
369 >
370{
371private:
372 static void CheckHandlerArgument(EventArg *) { }
373
374public:
375 // the event class associated with the given event tag
376 typedef typename wxPrivate::EventClassOf<EventTag>::type EventClass;
377
378
379 wxEventFunctorMethod(void (Class::*method)(EventArg&), EventHandler *handler)
380 : m_handler( handler ), m_method( method )
381 {
382 wxASSERT_MSG( handler || this->IsEvtHandler(),
383 "handlers defined in non-wxEvtHandler-derived classes "
384 "must be connected with a valid sink object" );
385
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));
390 }
391
392 virtual void operator()(wxEvtHandler *handler, wxEvent& event)
393 {
394 Class * realHandler = m_handler;
395 if ( !realHandler )
396 {
397 realHandler = this->ConvertFromEvtHandler(handler);
398
399 // this is not supposed to happen but check for it nevertheless
400 wxCHECK_RET( realHandler, "invalid event handler" );
401 }
402
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
405 // is always valid
406 (realHandler->*m_method)(static_cast<EventArg&>(event));
407 }
408
409 virtual bool IsMatching(const wxEventFunctor& functor) const
410 {
411 if ( wxTypeId(functor) != wxTypeId(*this) )
412 return false;
413
414 typedef wxEventFunctorMethod<EventTag, Class, EventArg, EventHandler>
415 ThisFunctor;
416
417 // the cast is valid because wxTypeId()s matched above
418 const ThisFunctor& other = static_cast<const ThisFunctor &>(functor);
419
420 return (m_method == other.m_method || other.m_method == NULL) &&
421 (m_handler == other.m_handler || other.m_handler == NULL);
422 }
423
424 virtual wxEvtHandler *GetEvtHandler() const
425 { return this->ConvertToEvtHandler(m_handler); }
426
427 virtual wxEventFunction GetEvtMethod() const
428 { return this->ConvertToEvtMethod(m_method); }
429
430private:
431 EventHandler *m_handler;
432 void (Class::*m_method)(EventArg&);
433
434 // Provide a dummy default ctor for type info purposes
435 wxEventFunctorMethod() { }
436
437 typedef wxEventFunctorMethod<EventTag, Class,
438 EventArg, EventHandler> thisClass;
439 WX_DECLARE_TYPEINFO_INLINE(thisClass)
440};
441
442
443// functor forwarding the event to function (function, static method)
444template <typename EventTag, typename EventArg>
445class wxEventFunctorFunction : public wxEventFunctor
446{
447private:
448 static void CheckHandlerArgument(EventArg *) { }
449
450public:
451 // the event class associated with the given event tag
452 typedef typename wxPrivate::EventClassOf<EventTag>::type EventClass;
453
454 wxEventFunctorFunction( void ( *handler )( EventArg & ))
455 : m_handler( handler )
456 {
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));
461 }
462
463 virtual void operator()(wxEvtHandler *WXUNUSED(handler), wxEvent& event)
464 {
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 );
470 // or
471 // Unbind( wxEVT_XXX, &EventHandler::method, NULL )
472 m_handler(static_cast<EventArg&>(event));
473 }
474
475 virtual bool IsMatching(const wxEventFunctor &functor) const
476 {
477 if ( wxTypeId(functor) != wxTypeId(*this) )
478 return false;
479
480 typedef wxEventFunctorFunction<EventTag, EventArg> ThisFunctor;
481
482 const ThisFunctor& other = static_cast<const ThisFunctor&>( functor );
483
484 return m_handler == other.m_handler;
485 }
486
487private:
488 void (*m_handler)(EventArg&);
489
490 // Provide a dummy default ctor for type info purposes
491 wxEventFunctorFunction() { }
492
493 typedef wxEventFunctorFunction<EventTag, EventArg> thisClass;
494 WX_DECLARE_TYPEINFO_INLINE(thisClass)
495};
496
497
498template <typename EventTag, typename Functor>
499class wxEventFunctorFunctor : public wxEventFunctor
500{
501public:
502 typedef typename EventTag::EventClass EventArg;
503
504 wxEventFunctorFunctor(const Functor& handler)
505 : m_handler(handler), m_handlerAddr(&handler)
506 { }
507
508 virtual void operator()(wxEvtHandler *WXUNUSED(handler), wxEvent& event)
509 {
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 );
515 // or
516 // Unbind( wxEVT_XXX, &EventHandler::method, NULL )
517 m_handler(static_cast<EventArg&>(event));
518 }
519
520 virtual bool IsMatching(const wxEventFunctor &functor) const
521 {
522 if ( wxTypeId(functor) != wxTypeId(*this) )
523 return false;
524
525 typedef wxEventFunctorFunctor<EventTag, Functor> FunctorThis;
526
527 const FunctorThis& other = static_cast<const FunctorThis&>(functor);
528
529 // The only reliable/portable way to compare two functors is by
530 // identity:
531 return m_handlerAddr == other.m_handlerAddr;
532 }
533
534private:
535 // Store a copy of the functor to prevent using/calling an already
536 // destroyed instance:
537 Functor m_handler;
538
539 // Use the address of the original functor for comparison in IsMatching:
540 const void *m_handlerAddr;
541
542 // Provide a dummy default ctor for type info purposes
543 wxEventFunctorFunctor() { }
544
545 typedef wxEventFunctorFunctor<EventTag, Functor> thisClass;
546 WX_DECLARE_TYPEINFO_INLINE(thisClass)
547};
548
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).
553
554
555// Create functors wrapping functions:
556template <typename EventTag, typename EventArg>
557inline wxEventFunctorFunction<EventTag, EventArg> *
558wxNewEventFunctor(const EventTag&, void (*func)(EventArg &))
559{
560 return new wxEventFunctorFunction<EventTag, EventArg>(func);
561}
562
563template <typename EventTag, typename EventArg>
564inline wxEventFunctorFunction<EventTag, EventArg>
565wxMakeEventFunctor(const EventTag&, void (*func)(EventArg &))
566{
567 return wxEventFunctorFunction<EventTag, EventArg>(func);
568}
569
570// Create functors wrapping other functors:
571template <typename EventTag, typename Functor>
572inline wxEventFunctorFunctor<EventTag, Functor> *
573wxNewEventFunctor(const EventTag&, const Functor &func)
574{
575 return new wxEventFunctorFunctor<EventTag, Functor>(func);
576}
577
578template <typename EventTag, typename Functor>
579inline wxEventFunctorFunctor<EventTag, Functor>
580wxMakeEventFunctor(const EventTag&, const Functor &func)
581{
582 return wxEventFunctorFunctor<EventTag, Functor>(func);
583}
584
585// Create functors wrapping methods:
586template
587 <typename EventTag, typename Class, typename EventArg, typename EventHandler>
588inline wxEventFunctorMethod<EventTag, Class, EventArg, EventHandler> *
589wxNewEventFunctor(const EventTag&,
590 void (Class::*method)(EventArg&),
591 EventHandler *handler)
592{
593 return new wxEventFunctorMethod<EventTag, Class, EventArg, EventHandler>(
594 method, handler);
595}
596
597template
598 <typename EventTag, typename Class, typename EventArg, typename EventHandler>
599inline wxEventFunctorMethod<EventTag, Class, EventArg, EventHandler>
600wxMakeEventFunctor(const EventTag&,
601 void (Class::*method)(EventArg&),
602 EventHandler *handler)
603{
604 return wxEventFunctorMethod<EventTag, Class, EventArg, EventHandler>(
605 method, handler);
606}
607
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
611template <typename EventTag, typename Class, typename EventArg>
612inline wxEventFunctorMethod<EventTag, Class, EventArg, Class> *
613wxNewEventTableFunctor(const EventTag&, void (Class::*method)(EventArg&))
614{
615 return new wxEventFunctorMethod<EventTag, Class, EventArg, Class>(
616 method, NULL);
617}
618
619#endif // wxHAS_EVENT_BIND
620
621
622// many, but not all, standard event types
623
624 // some generic events
625extern WXDLLIMPEXP_BASE const wxEventType wxEVT_NULL;
626extern WXDLLIMPEXP_BASE const wxEventType wxEVT_FIRST;
627extern WXDLLIMPEXP_BASE const wxEventType wxEVT_USER_FIRST;
628
629 // Need events declared to do this
630class WXDLLIMPEXP_FWD_BASE wxIdleEvent;
631class WXDLLIMPEXP_FWD_BASE wxThreadEvent;
632class WXDLLIMPEXP_FWD_BASE wxAsyncMethodCallEvent;
633class WXDLLIMPEXP_FWD_CORE wxCommandEvent;
634class WXDLLIMPEXP_FWD_CORE wxMouseEvent;
635class WXDLLIMPEXP_FWD_CORE wxFocusEvent;
636class WXDLLIMPEXP_FWD_CORE wxChildFocusEvent;
637class WXDLLIMPEXP_FWD_CORE wxKeyEvent;
638class WXDLLIMPEXP_FWD_CORE wxNavigationKeyEvent;
639class WXDLLIMPEXP_FWD_CORE wxSetCursorEvent;
640class WXDLLIMPEXP_FWD_CORE wxScrollEvent;
641class WXDLLIMPEXP_FWD_CORE wxSpinEvent;
642class WXDLLIMPEXP_FWD_CORE wxScrollWinEvent;
643class WXDLLIMPEXP_FWD_CORE wxSizeEvent;
644class WXDLLIMPEXP_FWD_CORE wxMoveEvent;
645class WXDLLIMPEXP_FWD_CORE wxCloseEvent;
646class WXDLLIMPEXP_FWD_CORE wxActivateEvent;
647class WXDLLIMPEXP_FWD_CORE wxWindowCreateEvent;
648class WXDLLIMPEXP_FWD_CORE wxWindowDestroyEvent;
649class WXDLLIMPEXP_FWD_CORE wxShowEvent;
650class WXDLLIMPEXP_FWD_CORE wxIconizeEvent;
651class WXDLLIMPEXP_FWD_CORE wxMaximizeEvent;
652class WXDLLIMPEXP_FWD_CORE wxMouseCaptureChangedEvent;
653class WXDLLIMPEXP_FWD_CORE wxMouseCaptureLostEvent;
654class WXDLLIMPEXP_FWD_CORE wxPaintEvent;
655class WXDLLIMPEXP_FWD_CORE wxEraseEvent;
656class WXDLLIMPEXP_FWD_CORE wxNcPaintEvent;
657class WXDLLIMPEXP_FWD_CORE wxMenuEvent;
658class WXDLLIMPEXP_FWD_CORE wxContextMenuEvent;
659class WXDLLIMPEXP_FWD_CORE wxSysColourChangedEvent;
660class WXDLLIMPEXP_FWD_CORE wxDisplayChangedEvent;
661class WXDLLIMPEXP_FWD_CORE wxQueryNewPaletteEvent;
662class WXDLLIMPEXP_FWD_CORE wxPaletteChangedEvent;
663class WXDLLIMPEXP_FWD_CORE wxJoystickEvent;
664class WXDLLIMPEXP_FWD_CORE wxDropFilesEvent;
665class WXDLLIMPEXP_FWD_CORE wxInitDialogEvent;
666class WXDLLIMPEXP_FWD_CORE wxUpdateUIEvent;
667class WXDLLIMPEXP_FWD_CORE wxClipboardTextEvent;
668class WXDLLIMPEXP_FWD_CORE wxHelpEvent;
669
670
671 // Command events
672wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_BUTTON, wxCommandEvent);
673wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CHECKBOX, wxCommandEvent);
674wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CHOICE, wxCommandEvent);
675wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_LISTBOX, wxCommandEvent);
676wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_LISTBOX_DCLICK, wxCommandEvent);
677wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CHECKLISTBOX, wxCommandEvent);
678wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MENU, wxCommandEvent);
679wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SLIDER, wxCommandEvent);
680wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_RADIOBOX, wxCommandEvent);
681wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_RADIOBUTTON, wxCommandEvent);
682
683// wxEVT_SCROLLBAR is deprecated, use wxEVT_SCROLL... events
684wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLBAR, wxCommandEvent);
685wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_VLBOX, wxCommandEvent);
686wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMBOBOX, wxCommandEvent);
687wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_TOOL_RCLICKED, wxCommandEvent);
688wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_TOOL_DROPDOWN, wxCommandEvent);
689wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_TOOL_ENTER, wxCommandEvent);
690wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMBOBOX_DROPDOWN, wxCommandEvent);
691wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMBOBOX_CLOSEUP, wxCommandEvent);
692
693 // Thread and asynchronous method call events
694wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_BASE, wxEVT_THREAD, wxThreadEvent);
695wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_BASE, wxEVT_ASYNC_METHOD_CALL, wxAsyncMethodCallEvent);
696
697 // Mouse event types
698wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_LEFT_DOWN, wxMouseEvent);
699wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_LEFT_UP, wxMouseEvent);
700wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MIDDLE_DOWN, wxMouseEvent);
701wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MIDDLE_UP, wxMouseEvent);
702wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_RIGHT_DOWN, wxMouseEvent);
703wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_RIGHT_UP, wxMouseEvent);
704wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MOTION, wxMouseEvent);
705wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_ENTER_WINDOW, wxMouseEvent);
706wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_LEAVE_WINDOW, wxMouseEvent);
707wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_LEFT_DCLICK, wxMouseEvent);
708wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MIDDLE_DCLICK, wxMouseEvent);
709wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_RIGHT_DCLICK, wxMouseEvent);
710wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SET_FOCUS, wxFocusEvent);
711wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_KILL_FOCUS, wxFocusEvent);
712wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CHILD_FOCUS, wxChildFocusEvent);
713wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MOUSEWHEEL, wxMouseEvent);
714wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_AUX1_DOWN, wxMouseEvent);
715wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_AUX1_UP, wxMouseEvent);
716wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_AUX1_DCLICK, wxMouseEvent);
717wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_AUX2_DOWN, wxMouseEvent);
718wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_AUX2_UP, wxMouseEvent);
719wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_AUX2_DCLICK, wxMouseEvent);
720
721 // Character input event type
722wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CHAR, wxKeyEvent);
723wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CHAR_HOOK, wxKeyEvent);
724wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_NAVIGATION_KEY, wxNavigationKeyEvent);
725wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_KEY_DOWN, wxKeyEvent);
726wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_KEY_UP, wxKeyEvent);
727#if wxUSE_HOTKEY
728wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_HOTKEY, wxKeyEvent);
729#endif
730// This is a private event used by wxMSW code only and subject to change or
731// disappear in the future. Don't use.
732wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_AFTER_CHAR, wxKeyEvent);
733
734 // Set cursor event
735wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SET_CURSOR, wxSetCursorEvent);
736
737 // wxScrollBar and wxSlider event identifiers
738wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_TOP, wxScrollEvent);
739wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_BOTTOM, wxScrollEvent);
740wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_LINEUP, wxScrollEvent);
741wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_LINEDOWN, wxScrollEvent);
742wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_PAGEUP, wxScrollEvent);
743wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_PAGEDOWN, wxScrollEvent);
744wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_THUMBTRACK, wxScrollEvent);
745wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_THUMBRELEASE, wxScrollEvent);
746wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLL_CHANGED, wxScrollEvent);
747
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.
754
755#if wxUSE_SPINBTN
756
757wxDECLARE_EXPORTED_EVENT_ALIAS( WXDLLIMPEXP_CORE, wxEVT_SPIN_UP, wxSpinEvent );
758wxDECLARE_EXPORTED_EVENT_ALIAS( WXDLLIMPEXP_CORE, wxEVT_SPIN_DOWN, wxSpinEvent );
759wxDECLARE_EXPORTED_EVENT_ALIAS( WXDLLIMPEXP_CORE, wxEVT_SPIN, wxSpinEvent );
760
761#endif
762
763 // Scroll events from wxWindow
764wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLWIN_TOP, wxScrollWinEvent);
765wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEvent);
766wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLWIN_LINEUP, wxScrollWinEvent);
767wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEvent);
768wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEvent);
769wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEvent);
770wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEvent);
771wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEvent);
772
773 // System events
774wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SIZE, wxSizeEvent);
775wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MOVE, wxMoveEvent);
776wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CLOSE_WINDOW, wxCloseEvent);
777wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_END_SESSION, wxCloseEvent);
778wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_QUERY_END_SESSION, wxCloseEvent);
779wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_ACTIVATE_APP, wxActivateEvent);
780wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_ACTIVATE, wxActivateEvent);
781wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CREATE, wxWindowCreateEvent);
782wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_DESTROY, wxWindowDestroyEvent);
783wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SHOW, wxShowEvent);
784wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_ICONIZE, wxIconizeEvent);
785wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MAXIMIZE, wxMaximizeEvent);
786wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MOUSE_CAPTURE_CHANGED, wxMouseCaptureChangedEvent);
787wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MOUSE_CAPTURE_LOST, wxMouseCaptureLostEvent);
788wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_PAINT, wxPaintEvent);
789wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_ERASE_BACKGROUND, wxEraseEvent);
790wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_NC_PAINT, wxNcPaintEvent);
791wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MENU_OPEN, wxMenuEvent);
792wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MENU_CLOSE, wxMenuEvent);
793wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MENU_HIGHLIGHT, wxMenuEvent);
794wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_CONTEXT_MENU, wxContextMenuEvent);
795wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SYS_COLOUR_CHANGED, wxSysColourChangedEvent);
796wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_DISPLAY_CHANGED, wxDisplayChangedEvent);
797wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_QUERY_NEW_PALETTE, wxQueryNewPaletteEvent);
798wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_PALETTE_CHANGED, wxPaletteChangedEvent);
799wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_JOY_BUTTON_DOWN, wxJoystickEvent);
800wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_JOY_BUTTON_UP, wxJoystickEvent);
801wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_JOY_MOVE, wxJoystickEvent);
802wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_JOY_ZMOVE, wxJoystickEvent);
803wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_DROP_FILES, wxDropFilesEvent);
804wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_INIT_DIALOG, wxInitDialogEvent);
805wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_BASE, wxEVT_IDLE, wxIdleEvent);
806wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_UPDATE_UI, wxUpdateUIEvent);
807wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_SIZING, wxSizeEvent);
808wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MOVING, wxMoveEvent);
809wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MOVE_START, wxMoveEvent);
810wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_MOVE_END, wxMoveEvent);
811wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_HIBERNATE, wxActivateEvent);
812
813 // Clipboard events
814wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_TEXT_COPY, wxClipboardTextEvent);
815wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_TEXT_CUT, wxClipboardTextEvent);
816wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_TEXT_PASTE, wxClipboardTextEvent);
817
818 // Generic command events
819 // Note: a click is a higher-level event than button down/up
820wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMMAND_LEFT_CLICK, wxCommandEvent);
821wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMMAND_LEFT_DCLICK, wxCommandEvent);
822wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMMAND_RIGHT_CLICK, wxCommandEvent);
823wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMMAND_RIGHT_DCLICK, wxCommandEvent);
824wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMMAND_SET_FOCUS, wxCommandEvent);
825wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMMAND_KILL_FOCUS, wxCommandEvent);
826wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_COMMAND_ENTER, wxCommandEvent);
827
828 // Help events
829wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_HELP, wxHelpEvent);
830wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_DETAILED_HELP, wxHelpEvent);
831
832// these 2 events are the same
833#define wxEVT_TOOL wxEVT_MENU
834
835// ----------------------------------------------------------------------------
836// Compatibility
837// ----------------------------------------------------------------------------
838
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
841//
842// still, any new code using it should include wx/textctrl.h explicitly
843wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_TEXT, wxCommandEvent);
844
845
846// ----------------------------------------------------------------------------
847// wxEvent(-derived) classes
848// ----------------------------------------------------------------------------
849
850// the predefined constants for the number of times we propagate event
851// upwards window child-parent chain
852enum wxEventPropagation
853{
854 // don't propagate it at all
855 wxEVENT_PROPAGATE_NONE = 0,
856
857 // propagate it until it is processed
858 wxEVENT_PROPAGATE_MAX = INT_MAX
859};
860
861// The different categories for a wxEvent; see wxEvent::GetEventCategory.
862// NOTE: they are used as OR-combinable flags by wxEventLoopBase::YieldFor
863enum wxEventCategory
864{
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,
871
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,
877
878 // this category is for wxSocketEvent
879 wxEVT_CATEGORY_SOCKET = 4,
880
881 // this category is for wxTimerEvent
882 wxEVT_CATEGORY_TIMER = 8,
883
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,
888
889
890 // implementation only
891
892 // used in the implementations of wxEventLoopBase::YieldFor
893 wxEVT_CATEGORY_UNKNOWN = 32,
894
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,
899
900
901 // shortcut masks
902
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,
906
907 // used in wxEventLoopBase::YieldFor to specify all event categories should be processed:
908 wxEVT_CATEGORY_ALL =
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
912};
913
914/*
915 * wxWidgets events, covering all interesting things that might happen
916 * (button clicking, resizing, setting text in widgets, etc.).
917 *
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.
923 *
924 */
925
926class WXDLLIMPEXP_BASE wxEvent : public wxObject
927{
928public:
929 wxEvent(int winid = 0, wxEventType commandType = wxEVT_NULL );
930
931 void SetEventType(wxEventType typ) { m_eventType = typ; }
932 wxEventType GetEventType() const { return m_eventType; }
933
934 wxObject *GetEventObject() const { return m_eventObject; }
935 void SetEventObject(wxObject *obj) { m_eventObject = obj; }
936
937 long GetTimestamp() const { return m_timeStamp; }
938 void SetTimestamp(long ts = 0) { m_timeStamp = ts; }
939
940 int GetId() const { return m_id; }
941 void SetId(int Id) { m_id = Id; }
942
943 // Returns the user data optionally associated with the event handler when
944 // using Connect() or Bind().
945 wxObject *GetEventUserData() const { return m_callbackUserData; }
946
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; }
953
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;
958
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; }
964
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; }
968
969 // Determine if this event should be propagating to the parent window.
970 bool ShouldPropagate() const
971 { return m_propagationLevel != wxEVENT_PROPAGATE_NONE; }
972
973 // Stop an event from propagating to its parent window, returns the old
974 // propagation level value
975 int StopPropagation()
976 {
977 int propagationLevel = m_propagationLevel;
978 m_propagationLevel = wxEVENT_PROPAGATE_NONE;
979 return propagationLevel;
980 }
981
982 // Resume the event propagation by restoring the propagation level
983 // (returned by StopPropagation())
984 void ResumePropagation(int propagationLevel)
985 {
986 m_propagationLevel = propagationLevel;
987 }
988
989
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
993 bool WasProcessed()
994 {
995 if ( m_wasProcessed )
996 return true;
997
998 m_wasProcessed = true;
999
1000 return false;
1001 }
1002
1003 // This is for internal use only and is used for setting, testing and
1004 // resetting of m_willBeProcessedAgain flag.
1005 void SetWillBeProcessedAgain()
1006 {
1007 m_willBeProcessedAgain = true;
1008 }
1009
1010 bool WillBeProcessedAgain()
1011 {
1012 if ( m_willBeProcessedAgain )
1013 {
1014 m_willBeProcessedAgain = false;
1015 return true;
1016 }
1017
1018 return false;
1019 }
1020
1021 // This is also used only internally by ProcessEvent() to check if it
1022 // should process the event normally or only restrict the search for the
1023 // event handler to this object itself.
1024 bool ShouldProcessOnlyIn(wxEvtHandler *h) const
1025 {
1026 return h == m_handlerToProcessOnlyIn;
1027 }
1028
1029 // Called to indicate that the result of ShouldProcessOnlyIn() wasn't taken
1030 // into account. The existence of this function may seem counterintuitive
1031 // but unfortunately it's needed by wxScrollHelperEvtHandler, see comments
1032 // there. Don't even think of using this in your own code, this is a gross
1033 // hack and is only needed because of wx complicated history and should
1034 // never be used anywhere else.
1035 void DidntHonourProcessOnlyIn()
1036 {
1037 m_handlerToProcessOnlyIn = NULL;
1038 }
1039
1040protected:
1041 wxObject* m_eventObject;
1042 wxEventType m_eventType;
1043 long m_timeStamp;
1044 int m_id;
1045
1046public:
1047 // m_callbackUserData is for internal usage only
1048 wxObject* m_callbackUserData;
1049
1050private:
1051 // If this handler
1052 wxEvtHandler *m_handlerToProcessOnlyIn;
1053
1054protected:
1055 // the propagation level: while it is positive, we propagate the event to
1056 // the parent window (if any)
1057 int m_propagationLevel;
1058
1059 bool m_skipped;
1060 bool m_isCommandEvent;
1061
1062 // initially false but becomes true as soon as WasProcessed() is called for
1063 // the first time, as this is done only by ProcessEvent() it explains the
1064 // variable name: it becomes true after ProcessEvent() was called at least
1065 // once for this event
1066 bool m_wasProcessed;
1067
1068 // This one is initially false too, but can be set to true to indicate that
1069 // the event will be passed to another handler if it's not processed in
1070 // this one.
1071 bool m_willBeProcessedAgain;
1072
1073protected:
1074 wxEvent(const wxEvent&); // for implementing Clone()
1075 wxEvent& operator=(const wxEvent&); // for derived classes operator=()
1076
1077private:
1078 // it needs to access our m_propagationLevel
1079 friend class WXDLLIMPEXP_FWD_BASE wxPropagateOnce;
1080
1081 // and this one needs to access our m_handlerToProcessOnlyIn
1082 friend class WXDLLIMPEXP_FWD_BASE wxEventProcessInHandlerOnly;
1083
1084
1085 DECLARE_ABSTRACT_CLASS(wxEvent)
1086};
1087
1088/*
1089 * Helper class to temporarily change an event not to propagate.
1090 */
1091class WXDLLIMPEXP_BASE wxPropagationDisabler
1092{
1093public:
1094 wxPropagationDisabler(wxEvent& event) : m_event(event)
1095 {
1096 m_propagationLevelOld = m_event.StopPropagation();
1097 }
1098
1099 ~wxPropagationDisabler()
1100 {
1101 m_event.ResumePropagation(m_propagationLevelOld);
1102 }
1103
1104private:
1105 wxEvent& m_event;
1106 int m_propagationLevelOld;
1107
1108 wxDECLARE_NO_COPY_CLASS(wxPropagationDisabler);
1109};
1110
1111/*
1112 * Another one to temporarily lower propagation level.
1113 */
1114class WXDLLIMPEXP_BASE wxPropagateOnce
1115{
1116public:
1117 wxPropagateOnce(wxEvent& event) : m_event(event)
1118 {
1119 wxASSERT_MSG( m_event.m_propagationLevel > 0,
1120 wxT("shouldn't be used unless ShouldPropagate()!") );
1121
1122 m_event.m_propagationLevel--;
1123 }
1124
1125 ~wxPropagateOnce()
1126 {
1127 m_event.m_propagationLevel++;
1128 }
1129
1130private:
1131 wxEvent& m_event;
1132
1133 wxDECLARE_NO_COPY_CLASS(wxPropagateOnce);
1134};
1135
1136// A helper object used to temporarily make wxEvent::ShouldProcessOnlyIn()
1137// return true for the handler passed to its ctor.
1138class wxEventProcessInHandlerOnly
1139{
1140public:
1141 wxEventProcessInHandlerOnly(wxEvent& event, wxEvtHandler *handler)
1142 : m_event(event),
1143 m_handlerToProcessOnlyInOld(event.m_handlerToProcessOnlyIn)
1144 {
1145 m_event.m_handlerToProcessOnlyIn = handler;
1146 }
1147
1148 ~wxEventProcessInHandlerOnly()
1149 {
1150 m_event.m_handlerToProcessOnlyIn = m_handlerToProcessOnlyInOld;
1151 }
1152
1153private:
1154 wxEvent& m_event;
1155 wxEvtHandler * const m_handlerToProcessOnlyInOld;
1156
1157 wxDECLARE_NO_COPY_CLASS(wxEventProcessInHandlerOnly);
1158};
1159
1160
1161class WXDLLIMPEXP_BASE wxEventBasicPayloadMixin
1162{
1163public:
1164 wxEventBasicPayloadMixin()
1165 : m_commandInt(0),
1166 m_extraLong(0)
1167 {
1168 }
1169
1170 void SetString(const wxString& s) { m_cmdString = s; }
1171 const wxString& GetString() const { return m_cmdString; }
1172
1173 void SetInt(int i) { m_commandInt = i; }
1174 int GetInt() const { return m_commandInt; }
1175
1176 void SetExtraLong(long extraLong) { m_extraLong = extraLong; }
1177 long GetExtraLong() const { return m_extraLong; }
1178
1179protected:
1180 // Note: these variables have "cmd" or "command" in their name for backward compatibility:
1181 // they used to be part of wxCommandEvent, not this mixin.
1182 wxString m_cmdString; // String event argument
1183 int m_commandInt;
1184 long m_extraLong; // Additional information (e.g. select/deselect)
1185
1186 wxDECLARE_NO_ASSIGN_CLASS(wxEventBasicPayloadMixin);
1187};
1188
1189class WXDLLIMPEXP_BASE wxEventAnyPayloadMixin : public wxEventBasicPayloadMixin
1190{
1191public:
1192 wxEventAnyPayloadMixin() : wxEventBasicPayloadMixin() {}
1193
1194#if wxUSE_ANY && (!defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7))
1195 template<typename T>
1196 void SetPayload(const T& payload)
1197 {
1198 m_payload = payload;
1199 }
1200
1201 template<typename T>
1202 T GetPayload() const
1203 {
1204 return m_payload.As<T>();
1205 }
1206
1207protected:
1208 wxAny m_payload;
1209#endif // wxUSE_ANY && (!defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7))
1210
1211 wxDECLARE_NO_ASSIGN_CLASS(wxEventBasicPayloadMixin);
1212};
1213
1214
1215// Idle event
1216/*
1217 wxEVT_IDLE
1218 */
1219
1220// Whether to always send idle events to windows, or
1221// to only send update events to those with the
1222// wxWS_EX_PROCESS_IDLE style.
1223
1224enum wxIdleMode
1225{
1226 // Send idle events to all windows
1227 wxIDLE_PROCESS_ALL,
1228
1229 // Send idle events to windows that have
1230 // the wxWS_EX_PROCESS_IDLE flag specified
1231 wxIDLE_PROCESS_SPECIFIED
1232};
1233
1234class WXDLLIMPEXP_BASE wxIdleEvent : public wxEvent
1235{
1236public:
1237 wxIdleEvent()
1238 : wxEvent(0, wxEVT_IDLE),
1239 m_requestMore(false)
1240 { }
1241 wxIdleEvent(const wxIdleEvent& event)
1242 : wxEvent(event),
1243 m_requestMore(event.m_requestMore)
1244 { }
1245
1246 void RequestMore(bool needMore = true) { m_requestMore = needMore; }
1247 bool MoreRequested() const { return m_requestMore; }
1248
1249 virtual wxEvent *Clone() const { return new wxIdleEvent(*this); }
1250
1251 // Specify how wxWidgets will send idle events: to
1252 // all windows, or only to those which specify that they
1253 // will process the events.
1254 static void SetMode(wxIdleMode mode) { sm_idleMode = mode; }
1255
1256 // Returns the idle event mode
1257 static wxIdleMode GetMode() { return sm_idleMode; }
1258
1259protected:
1260 bool m_requestMore;
1261 static wxIdleMode sm_idleMode;
1262
1263private:
1264 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIdleEvent)
1265};
1266
1267
1268// Thread event
1269
1270class WXDLLIMPEXP_BASE wxThreadEvent : public wxEvent,
1271 public wxEventAnyPayloadMixin
1272{
1273public:
1274 wxThreadEvent(wxEventType eventType = wxEVT_THREAD, int id = wxID_ANY)
1275 : wxEvent(id, eventType)
1276 { }
1277
1278 wxThreadEvent(const wxThreadEvent& event)
1279 : wxEvent(event),
1280 wxEventAnyPayloadMixin(event)
1281 {
1282 // make sure our string member (which uses COW, aka refcounting) is not
1283 // shared by other wxString instances:
1284 SetString(GetString().Clone());
1285 }
1286
1287 virtual wxEvent *Clone() const
1288 {
1289 return new wxThreadEvent(*this);
1290 }
1291
1292 // this is important to avoid that calling wxEventLoopBase::YieldFor thread events
1293 // gets processed when this is unwanted:
1294 virtual wxEventCategory GetEventCategory() const
1295 { return wxEVT_CATEGORY_THREAD; }
1296
1297private:
1298 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxThreadEvent)
1299};
1300
1301
1302// Asynchronous method call events: these event are processed by wxEvtHandler
1303// itself and result in a call to its Execute() method which simply calls the
1304// specified method. The difference with a simple method call is that this is
1305// done asynchronously, i.e. at some later time, instead of immediately when
1306// the event object is constructed.
1307
1308#ifdef wxHAS_CALL_AFTER
1309
1310// This is a base class used to process all method calls.
1311class wxAsyncMethodCallEvent : public wxEvent
1312{
1313public:
1314 wxAsyncMethodCallEvent(wxObject* object)
1315 : wxEvent(wxID_ANY, wxEVT_ASYNC_METHOD_CALL)
1316 {
1317 SetEventObject(object);
1318 }
1319
1320 wxAsyncMethodCallEvent(const wxAsyncMethodCallEvent& other)
1321 : wxEvent(other)
1322 {
1323 }
1324
1325 virtual void Execute() = 0;
1326};
1327
1328// This is a version for calling methods without parameters.
1329template <typename T>
1330class wxAsyncMethodCallEvent0 : public wxAsyncMethodCallEvent
1331{
1332public:
1333 typedef T ObjectType;
1334 typedef void (ObjectType::*MethodType)();
1335
1336 wxAsyncMethodCallEvent0(ObjectType* object,
1337 MethodType method)
1338 : wxAsyncMethodCallEvent(object),
1339 m_object(object),
1340 m_method(method)
1341 {
1342 }
1343
1344 wxAsyncMethodCallEvent0(const wxAsyncMethodCallEvent0& other)
1345 : wxAsyncMethodCallEvent(other),
1346 m_object(other.m_object),
1347 m_method(other.m_method)
1348 {
1349 }
1350
1351 virtual wxEvent *Clone() const
1352 {
1353 return new wxAsyncMethodCallEvent0(*this);
1354 }
1355
1356 virtual void Execute()
1357 {
1358 (m_object->*m_method)();
1359 }
1360
1361private:
1362 ObjectType* const m_object;
1363 const MethodType m_method;
1364};
1365
1366// This is a version for calling methods with a single parameter.
1367template <typename T, typename T1>
1368class wxAsyncMethodCallEvent1 : public wxAsyncMethodCallEvent
1369{
1370public:
1371 typedef T ObjectType;
1372 typedef void (ObjectType::*MethodType)(T1 x1);
1373 typedef typename wxRemoveRef<T1>::type ParamType1;
1374
1375 wxAsyncMethodCallEvent1(ObjectType* object,
1376 MethodType method,
1377 const ParamType1& x1)
1378 : wxAsyncMethodCallEvent(object),
1379 m_object(object),
1380 m_method(method),
1381 m_param1(x1)
1382 {
1383 }
1384
1385 wxAsyncMethodCallEvent1(const wxAsyncMethodCallEvent1& other)
1386 : wxAsyncMethodCallEvent(other),
1387 m_object(other.m_object),
1388 m_method(other.m_method),
1389 m_param1(other.m_param1)
1390 {
1391 }
1392
1393 virtual wxEvent *Clone() const
1394 {
1395 return new wxAsyncMethodCallEvent1(*this);
1396 }
1397
1398 virtual void Execute()
1399 {
1400 (m_object->*m_method)(m_param1);
1401 }
1402
1403private:
1404 ObjectType* const m_object;
1405 const MethodType m_method;
1406 const ParamType1 m_param1;
1407};
1408
1409// This is a version for calling methods with two parameters.
1410template <typename T, typename T1, typename T2>
1411class wxAsyncMethodCallEvent2 : public wxAsyncMethodCallEvent
1412{
1413public:
1414 typedef T ObjectType;
1415 typedef void (ObjectType::*MethodType)(T1 x1, T2 x2);
1416 typedef typename wxRemoveRef<T1>::type ParamType1;
1417 typedef typename wxRemoveRef<T2>::type ParamType2;
1418
1419 wxAsyncMethodCallEvent2(ObjectType* object,
1420 MethodType method,
1421 const ParamType1& x1,
1422 const ParamType2& x2)
1423 : wxAsyncMethodCallEvent(object),
1424 m_object(object),
1425 m_method(method),
1426 m_param1(x1),
1427 m_param2(x2)
1428 {
1429 }
1430
1431 wxAsyncMethodCallEvent2(const wxAsyncMethodCallEvent2& other)
1432 : wxAsyncMethodCallEvent(other),
1433 m_object(other.m_object),
1434 m_method(other.m_method),
1435 m_param1(other.m_param1),
1436 m_param2(other.m_param2)
1437 {
1438 }
1439
1440 virtual wxEvent *Clone() const
1441 {
1442 return new wxAsyncMethodCallEvent2(*this);
1443 }
1444
1445 virtual void Execute()
1446 {
1447 (m_object->*m_method)(m_param1, m_param2);
1448 }
1449
1450private:
1451 ObjectType* const m_object;
1452 const MethodType m_method;
1453 const ParamType1 m_param1;
1454 const ParamType2 m_param2;
1455};
1456
1457#endif // wxHAS_CALL_AFTER
1458
1459
1460#if wxUSE_GUI
1461
1462
1463// Item or menu event class
1464/*
1465 wxEVT_BUTTON
1466 wxEVT_CHECKBOX
1467 wxEVT_CHOICE
1468 wxEVT_LISTBOX
1469 wxEVT_LISTBOX_DCLICK
1470 wxEVT_TEXT
1471 wxEVT_TEXT_ENTER
1472 wxEVT_MENU
1473 wxEVT_SLIDER
1474 wxEVT_RADIOBOX
1475 wxEVT_RADIOBUTTON
1476 wxEVT_SCROLLBAR
1477 wxEVT_VLBOX
1478 wxEVT_COMBOBOX
1479 wxEVT_TOGGLEBUTTON
1480*/
1481
1482class WXDLLIMPEXP_CORE wxCommandEvent : public wxEvent,
1483 public wxEventBasicPayloadMixin
1484{
1485public:
1486 wxCommandEvent(wxEventType commandType = wxEVT_NULL, int winid = 0);
1487
1488 wxCommandEvent(const wxCommandEvent& event)
1489 : wxEvent(event),
1490 wxEventBasicPayloadMixin(event),
1491 m_clientData(event.m_clientData),
1492 m_clientObject(event.m_clientObject)
1493 {
1494 // Because GetString() can retrieve the string text only on demand, we
1495 // need to copy it explicitly.
1496 if ( m_cmdString.empty() )
1497 m_cmdString = event.GetString();
1498 }
1499
1500 // Set/Get client data from controls
1501 void SetClientData(void* clientData) { m_clientData = clientData; }
1502 void *GetClientData() const { return m_clientData; }
1503
1504 // Set/Get client object from controls
1505 void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; }
1506 wxClientData *GetClientObject() const { return m_clientObject; }
1507
1508 // Note: this shadows wxEventBasicPayloadMixin::GetString(), because it does some
1509 // GUI-specific hacks
1510 wxString GetString() const;
1511
1512 // Get listbox selection if single-choice
1513 int GetSelection() const { return m_commandInt; }
1514
1515 // Get checkbox value
1516 bool IsChecked() const { return m_commandInt != 0; }
1517
1518 // true if the listbox event was a selection.
1519 bool IsSelection() const { return (m_extraLong != 0); }
1520
1521 virtual wxEvent *Clone() const { return new wxCommandEvent(*this); }
1522 virtual wxEventCategory GetEventCategory() const { return wxEVT_CATEGORY_USER_INPUT; }
1523
1524protected:
1525 void* m_clientData; // Arbitrary client data
1526 wxClientData* m_clientObject; // Arbitrary client object
1527
1528private:
1529 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCommandEvent)
1530};
1531
1532// this class adds a possibility to react (from the user) code to a control
1533// notification: allow or veto the operation being reported.
1534class WXDLLIMPEXP_CORE wxNotifyEvent : public wxCommandEvent
1535{
1536public:
1537 wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
1538 : wxCommandEvent(commandType, winid)
1539 { m_bAllow = true; }
1540
1541 wxNotifyEvent(const wxNotifyEvent& event)
1542 : wxCommandEvent(event)
1543 { m_bAllow = event.m_bAllow; }
1544
1545 // veto the operation (usually it's allowed by default)
1546 void Veto() { m_bAllow = false; }
1547
1548 // allow the operation if it was disabled by default
1549 void Allow() { m_bAllow = true; }
1550
1551 // for implementation code only: is the operation allowed?
1552 bool IsAllowed() const { return m_bAllow; }
1553
1554 virtual wxEvent *Clone() const { return new wxNotifyEvent(*this); }
1555
1556private:
1557 bool m_bAllow;
1558
1559private:
1560 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotifyEvent)
1561};
1562
1563
1564// Scroll event class, derived form wxCommandEvent. wxScrollEvents are
1565// sent by wxSlider and wxScrollBar.
1566/*
1567 wxEVT_SCROLL_TOP
1568 wxEVT_SCROLL_BOTTOM
1569 wxEVT_SCROLL_LINEUP
1570 wxEVT_SCROLL_LINEDOWN
1571 wxEVT_SCROLL_PAGEUP
1572 wxEVT_SCROLL_PAGEDOWN
1573 wxEVT_SCROLL_THUMBTRACK
1574 wxEVT_SCROLL_THUMBRELEASE
1575 wxEVT_SCROLL_CHANGED
1576*/
1577
1578class WXDLLIMPEXP_CORE wxScrollEvent : public wxCommandEvent
1579{
1580public:
1581 wxScrollEvent(wxEventType commandType = wxEVT_NULL,
1582 int winid = 0, int pos = 0, int orient = 0);
1583
1584 int GetOrientation() const { return (int) m_extraLong; }
1585 int GetPosition() const { return m_commandInt; }
1586 void SetOrientation(int orient) { m_extraLong = (long) orient; }
1587 void SetPosition(int pos) { m_commandInt = pos; }
1588
1589 virtual wxEvent *Clone() const { return new wxScrollEvent(*this); }
1590
1591private:
1592 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollEvent)
1593};
1594
1595// ScrollWin event class, derived fom wxEvent. wxScrollWinEvents
1596// are sent by wxWindow.
1597/*
1598 wxEVT_SCROLLWIN_TOP
1599 wxEVT_SCROLLWIN_BOTTOM
1600 wxEVT_SCROLLWIN_LINEUP
1601 wxEVT_SCROLLWIN_LINEDOWN
1602 wxEVT_SCROLLWIN_PAGEUP
1603 wxEVT_SCROLLWIN_PAGEDOWN
1604 wxEVT_SCROLLWIN_THUMBTRACK
1605 wxEVT_SCROLLWIN_THUMBRELEASE
1606*/
1607
1608class WXDLLIMPEXP_CORE wxScrollWinEvent : public wxEvent
1609{
1610public:
1611 wxScrollWinEvent(wxEventType commandType = wxEVT_NULL,
1612 int pos = 0, int orient = 0);
1613 wxScrollWinEvent(const wxScrollWinEvent& event) : wxEvent(event)
1614 { m_commandInt = event.m_commandInt;
1615 m_extraLong = event.m_extraLong; }
1616
1617 int GetOrientation() const { return (int) m_extraLong; }
1618 int GetPosition() const { return m_commandInt; }
1619 void SetOrientation(int orient) { m_extraLong = (long) orient; }
1620 void SetPosition(int pos) { m_commandInt = pos; }
1621
1622 virtual wxEvent *Clone() const { return new wxScrollWinEvent(*this); }
1623
1624protected:
1625 int m_commandInt;
1626 long m_extraLong;
1627
1628private:
1629 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollWinEvent)
1630};
1631
1632
1633
1634// Mouse event class
1635
1636/*
1637 wxEVT_LEFT_DOWN
1638 wxEVT_LEFT_UP
1639 wxEVT_MIDDLE_DOWN
1640 wxEVT_MIDDLE_UP
1641 wxEVT_RIGHT_DOWN
1642 wxEVT_RIGHT_UP
1643 wxEVT_MOTION
1644 wxEVT_ENTER_WINDOW
1645 wxEVT_LEAVE_WINDOW
1646 wxEVT_LEFT_DCLICK
1647 wxEVT_MIDDLE_DCLICK
1648 wxEVT_RIGHT_DCLICK
1649*/
1650
1651enum wxMouseWheelAxis
1652{
1653 wxMOUSE_WHEEL_VERTICAL,
1654 wxMOUSE_WHEEL_HORIZONTAL
1655};
1656
1657class WXDLLIMPEXP_CORE wxMouseEvent : public wxEvent,
1658 public wxMouseState
1659{
1660public:
1661 wxMouseEvent(wxEventType mouseType = wxEVT_NULL);
1662 wxMouseEvent(const wxMouseEvent& event)
1663 : wxEvent(event),
1664 wxMouseState(event)
1665 {
1666 Assign(event);
1667 }
1668
1669 // Was it a button event? (*doesn't* mean: is any button *down*?)
1670 bool IsButton() const { return Button(wxMOUSE_BTN_ANY); }
1671
1672 // Was it a down event from this (or any) button?
1673 bool ButtonDown(int but = wxMOUSE_BTN_ANY) const;
1674
1675 // Was it a dclick event from this (or any) button?
1676 bool ButtonDClick(int but = wxMOUSE_BTN_ANY) const;
1677
1678 // Was it a up event from this (or any) button?
1679 bool ButtonUp(int but = wxMOUSE_BTN_ANY) const;
1680
1681 // Was this event generated by the given button?
1682 bool Button(int but) const;
1683
1684 // Get the button which is changing state (wxMOUSE_BTN_NONE if none)
1685 int GetButton() const;
1686
1687 // Find which event was just generated
1688 bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); }
1689 bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); }
1690 bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); }
1691 bool Aux1Down() const { return (m_eventType == wxEVT_AUX1_DOWN); }
1692 bool Aux2Down() const { return (m_eventType == wxEVT_AUX2_DOWN); }
1693
1694 bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); }
1695 bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); }
1696 bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); }
1697 bool Aux1Up() const { return (m_eventType == wxEVT_AUX1_UP); }
1698 bool Aux2Up() const { return (m_eventType == wxEVT_AUX2_UP); }
1699
1700 bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); }
1701 bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); }
1702 bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); }
1703 bool Aux1DClick() const { return (m_eventType == wxEVT_AUX1_DCLICK); }
1704 bool Aux2DClick() const { return (m_eventType == wxEVT_AUX2_DCLICK); }
1705
1706 // True if a button is down and the mouse is moving
1707 bool Dragging() const
1708 {
1709 return (m_eventType == wxEVT_MOTION) && ButtonIsDown(wxMOUSE_BTN_ANY);
1710 }
1711
1712 // True if the mouse is moving, and no button is down
1713 bool Moving() const
1714 {
1715 return (m_eventType == wxEVT_MOTION) && !ButtonIsDown(wxMOUSE_BTN_ANY);
1716 }
1717
1718 // True if the mouse is just entering the window
1719 bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); }
1720
1721 // True if the mouse is just leaving the window
1722 bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); }
1723
1724 // Returns the number of mouse clicks associated with this event.
1725 int GetClickCount() const { return m_clickCount; }
1726
1727 // Find the logical position of the event given the DC
1728 wxPoint GetLogicalPosition(const wxDC& dc) const;
1729
1730 // Get wheel rotation, positive or negative indicates direction of
1731 // rotation. Current devices all send an event when rotation is equal to
1732 // +/-WheelDelta, but this allows for finer resolution devices to be
1733 // created in the future. Because of this you shouldn't assume that one
1734 // event is equal to 1 line or whatever, but you should be able to either
1735 // do partial line scrolling or wait until +/-WheelDelta rotation values
1736 // have been accumulated before scrolling.
1737 int GetWheelRotation() const { return m_wheelRotation; }
1738
1739 // Get wheel delta, normally 120. This is the threshold for action to be
1740 // taken, and one such action (for example, scrolling one increment)
1741 // should occur for each delta.
1742 int GetWheelDelta() const { return m_wheelDelta; }
1743
1744 // Gets the axis the wheel operation concerns; wxMOUSE_WHEEL_VERTICAL
1745 // (most common case) or wxMOUSE_WHEEL_HORIZONTAL (for horizontal scrolling
1746 // using e.g. a trackpad).
1747 wxMouseWheelAxis GetWheelAxis() const { return m_wheelAxis; }
1748
1749 // Returns the configured number of lines (or whatever) to be scrolled per
1750 // wheel action. Defaults to three.
1751 int GetLinesPerAction() const { return m_linesPerAction; }
1752
1753 // Returns the configured number of columns (or whatever) to be scrolled per
1754 // wheel action. Defaults to three.
1755 int GetColumnsPerAction() const { return m_columnsPerAction; }
1756
1757 // Is the system set to do page scrolling?
1758 bool IsPageScroll() const { return ((unsigned int)m_linesPerAction == UINT_MAX); }
1759
1760 virtual wxEvent *Clone() const { return new wxMouseEvent(*this); }
1761 virtual wxEventCategory GetEventCategory() const { return wxEVT_CATEGORY_USER_INPUT; }
1762
1763 wxMouseEvent& operator=(const wxMouseEvent& event)
1764 {
1765 if (&event != this)
1766 Assign(event);
1767 return *this;
1768 }
1769
1770public:
1771 int m_clickCount;
1772
1773 wxMouseWheelAxis m_wheelAxis;
1774 int m_wheelRotation;
1775 int m_wheelDelta;
1776 int m_linesPerAction;
1777 int m_columnsPerAction;
1778
1779protected:
1780 void Assign(const wxMouseEvent& evt);
1781
1782private:
1783 DECLARE_DYNAMIC_CLASS(wxMouseEvent)
1784};
1785
1786// Cursor set event
1787
1788/*
1789 wxEVT_SET_CURSOR
1790 */
1791
1792class WXDLLIMPEXP_CORE wxSetCursorEvent : public wxEvent
1793{
1794public:
1795 wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0)
1796 : wxEvent(0, wxEVT_SET_CURSOR),
1797 m_x(x), m_y(y), m_cursor()
1798 { }
1799
1800 wxSetCursorEvent(const wxSetCursorEvent& event)
1801 : wxEvent(event),
1802 m_x(event.m_x),
1803 m_y(event.m_y),
1804 m_cursor(event.m_cursor)
1805 { }
1806
1807 wxCoord GetX() const { return m_x; }
1808 wxCoord GetY() const { return m_y; }
1809
1810 void SetCursor(const wxCursor& cursor) { m_cursor = cursor; }
1811 const wxCursor& GetCursor() const { return m_cursor; }
1812 bool HasCursor() const { return m_cursor.IsOk(); }
1813
1814 virtual wxEvent *Clone() const { return new wxSetCursorEvent(*this); }
1815
1816private:
1817 wxCoord m_x, m_y;
1818 wxCursor m_cursor;
1819
1820private:
1821 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSetCursorEvent)
1822};
1823
1824// Keyboard input event class
1825
1826/*
1827 wxEVT_CHAR
1828 wxEVT_CHAR_HOOK
1829 wxEVT_KEY_DOWN
1830 wxEVT_KEY_UP
1831 wxEVT_HOTKEY
1832 */
1833
1834// key categories: the bit flags for IsKeyInCategory() function
1835//
1836// the enum values used may change in future version of wx
1837// use the named constants only, or bitwise combinations thereof
1838enum wxKeyCategoryFlags
1839{
1840 // arrow keys, on and off numeric keypads
1841 WXK_CATEGORY_ARROW = 1,
1842
1843 // page up and page down keys, on and off numeric keypads
1844 WXK_CATEGORY_PAGING = 2,
1845
1846 // home and end keys, on and off numeric keypads
1847 WXK_CATEGORY_JUMP = 4,
1848
1849 // tab key, on and off numeric keypads
1850 WXK_CATEGORY_TAB = 8,
1851
1852 // backspace and delete keys, on and off numeric keypads
1853 WXK_CATEGORY_CUT = 16,
1854
1855 // all keys usually used for navigation
1856 WXK_CATEGORY_NAVIGATION = WXK_CATEGORY_ARROW |
1857 WXK_CATEGORY_PAGING |
1858 WXK_CATEGORY_JUMP
1859};
1860
1861class WXDLLIMPEXP_CORE wxKeyEvent : public wxEvent,
1862 public wxKeyboardState
1863{
1864public:
1865 wxKeyEvent(wxEventType keyType = wxEVT_NULL);
1866
1867 // Normal copy ctor and a ctor creating a new event for the same key as the
1868 // given one but a different event type (this is used in implementation
1869 // code only, do not use outside of the library).
1870 wxKeyEvent(const wxKeyEvent& evt);
1871 wxKeyEvent(wxEventType eventType, const wxKeyEvent& evt);
1872
1873 // get the key code: an ASCII7 char or an element of wxKeyCode enum
1874 int GetKeyCode() const { return (int)m_keyCode; }
1875
1876 // returns true iff this event's key code is of a certain type
1877 bool IsKeyInCategory(int category) const;
1878
1879#if wxUSE_UNICODE
1880 // get the Unicode character corresponding to this key
1881 wxChar GetUnicodeKey() const { return m_uniChar; }
1882#endif // wxUSE_UNICODE
1883
1884 // get the raw key code (platform-dependent)
1885 wxUint32 GetRawKeyCode() const { return m_rawCode; }
1886
1887 // get the raw key flags (platform-dependent)
1888 wxUint32 GetRawKeyFlags() const { return m_rawFlags; }
1889
1890 // Find the position of the event
1891 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
1892 {
1893 if (xpos)
1894 *xpos = GetX();
1895 if (ypos)
1896 *ypos = GetY();
1897 }
1898
1899 // This version if provided only for backwards compatiblity, don't use.
1900 void GetPosition(long *xpos, long *ypos) const
1901 {
1902 if (xpos)
1903 *xpos = GetX();
1904 if (ypos)
1905 *ypos = GetY();
1906 }
1907
1908 wxPoint GetPosition() const
1909 { return wxPoint(GetX(), GetY()); }
1910
1911 // Get X position
1912 wxCoord GetX() const;
1913
1914 // Get Y position
1915 wxCoord GetY() const;
1916
1917 // Can be called from wxEVT_CHAR_HOOK handler to allow generation of normal
1918 // key events even though the event had been handled (by default they would
1919 // not be generated in this case).
1920 void DoAllowNextEvent() { m_allowNext = true; }
1921
1922 // Return the value of the "allow next" flag, for internal use only.
1923 bool IsNextEventAllowed() const { return m_allowNext; }
1924
1925
1926 virtual wxEvent *Clone() const { return new wxKeyEvent(*this); }
1927 virtual wxEventCategory GetEventCategory() const { return wxEVT_CATEGORY_USER_INPUT; }
1928
1929 // we do need to copy wxKeyEvent sometimes (in wxTreeCtrl code, for
1930 // example)
1931 wxKeyEvent& operator=(const wxKeyEvent& evt)
1932 {
1933 if ( &evt != this )
1934 {
1935 wxEvent::operator=(evt);
1936
1937 // Borland C++ 5.82 doesn't compile an explicit call to an
1938 // implicitly defined operator=() so need to do it this way:
1939 *static_cast<wxKeyboardState *>(this) = evt;
1940
1941 DoAssignMembers(evt);
1942 }
1943 return *this;
1944 }
1945
1946public:
1947 // Do not use these fields directly, they are initialized on demand, so
1948 // call GetX() and GetY() or GetPosition() instead.
1949 wxCoord m_x, m_y;
1950
1951 long m_keyCode;
1952
1953#if wxUSE_UNICODE
1954 // This contains the full Unicode character
1955 // in a character events in Unicode mode
1956 wxChar m_uniChar;
1957#endif
1958
1959 // these fields contain the platform-specific information about
1960 // key that was pressed
1961 wxUint32 m_rawCode;
1962 wxUint32 m_rawFlags;
1963
1964private:
1965 // Set the event to propagate if necessary, i.e. if it's of wxEVT_CHAR_HOOK
1966 // type. This is used by all ctors.
1967 void InitPropagation()
1968 {
1969 if ( m_eventType == wxEVT_CHAR_HOOK )
1970 m_propagationLevel = wxEVENT_PROPAGATE_MAX;
1971
1972 m_allowNext = false;
1973 }
1974
1975 // Copy only the event data present in this class, this is used by
1976 // AssignKeyData() and copy ctor.
1977 void DoAssignMembers(const wxKeyEvent& evt)
1978 {
1979 m_x = evt.m_x;
1980 m_y = evt.m_y;
1981 m_hasPosition = evt.m_hasPosition;
1982
1983 m_keyCode = evt.m_keyCode;
1984
1985 m_rawCode = evt.m_rawCode;
1986 m_rawFlags = evt.m_rawFlags;
1987#if wxUSE_UNICODE
1988 m_uniChar = evt.m_uniChar;
1989#endif
1990 }
1991
1992 // Initialize m_x and m_y using the current mouse cursor position if
1993 // necessary.
1994 void InitPositionIfNecessary() const;
1995
1996 // If this flag is true, the normal key events should still be generated
1997 // even if wxEVT_CHAR_HOOK had been handled. By default it is false as
1998 // handling wxEVT_CHAR_HOOK suppresses all the subsequent events.
1999 bool m_allowNext;
2000
2001 // If true, m_x and m_y were already initialized. If false, try to get them
2002 // when they're requested.
2003 bool m_hasPosition;
2004
2005 DECLARE_DYNAMIC_CLASS(wxKeyEvent)
2006};
2007
2008// Size event class
2009/*
2010 wxEVT_SIZE
2011 */
2012
2013class WXDLLIMPEXP_CORE wxSizeEvent : public wxEvent
2014{
2015public:
2016 wxSizeEvent() : wxEvent(0, wxEVT_SIZE)
2017 { }
2018 wxSizeEvent(const wxSize& sz, int winid = 0)
2019 : wxEvent(winid, wxEVT_SIZE),
2020 m_size(sz)
2021 { }
2022 wxSizeEvent(const wxSizeEvent& event)
2023 : wxEvent(event),
2024 m_size(event.m_size), m_rect(event.m_rect)
2025 { }
2026 wxSizeEvent(const wxRect& rect, int id = 0)
2027 : m_size(rect.GetSize()), m_rect(rect)
2028 { m_eventType = wxEVT_SIZING; m_id = id; }
2029
2030 wxSize GetSize() const { return m_size; }
2031 void SetSize(wxSize size) { m_size = size; }
2032 wxRect GetRect() const { return m_rect; }
2033 void SetRect(const wxRect& rect) { m_rect = rect; }
2034
2035 virtual wxEvent *Clone() const { return new wxSizeEvent(*this); }
2036
2037public:
2038 // For internal usage only. Will be converted to protected members.
2039 wxSize m_size;
2040 wxRect m_rect; // Used for wxEVT_SIZING
2041
2042private:
2043 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSizeEvent)
2044};
2045
2046// Move event class
2047
2048/*
2049 wxEVT_MOVE
2050 */
2051
2052class WXDLLIMPEXP_CORE wxMoveEvent : public wxEvent
2053{
2054public:
2055 wxMoveEvent()
2056 : wxEvent(0, wxEVT_MOVE)
2057 { }
2058 wxMoveEvent(const wxPoint& pos, int winid = 0)
2059 : wxEvent(winid, wxEVT_MOVE),
2060 m_pos(pos)
2061 { }
2062 wxMoveEvent(const wxMoveEvent& event)
2063 : wxEvent(event),
2064 m_pos(event.m_pos)
2065 { }
2066 wxMoveEvent(const wxRect& rect, int id = 0)
2067 : m_pos(rect.GetPosition()), m_rect(rect)
2068 { m_eventType = wxEVT_MOVING; m_id = id; }
2069
2070 wxPoint GetPosition() const { return m_pos; }
2071 void SetPosition(const wxPoint& pos) { m_pos = pos; }
2072 wxRect GetRect() const { return m_rect; }
2073 void SetRect(const wxRect& rect) { m_rect = rect; }
2074
2075 virtual wxEvent *Clone() const { return new wxMoveEvent(*this); }
2076
2077protected:
2078 wxPoint m_pos;
2079 wxRect m_rect;
2080
2081private:
2082 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMoveEvent)
2083};
2084
2085// Paint event class
2086/*
2087 wxEVT_PAINT
2088 wxEVT_NC_PAINT
2089 */
2090
2091#if wxDEBUG_LEVEL && (defined(__WXMSW__) || defined(__WXPM__))
2092 #define wxHAS_PAINT_DEBUG
2093
2094 // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined
2095 extern WXDLLIMPEXP_CORE int g_isPainting;
2096#endif // debug
2097
2098class WXDLLIMPEXP_CORE wxPaintEvent : public wxEvent
2099{
2100public:
2101 wxPaintEvent(int Id = 0)
2102 : wxEvent(Id, wxEVT_PAINT)
2103 {
2104#ifdef wxHAS_PAINT_DEBUG
2105 // set the internal flag for the duration of redrawing
2106 g_isPainting++;
2107#endif // debug
2108 }
2109
2110 // default copy ctor and dtor are normally fine, we only need them to keep
2111 // g_isPainting updated in debug build
2112#ifdef wxHAS_PAINT_DEBUG
2113 wxPaintEvent(const wxPaintEvent& event)
2114 : wxEvent(event)
2115 {
2116 g_isPainting++;
2117 }
2118
2119 virtual ~wxPaintEvent()
2120 {
2121 g_isPainting--;
2122 }
2123#endif // debug
2124
2125 virtual wxEvent *Clone() const { return new wxPaintEvent(*this); }
2126
2127private:
2128 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaintEvent)
2129};
2130
2131class WXDLLIMPEXP_CORE wxNcPaintEvent : public wxEvent
2132{
2133public:
2134 wxNcPaintEvent(int winid = 0)
2135 : wxEvent(winid, wxEVT_NC_PAINT)
2136 { }
2137
2138 virtual wxEvent *Clone() const { return new wxNcPaintEvent(*this); }
2139
2140private:
2141 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNcPaintEvent)
2142};
2143
2144// Erase background event class
2145/*
2146 wxEVT_ERASE_BACKGROUND
2147 */
2148
2149class WXDLLIMPEXP_CORE wxEraseEvent : public wxEvent
2150{
2151public:
2152 wxEraseEvent(int Id = 0, wxDC *dc = NULL)
2153 : wxEvent(Id, wxEVT_ERASE_BACKGROUND),
2154 m_dc(dc)
2155 { }
2156
2157 wxEraseEvent(const wxEraseEvent& event)
2158 : wxEvent(event),
2159 m_dc(event.m_dc)
2160 { }
2161
2162 wxDC *GetDC() const { return m_dc; }
2163
2164 virtual wxEvent *Clone() const { return new wxEraseEvent(*this); }
2165
2166protected:
2167 wxDC *m_dc;
2168
2169private:
2170 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxEraseEvent)
2171};
2172
2173// Focus event class
2174/*
2175 wxEVT_SET_FOCUS
2176 wxEVT_KILL_FOCUS
2177 */
2178
2179class WXDLLIMPEXP_CORE wxFocusEvent : public wxEvent
2180{
2181public:
2182 wxFocusEvent(wxEventType type = wxEVT_NULL, int winid = 0)
2183 : wxEvent(winid, type)
2184 { m_win = NULL; }
2185
2186 wxFocusEvent(const wxFocusEvent& event)
2187 : wxEvent(event)
2188 { m_win = event.m_win; }
2189
2190 // The window associated with this event is the window which had focus
2191 // before for SET event and the window which will have focus for the KILL
2192 // one. NB: it may be NULL in both cases!
2193 wxWindow *GetWindow() const { return m_win; }
2194 void SetWindow(wxWindow *win) { m_win = win; }
2195
2196 virtual wxEvent *Clone() const { return new wxFocusEvent(*this); }
2197
2198private:
2199 wxWindow *m_win;
2200
2201private:
2202 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFocusEvent)
2203};
2204
2205// wxChildFocusEvent notifies the parent that a child has got the focus: unlike
2206// wxFocusEvent it is propagated upwards the window chain
2207class WXDLLIMPEXP_CORE wxChildFocusEvent : public wxCommandEvent
2208{
2209public:
2210 wxChildFocusEvent(wxWindow *win = NULL);
2211
2212 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
2213
2214 virtual wxEvent *Clone() const { return new wxChildFocusEvent(*this); }
2215
2216private:
2217 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxChildFocusEvent)
2218};
2219
2220// Activate event class
2221/*
2222 wxEVT_ACTIVATE
2223 wxEVT_ACTIVATE_APP
2224 wxEVT_HIBERNATE
2225 */
2226
2227class WXDLLIMPEXP_CORE wxActivateEvent : public wxEvent
2228{
2229public:
2230 wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = true, int Id = 0)
2231 : wxEvent(Id, type)
2232 { m_active = active; }
2233 wxActivateEvent(const wxActivateEvent& event)
2234 : wxEvent(event)
2235 { m_active = event.m_active; }
2236
2237 bool GetActive() const { return m_active; }
2238
2239 virtual wxEvent *Clone() const { return new wxActivateEvent(*this); }
2240
2241private:
2242 bool m_active;
2243
2244private:
2245 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxActivateEvent)
2246};
2247
2248// InitDialog event class
2249/*
2250 wxEVT_INIT_DIALOG
2251 */
2252
2253class WXDLLIMPEXP_CORE wxInitDialogEvent : public wxEvent
2254{
2255public:
2256 wxInitDialogEvent(int Id = 0)
2257 : wxEvent(Id, wxEVT_INIT_DIALOG)
2258 { }
2259
2260 virtual wxEvent *Clone() const { return new wxInitDialogEvent(*this); }
2261
2262private:
2263 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxInitDialogEvent)
2264};
2265
2266// Miscellaneous menu event class
2267/*
2268 wxEVT_MENU_OPEN,
2269 wxEVT_MENU_CLOSE,
2270 wxEVT_MENU_HIGHLIGHT,
2271*/
2272
2273class WXDLLIMPEXP_CORE wxMenuEvent : public wxEvent
2274{
2275public:
2276 wxMenuEvent(wxEventType type = wxEVT_NULL, int winid = 0, wxMenu* menu = NULL)
2277 : wxEvent(winid, type)
2278 { m_menuId = winid; m_menu = menu; }
2279 wxMenuEvent(const wxMenuEvent& event)
2280 : wxEvent(event)
2281 { m_menuId = event.m_menuId; m_menu = event.m_menu; }
2282
2283 // only for wxEVT_MENU_HIGHLIGHT
2284 int GetMenuId() const { return m_menuId; }
2285
2286 // only for wxEVT_MENU_OPEN/CLOSE
2287 bool IsPopup() const { return m_menuId == wxID_ANY; }
2288
2289 // only for wxEVT_MENU_OPEN/CLOSE
2290 wxMenu* GetMenu() const { return m_menu; }
2291
2292 virtual wxEvent *Clone() const { return new wxMenuEvent(*this); }
2293
2294private:
2295 int m_menuId;
2296 wxMenu* m_menu;
2297
2298 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMenuEvent)
2299};
2300
2301// Window close or session close event class
2302/*
2303 wxEVT_CLOSE_WINDOW,
2304 wxEVT_END_SESSION,
2305 wxEVT_QUERY_END_SESSION
2306 */
2307
2308class WXDLLIMPEXP_CORE wxCloseEvent : public wxEvent
2309{
2310public:
2311 wxCloseEvent(wxEventType type = wxEVT_NULL, int winid = 0)
2312 : wxEvent(winid, type),
2313 m_loggingOff(true),
2314 m_veto(false), // should be false by default
2315 m_canVeto(true) {}
2316
2317 wxCloseEvent(const wxCloseEvent& event)
2318 : wxEvent(event),
2319 m_loggingOff(event.m_loggingOff),
2320 m_veto(event.m_veto),
2321 m_canVeto(event.m_canVeto) {}
2322
2323 void SetLoggingOff(bool logOff) { m_loggingOff = logOff; }
2324 bool GetLoggingOff() const
2325 {
2326 // m_loggingOff flag is only used by wxEVT_[QUERY_]END_SESSION, it
2327 // doesn't make sense for wxEVT_CLOSE_WINDOW
2328 wxASSERT_MSG( m_eventType != wxEVT_CLOSE_WINDOW,
2329 wxT("this flag is for end session events only") );
2330
2331 return m_loggingOff;
2332 }
2333
2334 void Veto(bool veto = true)
2335 {
2336 // GetVeto() will return false anyhow...
2337 wxCHECK_RET( m_canVeto,
2338 wxT("call to Veto() ignored (can't veto this event)") );
2339
2340 m_veto = veto;
2341 }
2342 void SetCanVeto(bool canVeto) { m_canVeto = canVeto; }
2343 bool CanVeto() const { return m_canVeto; }
2344 bool GetVeto() const { return m_canVeto && m_veto; }
2345
2346 virtual wxEvent *Clone() const { return new wxCloseEvent(*this); }
2347
2348protected:
2349 bool m_loggingOff,
2350 m_veto,
2351 m_canVeto;
2352
2353private:
2354 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCloseEvent)
2355};
2356
2357/*
2358 wxEVT_SHOW
2359 */
2360
2361class WXDLLIMPEXP_CORE wxShowEvent : public wxEvent
2362{
2363public:
2364 wxShowEvent(int winid = 0, bool show = false)
2365 : wxEvent(winid, wxEVT_SHOW)
2366 { m_show = show; }
2367 wxShowEvent(const wxShowEvent& event)
2368 : wxEvent(event)
2369 { m_show = event.m_show; }
2370
2371 void SetShow(bool show) { m_show = show; }
2372
2373 // return true if the window was shown, false if hidden
2374 bool IsShown() const { return m_show; }
2375
2376#if WXWIN_COMPATIBILITY_2_8
2377 wxDEPRECATED( bool GetShow() const { return IsShown(); } )
2378#endif
2379
2380 virtual wxEvent *Clone() const { return new wxShowEvent(*this); }
2381
2382protected:
2383 bool m_show;
2384
2385private:
2386 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxShowEvent)
2387};
2388
2389/*
2390 wxEVT_ICONIZE
2391 */
2392
2393class WXDLLIMPEXP_CORE wxIconizeEvent : public wxEvent
2394{
2395public:
2396 wxIconizeEvent(int winid = 0, bool iconized = true)
2397 : wxEvent(winid, wxEVT_ICONIZE)
2398 { m_iconized = iconized; }
2399 wxIconizeEvent(const wxIconizeEvent& event)
2400 : wxEvent(event)
2401 { m_iconized = event.m_iconized; }
2402
2403#if WXWIN_COMPATIBILITY_2_8
2404 wxDEPRECATED( bool Iconized() const { return IsIconized(); } )
2405#endif
2406 // return true if the frame was iconized, false if restored
2407 bool IsIconized() const { return m_iconized; }
2408
2409 virtual wxEvent *Clone() const { return new wxIconizeEvent(*this); }
2410
2411protected:
2412 bool m_iconized;
2413
2414private:
2415 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIconizeEvent)
2416};
2417/*
2418 wxEVT_MAXIMIZE
2419 */
2420
2421class WXDLLIMPEXP_CORE wxMaximizeEvent : public wxEvent
2422{
2423public:
2424 wxMaximizeEvent(int winid = 0)
2425 : wxEvent(winid, wxEVT_MAXIMIZE)
2426 { }
2427
2428 virtual wxEvent *Clone() const { return new wxMaximizeEvent(*this); }
2429
2430private:
2431 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMaximizeEvent)
2432};
2433
2434// Joystick event class
2435/*
2436 wxEVT_JOY_BUTTON_DOWN,
2437 wxEVT_JOY_BUTTON_UP,
2438 wxEVT_JOY_MOVE,
2439 wxEVT_JOY_ZMOVE
2440*/
2441
2442// Which joystick? Same as Windows ids so no conversion necessary.
2443enum
2444{
2445 wxJOYSTICK1,
2446 wxJOYSTICK2
2447};
2448
2449// Which button is down?
2450enum
2451{
2452 wxJOY_BUTTON_ANY = -1,
2453 wxJOY_BUTTON1 = 1,
2454 wxJOY_BUTTON2 = 2,
2455 wxJOY_BUTTON3 = 4,
2456 wxJOY_BUTTON4 = 8
2457};
2458
2459class WXDLLIMPEXP_CORE wxJoystickEvent : public wxEvent
2460{
2461protected:
2462 wxPoint m_pos;
2463 int m_zPosition;
2464 int m_buttonChange; // Which button changed?
2465 int m_buttonState; // Which buttons are down?
2466 int m_joyStick; // Which joystick?
2467
2468public:
2469 wxJoystickEvent(wxEventType type = wxEVT_NULL,
2470 int state = 0,
2471 int joystick = wxJOYSTICK1,
2472 int change = 0)
2473 : wxEvent(0, type),
2474 m_pos(),
2475 m_zPosition(0),
2476 m_buttonChange(change),
2477 m_buttonState(state),
2478 m_joyStick(joystick)
2479 {
2480 }
2481 wxJoystickEvent(const wxJoystickEvent& event)
2482 : wxEvent(event),
2483 m_pos(event.m_pos),
2484 m_zPosition(event.m_zPosition),
2485 m_buttonChange(event.m_buttonChange),
2486 m_buttonState(event.m_buttonState),
2487 m_joyStick(event.m_joyStick)
2488 { }
2489
2490 wxPoint GetPosition() const { return m_pos; }
2491 int GetZPosition() const { return m_zPosition; }
2492 int GetButtonState() const { return m_buttonState; }
2493 int GetButtonChange() const { return m_buttonChange; }
2494 int GetJoystick() const { return m_joyStick; }
2495
2496 void SetJoystick(int stick) { m_joyStick = stick; }
2497 void SetButtonState(int state) { m_buttonState = state; }
2498 void SetButtonChange(int change) { m_buttonChange = change; }
2499 void SetPosition(const wxPoint& pos) { m_pos = pos; }
2500 void SetZPosition(int zPos) { m_zPosition = zPos; }
2501
2502 // Was it a button event? (*doesn't* mean: is any button *down*?)
2503 bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) ||
2504 (GetEventType() == wxEVT_JOY_BUTTON_UP)); }
2505
2506 // Was it a move event?
2507 bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE); }
2508
2509 // Was it a zmove event?
2510 bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE); }
2511
2512 // Was it a down event from button 1, 2, 3, 4 or any?
2513 bool ButtonDown(int but = wxJOY_BUTTON_ANY) const
2514 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) &&
2515 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
2516
2517 // Was it a up event from button 1, 2, 3 or any?
2518 bool ButtonUp(int but = wxJOY_BUTTON_ANY) const
2519 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) &&
2520 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
2521
2522 // Was the given button 1,2,3,4 or any in Down state?
2523 bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const
2524 { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) ||
2525 ((m_buttonState & but) == but)); }
2526
2527 virtual wxEvent *Clone() const { return new wxJoystickEvent(*this); }
2528
2529private:
2530 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxJoystickEvent)
2531};
2532
2533// Drop files event class
2534/*
2535 wxEVT_DROP_FILES
2536 */
2537
2538class WXDLLIMPEXP_CORE wxDropFilesEvent : public wxEvent
2539{
2540public:
2541 int m_noFiles;
2542 wxPoint m_pos;
2543 wxString* m_files;
2544
2545 wxDropFilesEvent(wxEventType type = wxEVT_NULL,
2546 int noFiles = 0,
2547 wxString *files = NULL)
2548 : wxEvent(0, type),
2549 m_noFiles(noFiles),
2550 m_pos(),
2551 m_files(files)
2552 { }
2553
2554 // we need a copy ctor to avoid deleting m_files pointer twice
2555 wxDropFilesEvent(const wxDropFilesEvent& other)
2556 : wxEvent(other),
2557 m_noFiles(other.m_noFiles),
2558 m_pos(other.m_pos),
2559 m_files(NULL)
2560 {
2561 m_files = new wxString[m_noFiles];
2562 for ( int n = 0; n < m_noFiles; n++ )
2563 {
2564 m_files[n] = other.m_files[n];
2565 }
2566 }
2567
2568 virtual ~wxDropFilesEvent()
2569 {
2570 delete [] m_files;
2571 }
2572
2573 wxPoint GetPosition() const { return m_pos; }
2574 int GetNumberOfFiles() const { return m_noFiles; }
2575 wxString *GetFiles() const { return m_files; }
2576
2577 virtual wxEvent *Clone() const { return new wxDropFilesEvent(*this); }
2578
2579private:
2580 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDropFilesEvent)
2581};
2582
2583// Update UI event
2584/*
2585 wxEVT_UPDATE_UI
2586 */
2587
2588// Whether to always send update events to windows, or
2589// to only send update events to those with the
2590// wxWS_EX_PROCESS_UI_UPDATES style.
2591
2592enum wxUpdateUIMode
2593{
2594 // Send UI update events to all windows
2595 wxUPDATE_UI_PROCESS_ALL,
2596
2597 // Send UI update events to windows that have
2598 // the wxWS_EX_PROCESS_UI_UPDATES flag specified
2599 wxUPDATE_UI_PROCESS_SPECIFIED
2600};
2601
2602class WXDLLIMPEXP_CORE wxUpdateUIEvent : public wxCommandEvent
2603{
2604public:
2605 wxUpdateUIEvent(wxWindowID commandId = 0)
2606 : wxCommandEvent(wxEVT_UPDATE_UI, commandId)
2607 {
2608 m_checked =
2609 m_enabled =
2610 m_shown =
2611 m_setEnabled =
2612 m_setShown =
2613 m_setText =
2614 m_setChecked = false;
2615 }
2616 wxUpdateUIEvent(const wxUpdateUIEvent& event)
2617 : wxCommandEvent(event),
2618 m_checked(event.m_checked),
2619 m_enabled(event.m_enabled),
2620 m_shown(event.m_shown),
2621 m_setEnabled(event.m_setEnabled),
2622 m_setShown(event.m_setShown),
2623 m_setText(event.m_setText),
2624 m_setChecked(event.m_setChecked),
2625 m_text(event.m_text)
2626 { }
2627
2628 bool GetChecked() const { return m_checked; }
2629 bool GetEnabled() const { return m_enabled; }
2630 bool GetShown() const { return m_shown; }
2631 wxString GetText() const { return m_text; }
2632 bool GetSetText() const { return m_setText; }
2633 bool GetSetChecked() const { return m_setChecked; }
2634 bool GetSetEnabled() const { return m_setEnabled; }
2635 bool GetSetShown() const { return m_setShown; }
2636
2637 void Check(bool check) { m_checked = check; m_setChecked = true; }
2638 void Enable(bool enable) { m_enabled = enable; m_setEnabled = true; }
2639 void Show(bool show) { m_shown = show; m_setShown = true; }
2640 void SetText(const wxString& text) { m_text = text; m_setText = true; }
2641
2642 // Sets the interval between updates in milliseconds.
2643 // Set to -1 to disable updates, or to 0 to update as frequently as possible.
2644 static void SetUpdateInterval(long updateInterval) { sm_updateInterval = updateInterval; }
2645
2646 // Returns the current interval between updates in milliseconds
2647 static long GetUpdateInterval() { return sm_updateInterval; }
2648
2649 // Can we update this window?
2650 static bool CanUpdate(wxWindowBase *win);
2651
2652 // Reset the update time to provide a delay until the next
2653 // time we should update
2654 static void ResetUpdateTime();
2655
2656 // Specify how wxWidgets will send update events: to
2657 // all windows, or only to those which specify that they
2658 // will process the events.
2659 static void SetMode(wxUpdateUIMode mode) { sm_updateMode = mode; }
2660
2661 // Returns the UI update mode
2662 static wxUpdateUIMode GetMode() { return sm_updateMode; }
2663
2664 virtual wxEvent *Clone() const { return new wxUpdateUIEvent(*this); }
2665
2666protected:
2667 bool m_checked;
2668 bool m_enabled;
2669 bool m_shown;
2670 bool m_setEnabled;
2671 bool m_setShown;
2672 bool m_setText;
2673 bool m_setChecked;
2674 wxString m_text;
2675#if wxUSE_LONGLONG
2676 static wxLongLong sm_lastUpdate;
2677#endif
2678 static long sm_updateInterval;
2679 static wxUpdateUIMode sm_updateMode;
2680
2681private:
2682 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxUpdateUIEvent)
2683};
2684
2685/*
2686 wxEVT_SYS_COLOUR_CHANGED
2687 */
2688
2689// TODO: shouldn't all events record the window ID?
2690class WXDLLIMPEXP_CORE wxSysColourChangedEvent : public wxEvent
2691{
2692public:
2693 wxSysColourChangedEvent()
2694 : wxEvent(0, wxEVT_SYS_COLOUR_CHANGED)
2695 { }
2696
2697 virtual wxEvent *Clone() const { return new wxSysColourChangedEvent(*this); }
2698
2699private:
2700 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSysColourChangedEvent)
2701};
2702
2703/*
2704 wxEVT_MOUSE_CAPTURE_CHANGED
2705 The window losing the capture receives this message
2706 (even if it released the capture itself).
2707 */
2708
2709class WXDLLIMPEXP_CORE wxMouseCaptureChangedEvent : public wxEvent
2710{
2711public:
2712 wxMouseCaptureChangedEvent(wxWindowID winid = 0, wxWindow* gainedCapture = NULL)
2713 : wxEvent(winid, wxEVT_MOUSE_CAPTURE_CHANGED),
2714 m_gainedCapture(gainedCapture)
2715 { }
2716
2717 wxMouseCaptureChangedEvent(const wxMouseCaptureChangedEvent& event)
2718 : wxEvent(event),
2719 m_gainedCapture(event.m_gainedCapture)
2720 { }
2721
2722 virtual wxEvent *Clone() const { return new wxMouseCaptureChangedEvent(*this); }
2723
2724 wxWindow* GetCapturedWindow() const { return m_gainedCapture; }
2725
2726private:
2727 wxWindow* m_gainedCapture;
2728
2729 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureChangedEvent)
2730};
2731
2732/*
2733 wxEVT_MOUSE_CAPTURE_LOST
2734 The window losing the capture receives this message, unless it released it
2735 it itself or unless wxWindow::CaptureMouse was called on another window
2736 (and so capture will be restored when the new capturer releases it).
2737 */
2738
2739class WXDLLIMPEXP_CORE wxMouseCaptureLostEvent : public wxEvent
2740{
2741public:
2742 wxMouseCaptureLostEvent(wxWindowID winid = 0)
2743 : wxEvent(winid, wxEVT_MOUSE_CAPTURE_LOST)
2744 {}
2745
2746 wxMouseCaptureLostEvent(const wxMouseCaptureLostEvent& event)
2747 : wxEvent(event)
2748 {}
2749
2750 virtual wxEvent *Clone() const { return new wxMouseCaptureLostEvent(*this); }
2751
2752 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureLostEvent)
2753};
2754
2755/*
2756 wxEVT_DISPLAY_CHANGED
2757 */
2758class WXDLLIMPEXP_CORE wxDisplayChangedEvent : public wxEvent
2759{
2760private:
2761 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDisplayChangedEvent)
2762
2763public:
2764 wxDisplayChangedEvent()
2765 : wxEvent(0, wxEVT_DISPLAY_CHANGED)
2766 { }
2767
2768 virtual wxEvent *Clone() const { return new wxDisplayChangedEvent(*this); }
2769};
2770
2771/*
2772 wxEVT_PALETTE_CHANGED
2773 */
2774
2775class WXDLLIMPEXP_CORE wxPaletteChangedEvent : public wxEvent
2776{
2777public:
2778 wxPaletteChangedEvent(wxWindowID winid = 0)
2779 : wxEvent(winid, wxEVT_PALETTE_CHANGED),
2780 m_changedWindow(NULL)
2781 { }
2782
2783 wxPaletteChangedEvent(const wxPaletteChangedEvent& event)
2784 : wxEvent(event),
2785 m_changedWindow(event.m_changedWindow)
2786 { }
2787
2788 void SetChangedWindow(wxWindow* win) { m_changedWindow = win; }
2789 wxWindow* GetChangedWindow() const { return m_changedWindow; }
2790
2791 virtual wxEvent *Clone() const { return new wxPaletteChangedEvent(*this); }
2792
2793protected:
2794 wxWindow* m_changedWindow;
2795
2796private:
2797 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaletteChangedEvent)
2798};
2799
2800/*
2801 wxEVT_QUERY_NEW_PALETTE
2802 Indicates the window is getting keyboard focus and should re-do its palette.
2803 */
2804
2805class WXDLLIMPEXP_CORE wxQueryNewPaletteEvent : public wxEvent
2806{
2807public:
2808 wxQueryNewPaletteEvent(wxWindowID winid = 0)
2809 : wxEvent(winid, wxEVT_QUERY_NEW_PALETTE),
2810 m_paletteRealized(false)
2811 { }
2812 wxQueryNewPaletteEvent(const wxQueryNewPaletteEvent& event)
2813 : wxEvent(event),
2814 m_paletteRealized(event.m_paletteRealized)
2815 { }
2816
2817 // App sets this if it changes the palette.
2818 void SetPaletteRealized(bool realized) { m_paletteRealized = realized; }
2819 bool GetPaletteRealized() const { return m_paletteRealized; }
2820
2821 virtual wxEvent *Clone() const { return new wxQueryNewPaletteEvent(*this); }
2822
2823protected:
2824 bool m_paletteRealized;
2825
2826private:
2827 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxQueryNewPaletteEvent)
2828};
2829
2830/*
2831 Event generated by dialog navigation keys
2832 wxEVT_NAVIGATION_KEY
2833 */
2834// NB: don't derive from command event to avoid being propagated to the parent
2835class WXDLLIMPEXP_CORE wxNavigationKeyEvent : public wxEvent
2836{
2837public:
2838 wxNavigationKeyEvent()
2839 : wxEvent(0, wxEVT_NAVIGATION_KEY),
2840 m_flags(IsForward | FromTab), // defaults are for TAB
2841 m_focus(NULL)
2842 {
2843 m_propagationLevel = wxEVENT_PROPAGATE_NONE;
2844 }
2845
2846 wxNavigationKeyEvent(const wxNavigationKeyEvent& event)
2847 : wxEvent(event),
2848 m_flags(event.m_flags),
2849 m_focus(event.m_focus)
2850 { }
2851
2852 // direction: forward (true) or backward (false)
2853 bool GetDirection() const
2854 { return (m_flags & IsForward) != 0; }
2855 void SetDirection(bool bForward)
2856 { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; }
2857
2858 // it may be a window change event (MDI, notebook pages...) or a control
2859 // change event
2860 bool IsWindowChange() const
2861 { return (m_flags & WinChange) != 0; }
2862 void SetWindowChange(bool bIs)
2863 { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; }
2864
2865 // Set to true under MSW if the event was generated using the tab key.
2866 // This is required for proper navogation over radio buttons
2867 bool IsFromTab() const
2868 { return (m_flags & FromTab) != 0; }
2869 void SetFromTab(bool bIs)
2870 { if ( bIs ) m_flags |= FromTab; else m_flags &= ~FromTab; }
2871
2872 // the child which has the focus currently (may be NULL - use
2873 // wxWindow::FindFocus then)
2874 wxWindow* GetCurrentFocus() const { return m_focus; }
2875 void SetCurrentFocus(wxWindow *win) { m_focus = win; }
2876
2877 // Set flags
2878 void SetFlags(long flags) { m_flags = flags; }
2879
2880 virtual wxEvent *Clone() const { return new wxNavigationKeyEvent(*this); }
2881
2882 enum wxNavigationKeyEventFlags
2883 {
2884 IsBackward = 0x0000,
2885 IsForward = 0x0001,
2886 WinChange = 0x0002,
2887 FromTab = 0x0004
2888 };
2889
2890 long m_flags;
2891 wxWindow *m_focus;
2892
2893private:
2894 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNavigationKeyEvent)
2895};
2896
2897// Window creation/destruction events: the first is sent as soon as window is
2898// created (i.e. the underlying GUI object exists), but when the C++ object is
2899// fully initialized (so virtual functions may be called). The second,
2900// wxEVT_DESTROY, is sent right before the window is destroyed - again, it's
2901// still safe to call virtual functions at this moment
2902/*
2903 wxEVT_CREATE
2904 wxEVT_DESTROY
2905 */
2906
2907class WXDLLIMPEXP_CORE wxWindowCreateEvent : public wxCommandEvent
2908{
2909public:
2910 wxWindowCreateEvent(wxWindow *win = NULL);
2911
2912 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
2913
2914 virtual wxEvent *Clone() const { return new wxWindowCreateEvent(*this); }
2915
2916private:
2917 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowCreateEvent)
2918};
2919
2920class WXDLLIMPEXP_CORE wxWindowDestroyEvent : public wxCommandEvent
2921{
2922public:
2923 wxWindowDestroyEvent(wxWindow *win = NULL);
2924
2925 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
2926
2927 virtual wxEvent *Clone() const { return new wxWindowDestroyEvent(*this); }
2928
2929private:
2930 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowDestroyEvent)
2931};
2932
2933// A help event is sent when the user clicks on a window in context-help mode.
2934/*
2935 wxEVT_HELP
2936 wxEVT_DETAILED_HELP
2937*/
2938
2939class WXDLLIMPEXP_CORE wxHelpEvent : public wxCommandEvent
2940{
2941public:
2942 // how was this help event generated?
2943 enum Origin
2944 {
2945 Origin_Unknown, // unrecognized event source
2946 Origin_Keyboard, // event generated from F1 key press
2947 Origin_HelpButton // event from [?] button on the title bar (Windows)
2948 };
2949
2950 wxHelpEvent(wxEventType type = wxEVT_NULL,
2951 wxWindowID winid = 0,
2952 const wxPoint& pt = wxDefaultPosition,
2953 Origin origin = Origin_Unknown)
2954 : wxCommandEvent(type, winid),
2955 m_pos(pt),
2956 m_origin(GuessOrigin(origin))
2957 { }
2958 wxHelpEvent(const wxHelpEvent& event)
2959 : wxCommandEvent(event),
2960 m_pos(event.m_pos),
2961 m_target(event.m_target),
2962 m_link(event.m_link),
2963 m_origin(event.m_origin)
2964 { }
2965
2966 // Position of event (in screen coordinates)
2967 const wxPoint& GetPosition() const { return m_pos; }
2968 void SetPosition(const wxPoint& pos) { m_pos = pos; }
2969
2970 // Optional link to further help
2971 const wxString& GetLink() const { return m_link; }
2972 void SetLink(const wxString& link) { m_link = link; }
2973
2974 // Optional target to display help in. E.g. a window specification
2975 const wxString& GetTarget() const { return m_target; }
2976 void SetTarget(const wxString& target) { m_target = target; }
2977
2978 virtual wxEvent *Clone() const { return new wxHelpEvent(*this); }
2979
2980 // optional indication of the event source
2981 Origin GetOrigin() const { return m_origin; }
2982 void SetOrigin(Origin origin) { m_origin = origin; }
2983
2984protected:
2985 wxPoint m_pos;
2986 wxString m_target;
2987 wxString m_link;
2988 Origin m_origin;
2989
2990 // we can try to guess the event origin ourselves, even if none is
2991 // specified in the ctor
2992 static Origin GuessOrigin(Origin origin);
2993
2994private:
2995 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxHelpEvent)
2996};
2997
2998// A Clipboard Text event is sent when a window intercepts text copy/cut/paste
2999// message, i.e. the user has cut/copied/pasted data from/into a text control
3000// via ctrl-C/X/V, ctrl/shift-del/insert, a popup menu command, etc.
3001// NOTE : under windows these events are *NOT* generated automatically
3002// for a Rich Edit text control.
3003/*
3004wxEVT_TEXT_COPY
3005wxEVT_TEXT_CUT
3006wxEVT_TEXT_PASTE
3007*/
3008
3009class WXDLLIMPEXP_CORE wxClipboardTextEvent : public wxCommandEvent
3010{
3011public:
3012 wxClipboardTextEvent(wxEventType type = wxEVT_NULL,
3013 wxWindowID winid = 0)
3014 : wxCommandEvent(type, winid)
3015 { }
3016 wxClipboardTextEvent(const wxClipboardTextEvent& event)
3017 : wxCommandEvent(event)
3018 { }
3019
3020 virtual wxEvent *Clone() const { return new wxClipboardTextEvent(*this); }
3021
3022private:
3023 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxClipboardTextEvent)
3024};
3025
3026// A Context event is sent when the user right clicks on a window or
3027// presses Shift-F10
3028// NOTE : Under windows this is a repackaged WM_CONTETXMENU message
3029// Under other systems it may have to be generated from a right click event
3030/*
3031 wxEVT_CONTEXT_MENU
3032*/
3033
3034class WXDLLIMPEXP_CORE wxContextMenuEvent : public wxCommandEvent
3035{
3036public:
3037 wxContextMenuEvent(wxEventType type = wxEVT_NULL,
3038 wxWindowID winid = 0,
3039 const wxPoint& pt = wxDefaultPosition)
3040 : wxCommandEvent(type, winid),
3041 m_pos(pt)
3042 { }
3043 wxContextMenuEvent(const wxContextMenuEvent& event)
3044 : wxCommandEvent(event),
3045 m_pos(event.m_pos)
3046 { }
3047
3048 // Position of event (in screen coordinates)
3049 const wxPoint& GetPosition() const { return m_pos; }
3050 void SetPosition(const wxPoint& pos) { m_pos = pos; }
3051
3052 virtual wxEvent *Clone() const { return new wxContextMenuEvent(*this); }
3053
3054protected:
3055 wxPoint m_pos;
3056
3057private:
3058 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxContextMenuEvent)
3059};
3060
3061
3062/* TODO
3063 wxEVT_MOUSE_CAPTURE_CHANGED,
3064 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
3065// wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
3066 // wxEVT_FONT_CHANGED to all other windows (maybe).
3067 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
3068 wxEVT_MEASURE_ITEM,
3069 wxEVT_COMPARE_ITEM
3070*/
3071
3072#endif // wxUSE_GUI
3073
3074
3075// ============================================================================
3076// event handler and related classes
3077// ============================================================================
3078
3079
3080// struct containing the members common to static and dynamic event tables
3081// entries
3082struct WXDLLIMPEXP_BASE wxEventTableEntryBase
3083{
3084 wxEventTableEntryBase(int winid, int idLast,
3085 wxEventFunctor* fn, wxObject *data)
3086 : m_id(winid),
3087 m_lastId(idLast),
3088 m_fn(fn),
3089 m_callbackUserData(data)
3090 {
3091 wxASSERT_MSG( idLast == wxID_ANY || winid <= idLast,
3092 "invalid IDs range: lower bound > upper bound" );
3093 }
3094
3095 wxEventTableEntryBase( const wxEventTableEntryBase &entry )
3096 : m_id( entry.m_id ),
3097 m_lastId( entry.m_lastId ),
3098 m_fn( entry.m_fn ),
3099 m_callbackUserData( entry.m_callbackUserData )
3100 {
3101 // This is a 'hack' to ensure that only one instance tries to delete
3102 // the functor pointer. It is safe as long as the only place where the
3103 // copy constructor is being called is when the static event tables are
3104 // being initialized (a temporary instance is created and then this
3105 // constructor is called).
3106
3107 const_cast<wxEventTableEntryBase&>( entry ).m_fn = NULL;
3108 }
3109
3110 ~wxEventTableEntryBase()
3111 {
3112 delete m_fn;
3113 }
3114
3115 // the range of ids for this entry: if m_lastId == wxID_ANY, the range
3116 // consists only of m_id, otherwise it is m_id..m_lastId inclusive
3117 int m_id,
3118 m_lastId;
3119
3120 // function/method/functor to call
3121 wxEventFunctor* m_fn;
3122
3123 // arbitrary user data associated with the callback
3124 wxObject* m_callbackUserData;
3125
3126private:
3127 wxDECLARE_NO_ASSIGN_CLASS(wxEventTableEntryBase);
3128};
3129
3130// an entry from a static event table
3131struct WXDLLIMPEXP_BASE wxEventTableEntry : public wxEventTableEntryBase
3132{
3133 wxEventTableEntry(const int& evType, int winid, int idLast,
3134 wxEventFunctor* fn, wxObject *data)
3135 : wxEventTableEntryBase(winid, idLast, fn, data),
3136 m_eventType(evType)
3137 { }
3138
3139 // the reference to event type: this allows us to not care about the
3140 // (undefined) order in which the event table entries and the event types
3141 // are initialized: initially the value of this reference might be
3142 // invalid, but by the time it is used for the first time, all global
3143 // objects will have been initialized (including the event type constants)
3144 // and so it will have the correct value when it is needed
3145 const int& m_eventType;
3146
3147private:
3148 wxDECLARE_NO_ASSIGN_CLASS(wxEventTableEntry);
3149};
3150
3151// an entry used in dynamic event table managed by wxEvtHandler::Connect()
3152struct WXDLLIMPEXP_BASE wxDynamicEventTableEntry : public wxEventTableEntryBase
3153{
3154 wxDynamicEventTableEntry(int evType, int winid, int idLast,
3155 wxEventFunctor* fn, wxObject *data)
3156 : wxEventTableEntryBase(winid, idLast, fn, data),
3157 m_eventType(evType)
3158 { }
3159
3160 // not a reference here as we can't keep a reference to a temporary int
3161 // created to wrap the constant value typically passed to Connect() - nor
3162 // do we need it
3163 int m_eventType;
3164
3165private:
3166 wxDECLARE_NO_ASSIGN_CLASS(wxDynamicEventTableEntry);
3167};
3168
3169// ----------------------------------------------------------------------------
3170// wxEventTable: an array of event entries terminated with {0, 0, 0, 0, 0}
3171// ----------------------------------------------------------------------------
3172
3173struct WXDLLIMPEXP_BASE wxEventTable
3174{
3175 const wxEventTable *baseTable; // base event table (next in chain)
3176 const wxEventTableEntry *entries; // bottom of entry array
3177};
3178
3179// ----------------------------------------------------------------------------
3180// wxEventHashTable: a helper of wxEvtHandler to speed up wxEventTable lookups.
3181// ----------------------------------------------------------------------------
3182
3183WX_DEFINE_ARRAY_PTR(const wxEventTableEntry*, wxEventTableEntryPointerArray);
3184
3185class WXDLLIMPEXP_BASE wxEventHashTable
3186{
3187private:
3188 // Internal data structs
3189 struct EventTypeTable
3190 {
3191 wxEventType eventType;
3192 wxEventTableEntryPointerArray eventEntryTable;
3193 };
3194 typedef EventTypeTable* EventTypeTablePointer;
3195
3196public:
3197 // Constructor, needs the event table it needs to hash later on.
3198 // Note: hashing of the event table is not done in the constructor as it
3199 // can be that the event table is not yet full initialize, the hash
3200 // will gets initialized when handling the first event look-up request.
3201 wxEventHashTable(const wxEventTable &table);
3202 // Destructor.
3203 ~wxEventHashTable();
3204
3205 // Handle the given event, in other words search the event table hash
3206 // and call self->ProcessEvent() if a match was found.
3207 bool HandleEvent(wxEvent& event, wxEvtHandler *self);
3208
3209 // Clear table
3210 void Clear();
3211
3212#if wxUSE_MEMORY_TRACING
3213 // Clear all tables: only used to work around problems in memory tracing
3214 // code
3215 static void ClearAll();
3216#endif // wxUSE_MEMORY_TRACING
3217
3218protected:
3219 // Init the hash table with the entries of the static event table.
3220 void InitHashTable();
3221 // Helper function of InitHashTable() to insert 1 entry into the hash table.
3222 void AddEntry(const wxEventTableEntry &entry);
3223 // Allocate and init with null pointers the base hash table.
3224 void AllocEventTypeTable(size_t size);
3225 // Grow the hash table in size and transfer all items currently
3226 // in the table to the correct location in the new table.
3227 void GrowEventTypeTable();
3228
3229protected:
3230 const wxEventTable &m_table;
3231 bool m_rebuildHash;
3232
3233 size_t m_size;
3234 EventTypeTablePointer *m_eventTypeTable;
3235
3236 static wxEventHashTable* sm_first;
3237 wxEventHashTable* m_previous;
3238 wxEventHashTable* m_next;
3239
3240 wxDECLARE_NO_COPY_CLASS(wxEventHashTable);
3241};
3242
3243// ----------------------------------------------------------------------------
3244// wxEvtHandler: the base class for all objects handling wxWidgets events
3245// ----------------------------------------------------------------------------
3246
3247class WXDLLIMPEXP_BASE wxEvtHandler : public wxObject
3248 , public wxTrackable
3249{
3250public:
3251 wxEvtHandler();
3252 virtual ~wxEvtHandler();
3253
3254
3255 // Event handler chain
3256 // -------------------
3257
3258 wxEvtHandler *GetNextHandler() const { return m_nextHandler; }
3259 wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; }
3260 virtual void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; }
3261 virtual void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; }
3262
3263 void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; }
3264 bool GetEvtHandlerEnabled() const { return m_enabled; }
3265
3266 void Unlink();
3267 bool IsUnlinked() const;
3268
3269
3270 // Global event filters
3271 // --------------------
3272
3273 // Add an event filter whose FilterEvent() method will be called for each
3274 // and every event processed by wxWidgets. The filters are called in LIFO
3275 // order and wxApp is registered as an event filter by default. The pointer
3276 // must remain valid until it's removed with RemoveFilter() and is not
3277 // deleted by wxEvtHandler.
3278 static void AddFilter(wxEventFilter* filter);
3279
3280 // Remove a filter previously installed with AddFilter().
3281 static void RemoveFilter(wxEventFilter* filter);
3282
3283
3284 // Event queuing and processing
3285 // ----------------------------
3286
3287 // Process an event right now: this can only be called from the main
3288 // thread, use QueueEvent() for scheduling the events for
3289 // processing from other threads.
3290 virtual bool ProcessEvent(wxEvent& event);
3291
3292 // Process an event by calling ProcessEvent and handling any exceptions
3293 // thrown by event handlers. It's mostly useful when processing wx events
3294 // when called from C code (e.g. in GTK+ callback) when the exception
3295 // wouldn't correctly propagate to wxEventLoop.
3296 bool SafelyProcessEvent(wxEvent& event);
3297 // NOTE: uses ProcessEvent()
3298
3299 // This method tries to process the event in this event handler, including
3300 // any preprocessing done by TryBefore() and all the handlers chained to
3301 // it, but excluding the post-processing done in TryAfter().
3302 //
3303 // It is meant to be called from ProcessEvent() only and is not virtual,
3304 // additional event handlers can be hooked into the normal event processing
3305 // logic using TryBefore() and TryAfter() hooks.
3306 //
3307 // You can also call it yourself to forward an event to another handler but
3308 // without propagating it upwards if it's unhandled (this is usually
3309 // unwanted when forwarding as the original handler would already do it if
3310 // needed normally).
3311 bool ProcessEventLocally(wxEvent& event);
3312
3313 // Schedule the given event to be processed later. It takes ownership of
3314 // the event pointer, i.e. it will be deleted later. This is safe to call
3315 // from multiple threads although you still need to ensure that wxString
3316 // fields of the event object are deep copies and not use the same string
3317 // buffer as other wxString objects in this thread.
3318 virtual void QueueEvent(wxEvent *event);
3319
3320 // Add an event to be processed later: notice that this function is not
3321 // safe to call from threads other than main, use QueueEvent()
3322 virtual void AddPendingEvent(const wxEvent& event)
3323 {
3324 // notice that the thread-safety problem comes from the fact that
3325 // Clone() doesn't make deep copies of wxString fields of wxEvent
3326 // object and so the same wxString could be used from both threads when
3327 // the event object is destroyed in this one -- QueueEvent() avoids
3328 // this problem as the event pointer is not used any more in this
3329 // thread at all after it is called.
3330 QueueEvent(event.Clone());
3331 }
3332
3333 void ProcessPendingEvents();
3334 // NOTE: uses ProcessEvent()
3335
3336 void DeletePendingEvents();
3337
3338#if wxUSE_THREADS
3339 bool ProcessThreadEvent(const wxEvent& event);
3340 // NOTE: uses AddPendingEvent(); call only from secondary threads
3341#endif
3342
3343#ifdef wxHAS_CALL_AFTER
3344 // Asynchronous method calls: these methods schedule the given method
3345 // pointer for a later call (during the next idle event loop iteration).
3346 //
3347 // Notice that the method is called on this object itself, so the object
3348 // CallAfter() is called on must have the correct dynamic type.
3349 //
3350 // These method can be used from another thread.
3351
3352 template <typename T>
3353 void CallAfter(void (T::*method)())
3354 {
3355 QueueEvent(
3356 new wxAsyncMethodCallEvent0<T>(static_cast<T*>(this), method)
3357 );
3358 }
3359
3360 // Notice that we use P1 and not T1 for the parameter to allow passing
3361 // parameters that are convertible to the type taken by the method
3362 // instead of being exactly the same, to be closer to the usual method call
3363 // semantics.
3364 template <typename T, typename T1, typename P1>
3365 void CallAfter(void (T::*method)(T1 x1), P1 x1)
3366 {
3367 QueueEvent(
3368 new wxAsyncMethodCallEvent1<T, T1>(
3369 static_cast<T*>(this), method, x1)
3370 );
3371 }
3372
3373 template <typename T, typename T1, typename T2, typename P1, typename P2>
3374 void CallAfter(void (T::*method)(T1 x1, T2 x2), P1 x1, P2 x2)
3375 {
3376 QueueEvent(
3377 new wxAsyncMethodCallEvent2<T, T1, T2>(
3378 static_cast<T*>(this), method, x1, x2)
3379 );
3380 }
3381#endif // wxHAS_CALL_AFTER
3382
3383
3384 // Connecting and disconnecting
3385 // ----------------------------
3386
3387 // These functions are used for old, untyped, event handlers and don't
3388 // check that the type of the function passed to them actually matches the
3389 // type of the event. They also only allow connecting events to methods of
3390 // wxEvtHandler-derived classes.
3391 //
3392 // The template Connect() methods below are safer and allow connecting
3393 // events to arbitrary functions or functors -- but require compiler
3394 // support for templates.
3395
3396 // Dynamic association of a member function handler with the event handler,
3397 // winid and event type
3398 void Connect(int winid,
3399 int lastId,
3400 wxEventType eventType,
3401 wxObjectEventFunction func,
3402 wxObject *userData = NULL,
3403 wxEvtHandler *eventSink = NULL)
3404 {
3405 DoBind(winid, lastId, eventType,
3406 wxNewEventFunctor(eventType, func, eventSink),
3407 userData);
3408 }
3409
3410 // Convenience function: take just one id
3411 void Connect(int winid,
3412 wxEventType eventType,
3413 wxObjectEventFunction func,
3414 wxObject *userData = NULL,
3415 wxEvtHandler *eventSink = NULL)
3416 { Connect(winid, wxID_ANY, eventType, func, userData, eventSink); }
3417
3418 // Even more convenient: without id (same as using id of wxID_ANY)
3419 void Connect(wxEventType eventType,
3420 wxObjectEventFunction func,
3421 wxObject *userData = NULL,
3422 wxEvtHandler *eventSink = NULL)
3423 { Connect(wxID_ANY, wxID_ANY, eventType, func, userData, eventSink); }
3424
3425 bool Disconnect(int winid,
3426 int lastId,
3427 wxEventType eventType,
3428 wxObjectEventFunction func = NULL,
3429 wxObject *userData = NULL,
3430 wxEvtHandler *eventSink = NULL)
3431 {
3432 return DoUnbind(winid, lastId, eventType,
3433 wxMakeEventFunctor(eventType, func, eventSink),
3434 userData );
3435 }
3436
3437 bool Disconnect(int winid = wxID_ANY,
3438 wxEventType eventType = wxEVT_NULL,
3439 wxObjectEventFunction func = NULL,
3440 wxObject *userData = NULL,
3441 wxEvtHandler *eventSink = NULL)
3442 { return Disconnect(winid, wxID_ANY, eventType, func, userData, eventSink); }
3443
3444 bool Disconnect(wxEventType eventType,
3445 wxObjectEventFunction func,
3446 wxObject *userData = NULL,
3447 wxEvtHandler *eventSink = NULL)
3448 { return Disconnect(wxID_ANY, eventType, func, userData, eventSink); }
3449
3450#ifdef wxHAS_EVENT_BIND
3451 // Bind functions to an event:
3452 template <typename EventTag, typename EventArg>
3453 void Bind(const EventTag& eventType,
3454 void (*function)(EventArg &),
3455 int winid = wxID_ANY,
3456 int lastId = wxID_ANY,
3457 wxObject *userData = NULL)
3458 {
3459 DoBind(winid, lastId, eventType,
3460 wxNewEventFunctor(eventType, function),
3461 userData);
3462 }
3463
3464
3465 template <typename EventTag, typename EventArg>
3466 bool Unbind(const EventTag& eventType,
3467 void (*function)(EventArg &),
3468 int winid = wxID_ANY,
3469 int lastId = wxID_ANY,
3470 wxObject *userData = NULL)
3471 {
3472 return DoUnbind(winid, lastId, eventType,
3473 wxMakeEventFunctor(eventType, function),
3474 userData);
3475 }
3476
3477 // Bind functors to an event:
3478 template <typename EventTag, typename Functor>
3479 void Bind(const EventTag& eventType,
3480 const Functor &functor,
3481 int winid = wxID_ANY,
3482 int lastId = wxID_ANY,
3483 wxObject *userData = NULL)
3484 {
3485 DoBind(winid, lastId, eventType,
3486 wxNewEventFunctor(eventType, functor),
3487 userData);
3488 }
3489
3490
3491 template <typename EventTag, typename Functor>
3492 bool Unbind(const EventTag& eventType,
3493 const Functor &functor,
3494 int winid = wxID_ANY,
3495 int lastId = wxID_ANY,
3496 wxObject *userData = NULL)
3497 {
3498 return DoUnbind(winid, lastId, eventType,
3499 wxMakeEventFunctor(eventType, functor),
3500 userData);
3501 }
3502
3503
3504 // Bind a method of a class (called on the specified handler which must
3505 // be convertible to this class) object to an event:
3506
3507 template <typename EventTag, typename Class, typename EventArg, typename EventHandler>
3508 void Bind(const EventTag &eventType,
3509 void (Class::*method)(EventArg &),
3510 EventHandler *handler,
3511 int winid = wxID_ANY,
3512 int lastId = wxID_ANY,
3513 wxObject *userData = NULL)
3514 {
3515 DoBind(winid, lastId, eventType,
3516 wxNewEventFunctor(eventType, method, handler),
3517 userData);
3518 }
3519
3520 template <typename EventTag, typename Class, typename EventArg, typename EventHandler>
3521 bool Unbind(const EventTag &eventType,
3522 void (Class::*method)(EventArg&),
3523 EventHandler *handler,
3524 int winid = wxID_ANY,
3525 int lastId = wxID_ANY,
3526 wxObject *userData = NULL )
3527 {
3528 return DoUnbind(winid, lastId, eventType,
3529 wxMakeEventFunctor(eventType, method, handler),
3530 userData);
3531 }
3532#endif // wxHAS_EVENT_BIND
3533
3534 wxList* GetDynamicEventTable() const { return m_dynamicEvents ; }
3535
3536 // User data can be associated with each wxEvtHandler
3537 void SetClientObject( wxClientData *data ) { DoSetClientObject(data); }
3538 wxClientData *GetClientObject() const { return DoGetClientObject(); }
3539
3540 void SetClientData( void *data ) { DoSetClientData(data); }
3541 void *GetClientData() const { return DoGetClientData(); }
3542
3543
3544 // implementation from now on
3545 // --------------------------
3546
3547 // check if the given event table entry matches this event by id (the check
3548 // for the event type should be done by caller) and call the handler if it
3549 // does
3550 //
3551 // return true if the event was processed, false otherwise (no match or the
3552 // handler decided to skip the event)
3553 static bool ProcessEventIfMatchesId(const wxEventTableEntryBase& tableEntry,
3554 wxEvtHandler *handler,
3555 wxEvent& event);
3556
3557 virtual bool SearchEventTable(wxEventTable& table, wxEvent& event);
3558 bool SearchDynamicEventTable( wxEvent& event );
3559
3560 // Avoid problems at exit by cleaning up static hash table gracefully
3561 void ClearEventHashTable() { GetEventHashTable().Clear(); }
3562 void OnSinkDestroyed( wxEvtHandler *sink );
3563
3564
3565private:
3566 void DoBind(int winid,
3567 int lastId,
3568 wxEventType eventType,
3569 wxEventFunctor *func,
3570 wxObject* userData = NULL);
3571
3572 bool DoUnbind(int winid,
3573 int lastId,
3574 wxEventType eventType,
3575 const wxEventFunctor& func,
3576 wxObject *userData = NULL);
3577
3578 static const wxEventTableEntry sm_eventTableEntries[];
3579
3580protected:
3581 // hooks for wxWindow used by ProcessEvent()
3582 // -----------------------------------------
3583
3584 // this one is called before trying our own event table to allow plugging
3585 // in the event handlers overriding the default logic, this is used by e.g.
3586 // validators.
3587 virtual bool TryBefore(wxEvent& event);
3588
3589 // This one is not a hook but just a helper which looks up the handler in
3590 // this object itself.
3591 //
3592 // It is called from ProcessEventLocally() and normally shouldn't be called
3593 // directly as doing it would ignore any chained event handlers
3594 bool TryHereOnly(wxEvent& event);
3595
3596 // Another helper which simply calls pre-processing hook and then tries to
3597 // handle the event at this handler level.
3598 bool TryBeforeAndHere(wxEvent& event)
3599 {
3600 return TryBefore(event) || TryHereOnly(event);
3601 }
3602
3603 // this one is called after failing to find the event handle in our own
3604 // table to give a chance to the other windows to process it
3605 //
3606 // base class implementation passes the event to wxTheApp
3607 virtual bool TryAfter(wxEvent& event);
3608
3609#if WXWIN_COMPATIBILITY_2_8
3610 // deprecated method: override TryBefore() instead of this one
3611 wxDEPRECATED_BUT_USED_INTERNALLY_INLINE(
3612 virtual bool TryValidator(wxEvent& WXUNUSED(event)), return false; )
3613
3614 wxDEPRECATED_BUT_USED_INTERNALLY_INLINE(
3615 virtual bool TryParent(wxEvent& event), return DoTryApp(event); )
3616#endif // WXWIN_COMPATIBILITY_2_8
3617
3618
3619 static const wxEventTable sm_eventTable;
3620 virtual const wxEventTable *GetEventTable() const;
3621
3622 static wxEventHashTable sm_eventHashTable;
3623 virtual wxEventHashTable& GetEventHashTable() const;
3624
3625 wxEvtHandler* m_nextHandler;
3626 wxEvtHandler* m_previousHandler;
3627 wxList* m_dynamicEvents;
3628 wxList* m_pendingEvents;
3629
3630#if wxUSE_THREADS
3631 // critical section protecting m_pendingEvents
3632 wxCriticalSection m_pendingEventsLock;
3633#endif // wxUSE_THREADS
3634
3635 // Is event handler enabled?
3636 bool m_enabled;
3637
3638
3639 // The user data: either an object which will be deleted by the container
3640 // when it's deleted or some raw pointer which we do nothing with - only
3641 // one type of data can be used with the given window (i.e. you cannot set
3642 // the void data and then associate the container with wxClientData or vice
3643 // versa)
3644 union
3645 {
3646 wxClientData *m_clientObject;
3647 void *m_clientData;
3648 };
3649
3650 // what kind of data do we have?
3651 wxClientDataType m_clientDataType;
3652
3653 // client data accessors
3654 virtual void DoSetClientObject( wxClientData *data );
3655 virtual wxClientData *DoGetClientObject() const;
3656
3657 virtual void DoSetClientData( void *data );
3658 virtual void *DoGetClientData() const;
3659
3660 // Search tracker objects for event connection with this sink
3661 wxEventConnectionRef *FindRefInTrackerList(wxEvtHandler *handler);
3662
3663private:
3664 // pass the event to wxTheApp instance, called from TryAfter()
3665 bool DoTryApp(wxEvent& event);
3666
3667 // try to process events in all handlers chained to this one
3668 bool DoTryChain(wxEvent& event);
3669
3670 // Head of the event filter linked list.
3671 static wxEventFilter* ms_filterList;
3672
3673 DECLARE_DYNAMIC_CLASS_NO_COPY(wxEvtHandler)
3674};
3675
3676WX_DEFINE_ARRAY_WITH_DECL_PTR(wxEvtHandler *, wxEvtHandlerArray, class WXDLLIMPEXP_BASE);
3677
3678
3679// Define an inline method of wxObjectEventFunctor which couldn't be defined
3680// before wxEvtHandler declaration: at least Sun CC refuses to compile function
3681// calls through pointer to member for forward-declared classes (see #12452).
3682inline void wxObjectEventFunctor::operator()(wxEvtHandler *handler, wxEvent& event)
3683{
3684 wxEvtHandler * const realHandler = m_handler ? m_handler : handler;
3685
3686 (realHandler->*m_method)(event);
3687}
3688
3689// ----------------------------------------------------------------------------
3690// wxEventConnectionRef represents all connections between two event handlers
3691// and enables automatic disconnect when an event handler sink goes out of
3692// scope. Each connection/disconnect increases/decreases ref count, and
3693// when it reaches zero the node goes out of scope.
3694// ----------------------------------------------------------------------------
3695
3696class wxEventConnectionRef : public wxTrackerNode
3697{
3698public:
3699 wxEventConnectionRef() : m_src(NULL), m_sink(NULL), m_refCount(0) { }
3700 wxEventConnectionRef(wxEvtHandler *src, wxEvtHandler *sink)
3701 : m_src(src), m_sink(sink), m_refCount(1)
3702 {
3703 m_sink->AddNode(this);
3704 }
3705
3706 // The sink is being destroyed
3707 virtual void OnObjectDestroy( )
3708 {
3709 if ( m_src )
3710 m_src->OnSinkDestroyed( m_sink );
3711 delete this;
3712 }
3713
3714 virtual wxEventConnectionRef *ToEventConnection() { return this; }
3715
3716 void IncRef() { m_refCount++; }
3717 void DecRef()
3718 {
3719 if ( !--m_refCount )
3720 {
3721 // The sink holds the only external pointer to this object
3722 if ( m_sink )
3723 m_sink->RemoveNode(this);
3724 delete this;
3725 }
3726 }
3727
3728private:
3729 wxEvtHandler *m_src,
3730 *m_sink;
3731 int m_refCount;
3732
3733 friend class wxEvtHandler;
3734
3735 wxDECLARE_NO_ASSIGN_CLASS(wxEventConnectionRef);
3736};
3737
3738// Post a message to the given event handler which will be processed during the
3739// next event loop iteration.
3740//
3741// Notice that this one is not thread-safe, use wxQueueEvent()
3742inline void wxPostEvent(wxEvtHandler *dest, const wxEvent& event)
3743{
3744 wxCHECK_RET( dest, "need an object to post event to" );
3745
3746 dest->AddPendingEvent(event);
3747}
3748
3749// Wrapper around wxEvtHandler::QueueEvent(): adds an event for later
3750// processing, unlike wxPostEvent it is safe to use from different thread even
3751// for events with wxString members
3752inline void wxQueueEvent(wxEvtHandler *dest, wxEvent *event)
3753{
3754 wxCHECK_RET( dest, "need an object to queue event for" );
3755
3756 dest->QueueEvent(event);
3757}
3758
3759typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&);
3760typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&);
3761typedef void (wxEvtHandler::*wxThreadEventFunction)(wxThreadEvent&);
3762
3763#define wxEventHandler(func) \
3764 wxEVENT_HANDLER_CAST(wxEventFunction, func)
3765#define wxIdleEventHandler(func) \
3766 wxEVENT_HANDLER_CAST(wxIdleEventFunction, func)
3767#define wxThreadEventHandler(func) \
3768 wxEVENT_HANDLER_CAST(wxThreadEventFunction, func)
3769
3770#if wxUSE_GUI
3771
3772// ----------------------------------------------------------------------------
3773// wxEventBlocker: helper class to temporarily disable event handling for a window
3774// ----------------------------------------------------------------------------
3775
3776class WXDLLIMPEXP_CORE wxEventBlocker : public wxEvtHandler
3777{
3778public:
3779 wxEventBlocker(wxWindow *win, wxEventType type = wxEVT_ANY);
3780 virtual ~wxEventBlocker();
3781
3782 void Block(wxEventType type)
3783 {
3784 m_eventsToBlock.push_back(type);
3785 }
3786
3787 virtual bool ProcessEvent(wxEvent& event);
3788
3789protected:
3790 wxArrayInt m_eventsToBlock;
3791 wxWindow *m_window;
3792
3793 wxDECLARE_NO_COPY_CLASS(wxEventBlocker);
3794};
3795
3796typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&);
3797typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&);
3798typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&);
3799typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&);
3800typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&);
3801typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&);
3802typedef void (wxEvtHandler::*wxNcPaintEventFunction)(wxNcPaintEvent&);
3803typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&);
3804typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&);
3805typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&);
3806typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&);
3807typedef void (wxEvtHandler::*wxChildFocusEventFunction)(wxChildFocusEvent&);
3808typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&);
3809typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&);
3810typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&);
3811typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&);
3812typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&);
3813typedef void (wxEvtHandler::*wxSysColourChangedEventFunction)(wxSysColourChangedEvent&);
3814typedef void (wxEvtHandler::*wxDisplayChangedEventFunction)(wxDisplayChangedEvent&);
3815typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&);
3816typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&);
3817typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&);
3818typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxIconizeEvent&);
3819typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxMaximizeEvent&);
3820typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&);
3821typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&);
3822typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&);
3823typedef void (wxEvtHandler::*wxWindowCreateEventFunction)(wxWindowCreateEvent&);
3824typedef void (wxEvtHandler::*wxWindowDestroyEventFunction)(wxWindowDestroyEvent&);
3825typedef void (wxEvtHandler::*wxSetCursorEventFunction)(wxSetCursorEvent&);
3826typedef void (wxEvtHandler::*wxNotifyEventFunction)(wxNotifyEvent&);
3827typedef void (wxEvtHandler::*wxHelpEventFunction)(wxHelpEvent&);
3828typedef void (wxEvtHandler::*wxContextMenuEventFunction)(wxContextMenuEvent&);
3829typedef void (wxEvtHandler::*wxMouseCaptureChangedEventFunction)(wxMouseCaptureChangedEvent&);
3830typedef void (wxEvtHandler::*wxMouseCaptureLostEventFunction)(wxMouseCaptureLostEvent&);
3831typedef void (wxEvtHandler::*wxClipboardTextEventFunction)(wxClipboardTextEvent&);
3832
3833
3834#define wxCommandEventHandler(func) \
3835 wxEVENT_HANDLER_CAST(wxCommandEventFunction, func)
3836#define wxScrollEventHandler(func) \
3837 wxEVENT_HANDLER_CAST(wxScrollEventFunction, func)
3838#define wxScrollWinEventHandler(func) \
3839 wxEVENT_HANDLER_CAST(wxScrollWinEventFunction, func)
3840#define wxSizeEventHandler(func) \
3841 wxEVENT_HANDLER_CAST(wxSizeEventFunction, func)
3842#define wxMoveEventHandler(func) \
3843 wxEVENT_HANDLER_CAST(wxMoveEventFunction, func)
3844#define wxPaintEventHandler(func) \
3845 wxEVENT_HANDLER_CAST(wxPaintEventFunction, func)
3846#define wxNcPaintEventHandler(func) \
3847 wxEVENT_HANDLER_CAST(wxNcPaintEventFunction, func)
3848#define wxEraseEventHandler(func) \
3849 wxEVENT_HANDLER_CAST(wxEraseEventFunction, func)
3850#define wxMouseEventHandler(func) \
3851 wxEVENT_HANDLER_CAST(wxMouseEventFunction, func)
3852#define wxCharEventHandler(func) \
3853 wxEVENT_HANDLER_CAST(wxCharEventFunction, func)
3854#define wxKeyEventHandler(func) wxCharEventHandler(func)
3855#define wxFocusEventHandler(func) \
3856 wxEVENT_HANDLER_CAST(wxFocusEventFunction, func)
3857#define wxChildFocusEventHandler(func) \
3858 wxEVENT_HANDLER_CAST(wxChildFocusEventFunction, func)
3859#define wxActivateEventHandler(func) \
3860 wxEVENT_HANDLER_CAST(wxActivateEventFunction, func)
3861#define wxMenuEventHandler(func) \
3862 wxEVENT_HANDLER_CAST(wxMenuEventFunction, func)
3863#define wxJoystickEventHandler(func) \
3864 wxEVENT_HANDLER_CAST(wxJoystickEventFunction, func)
3865#define wxDropFilesEventHandler(func) \
3866 wxEVENT_HANDLER_CAST(wxDropFilesEventFunction, func)
3867#define wxInitDialogEventHandler(func) \
3868 wxEVENT_HANDLER_CAST(wxInitDialogEventFunction, func)
3869#define wxSysColourChangedEventHandler(func) \
3870 wxEVENT_HANDLER_CAST(wxSysColourChangedEventFunction, func)
3871#define wxDisplayChangedEventHandler(func) \
3872 wxEVENT_HANDLER_CAST(wxDisplayChangedEventFunction, func)
3873#define wxUpdateUIEventHandler(func) \
3874 wxEVENT_HANDLER_CAST(wxUpdateUIEventFunction, func)
3875#define wxCloseEventHandler(func) \
3876 wxEVENT_HANDLER_CAST(wxCloseEventFunction, func)
3877#define wxShowEventHandler(func) \
3878 wxEVENT_HANDLER_CAST(wxShowEventFunction, func)
3879#define wxIconizeEventHandler(func) \
3880 wxEVENT_HANDLER_CAST(wxIconizeEventFunction, func)
3881#define wxMaximizeEventHandler(func) \
3882 wxEVENT_HANDLER_CAST(wxMaximizeEventFunction, func)
3883#define wxNavigationKeyEventHandler(func) \
3884 wxEVENT_HANDLER_CAST(wxNavigationKeyEventFunction, func)
3885#define wxPaletteChangedEventHandler(func) \
3886 wxEVENT_HANDLER_CAST(wxPaletteChangedEventFunction, func)
3887#define wxQueryNewPaletteEventHandler(func) \
3888 wxEVENT_HANDLER_CAST(wxQueryNewPaletteEventFunction, func)
3889#define wxWindowCreateEventHandler(func) \
3890 wxEVENT_HANDLER_CAST(wxWindowCreateEventFunction, func)
3891#define wxWindowDestroyEventHandler(func) \
3892 wxEVENT_HANDLER_CAST(wxWindowDestroyEventFunction, func)
3893#define wxSetCursorEventHandler(func) \
3894 wxEVENT_HANDLER_CAST(wxSetCursorEventFunction, func)
3895#define wxNotifyEventHandler(func) \
3896 wxEVENT_HANDLER_CAST(wxNotifyEventFunction, func)
3897#define wxHelpEventHandler(func) \
3898 wxEVENT_HANDLER_CAST(wxHelpEventFunction, func)
3899#define wxContextMenuEventHandler(func) \
3900 wxEVENT_HANDLER_CAST(wxContextMenuEventFunction, func)
3901#define wxMouseCaptureChangedEventHandler(func) \
3902 wxEVENT_HANDLER_CAST(wxMouseCaptureChangedEventFunction, func)
3903#define wxMouseCaptureLostEventHandler(func) \
3904 wxEVENT_HANDLER_CAST(wxMouseCaptureLostEventFunction, func)
3905#define wxClipboardTextEventHandler(func) \
3906 wxEVENT_HANDLER_CAST(wxClipboardTextEventFunction, func)
3907
3908#endif // wxUSE_GUI
3909
3910// N.B. In GNU-WIN32, you *have* to take the address of a member function
3911// (use &) or the compiler crashes...
3912
3913#define wxDECLARE_EVENT_TABLE() \
3914 private: \
3915 static const wxEventTableEntry sm_eventTableEntries[]; \
3916 protected: \
3917 static const wxEventTable sm_eventTable; \
3918 virtual const wxEventTable* GetEventTable() const; \
3919 static wxEventHashTable sm_eventHashTable; \
3920 virtual wxEventHashTable& GetEventHashTable() const
3921
3922// N.B.: when building DLL with Borland C++ 5.5 compiler, you must initialize
3923// sm_eventTable before using it in GetEventTable() or the compiler gives
3924// E2233 (see http://groups.google.com/groups?selm=397dcc8a%241_2%40dnews)
3925
3926#define wxBEGIN_EVENT_TABLE(theClass, baseClass) \
3927 const wxEventTable theClass::sm_eventTable = \
3928 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] }; \
3929 const wxEventTable *theClass::GetEventTable() const \
3930 { return &theClass::sm_eventTable; } \
3931 wxEventHashTable theClass::sm_eventHashTable(theClass::sm_eventTable); \
3932 wxEventHashTable &theClass::GetEventHashTable() const \
3933 { return theClass::sm_eventHashTable; } \
3934 const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
3935
3936#define wxBEGIN_EVENT_TABLE_TEMPLATE1(theClass, baseClass, T1) \
3937 template<typename T1> \
3938 const wxEventTable theClass<T1>::sm_eventTable = \
3939 { &baseClass::sm_eventTable, &theClass<T1>::sm_eventTableEntries[0] }; \
3940 template<typename T1> \
3941 const wxEventTable *theClass<T1>::GetEventTable() const \
3942 { return &theClass<T1>::sm_eventTable; } \
3943 template<typename T1> \
3944 wxEventHashTable theClass<T1>::sm_eventHashTable(theClass<T1>::sm_eventTable); \
3945 template<typename T1> \
3946 wxEventHashTable &theClass<T1>::GetEventHashTable() const \
3947 { return theClass<T1>::sm_eventHashTable; } \
3948 template<typename T1> \
3949 const wxEventTableEntry theClass<T1>::sm_eventTableEntries[] = { \
3950
3951#define wxBEGIN_EVENT_TABLE_TEMPLATE2(theClass, baseClass, T1, T2) \
3952 template<typename T1, typename T2> \
3953 const wxEventTable theClass<T1, T2>::sm_eventTable = \
3954 { &baseClass::sm_eventTable, &theClass<T1, T2>::sm_eventTableEntries[0] }; \
3955 template<typename T1, typename T2> \
3956 const wxEventTable *theClass<T1, T2>::GetEventTable() const \
3957 { return &theClass<T1, T2>::sm_eventTable; } \
3958 template<typename T1, typename T2> \
3959 wxEventHashTable theClass<T1, T2>::sm_eventHashTable(theClass<T1, T2>::sm_eventTable); \
3960 template<typename T1, typename T2> \
3961 wxEventHashTable &theClass<T1, T2>::GetEventHashTable() const \
3962 { return theClass<T1, T2>::sm_eventHashTable; } \
3963 template<typename T1, typename T2> \
3964 const wxEventTableEntry theClass<T1, T2>::sm_eventTableEntries[] = { \
3965
3966#define wxBEGIN_EVENT_TABLE_TEMPLATE3(theClass, baseClass, T1, T2, T3) \
3967 template<typename T1, typename T2, typename T3> \
3968 const wxEventTable theClass<T1, T2, T3>::sm_eventTable = \
3969 { &baseClass::sm_eventTable, &theClass<T1, T2, T3>::sm_eventTableEntries[0] }; \
3970 template<typename T1, typename T2, typename T3> \
3971 const wxEventTable *theClass<T1, T2, T3>::GetEventTable() const \
3972 { return &theClass<T1, T2, T3>::sm_eventTable; } \
3973 template<typename T1, typename T2, typename T3> \
3974 wxEventHashTable theClass<T1, T2, T3>::sm_eventHashTable(theClass<T1, T2, T3>::sm_eventTable); \
3975 template<typename T1, typename T2, typename T3> \
3976 wxEventHashTable &theClass<T1, T2, T3>::GetEventHashTable() const \
3977 { return theClass<T1, T2, T3>::sm_eventHashTable; } \
3978 template<typename T1, typename T2, typename T3> \
3979 const wxEventTableEntry theClass<T1, T2, T3>::sm_eventTableEntries[] = { \
3980
3981#define wxBEGIN_EVENT_TABLE_TEMPLATE4(theClass, baseClass, T1, T2, T3, T4) \
3982 template<typename T1, typename T2, typename T3, typename T4> \
3983 const wxEventTable theClass<T1, T2, T3, T4>::sm_eventTable = \
3984 { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4>::sm_eventTableEntries[0] }; \
3985 template<typename T1, typename T2, typename T3, typename T4> \
3986 const wxEventTable *theClass<T1, T2, T3, T4>::GetEventTable() const \
3987 { return &theClass<T1, T2, T3, T4>::sm_eventTable; } \
3988 template<typename T1, typename T2, typename T3, typename T4> \
3989 wxEventHashTable theClass<T1, T2, T3, T4>::sm_eventHashTable(theClass<T1, T2, T3, T4>::sm_eventTable); \
3990 template<typename T1, typename T2, typename T3, typename T4> \
3991 wxEventHashTable &theClass<T1, T2, T3, T4>::GetEventHashTable() const \
3992 { return theClass<T1, T2, T3, T4>::sm_eventHashTable; } \
3993 template<typename T1, typename T2, typename T3, typename T4> \
3994 const wxEventTableEntry theClass<T1, T2, T3, T4>::sm_eventTableEntries[] = { \
3995
3996#define wxBEGIN_EVENT_TABLE_TEMPLATE5(theClass, baseClass, T1, T2, T3, T4, T5) \
3997 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
3998 const wxEventTable theClass<T1, T2, T3, T4, T5>::sm_eventTable = \
3999 { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5>::sm_eventTableEntries[0] }; \
4000 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
4001 const wxEventTable *theClass<T1, T2, T3, T4, T5>::GetEventTable() const \
4002 { return &theClass<T1, T2, T3, T4, T5>::sm_eventTable; } \
4003 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
4004 wxEventHashTable theClass<T1, T2, T3, T4, T5>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5>::sm_eventTable); \
4005 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
4006 wxEventHashTable &theClass<T1, T2, T3, T4, T5>::GetEventHashTable() const \
4007 { return theClass<T1, T2, T3, T4, T5>::sm_eventHashTable; } \
4008 template<typename T1, typename T2, typename T3, typename T4, typename T5> \
4009 const wxEventTableEntry theClass<T1, T2, T3, T4, T5>::sm_eventTableEntries[] = { \
4010
4011#define wxBEGIN_EVENT_TABLE_TEMPLATE7(theClass, baseClass, T1, T2, T3, T4, T5, T6, T7) \
4012 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
4013 const wxEventTable theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable = \
4014 { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTableEntries[0] }; \
4015 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
4016 const wxEventTable *theClass<T1, T2, T3, T4, T5, T6, T7>::GetEventTable() const \
4017 { return &theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable; } \
4018 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
4019 wxEventHashTable theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable); \
4020 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
4021 wxEventHashTable &theClass<T1, T2, T3, T4, T5, T6, T7>::GetEventHashTable() const \
4022 { return theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventHashTable; } \
4023 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \
4024 const wxEventTableEntry theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTableEntries[] = { \
4025
4026#define wxBEGIN_EVENT_TABLE_TEMPLATE8(theClass, baseClass, T1, T2, T3, T4, T5, T6, T7, T8) \
4027 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
4028 const wxEventTable theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable = \
4029 { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTableEntries[0] }; \
4030 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
4031 const wxEventTable *theClass<T1, T2, T3, T4, T5, T6, T7, T8>::GetEventTable() const \
4032 { return &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable; } \
4033 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
4034 wxEventHashTable theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable); \
4035 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
4036 wxEventHashTable &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::GetEventHashTable() const \
4037 { return theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventHashTable; } \
4038 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \
4039 const wxEventTableEntry theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTableEntries[] = { \
4040
4041#define wxEND_EVENT_TABLE() \
4042 wxDECLARE_EVENT_TABLE_TERMINATOR() };
4043
4044/*
4045 * Event table macros
4046 */
4047
4048// helpers for writing shorter code below: declare an event macro taking 2, 1
4049// or none ids (the missing ids default to wxID_ANY)
4050//
4051// macro arguments:
4052// - evt one of wxEVT_XXX constants
4053// - id1, id2 ids of the first/last id
4054// - fn the function (should be cast to the right type)
4055#define wx__DECLARE_EVT2(evt, id1, id2, fn) \
4056 wxDECLARE_EVENT_TABLE_ENTRY(evt, id1, id2, fn, NULL),
4057#define wx__DECLARE_EVT1(evt, id, fn) \
4058 wx__DECLARE_EVT2(evt, id, wxID_ANY, fn)
4059#define wx__DECLARE_EVT0(evt, fn) \
4060 wx__DECLARE_EVT1(evt, wxID_ANY, fn)
4061
4062
4063// Generic events
4064#define EVT_CUSTOM(event, winid, func) \
4065 wx__DECLARE_EVT1(event, winid, wxEventHandler(func))
4066#define EVT_CUSTOM_RANGE(event, id1, id2, func) \
4067 wx__DECLARE_EVT2(event, id1, id2, wxEventHandler(func))
4068
4069// EVT_COMMAND
4070#define EVT_COMMAND(winid, event, func) \
4071 wx__DECLARE_EVT1(event, winid, wxCommandEventHandler(func))
4072
4073#define EVT_COMMAND_RANGE(id1, id2, event, func) \
4074 wx__DECLARE_EVT2(event, id1, id2, wxCommandEventHandler(func))
4075
4076#define EVT_NOTIFY(event, winid, func) \
4077 wx__DECLARE_EVT1(event, winid, wxNotifyEventHandler(func))
4078
4079#define EVT_NOTIFY_RANGE(event, id1, id2, func) \
4080 wx__DECLARE_EVT2(event, id1, id2, wxNotifyEventHandler(func))
4081
4082// Miscellaneous
4083#define EVT_SIZE(func) wx__DECLARE_EVT0(wxEVT_SIZE, wxSizeEventHandler(func))
4084#define EVT_SIZING(func) wx__DECLARE_EVT0(wxEVT_SIZING, wxSizeEventHandler(func))
4085#define EVT_MOVE(func) wx__DECLARE_EVT0(wxEVT_MOVE, wxMoveEventHandler(func))
4086#define EVT_MOVING(func) wx__DECLARE_EVT0(wxEVT_MOVING, wxMoveEventHandler(func))
4087#define EVT_MOVE_START(func) wx__DECLARE_EVT0(wxEVT_MOVE_START, wxMoveEventHandler(func))
4088#define EVT_MOVE_END(func) wx__DECLARE_EVT0(wxEVT_MOVE_END, wxMoveEventHandler(func))
4089#define EVT_CLOSE(func) wx__DECLARE_EVT0(wxEVT_CLOSE_WINDOW, wxCloseEventHandler(func))
4090#define EVT_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_END_SESSION, wxCloseEventHandler(func))
4091#define EVT_QUERY_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_QUERY_END_SESSION, wxCloseEventHandler(func))
4092#define EVT_PAINT(func) wx__DECLARE_EVT0(wxEVT_PAINT, wxPaintEventHandler(func))
4093#define EVT_NC_PAINT(func) wx__DECLARE_EVT0(wxEVT_NC_PAINT, wxNcPaintEventHandler(func))
4094#define EVT_ERASE_BACKGROUND(func) wx__DECLARE_EVT0(wxEVT_ERASE_BACKGROUND, wxEraseEventHandler(func))
4095#define EVT_CHAR(func) wx__DECLARE_EVT0(wxEVT_CHAR, wxCharEventHandler(func))
4096#define EVT_KEY_DOWN(func) wx__DECLARE_EVT0(wxEVT_KEY_DOWN, wxKeyEventHandler(func))
4097#define EVT_KEY_UP(func) wx__DECLARE_EVT0(wxEVT_KEY_UP, wxKeyEventHandler(func))
4098#if wxUSE_HOTKEY
4099#define EVT_HOTKEY(winid, func) wx__DECLARE_EVT1(wxEVT_HOTKEY, winid, wxCharEventHandler(func))
4100#endif
4101#define EVT_CHAR_HOOK(func) wx__DECLARE_EVT0(wxEVT_CHAR_HOOK, wxCharEventHandler(func))
4102#define EVT_MENU_OPEN(func) wx__DECLARE_EVT0(wxEVT_MENU_OPEN, wxMenuEventHandler(func))
4103#define EVT_MENU_CLOSE(func) wx__DECLARE_EVT0(wxEVT_MENU_CLOSE, wxMenuEventHandler(func))
4104#define EVT_MENU_HIGHLIGHT(winid, func) wx__DECLARE_EVT1(wxEVT_MENU_HIGHLIGHT, winid, wxMenuEventHandler(func))
4105#define EVT_MENU_HIGHLIGHT_ALL(func) wx__DECLARE_EVT0(wxEVT_MENU_HIGHLIGHT, wxMenuEventHandler(func))
4106#define EVT_SET_FOCUS(func) wx__DECLARE_EVT0(wxEVT_SET_FOCUS, wxFocusEventHandler(func))
4107#define EVT_KILL_FOCUS(func) wx__DECLARE_EVT0(wxEVT_KILL_FOCUS, wxFocusEventHandler(func))
4108#define EVT_CHILD_FOCUS(func) wx__DECLARE_EVT0(wxEVT_CHILD_FOCUS, wxChildFocusEventHandler(func))
4109#define EVT_ACTIVATE(func) wx__DECLARE_EVT0(wxEVT_ACTIVATE, wxActivateEventHandler(func))
4110#define EVT_ACTIVATE_APP(func) wx__DECLARE_EVT0(wxEVT_ACTIVATE_APP, wxActivateEventHandler(func))
4111#define EVT_HIBERNATE(func) wx__DECLARE_EVT0(wxEVT_HIBERNATE, wxActivateEventHandler(func))
4112#define EVT_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_END_SESSION, wxCloseEventHandler(func))
4113#define EVT_QUERY_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_QUERY_END_SESSION, wxCloseEventHandler(func))
4114#define EVT_DROP_FILES(func) wx__DECLARE_EVT0(wxEVT_DROP_FILES, wxDropFilesEventHandler(func))
4115#define EVT_INIT_DIALOG(func) wx__DECLARE_EVT0(wxEVT_INIT_DIALOG, wxInitDialogEventHandler(func))
4116#define EVT_SYS_COLOUR_CHANGED(func) wx__DECLARE_EVT0(wxEVT_SYS_COLOUR_CHANGED, wxSysColourChangedEventHandler(func))
4117#define EVT_DISPLAY_CHANGED(func) wx__DECLARE_EVT0(wxEVT_DISPLAY_CHANGED, wxDisplayChangedEventHandler(func))
4118#define EVT_SHOW(func) wx__DECLARE_EVT0(wxEVT_SHOW, wxShowEventHandler(func))
4119#define EVT_MAXIMIZE(func) wx__DECLARE_EVT0(wxEVT_MAXIMIZE, wxMaximizeEventHandler(func))
4120#define EVT_ICONIZE(func) wx__DECLARE_EVT0(wxEVT_ICONIZE, wxIconizeEventHandler(func))
4121#define EVT_NAVIGATION_KEY(func) wx__DECLARE_EVT0(wxEVT_NAVIGATION_KEY, wxNavigationKeyEventHandler(func))
4122#define EVT_PALETTE_CHANGED(func) wx__DECLARE_EVT0(wxEVT_PALETTE_CHANGED, wxPaletteChangedEventHandler(func))
4123#define EVT_QUERY_NEW_PALETTE(func) wx__DECLARE_EVT0(wxEVT_QUERY_NEW_PALETTE, wxQueryNewPaletteEventHandler(func))
4124#define EVT_WINDOW_CREATE(func) wx__DECLARE_EVT0(wxEVT_CREATE, wxWindowCreateEventHandler(func))
4125#define EVT_WINDOW_DESTROY(func) wx__DECLARE_EVT0(wxEVT_DESTROY, wxWindowDestroyEventHandler(func))
4126#define EVT_SET_CURSOR(func) wx__DECLARE_EVT0(wxEVT_SET_CURSOR, wxSetCursorEventHandler(func))
4127#define EVT_MOUSE_CAPTURE_CHANGED(func) wx__DECLARE_EVT0(wxEVT_MOUSE_CAPTURE_CHANGED, wxMouseCaptureChangedEventHandler(func))
4128#define EVT_MOUSE_CAPTURE_LOST(func) wx__DECLARE_EVT0(wxEVT_MOUSE_CAPTURE_LOST, wxMouseCaptureLostEventHandler(func))
4129
4130// Mouse events
4131#define EVT_LEFT_DOWN(func) wx__DECLARE_EVT0(wxEVT_LEFT_DOWN, wxMouseEventHandler(func))
4132#define EVT_LEFT_UP(func) wx__DECLARE_EVT0(wxEVT_LEFT_UP, wxMouseEventHandler(func))
4133#define EVT_MIDDLE_DOWN(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_DOWN, wxMouseEventHandler(func))
4134#define EVT_MIDDLE_UP(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_UP, wxMouseEventHandler(func))
4135#define EVT_RIGHT_DOWN(func) wx__DECLARE_EVT0(wxEVT_RIGHT_DOWN, wxMouseEventHandler(func))
4136#define EVT_RIGHT_UP(func) wx__DECLARE_EVT0(wxEVT_RIGHT_UP, wxMouseEventHandler(func))
4137#define EVT_MOTION(func) wx__DECLARE_EVT0(wxEVT_MOTION, wxMouseEventHandler(func))
4138#define EVT_LEFT_DCLICK(func) wx__DECLARE_EVT0(wxEVT_LEFT_DCLICK, wxMouseEventHandler(func))
4139#define EVT_MIDDLE_DCLICK(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_DCLICK, wxMouseEventHandler(func))
4140#define EVT_RIGHT_DCLICK(func) wx__DECLARE_EVT0(wxEVT_RIGHT_DCLICK, wxMouseEventHandler(func))
4141#define EVT_LEAVE_WINDOW(func) wx__DECLARE_EVT0(wxEVT_LEAVE_WINDOW, wxMouseEventHandler(func))
4142#define EVT_ENTER_WINDOW(func) wx__DECLARE_EVT0(wxEVT_ENTER_WINDOW, wxMouseEventHandler(func))
4143#define EVT_MOUSEWHEEL(func) wx__DECLARE_EVT0(wxEVT_MOUSEWHEEL, wxMouseEventHandler(func))
4144#define EVT_MOUSE_AUX1_DOWN(func) wx__DECLARE_EVT0(wxEVT_AUX1_DOWN, wxMouseEventHandler(func))
4145#define EVT_MOUSE_AUX1_UP(func) wx__DECLARE_EVT0(wxEVT_AUX1_UP, wxMouseEventHandler(func))
4146#define EVT_MOUSE_AUX1_DCLICK(func) wx__DECLARE_EVT0(wxEVT_AUX1_DCLICK, wxMouseEventHandler(func))
4147#define EVT_MOUSE_AUX2_DOWN(func) wx__DECLARE_EVT0(wxEVT_AUX2_DOWN, wxMouseEventHandler(func))
4148#define EVT_MOUSE_AUX2_UP(func) wx__DECLARE_EVT0(wxEVT_AUX2_UP, wxMouseEventHandler(func))
4149#define EVT_MOUSE_AUX2_DCLICK(func) wx__DECLARE_EVT0(wxEVT_AUX2_DCLICK, wxMouseEventHandler(func))
4150
4151// All mouse events
4152#define EVT_MOUSE_EVENTS(func) \
4153 EVT_LEFT_DOWN(func) \
4154 EVT_LEFT_UP(func) \
4155 EVT_LEFT_DCLICK(func) \
4156 EVT_MIDDLE_DOWN(func) \
4157 EVT_MIDDLE_UP(func) \
4158 EVT_MIDDLE_DCLICK(func) \
4159 EVT_RIGHT_DOWN(func) \
4160 EVT_RIGHT_UP(func) \
4161 EVT_RIGHT_DCLICK(func) \
4162 EVT_MOUSE_AUX1_DOWN(func) \
4163 EVT_MOUSE_AUX1_UP(func) \
4164 EVT_MOUSE_AUX1_DCLICK(func) \
4165 EVT_MOUSE_AUX2_DOWN(func) \
4166 EVT_MOUSE_AUX2_UP(func) \
4167 EVT_MOUSE_AUX2_DCLICK(func) \
4168 EVT_MOTION(func) \
4169 EVT_LEAVE_WINDOW(func) \
4170 EVT_ENTER_WINDOW(func) \
4171 EVT_MOUSEWHEEL(func)
4172
4173// Scrolling from wxWindow (sent to wxScrolledWindow)
4174#define EVT_SCROLLWIN_TOP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_TOP, wxScrollWinEventHandler(func))
4175#define EVT_SCROLLWIN_BOTTOM(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEventHandler(func))
4176#define EVT_SCROLLWIN_LINEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_LINEUP, wxScrollWinEventHandler(func))
4177#define EVT_SCROLLWIN_LINEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEventHandler(func))
4178#define EVT_SCROLLWIN_PAGEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEventHandler(func))
4179#define EVT_SCROLLWIN_PAGEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEventHandler(func))
4180#define EVT_SCROLLWIN_THUMBTRACK(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEventHandler(func))
4181#define EVT_SCROLLWIN_THUMBRELEASE(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEventHandler(func))
4182
4183#define EVT_SCROLLWIN(func) \
4184 EVT_SCROLLWIN_TOP(func) \
4185 EVT_SCROLLWIN_BOTTOM(func) \
4186 EVT_SCROLLWIN_LINEUP(func) \
4187 EVT_SCROLLWIN_LINEDOWN(func) \
4188 EVT_SCROLLWIN_PAGEUP(func) \
4189 EVT_SCROLLWIN_PAGEDOWN(func) \
4190 EVT_SCROLLWIN_THUMBTRACK(func) \
4191 EVT_SCROLLWIN_THUMBRELEASE(func)
4192
4193// Scrolling from wxSlider and wxScrollBar
4194#define EVT_SCROLL_TOP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_TOP, wxScrollEventHandler(func))
4195#define EVT_SCROLL_BOTTOM(func) wx__DECLARE_EVT0(wxEVT_SCROLL_BOTTOM, wxScrollEventHandler(func))
4196#define EVT_SCROLL_LINEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_LINEUP, wxScrollEventHandler(func))
4197#define EVT_SCROLL_LINEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLL_LINEDOWN, wxScrollEventHandler(func))
4198#define EVT_SCROLL_PAGEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_PAGEUP, wxScrollEventHandler(func))
4199#define EVT_SCROLL_PAGEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLL_PAGEDOWN, wxScrollEventHandler(func))
4200#define EVT_SCROLL_THUMBTRACK(func) wx__DECLARE_EVT0(wxEVT_SCROLL_THUMBTRACK, wxScrollEventHandler(func))
4201#define EVT_SCROLL_THUMBRELEASE(func) wx__DECLARE_EVT0(wxEVT_SCROLL_THUMBRELEASE, wxScrollEventHandler(func))
4202#define EVT_SCROLL_CHANGED(func) wx__DECLARE_EVT0(wxEVT_SCROLL_CHANGED, wxScrollEventHandler(func))
4203
4204#define EVT_SCROLL(func) \
4205 EVT_SCROLL_TOP(func) \
4206 EVT_SCROLL_BOTTOM(func) \
4207 EVT_SCROLL_LINEUP(func) \
4208 EVT_SCROLL_LINEDOWN(func) \
4209 EVT_SCROLL_PAGEUP(func) \
4210 EVT_SCROLL_PAGEDOWN(func) \
4211 EVT_SCROLL_THUMBTRACK(func) \
4212 EVT_SCROLL_THUMBRELEASE(func) \
4213 EVT_SCROLL_CHANGED(func)
4214
4215// Scrolling from wxSlider and wxScrollBar, with an id
4216#define EVT_COMMAND_SCROLL_TOP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_TOP, winid, wxScrollEventHandler(func))
4217#define EVT_COMMAND_SCROLL_BOTTOM(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_BOTTOM, winid, wxScrollEventHandler(func))
4218#define EVT_COMMAND_SCROLL_LINEUP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_LINEUP, winid, wxScrollEventHandler(func))
4219#define EVT_COMMAND_SCROLL_LINEDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_LINEDOWN, winid, wxScrollEventHandler(func))
4220#define EVT_COMMAND_SCROLL_PAGEUP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_PAGEUP, winid, wxScrollEventHandler(func))
4221#define EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_PAGEDOWN, winid, wxScrollEventHandler(func))
4222#define EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_THUMBTRACK, winid, wxScrollEventHandler(func))
4223#define EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_THUMBRELEASE, winid, wxScrollEventHandler(func))
4224#define EVT_COMMAND_SCROLL_CHANGED(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_CHANGED, winid, wxScrollEventHandler(func))
4225
4226#define EVT_COMMAND_SCROLL(winid, func) \
4227 EVT_COMMAND_SCROLL_TOP(winid, func) \
4228 EVT_COMMAND_SCROLL_BOTTOM(winid, func) \
4229 EVT_COMMAND_SCROLL_LINEUP(winid, func) \
4230 EVT_COMMAND_SCROLL_LINEDOWN(winid, func) \
4231 EVT_COMMAND_SCROLL_PAGEUP(winid, func) \
4232 EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) \
4233 EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) \
4234 EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) \
4235 EVT_COMMAND_SCROLL_CHANGED(winid, func)
4236
4237#if WXWIN_COMPATIBILITY_2_6
4238 // compatibility macros for the old name, deprecated in 2.8
4239 #define wxEVT_SCROLL_ENDSCROLL wxEVT_SCROLL_CHANGED
4240 #define EVT_COMMAND_SCROLL_ENDSCROLL EVT_COMMAND_SCROLL_CHANGED
4241 #define EVT_SCROLL_ENDSCROLL EVT_SCROLL_CHANGED
4242#endif // WXWIN_COMPATIBILITY_2_6
4243
4244// Convenience macros for commonly-used commands
4245#define EVT_CHECKBOX(winid, func) wx__DECLARE_EVT1(wxEVT_CHECKBOX, winid, wxCommandEventHandler(func))
4246#define EVT_CHOICE(winid, func) wx__DECLARE_EVT1(wxEVT_CHOICE, winid, wxCommandEventHandler(func))
4247#define EVT_LISTBOX(winid, func) wx__DECLARE_EVT1(wxEVT_LISTBOX, winid, wxCommandEventHandler(func))
4248#define EVT_LISTBOX_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_LISTBOX_DCLICK, winid, wxCommandEventHandler(func))
4249#define EVT_MENU(winid, func) wx__DECLARE_EVT1(wxEVT_MENU, winid, wxCommandEventHandler(func))
4250#define EVT_MENU_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_MENU, id1, id2, wxCommandEventHandler(func))
4251#if defined(__SMARTPHONE__)
4252# define EVT_BUTTON(winid, func) EVT_MENU(winid, func)
4253#else
4254# define EVT_BUTTON(winid, func) wx__DECLARE_EVT1(wxEVT_BUTTON, winid, wxCommandEventHandler(func))
4255#endif
4256#define EVT_SLIDER(winid, func) wx__DECLARE_EVT1(wxEVT_SLIDER, winid, wxCommandEventHandler(func))
4257#define EVT_RADIOBOX(winid, func) wx__DECLARE_EVT1(wxEVT_RADIOBOX, winid, wxCommandEventHandler(func))
4258#define EVT_RADIOBUTTON(winid, func) wx__DECLARE_EVT1(wxEVT_RADIOBUTTON, winid, wxCommandEventHandler(func))
4259// EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
4260#define EVT_SCROLLBAR(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLLBAR, winid, wxCommandEventHandler(func))
4261#define EVT_VLBOX(winid, func) wx__DECLARE_EVT1(wxEVT_VLBOX, winid, wxCommandEventHandler(func))
4262#define EVT_COMBOBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMBOBOX, winid, wxCommandEventHandler(func))
4263#define EVT_TOOL(winid, func) wx__DECLARE_EVT1(wxEVT_TOOL, winid, wxCommandEventHandler(func))
4264#define EVT_TOOL_DROPDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_TOOL_DROPDOWN, winid, wxCommandEventHandler(func))
4265#define EVT_TOOL_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_TOOL, id1, id2, wxCommandEventHandler(func))
4266#define EVT_TOOL_RCLICKED(winid, func) wx__DECLARE_EVT1(wxEVT_TOOL_RCLICKED, winid, wxCommandEventHandler(func))
4267#define EVT_TOOL_RCLICKED_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_TOOL_RCLICKED, id1, id2, wxCommandEventHandler(func))
4268#define EVT_TOOL_ENTER(winid, func) wx__DECLARE_EVT1(wxEVT_TOOL_ENTER, winid, wxCommandEventHandler(func))
4269#define EVT_CHECKLISTBOX(winid, func) wx__DECLARE_EVT1(wxEVT_CHECKLISTBOX, winid, wxCommandEventHandler(func))
4270#define EVT_COMBOBOX_DROPDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_COMBOBOX_DROPDOWN, winid, wxCommandEventHandler(func))
4271#define EVT_COMBOBOX_CLOSEUP(winid, func) wx__DECLARE_EVT1(wxEVT_COMBOBOX_CLOSEUP, winid, wxCommandEventHandler(func))
4272
4273// Generic command events
4274#define EVT_COMMAND_LEFT_CLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LEFT_CLICK, winid, wxCommandEventHandler(func))
4275#define EVT_COMMAND_LEFT_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LEFT_DCLICK, winid, wxCommandEventHandler(func))
4276#define EVT_COMMAND_RIGHT_CLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RIGHT_CLICK, winid, wxCommandEventHandler(func))
4277#define EVT_COMMAND_RIGHT_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RIGHT_DCLICK, winid, wxCommandEventHandler(func))
4278#define EVT_COMMAND_SET_FOCUS(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_SET_FOCUS, winid, wxCommandEventHandler(func))
4279#define EVT_COMMAND_KILL_FOCUS(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_KILL_FOCUS, winid, wxCommandEventHandler(func))
4280#define EVT_COMMAND_ENTER(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_ENTER, winid, wxCommandEventHandler(func))
4281
4282// Joystick events
4283
4284#define EVT_JOY_BUTTON_DOWN(func) wx__DECLARE_EVT0(wxEVT_JOY_BUTTON_DOWN, wxJoystickEventHandler(func))
4285#define EVT_JOY_BUTTON_UP(func) wx__DECLARE_EVT0(wxEVT_JOY_BUTTON_UP, wxJoystickEventHandler(func))
4286#define EVT_JOY_MOVE(func) wx__DECLARE_EVT0(wxEVT_JOY_MOVE, wxJoystickEventHandler(func))
4287#define EVT_JOY_ZMOVE(func) wx__DECLARE_EVT0(wxEVT_JOY_ZMOVE, wxJoystickEventHandler(func))
4288
4289// All joystick events
4290#define EVT_JOYSTICK_EVENTS(func) \
4291 EVT_JOY_BUTTON_DOWN(func) \
4292 EVT_JOY_BUTTON_UP(func) \
4293 EVT_JOY_MOVE(func) \
4294 EVT_JOY_ZMOVE(func)
4295
4296// Idle event
4297#define EVT_IDLE(func) wx__DECLARE_EVT0(wxEVT_IDLE, wxIdleEventHandler(func))
4298
4299// Update UI event
4300#define EVT_UPDATE_UI(winid, func) wx__DECLARE_EVT1(wxEVT_UPDATE_UI, winid, wxUpdateUIEventHandler(func))
4301#define EVT_UPDATE_UI_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_UPDATE_UI, id1, id2, wxUpdateUIEventHandler(func))
4302
4303// Help events
4304#define EVT_HELP(winid, func) wx__DECLARE_EVT1(wxEVT_HELP, winid, wxHelpEventHandler(func))
4305#define EVT_HELP_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_HELP, id1, id2, wxHelpEventHandler(func))
4306#define EVT_DETAILED_HELP(winid, func) wx__DECLARE_EVT1(wxEVT_DETAILED_HELP, winid, wxHelpEventHandler(func))
4307#define EVT_DETAILED_HELP_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_DETAILED_HELP, id1, id2, wxHelpEventHandler(func))
4308
4309// Context Menu Events
4310#define EVT_CONTEXT_MENU(func) wx__DECLARE_EVT0(wxEVT_CONTEXT_MENU, wxContextMenuEventHandler(func))
4311#define EVT_COMMAND_CONTEXT_MENU(winid, func) wx__DECLARE_EVT1(wxEVT_CONTEXT_MENU, winid, wxContextMenuEventHandler(func))
4312
4313// Clipboard text Events
4314#define EVT_TEXT_CUT(winid, func) wx__DECLARE_EVT1(wxEVT_TEXT_CUT, winid, wxClipboardTextEventHandler(func))
4315#define EVT_TEXT_COPY(winid, func) wx__DECLARE_EVT1(wxEVT_TEXT_COPY, winid, wxClipboardTextEventHandler(func))
4316#define EVT_TEXT_PASTE(winid, func) wx__DECLARE_EVT1(wxEVT_TEXT_PASTE, winid, wxClipboardTextEventHandler(func))
4317
4318// Thread events
4319#define EVT_THREAD(id, func) wx__DECLARE_EVT1(wxEVT_THREAD, id, wxThreadEventHandler(func))
4320
4321// ----------------------------------------------------------------------------
4322// Helper functions
4323// ----------------------------------------------------------------------------
4324
4325// This is an ugly hack to allow the use of Bind() instead of Connect() inside
4326// the library code if the library was built with support for it, here is how
4327// it is used:
4328//
4329// class SomeEventHandlingClass : wxBIND_OR_CONNECT_HACK_BASE_CLASS
4330// public SomeBaseClass
4331// {
4332// public:
4333// SomeEventHandlingClass(wxWindow *win)
4334// {
4335// // connect to the event for the given window
4336// wxBIND_OR_CONNECT_HACK(win, wxEVT_SOMETHING, wxSomeEventHandler,
4337// SomeEventHandlingClass::OnSomeEvent, this);
4338// }
4339//
4340// private:
4341// void OnSomeEvent(wxSomeEvent&) { ... }
4342// };
4343//
4344// This is *not* meant to be used by library users, it is only defined here
4345// (and not in a private header) because the base class must be visible from
4346// other public headers, please do NOT use this in your code, it will be
4347// removed from future wx versions without warning.
4348#ifdef wxHAS_EVENT_BIND
4349 #define wxBIND_OR_CONNECT_HACK_BASE_CLASS
4350 #define wxBIND_OR_CONNECT_HACK_ONLY_BASE_CLASS
4351 #define wxBIND_OR_CONNECT_HACK(win, evt, handler, func, obj) \
4352 win->Bind(evt, &func, obj)
4353#else // wxHAS_EVENT_BIND
4354 #define wxBIND_OR_CONNECT_HACK_BASE_CLASS public wxEvtHandler,
4355 #define wxBIND_OR_CONNECT_HACK_ONLY_BASE_CLASS : public wxEvtHandler
4356 #define wxBIND_OR_CONNECT_HACK(win, evt, handler, func, obj) \
4357 win->Connect(evt, handler(func), NULL, obj)
4358#endif // wxHAS_EVENT_BIND
4359
4360#if wxUSE_GUI
4361
4362// Find a window with the focus, that is also a descendant of the given window.
4363// This is used to determine the window to initially send commands to.
4364WXDLLIMPEXP_CORE wxWindow* wxFindFocusDescendant(wxWindow* ancestor);
4365
4366#endif // wxUSE_GUI
4367
4368
4369// ----------------------------------------------------------------------------
4370// Compatibility macro aliases
4371// ----------------------------------------------------------------------------
4372
4373// deprecated variants _not_ requiring a semicolon after them and without wx prefix
4374// (note that also some wx-prefixed macro do _not_ require a semicolon because
4375// it's not always possible to force the compire to require it)
4376
4377#define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \
4378 wxDECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj)
4379#define DECLARE_EVENT_TABLE_TERMINATOR() wxDECLARE_EVENT_TABLE_TERMINATOR()
4380#define DECLARE_EVENT_TABLE() wxDECLARE_EVENT_TABLE();
4381#define BEGIN_EVENT_TABLE(a,b) wxBEGIN_EVENT_TABLE(a,b)
4382#define BEGIN_EVENT_TABLE_TEMPLATE1(a,b,c) wxBEGIN_EVENT_TABLE_TEMPLATE1(a,b,c)
4383#define BEGIN_EVENT_TABLE_TEMPLATE2(a,b,c,d) wxBEGIN_EVENT_TABLE_TEMPLATE2(a,b,c,d)
4384#define BEGIN_EVENT_TABLE_TEMPLATE3(a,b,c,d,e) wxBEGIN_EVENT_TABLE_TEMPLATE3(a,b,c,d,e)
4385#define BEGIN_EVENT_TABLE_TEMPLATE4(a,b,c,d,e,f) wxBEGIN_EVENT_TABLE_TEMPLATE4(a,b,c,d,e,f)
4386#define BEGIN_EVENT_TABLE_TEMPLATE5(a,b,c,d,e,f,g) wxBEGIN_EVENT_TABLE_TEMPLATE5(a,b,c,d,e,f,g)
4387#define BEGIN_EVENT_TABLE_TEMPLATE6(a,b,c,d,e,f,g,h) wxBEGIN_EVENT_TABLE_TEMPLATE6(a,b,c,d,e,f,g,h)
4388#define END_EVENT_TABLE() wxEND_EVENT_TABLE()
4389
4390// other obsolete event declaration/definition macros; we don't need them any longer
4391// but we keep them for compatibility as it doesn't cost us anything anyhow
4392#define BEGIN_DECLARE_EVENT_TYPES()
4393#define END_DECLARE_EVENT_TYPES()
4394#define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \
4395 extern expdecl const wxEventType name;
4396#define DECLARE_EVENT_TYPE(name, value) \
4397 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_CORE, name, value)
4398#define DECLARE_LOCAL_EVENT_TYPE(name, value) \
4399 DECLARE_EXPORTED_EVENT_TYPE(wxEMPTY_PARAMETER_VALUE, name, value)
4400#define DEFINE_EVENT_TYPE(name) const wxEventType name = wxNewEventType();
4401#define DEFINE_LOCAL_EVENT_TYPE(name) DEFINE_EVENT_TYPE(name)
4402
4403// alias for backward compatibility with 2.9.0:
4404#define wxEVT_COMMAND_THREAD wxEVT_THREAD
4405// other old wxEVT_COMMAND_* constants
4406#define wxEVT_COMMAND_BUTTON_CLICKED wxEVT_BUTTON
4407#define wxEVT_COMMAND_CHECKBOX_CLICKED wxEVT_CHECKBOX
4408#define wxEVT_COMMAND_CHOICE_SELECTED wxEVT_CHOICE
4409#define wxEVT_COMMAND_LISTBOX_SELECTED wxEVT_LISTBOX
4410#define wxEVT_COMMAND_LISTBOX_DOUBLECLICKED wxEVT_LISTBOX_DCLICK
4411#define wxEVT_COMMAND_CHECKLISTBOX_TOGGLED wxEVT_CHECKLISTBOX
4412#define wxEVT_COMMAND_MENU_SELECTED wxEVT_MENU
4413#define wxEVT_COMMAND_TOOL_CLICKED wxEVT_TOOL
4414#define wxEVT_COMMAND_SLIDER_UPDATED wxEVT_SLIDER
4415#define wxEVT_COMMAND_RADIOBOX_SELECTED wxEVT_RADIOBOX
4416#define wxEVT_COMMAND_RADIOBUTTON_SELECTED wxEVT_RADIOBUTTON
4417#define wxEVT_COMMAND_SCROLLBAR_UPDATED wxEVT_SCROLLBAR
4418#define wxEVT_COMMAND_VLBOX_SELECTED wxEVT_VLBOX
4419#define wxEVT_COMMAND_COMBOBOX_SELECTED wxEVT_COMBOBOX
4420#define wxEVT_COMMAND_TOOL_RCLICKED wxEVT_TOOL_RCLICKED
4421#define wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED wxEVT_TOOL_DROPDOWN
4422#define wxEVT_COMMAND_TOOL_ENTER wxEVT_TOOL_ENTER
4423#define wxEVT_COMMAND_COMBOBOX_DROPDOWN wxEVT_COMBOBOX_DROPDOWN
4424#define wxEVT_COMMAND_COMBOBOX_CLOSEUP wxEVT_COMBOBOX_CLOSEUP
4425#define wxEVT_COMMAND_TEXT_COPY wxEVT_TEXT_COPY
4426#define wxEVT_COMMAND_TEXT_CUT wxEVT_TEXT_CUT
4427#define wxEVT_COMMAND_TEXT_PASTE wxEVT_TEXT_PASTE
4428#define wxEVT_COMMAND_TEXT_UPDATED wxEVT_TEXT
4429
4430#endif // _WX_EVENT_H_