]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/idleevt.tex
finished implementation for stencil and colored patterns
[wxWidgets.git] / docs / latex / wx / idleevt.tex
CommitLineData
a660d684
KB
1\section{\class{wxIdleEvent}}\label{wxidleevent}
2
09f7f79f
VZ
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
e39af974
JS
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
a660d684
KB
20\wxheading{Derived from}
21
22\helpref{wxEvent}{wxevent}\\
23\helpref{wxObject}{wxobject}
24
954b8ae6
JS
25\wxheading{Include files}
26
27<wx/event.h>
28
a660d684
KB
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
a660d684
KB
39\wxheading{See also}
40
e39af974
JS
41\helpref{Event handling overview}{eventhandlingoverview}, \helpref{wxUpdateUIEvent}{wxupdateuievent},
42\helpref{wxWindow::OnInternalIdle}{wxwindowoninternalidle}
a660d684
KB
43
44\latexignore{\rtfignore{\wxheading{Members}}}
45
f0e8a2d0 46\membersection{wxIdleEvent::wxIdleEvent}\label{wxidleeventctor}
a660d684
KB
47
48\func{}{wxIdleEvent}{\void}
49
50Constructor.
51
e39af974
JS
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
684761db 67\helpref{wxIdleEvent::SetMode}{wxidleeventsetmode}
e39af974
JS
68
69\membersection{wxIdleEvent::GetMode}\label{wxidleeventgetmode}
70
71\func{static wxIdleMode}{GetMode}{\void}
72
fc2171bd 73Static function returning a value specifying how wxWidgets
e39af974
JS
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
a660d684
KB
79\membersection{wxIdleEvent::RequestMore}\label{wxidleeventrequestmore}
80
cc81d32f 81\func{void}{RequestMore}{\param{bool}{ needMore = true}}
a660d684 82
fc2171bd 83Tells wxWidgets that more processing is required. This function can be called by an OnIdle
a660d684
KB
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
4d5a0f67 91\helpref{wxIdleEvent::MoreRequested}{wxidleeventmorerequested}
a660d684
KB
92
93\membersection{wxIdleEvent::MoreRequested}\label{wxidleeventmorerequested}
94
95\constfunc{bool}{MoreRequested}{\void}
96
cc81d32f 97Returns true if the OnIdle function processing this event requested more processing time.
a660d684
KB
98
99\wxheading{See also}
100
4d5a0f67 101\helpref{wxIdleEvent::RequestMore}{wxidleeventrequestmore}
a660d684 102
e39af974
JS
103\membersection{wxIdleEvent::SetMode}\label{wxidleeventsetmode}
104
105\func{static void}{SetMode}{\param{wxIdleMode }{mode}}
106
fc2171bd 107Static function for specifying how wxWidgets will send idle events: to
e39af974
JS
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