]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/evthand.tex
added wxTE_BESTWRAP style (which is the default now); renamed wxTE_LINEWRAP to wxTE_C...
[wxWidgets.git] / docs / latex / wx / evthand.tex
... / ...
CommitLineData
1\section{\class{wxEvtHandler}}\label{wxevthandler}
2
3A class that can handle events from the windowing system.
4wxWindow (and therefore all window classes) are derived from
5this class.
6
7When events are received, wxEvtHandler invokes the method listed in the
8event table using itself as the object. When using multiple inheritance
9it is imperative that the wxEvtHandler(-derived) class be the first
10class inherited such that the "this" pointer for the overall object
11will be identical to the "this" pointer for the wxEvtHandler portion.
12
13\wxheading{Derived from}
14
15\helpref{wxObject}{wxobject}
16
17\wxheading{Include files}
18
19<wx/event.h>
20
21\wxheading{See also}
22
23\overview{Event handling overview}{eventhandlingoverview}
24
25\latexignore{\rtfignore{\wxheading{Members}}}
26
27\membersection{wxEvtHandler::wxEvtHandler}\label{wxevthandlerctor}
28
29\func{}{wxEvtHandler}{\void}
30
31Constructor.
32
33\membersection{wxEvtHandler::\destruct{wxEvtHandler}}\label{wxevthandlerdtor}
34
35\func{}{\destruct{wxEvtHandler}}{\void}
36
37Destructor. If the handler is part of a chain, the destructor will
38unlink itself and restore the previous and next handlers so that they point to
39each other.
40
41\membersection{wxEvtHandler::AddPendingEvent}\label{wxevthandleraddpendingevent}
42
43\func{void}{AddPendingEvent}{\param{wxEvent\& }{event}}
44
45This function posts an event to be processed later.
46
47\wxheading{Parameters}
48
49\docparam{event}{Event to add to process queue.}
50
51\wxheading{Remarks}
52
53The difference between sending an event (using the
54\helpref{ProcessEvent}{wxevthandlerprocessevent} method) and posting it is
55that in the first case the event is processed before the function returns,
56while in the second case, the function returns immediately and the event will
57be processed sometime later (usually during the next event loop iteration).
58
59A copy of {\it event} is made by the function, so the original can be deleted
60as soon as function returns (it is common that the original is created on the
61stack). This requires that the \helpref{wxEvent::Clone}{wxeventclone} method
62be implemented by {\it event} so that it can be duplicated and stored until
63it gets processed.
64
65This is also the method to call for inter-thread communication---it will
66post events safely between different threads which means that this method is
67thread-safe by using critical sections where needed. In a multi-threaded
68program, you often need to inform the main GUI thread about the status of
69other working threads and such notification should be done using this method.
70
71This method automatically wakes up idle handling if the underlying window
72system is currently idle and thus would not send any idle events. (Waking
73up idle handling is done calling \helpref{::wxWakeUpIdle}{wxwakeupidle}.)
74
75\membersection{wxEvtHandler::Connect}\label{wxevthandlerconnect}
76
77\func{void}{Connect}{\param{int}{ id}, \param{int}{ lastId},
78 \param{wxEventType }{eventType}, \param{wxObjectEventFunction}{ function},
79 \param{wxObject*}{ userData = NULL}, \param{wxEvtHandler*}{ eventSink = NULL}}
80
81\func{void}{Connect}{\param{int}{ id},
82 \param{wxEventType }{eventType}, \param{wxObjectEventFunction}{ function},
83 \param{wxObject*}{ userData = NULL}, \param{wxEvtHandler*}{ eventSink = NULL}}
84
85\func{void}{Connect}{\param{wxEventType }{eventType}, \param{wxObjectEventFunction}{ function},
86 \param{wxObject*}{ userData = NULL}, \param{wxEvtHandler*}{ eventSink = NULL}}
87
88Connects the given function dynamically with the event handler, id and event type. This
89is an alternative to the use of static event tables. See the 'event' or the old 'dynamic' sample for usage.
90
91\wxheading{Parameters}
92
93\docparam{id}{The identifier (or first of the identifier range) to be
94associated with the event handler function. For the version not taking this
95argument, it defaults to \texttt{wxID\_ANY}.}
96
97\docparam{lastId}{The second part of the identifier range to be associated with the event handler function.}
98
99\docparam{eventType}{The event type to be associated with this event handler.}
100
101\docparam{function}{The event handler function. Note that this function should
102be explicitly converted to the correct type which can be done using a macro
103called \texttt{wxFooHandler} for the handler for any \texttt{wxFooEvent}.}
104
105\docparam{userData}{Data to be associated with the event table entry.}
106
107\docparam{eventSink}{Object whose member function should be called. If this is NULL,
108\textit{this} will be used.}
109
110\wxheading{Example}
111
112\begin{verbatim}
113 frame->Connect( wxID_EXIT,
114 wxEVT_COMMAND_MENU_SELECTED,
115 wxCommandEventHandler(MyFrame::OnQuit) );
116\end{verbatim}
117
118\perlnote{In wxPerl this function takes 4 arguments: \texttt{id,
119lastid, type, method}; if \texttt{method} is \texttt{undef}, the
120handler is disconnected.}
121
122\membersection{wxEvtHandler::Disconnect}\label{wxevthandlerdisconnect}
123
124\func{bool}{Disconnect}{\param{int}{ id = \texttt{wxID\_ANY}},
125 \param{wxEventType }{eventType = wxEVT\_NULL}, \param{wxObjectEventFunction}{ function = NULL},
126 \param{wxObject*}{ userData = NULL}, \param{wxEvtHandler*}{ eventSink = NULL}}
127
128\func{bool}{Disconnect}{\param{int}{ id}, \param{int}{ lastId = \texttt{wxID\_ANY}},
129 \param{wxEventType }{eventType = wxEVT\_NULL}, \param{wxObjectEventFunction}{ function = NULL},
130 \param{wxObject*}{ userData = NULL}, \param{wxEvtHandler*}{ eventSink = NULL}}
131
132Disconnects the given function dynamically from the event handler, using the specified
133parameters as search criteria and returning true if a matching function has been
134found and removed. This method can only disconnect functions which have been added
135using the \helpref{wxEvtHandler::Connect}{wxevthandlerconnect} method. There is no way
136to disconnect functions connected using the (static) event tables.
137
138\wxheading{Parameters}
139
140\docparam{id}{The identifier (or first of the identifier range) associated with the event handler function.}
141
142\docparam{lastId}{The second part of the identifier range associated with the event handler function.}
143
144\docparam{eventType}{The event type associated with this event handler.}
145
146\docparam{function}{The event handler function.}
147
148\docparam{userData}{Data associated with the event table entry.}
149
150\docparam{eventSink}{Object whose member function should be called.}
151
152\perlnote{In wxPerl this function takes 3 arguments: \texttt{id,
153lastid, type}.}
154
155\membersection{wxEvtHandler::GetClientData}\label{wxevthandlergetclientdata}
156
157\func{void* }{GetClientData}{\void}
158
159Gets user-supplied client data.
160
161\wxheading{Remarks}
162
163Normally, any extra data the programmer wishes to associate with the object
164should be made available by deriving a new class with new data members.
165
166\wxheading{See also}
167
168\helpref{wxEvtHandler::SetClientData}{wxevthandlersetclientdata}
169
170\membersection{wxEvtHandler::GetClientObject}\label{wxevthandlergetclientobject}
171
172\constfunc{wxClientData*}{GetClientObject}{\void}
173
174Get a pointer to the user-supplied client data object.
175
176\wxheading{See also}
177
178\helpref{wxEvtHandler::SetClientObject}{wxevthandlersetclientobject},
179\helpref{wxClientData}{wxclientdata}
180
181\membersection{wxEvtHandler::GetEvtHandlerEnabled}\label{wxevthandlergetevthandlerenabled}
182
183\func{bool}{GetEvtHandlerEnabled}{\void}
184
185Returns true if the event handler is enabled, false otherwise.
186
187\wxheading{See also}
188
189\helpref{wxEvtHandler::SetEvtHandlerEnabled}{wxevthandlersetevthandlerenabled}
190
191\membersection{wxEvtHandler::GetNextHandler}\label{wxevthandlergetnexthandler}
192
193\func{wxEvtHandler*}{GetNextHandler}{\void}
194
195Gets the pointer to the next handler in the chain.
196
197\wxheading{See also}
198
199\helpref{wxEvtHandler::SetNextHandler}{wxevthandlersetnexthandler},\rtfsp
200\helpref{wxEvtHandler::GetPreviousHandler}{wxevthandlergetprevioushandler},\rtfsp
201\helpref{wxEvtHandler::SetPreviousHandler}{wxevthandlersetprevioushandler},\rtfsp
202\helpref{wxWindow::PushEventHandler}{wxwindowpusheventhandler},\rtfsp
203\helpref{wxWindow::PopEventHandler}{wxwindowpopeventhandler}
204
205\membersection{wxEvtHandler::GetPreviousHandler}\label{wxevthandlergetprevioushandler}
206
207\func{wxEvtHandler*}{GetPreviousHandler}{\void}
208
209Gets the pointer to the previous handler in the chain.
210
211\wxheading{See also}
212
213\helpref{wxEvtHandler::SetPreviousHandler}{wxevthandlersetprevioushandler},\rtfsp
214\helpref{wxEvtHandler::GetNextHandler}{wxevthandlergetnexthandler},\rtfsp
215\helpref{wxEvtHandler::SetNextHandler}{wxevthandlersetnexthandler},\rtfsp
216\helpref{wxWindow::PushEventHandler}{wxwindowpusheventhandler},\rtfsp
217\helpref{wxWindow::PopEventHandler}{wxwindowpopeventhandler}
218
219\membersection{wxEvtHandler::ProcessEvent}\label{wxevthandlerprocessevent}
220
221\func{virtual bool}{ProcessEvent}{\param{wxEvent\& }{event}}
222
223Processes an event, searching event tables and calling zero or more suitable event handler function(s).
224
225\wxheading{Parameters}
226
227\docparam{event}{Event to process.}
228
229\wxheading{Return value}
230
231true if a suitable event handler function was found and executed, and the function did not
232call \helpref{wxEvent::Skip}{wxeventskip}.
233
234\wxheading{Remarks}
235
236Normally, your application would not call this function: it is called in the wxWidgets
237implementation to dispatch incoming user interface events to the framework (and application).
238
239However, you might need to call it if implementing new functionality (such as a new control) where
240you define new event types, as opposed to allowing the user to override virtual functions.
241
242An instance where you might actually override the {\bf ProcessEvent} function is where you want
243to direct event processing to event handlers not normally noticed by wxWidgets. For example,
244in the document/view architecture, documents and views are potential event handlers.
245When an event reaches a frame, {\bf ProcessEvent} will need to be called on the associated
246document and view in case event handler functions are associated with these objects.
247The property classes library (wxProperty) also overrides {\bf ProcessEvent} for similar reasons.
248
249The normal order of event table searching is as follows:
250
251\begin{enumerate}\itemsep=0pt
252\item If the object is disabled (via a call to \helpref{wxEvtHandler::SetEvtHandlerEnabled}{wxevthandlersetevthandlerenabled})
253the function skips to step (6).
254\item If the object is a wxWindow, {\bf ProcessEvent} is recursively called on the window's\rtfsp
255\helpref{wxValidator}{wxvalidator}. If this returns true, the function exits.
256\item {\bf SearchEventTable} is called for this event handler. If this fails, the base
257class table is tried, and so on until no more tables exist or an appropriate function was found,
258in which case the function exits.
259\item The search is applied down the entire chain of event handlers (usually the chain has a length
260of one). If this succeeds, the function exits.
261\item If the object is a wxWindow and the event is a wxCommandEvent, {\bf ProcessEvent} is
262recursively applied to the parent window's event handler. If this returns true, the function exits.
263\item Finally, {\bf ProcessEvent} is called on the wxApp object.
264\end{enumerate}
265
266\wxheading{See also}
267
268\helpref{wxEvtHandler::SearchEventTable}{wxevthandlersearcheventtable}
269
270\membersection{wxEvtHandler::SearchEventTable}\label{wxevthandlersearcheventtable}
271
272\func{virtual bool}{SearchEventTable}{\param{wxEventTable\& }{table}, \param{wxEvent\& }{event}}
273
274Searches the event table, executing an event handler function if an appropriate one
275is found.
276
277\wxheading{Parameters}
278
279\docparam{table}{Event table to be searched.}
280
281\docparam{event}{Event to be matched against an event table entry.}
282
283\wxheading{Return value}
284
285true if a suitable event handler function was found and executed, and the function did not
286call \helpref{wxEvent::Skip}{wxeventskip}.
287
288\wxheading{Remarks}
289
290This function looks through the object's event table and tries to find an entry
291that will match the event.
292
293An entry will match if:
294
295\begin{enumerate}\itemsep=0pt
296\item The event type matches, and
297\item the identifier or identifier range matches, or the event table entry's identifier is zero.
298\end{enumerate}
299
300If a suitable function is called but calls \helpref{wxEvent::Skip}{wxeventskip}, this function will
301fail, and searching will continue.
302
303\wxheading{See also}
304
305\helpref{wxEvtHandler::ProcessEvent}{wxevthandlerprocessevent}
306
307\membersection{wxEvtHandler::SetClientData}\label{wxevthandlersetclientdata}
308
309\func{void}{SetClientData}{\param{void* }{data}}
310
311Sets user-supplied client data.
312
313\wxheading{Parameters}
314
315\docparam{data}{Data to be associated with the event handler.}
316
317\wxheading{Remarks}
318
319Normally, any extra data the programmer wishes to associate with
320the object should be made available by deriving a new class
321with new data members. You must not call this method and
322\helpref{SetClientObject}{wxevthandlersetclientobject} on the
323same class - only one of them.
324
325\wxheading{See also}
326
327\helpref{wxEvtHandler::GetClientData}{wxevthandlergetclientdata}
328
329\membersection{wxEvtHandler::SetClientObject}\label{wxevthandlersetclientobject}
330
331\func{void}{SetClientObject}{\param{wxClientData* }{data}}
332
333Set the client data object. Any previous object will be deleted.
334
335\wxheading{See also}
336
337\helpref{wxEvtHandler::GetClientObject}{wxevthandlergetclientobject},
338\helpref{wxClientData}{wxclientdata}
339
340\membersection{wxEvtHandler::SetEvtHandlerEnabled}\label{wxevthandlersetevthandlerenabled}
341
342\func{void}{SetEvtHandlerEnabled}{\param{bool }{enabled}}
343
344Enables or disables the event handler.
345
346\wxheading{Parameters}
347
348\docparam{enabled}{true if the event handler is to be enabled, false if it is to be disabled.}
349
350\wxheading{Remarks}
351
352You can use this function to avoid having to remove the event handler from the chain, for example
353when implementing a dialog editor and changing from edit to test mode.
354
355\wxheading{See also}
356
357\helpref{wxEvtHandler::GetEvtHandlerEnabled}{wxevthandlergetevthandlerenabled}
358
359\membersection{wxEvtHandler::SetNextHandler}\label{wxevthandlersetnexthandler}
360
361\func{void}{SetNextHandler}{\param{wxEvtHandler* }{handler}}
362
363Sets the pointer to the next handler.
364
365\wxheading{Parameters}
366
367\docparam{handler}{Event handler to be set as the next handler.}
368
369\wxheading{See also}
370
371\helpref{wxEvtHandler::GetNextHandler}{wxevthandlergetnexthandler},\rtfsp
372\helpref{wxEvtHandler::SetPreviousHandler}{wxevthandlersetprevioushandler},\rtfsp
373\helpref{wxEvtHandler::GetPreviousHandler}{wxevthandlergetprevioushandler},\rtfsp
374\helpref{wxWindow::PushEventHandler}{wxwindowpusheventhandler},\rtfsp
375\helpref{wxWindow::PopEventHandler}{wxwindowpopeventhandler}
376
377\membersection{wxEvtHandler::SetPreviousHandler}\label{wxevthandlersetprevioushandler}
378
379\func{void}{SetPreviousHandler}{\param{wxEvtHandler* }{handler}}
380
381Sets the pointer to the previous handler.
382
383\wxheading{Parameters}
384
385\docparam{handler}{Event handler to be set as the previous handler.}
386
387\wxheading{See also}
388
389\helpref{wxEvtHandler::GetPreviousHandler}{wxevthandlergetprevioushandler},\rtfsp
390\helpref{wxEvtHandler::SetNextHandler}{wxevthandlersetnexthandler},\rtfsp
391\helpref{wxEvtHandler::GetNextHandler}{wxevthandlergetnexthandler},\rtfsp
392\helpref{wxWindow::PushEventHandler}{wxwindowpusheventhandler},\rtfsp
393\helpref{wxWindow::PopEventHandler}{wxwindowpopeventhandler}
394
395