]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/idleevt.tex
implemented IPC using Unix domain sockets
[wxWidgets.git] / docs / latex / wx / idleevt.tex
CommitLineData
a660d684
KB
1\section{\class{wxIdleEvent}}\label{wxidleevent}
2
3This class is used for idle events, which are generated when the system is idle.
4
5\wxheading{Derived from}
6
7\helpref{wxEvent}{wxevent}\\
8\helpref{wxObject}{wxobject}
9
954b8ae6
JS
10\wxheading{Include files}
11
12<wx/event.h>
13
a660d684
KB
14\wxheading{Event table macros}
15
16To process an idle event, use this event handler macro to direct input to a member
17function that takes a wxIdleEvent argument.
18
19\twocolwidtha{7cm}
20\begin{twocollist}\itemsep=0pt
21\twocolitem{{\bf EVT\_IDLE(func)}}{Process a wxEVT\_IDLE event.}
22\end{twocollist}%
23
24\wxheading{Remarks}
25
26Idle events can be caught by the wxApp class, or by top-level window classes.
27
28\wxheading{See also}
29
4d5a0f67 30\helpref{Event handling overview}{eventhandlingoverview}
a660d684
KB
31
32\latexignore{\rtfignore{\wxheading{Members}}}
33
34\membersection{wxIdleEvent::wxIdleEvent}
35
36\func{}{wxIdleEvent}{\void}
37
38Constructor.
39
40\membersection{wxIdleEvent::RequestMore}\label{wxidleeventrequestmore}
41
42\func{void}{RequestMore}{\param{bool}{ needMore = TRUE}}
43
44Tells wxWindows that more processing is required. This function can be called by an OnIdle
45handler for a window or window event handler to indicate that wxApp::OnIdle should
46forward the OnIdle event once more to the application windows. If no window calls this function
47during OnIdle, then the application will remain in a passive event loop (not calling OnIdle) until a
48new event is posted to the application by the windowing system.
49
50\wxheading{See also}
51
4d5a0f67 52\helpref{wxIdleEvent::MoreRequested}{wxidleeventmorerequested}
a660d684
KB
53
54\membersection{wxIdleEvent::MoreRequested}\label{wxidleeventmorerequested}
55
56\constfunc{bool}{MoreRequested}{\void}
57
58Returns TRUE if the OnIdle function processing this event requested more processing time.
59
60\wxheading{See also}
61
4d5a0f67 62\helpref{wxIdleEvent::RequestMore}{wxidleeventrequestmore}
a660d684 63