1 \section{\class{wxEvtHandler
}}\label{wxevthandler
}
3 A class that can handle events from the windowing system.
4 wxWindow (and therefore all window classes) are derived from
7 \wxheading{Derived from
}
9 \helpref{wxObject
}{wxobject
}
11 \wxheading{Include files
}
17 \overview{Event handling overview
}{eventhandlingoverview
}
19 \latexignore{\rtfignore{\wxheading{Members
}}}
21 \membersection{wxEvtHandler::wxEvtHandler
}
23 \func{}{wxEvtHandler
}{\void}
27 \membersection{wxEvtHandler::
\destruct{wxEvtHandler
}}
29 \func{}{\destruct{wxEvtHandler
}}{\void}
31 Destructor. If the handler is part of a chain, the destructor will
32 unlink itself and restore the previous and next handlers so that they point to
35 \membersection{wxEvtHandler::AddPendingEvent
}\label{wxevthandleraddpendingevent
}
37 \func{virtual void
}{AddPendingEvent
}{\param{wxEvent\&
}{event
}}
39 This function posts an event to be processed later.
41 \wxheading{Parameters
}
43 \docparam{event
}{Event to add to process queue.
}
47 The difference between sending an event (using the
48 \helpref{ProcessEvent
}{wxevthandlerprocessevent
} method) and posting it is
49 that in the first case the event is processed before the function returns,
50 while in the second case, the function returns immediately and the event will
51 be processed sometime later (usually during the next event loop iteration).
53 A copy of
{\it event
} is made by the function, so the original can be deleted
54 as soon as function returns (it is common that the original is created on the
55 stack). This requires that the
\helpref{wxEvent::Clone
}{wxeventclone
} method
56 be implemented by
{\it event
} so that it can be duplicated and stored until
59 This is also the method to call for inter-thread communication---it will
60 post events safely between different threads which means that this method is
61 thread-safe by using critical sections where needed. In a multi-threaded
62 program, you often need to inform the main GUI thread about the status of
63 other working threads and such notification should be done using this method.
65 This method automatically wakes up idle handling if the underlying window
66 system is currently idle and thus would not send any idle events. (Waking
67 up idle handling is done calling
\helpref{::wxWakeUpIdle
}{wxwakeupidle
}.)
69 \membersection{wxEvtHandler::Connect
}\label{wxevthandlerconnect
}
71 \func{void
}{Connect
}{\param{int
}{ id
},
72 \param{wxEventType
}{eventType
},
\param{wxObjectEventFunction
}{ function
},
73 \param{wxObject*
}{ userData = NULL
}}
75 \func{void
}{Connect
}{\param{int
}{ id
},
\param{int
}{ lastId
},
76 \param{wxEventType
}{eventType
},
\param{wxObjectEventFunction
}{ function
},
77 \param{wxObject*
}{ userData = NULL
}}
79 Connects the given function dynamically with the event handler, id and event type. This
80 is an alternative to the use of static event tables. See the 'dynamic' sample for usage.
82 \wxheading{Parameters
}
84 \docparam{id
}{The identifier (or first of the identifier range) to be associated with the event handler function.
}
86 \docparam{lastId
}{The second part of the identifier range to be associated with the event handler function.
}
88 \docparam{eventType
}{The event type to be associated with this event handler.
}
90 \docparam{function
}{The event handler function.
}
92 \docparam{userData
}{Data to be associated with the event table entry.
}
97 frame->Connect( wxID_EXIT,
98 wxEVT_COMMAND_MENU_SELECTED,
99 (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) MyFrame::OnQuit );
102 \membersection{wxEvtHandler::Disconnect
}\label{wxevthandlerdisconnect
}
104 \func{bool
}{Disconnect
}{\param{int
}{ id
},
105 \param{wxEventType
}{eventType = wxEVT
\_NULL},
\param{wxObjectEventFunction
}{ function = NULL
},
106 \param{wxObject*
}{ userData = NULL
}}
108 \func{bool
}{Disconnect
}{\param{int
}{ id
},
\param{int
}{ lastId = -
1},
109 \param{wxEventType
}{eventType = wxEVT
\_NULL},
\param{wxObjectEventFunction
}{ function = NULL
},
110 \param{wxObject*
}{ userData = NULL
}}
112 Disconnects the given function dynamically from the event handler, using the specified
113 parameters as search criteria and returning TRUE if a matching function has been
114 found and removed. This method can only disconnect functions which have been added
115 using the
\helpref{wxEvtHandler::Connect
}{wxevthandlerconnect
} method. There is no way
116 to disconnect functions connected using the (static) event tables.
118 \wxheading{Parameters
}
120 \docparam{id
}{The identifier (or first of the identifier range) associated with the event handler function.
}
122 \docparam{lastId
}{The second part of the identifier range associated with the event handler function.
}
124 \docparam{eventType
}{The event type associated with this event handler.
}
126 \docparam{function
}{The event handler function.
}
128 \docparam{userData
}{Data associated with the event table entry.
}
130 \membersection{wxEvtHandler::GetClientData
}\label{wxevthandlergetclientdata
}
132 \func{void*
}{GetClientData
}{\void}
134 Gets user-supplied client data.
138 Normally, any extra data the programmer wishes to associate with the object
139 should be made available by deriving a new class with new data members.
143 \helpref{wxEvtHandler::SetClientData
}{wxevthandlersetclientdata
}
145 \membersection{wxEvtHandler::GetEvtHandlerEnabled
}\label{wxevthandlergetevthandlerenabled
}
147 \func{bool
}{GetEvtHandlerEnabled
}{\void}
149 Returns TRUE if the event handler is enabled, FALSE otherwise.
153 \helpref{wxEvtHandler::SetEvtHandlerEnabled
}{wxevthandlersetevthandlerenabled
}
155 \membersection{wxEvtHandler::GetNextHandler
}\label{wxevthandlergetnexthandler
}
157 \func{wxEvtHandler*
}{GetNextHandler
}{\void}
159 Gets the pointer to the next handler in the chain.
163 \helpref{wxEvtHandler::SetNextHandler
}{wxevthandlersetnexthandler
},
\rtfsp
164 \helpref{wxEvtHandler::GetPreviousHandler
}{wxevthandlergetprevioushandler
},
\rtfsp
165 \helpref{wxEvtHandler::SetPreviousHandler
}{wxevthandlersetprevioushandler
},
\rtfsp
166 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
167 \helpref{wxWindow::PopEventHandler
}{wxwindowpopeventhandler
}
169 \membersection{wxEvtHandler::GetPreviousHandler
}\label{wxevthandlergetprevioushandler
}
171 \func{wxEvtHandler*
}{GetPreviousHandler
}{\void}
173 Gets the pointer to the previous handler in the chain.
177 \helpref{wxEvtHandler::SetPreviousHandler
}{wxevthandlersetprevioushandler
},
\rtfsp
178 \helpref{wxEvtHandler::GetNextHandler
}{wxevthandlergetnexthandler
},
\rtfsp
179 \helpref{wxEvtHandler::SetNextHandler
}{wxevthandlersetnexthandler
},
\rtfsp
180 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
181 \helpref{wxWindow::PopEventHandler
}{wxwindowpopeventhandler
}
183 \membersection{wxEvtHandler::ProcessEvent
}\label{wxevthandlerprocessevent
}
185 \func{virtual bool
}{ProcessEvent
}{\param{wxEvent\&
}{event
}}
187 Processes an event, searching event tables and calling zero or more suitable event handler function(s).
189 \wxheading{Parameters
}
191 \docparam{event
}{Event to process.
}
193 \wxheading{Return value
}
195 TRUE if a suitable event handler function was found and executed, and the function did not
196 call
\helpref{wxEvent::Skip
}{wxeventskip
}.
200 Normally, your application would not call this function: it is called in the wxWindows
201 implementation to dispatch incoming user interface events to the framework (and application).
203 However, you might need to call it if implementing new functionality (such as a new control) where
204 you define new event types, as opposed to allowing the user to override virtual functions.
206 An instance where you might actually override the
{\bf ProcessEvent
} function is where you want
207 to direct event processing to event handlers not normally noticed by wxWindows. For example,
208 in the
document/view architecture, documents and views are potential event handlers.
209 When an event reaches a frame,
{\bf ProcessEvent
} will need to be called on the associated
210 document and view in case event handler functions are associated with these objects.
211 The property classes library (wxProperty) also overrides
{\bf ProcessEvent
} for similar reasons.
213 The normal order of event table searching is as follows:
215 \begin{enumerate
}\itemsep=
0pt
216 \item If the object is disabled (via a call to
\helpref{wxEvtHandler::SetEvtHandlerEnabled
}{wxevthandlersetevthandlerenabled
})
217 the function skips to step (
6).
218 \item If the object is a wxWindow,
{\bf ProcessEvent
} is recursively called on the window's
\rtfsp
219 \helpref{wxValidator
}{wxvalidator
}. If this returns TRUE, the function exits.
220 \item {\bf SearchEventTable
} is called for this event handler. If this fails, the base
221 class table is tried, and so on until no more tables exist or an appropriate function was found,
222 in which case the function exits.
223 \item The search is applied down the entire chain of event handlers (usually the chain has a length
224 of one). If this succeeds, the function exits.
225 \item If the object is a wxWindow and the event is a wxCommandEvent,
{\bf ProcessEvent
} is
226 recursively applied to the parent window's event handler. If this returns TRUE, the function exits.
227 \item Finally,
{\bf ProcessEvent
} is called on the wxApp object.
232 \helpref{wxEvtHandler::SearchEventTable
}{wxevthandlersearcheventtable
}
234 \membersection{wxEvtHandler::SearchEventTable
}\label{wxevthandlersearcheventtable
}
236 \func{bool
}{SearchEventTable
}{\param{wxEventTable\&
}{table
},
\param{wxEvent\&
}{event
}}
238 Searches the event table, executing an event handler function if an appropriate one
241 \wxheading{Parameters
}
243 \docparam{table
}{Event table to be searched.
}
245 \docparam{event
}{Event to be matched against an event table entry.
}
247 \wxheading{Return value
}
249 TRUE if a suitable event handler function was found and executed, and the function did not
250 call
\helpref{wxEvent::Skip
}{wxeventskip
}.
254 This function looks through the object's event table and tries to find an entry
255 that will match the event.
257 An entry will match if:
259 \begin{enumerate
}\itemsep=
0pt
260 \item The event type matches, and
261 \item the identifier or identifier range matches, or the event table entry's identifier is zero.
264 If a suitable function is called but calls
\helpref{wxEvent::Skip
}{wxeventskip
}, this function will
265 fail, and searching will continue.
269 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
}
271 \membersection{wxEvtHandler::SetClientData
}\label{wxevthandlersetclientdata
}
273 \func{void
}{SetClientData
}{\param{void*
}{data
}}
275 Sets user-supplied client data.
277 \wxheading{Parameters
}
279 \docparam{data
}{Data to be associated with the event handler.
}
283 Normally, any extra data the programmer wishes to associate with
284 the object should be made available by deriving a new class
285 with new data members.
289 \helpref{wxEvtHandler::GetClientData
}{wxevthandlergetclientdata
}
291 \membersection{wxEvtHandler::SetEvtHandlerEnabled
}\label{wxevthandlersetevthandlerenabled
}
293 \func{void
}{SetEvtHandlerEnabled
}{\param{bool
}{enabled
}}
295 Enables or disables the event handler.
297 \wxheading{Parameters
}
299 \docparam{enabled
}{TRUE if the event handler is to be enabled, FALSE if it is to be disabled.
}
303 You can use this function to avoid having to remove the event handler from the chain, for example
304 when implementing a dialog editor and changing from edit to test mode.
308 \helpref{wxEvtHandler::GetEvtHandlerEnabled
}{wxevthandlergetevthandlerenabled
}
310 \membersection{wxEvtHandler::SetNextHandler
}\label{wxevthandlersetnexthandler
}
312 \func{void
}{SetNextHandler
}{\param{wxEvtHandler*
}{handler
}}
314 Sets the pointer to the next handler.
316 \wxheading{Parameters
}
318 \docparam{handler
}{Event handler to be set as the next handler.
}
322 \helpref{wxEvtHandler::GetNextHandler
}{wxevthandlergetnexthandler
},
\rtfsp
323 \helpref{wxEvtHandler::SetPreviousHandler
}{wxevthandlersetprevioushandler
},
\rtfsp
324 \helpref{wxEvtHandler::GetPreviousHandler
}{wxevthandlergetprevioushandler
},
\rtfsp
325 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
326 \helpref{wxWindow::PopEventHandler
}{wxwindowpopeventhandler
}
328 \membersection{wxEvtHandler::SetPreviousHandler
}\label{wxevthandlersetprevioushandler
}
330 \func{void
}{SetPreviousHandler
}{\param{wxEvtHandler*
}{handler
}}
332 Sets the pointer to the previous handler.
334 \wxheading{Parameters
}
336 \docparam{handler
}{Event handler to be set as the previous handler.
}
340 \helpref{wxEvtHandler::GetPreviousHandler
}{wxevthandlergetprevioushandler
},
\rtfsp
341 \helpref{wxEvtHandler::SetNextHandler
}{wxevthandlersetnexthandler
},
\rtfsp
342 \helpref{wxEvtHandler::GetNextHandler
}{wxevthandlergetnexthandler
},
\rtfsp
343 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
344 \helpref{wxWindow::PopEventHandler
}{wxwindowpopeventhandler
}