]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/idleevt.tex
corrected ancient event type constant in an example
[wxWidgets.git] / docs / latex / wx / idleevt.tex
... / ...
CommitLineData
1\section{\class{wxIdleEvent}}\label{wxidleevent}
2
3This class is used for idle events, which are generated when the system becomes
4idle. Note that, unless you do something specifically, the idle events are not
5sent if the system remains idle once it has become it, e.g. only a single idle
6event will be generated until something else resulting in more normal events
7happens and only then is the next idle event sent again. If you need to ensure
8a continuous stream of idle events, you can either use
9\helpref{RequestMore}{wxidleeventrequestmore} method in your handler or call
10\helpref{wxWakeUpIdle}{wxwakeupidle} periodically (for example from timer
11event), but note that both of these approaches (and especially the first one)
12increase the system load and so should be avoided if possible.
13
14By default, idle events are sent to all windows (and also
15\helpref{wxApp}{wxapp}, as usual). If this is causing a significant
16overhead in your application, you can call \helpref{wxIdleEvent::SetMode}{wxidleeventsetmode} with
17the value wxIDLE\_PROCESS\_SPECIFIED, and set the wxWS\_EX\_PROCESS\_IDLE extra
18window style for every window which should receive idle events.
19
20\wxheading{Derived from}
21
22\helpref{wxEvent}{wxevent}\\
23\helpref{wxObject}{wxobject}
24
25\wxheading{Include files}
26
27<wx/event.h>
28
29\wxheading{Event table macros}
30
31To process an idle event, use this event handler macro to direct input to a member
32function that takes a wxIdleEvent argument.
33
34\twocolwidtha{7cm}
35\begin{twocollist}\itemsep=0pt
36\twocolitem{{\bf EVT\_IDLE(func)}}{Process a wxEVT\_IDLE event.}
37\end{twocollist}%
38
39\wxheading{See also}
40
41\helpref{Event handling overview}{eventhandlingoverview}, \helpref{wxUpdateUIEvent}{wxupdateuievent},
42\helpref{wxWindow::OnInternalIdle}{wxwindowoninternalidle}
43
44\latexignore{\rtfignore{\wxheading{Members}}}
45
46\membersection{wxIdleEvent::wxIdleEvent}\label{wxidleeventctor}
47
48\func{}{wxIdleEvent}{\void}
49
50Constructor.
51
52\membersection{wxIdleEvent::CanSend}\label{wxidleeventcansend}
53
54\func{static bool}{CanSend}{\param{wxWindow*}{ window}}
55
56Returns {\tt true} if it is appropriate to send idle events to
57this window.
58
59This function looks at the mode used (see \helpref{wxIdleEvent::SetMode}{wxidleeventsetmode}),
60and the wxWS\_EX\_PROCESS\_IDLE style in {\it window} to determine whether idle events should be sent to
61this window now. By default this will always return {\tt true} because
62the update mode is initially wxIDLE\_PROCESS\_ALL. You can change the mode
63to only send idle events to windows with the wxWS\_EX\_PROCESS\_IDLE extra window style set.
64
65\wxheading{See also}
66
67\helpref{wxIdleEvent::SetMode}{wxidleeventsetmode}
68
69\membersection{wxIdleEvent::GetMode}\label{wxidleeventgetmode}
70
71\func{static wxIdleMode}{GetMode}{\void}
72
73Static function returning a value specifying how wxWidgets
74will send idle events: to all windows, or only to those which specify that they
75will process the events.
76
77See \helpref{wxIdleEvent::SetMode}{wxidleeventsetmode}.
78
79\membersection{wxIdleEvent::RequestMore}\label{wxidleeventrequestmore}
80
81\func{void}{RequestMore}{\param{bool}{ needMore = true}}
82
83Tells wxWidgets that more processing is required. This function can be called by an OnIdle
84handler for a window or window event handler to indicate that wxApp::OnIdle should
85forward the OnIdle event once more to the application windows. If no window calls this function
86during OnIdle, then the application will remain in a passive event loop (not calling OnIdle) until a
87new event is posted to the application by the windowing system.
88
89\wxheading{See also}
90
91\helpref{wxIdleEvent::MoreRequested}{wxidleeventmorerequested}
92
93\membersection{wxIdleEvent::MoreRequested}\label{wxidleeventmorerequested}
94
95\constfunc{bool}{MoreRequested}{\void}
96
97Returns true if the OnIdle function processing this event requested more processing time.
98
99\wxheading{See also}
100
101\helpref{wxIdleEvent::RequestMore}{wxidleeventrequestmore}
102
103\membersection{wxIdleEvent::SetMode}\label{wxidleeventsetmode}
104
105\func{static void}{SetMode}{\param{wxIdleMode }{mode}}
106
107Static function for specifying how wxWidgets will send idle events: to
108all windows, or only to those which specify that they
109will process the events.
110
111{\it mode} can be one of the following values.
112The default is wxIDLE\_PROCESS\_ALL.
113
114\begin{verbatim}
115enum wxIdleMode
116{
117 // Send idle events to all windows
118 wxIDLE_PROCESS_ALL,
119
120 // Send idle events to windows that have
121 // the wxWS_EX_PROCESS_IDLE flag specified
122 wxIDLE_PROCESS_SPECIFIED
123};
124\end{verbatim}
125