1 \section{\class{wxEvent
}}\label{wxevent
}
3 An event is a structure holding information about an event passed to a
4 callback or member function.
{\bf wxEvent
} used to be a multipurpose
5 event object, and is an abstract base class for other event classes (see below).
7 For more information about events, see the
\helpref{Event handling overview
}{eventhandlingoverview
}.
9 \perlnote{In wxPerl custom event classes should be derived from
10 \texttt{Wx::PlEvent
} and
\texttt{Wx::PlCommandEvent
}.
}
12 \wxheading{Derived from
}
14 \helpref{wxObject
}{wxobject
}
16 \wxheading{Include files
}
22 \helpref{wxCommandEvent
}{wxcommandevent
},
\rtfsp
23 \helpref{wxMouseEvent
}{wxmouseevent
}
25 \latexignore{\rtfignore{\wxheading{Members
}}}
27 \membersection{wxEvent::wxEvent
}\label{wxeventctor
}
29 \func{}{wxEvent
}{\param{int
}{id =
0},
\param{wxEventType
}{eventType =
{\tt wxEVT
\_NULL}}}
31 Constructor. Should not need to be used directly by an application.
33 \membersection{wxEvent::m
\_propagationLevel}\label{wxeventmpropagationlevel
}
35 \member{int
}{m
\_propagationLevel}
37 Indicates how many levels the event can propagate. This member is protected and
38 should typically only be set in the constructors of the derived classes. It
39 may be temporarily changed by
\helpref{StopPropagation
}{wxeventstoppropagation
}
40 and
\helpref{ResumePropagation
}{wxeventresumepropagation
} and tested with
41 \helpref{ShouldPropagate
}{wxeventshouldpropagate
}.
43 The initial value is set to either
{\tt wxEVENT
\_PROPAGATE\_NONE} (by
44 default) meaning that the event shouldn't be propagated at all or to
45 {\tt wxEVENT
\_PROPAGATE\_MAX} (for command events) meaning that it should be
46 propagated as much as necessary.
48 Any positive number means that the event should be propagated but no more than
49 the given number of times. E.g. the propagation level may be set to $
1$ to
50 propagate the event to its parent only, but not to its grandparent.
52 \membersection{wxEvent::Clone
}\label{wxeventclone
}
54 \constfunc{virtual wxEvent*
}{Clone
}{\void}
56 Returns a copy of the event.
58 Any event that is posted to the wxWidgets event system for later action (via
59 \helpref{wxEvtHandler::AddPendingEvent
}{wxevthandleraddpendingevent
} or
60 \helpref{wxPostEvent
}{wxpostevent
}) must implement this method. All wxWidgets
61 events fully implement this method, but any derived events implemented by the
62 user should also implement this method just in case they (or some event
63 derived from them) are ever posted.
65 All wxWidgets events implement a copy constructor, so the easiest way of
66 implementing the Clone function is to implement a copy constructor for
67 a new event (call it MyEvent) and then define the Clone function like this:
70 wxEvent *Clone(void) const
{ return new MyEvent
(*this); }
73 \membersection{wxEvent::GetEventObject}\label{wxeventgeteventobject}
75 \func{wxObject*}{GetEventObject}{\void}
77 Returns the object (usually a window) associated with the
80 \membersection{wxEvent::GetEventType}\label{wxeventgeteventtype}
82 \func{WXTYPE}{GetEventType}{\void}
84 Returns the identifier of the given event type,
85 such as wxEVENT\_TYPE\_BUTTON\_COMMAND.
87 \membersection{wxEvent::GetId}\label{wxeventgetid}
89 \constfunc{int}{GetId}{\void}
91 Returns the identifier associated with this event, such as a button command id.
93 \membersection{wxEvent::GetSkipped}\label{wxeventgetskipped}
95 \constfunc{bool}{GetSkipped}{\void}
97 Returns true if the event handler should be skipped, false otherwise.
99 \membersection{wxEvent::GetTimestamp}\label{wxeventgettimestamp}
101 \func{long}{GetTimestamp}{\void}
103 Gets the timestamp for the event.
105 \membersection{wxEvent::IsCommandEvent}\label{wxeventiscommandevent}
107 \constfunc{bool}{IsCommandEvent}{\void}
109 Returns true if the event is or is derived from
110 \helpref{wxCommandEvent}{wxcommandevent} else it returns false.
111 Note: Exists only for optimization purposes.
114 \membersection{wxEvent::ResumePropagation}\label{wxeventresumepropagation}
116 \func{void}{ResumePropagation}{\param{int }{propagationLevel}}
118 Sets the propagation level to the given value (for example returned from an
119 earlier call to \helpref{StopPropagation}{wxeventstoppropagation}).
122 \membersection{wxEvent::SetEventObject}\label{wxeventseteventobject}
124 \func{void}{SetEventObject}{\param{wxObject* }{object}}
126 Sets the originating object.
128 \membersection{wxEvent::SetEventType}\label{wxeventseteventtype}
130 \func{void}{SetEventType}{\param{WXTYPE }{typ}}
134 \membersection{wxEvent::SetId}\label{wxeventsetid}
136 \func{void}{SetId}{\param{int}{ id}}
138 Sets the identifier associated with this event, such as a button command id.
140 \membersection{wxEvent::SetTimestamp}\label{wxeventsettimestamp}
142 \func{void}{SetTimestamp}{\param{long }{timeStamp}}
144 Sets the timestamp for the event.
146 \membersection{wxEvent::ShouldPropagate}\label{wxeventshouldpropagate}
148 \constfunc{bool}{ShouldPropagate}{\void}
150 Test if this event should be propagated or not, i.e. if the propagation level
151 is currently greater than $0$.
153 \membersection{wxEvent::Skip}\label{wxeventskip}
155 \func{void}{Skip}{\param{bool}{ skip = true}}
157 Called by an event handler, it controls whether additional event
158 handlers bound to this event will be called after the current event
159 handler returns. Skip(false) (the default setting) will prevent
160 additional event handlers from being called and control will be
161 returned to the sender of the event immediately after the current
162 handler has finished. Skip(True) will cause the event processing
163 system to continue searching for a handler function for this event.
166 \membersection{wxEvent::StopPropagation}\label{wxeventstoppropagation}
168 \func{int}{StopPropagation}{\void}
170 Stop the event from propagating to its parent window.
172 Returns the old propagation level value which may be later passed to
173 \helpref{ResumePropagation}{wxeventresumepropagation} to allow propagating the