1999-01-25 18:33:08 +00:00
|
|
|
\section{\class{wxBusyCursor}}\label{wxbusycursor}
|
|
|
|
|
|
|
|
This class makes it easy to tell your user that the program is temporarily busy.
|
|
|
|
Just create a wxBusyCursor object on the stack, and within the current scope,
|
|
|
|
the hourglass will be shown.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
wxBusyCursor wait;
|
|
|
|
|
|
|
|
for (int i = 0; i < 100000; i++)
|
|
|
|
DoACalculation();
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
It works by calling \helpref{wxBeginBusyCursor}{wxbeginbusycursor} in the constructor,
|
|
|
|
and \helpref{wxEndBusyCursor}{wxendbusycursor} in the destructor.
|
|
|
|
|
|
|
|
\wxheading{Derived from}
|
|
|
|
|
|
|
|
None
|
|
|
|
|
1999-02-15 20:41:29 +00:00
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/utils.h>
|
|
|
|
|
1999-01-25 18:33:08 +00:00
|
|
|
\wxheading{See also}
|
|
|
|
|
2000-03-02 19:06:13 +00:00
|
|
|
\helpref{wxBeginBusyCursor}{wxbeginbusycursor},\rtfsp
|
|
|
|
\helpref{wxEndBusyCursor}{wxendbusycursor},\rtfsp
|
|
|
|
\helpref{wxWindowDisabler}{wxwindowdisabler}
|
1999-01-25 18:33:08 +00:00
|
|
|
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
|
|
|
\membersection{wxBusyCursor::wxBusyCursor}
|
|
|
|
|
|
|
|
\func{}{wxBusyCursor}{\param{wxCursor*}{ cursor = wxHOURGLASS\_CURSOR}}
|
|
|
|
|
|
|
|
Constructs a busy cursor object, calling \helpref{wxBeginBusyCursor}{wxbeginbusycursor}.
|
|
|
|
|
|
|
|
\membersection{wxBusyCursor::\destruct{wxBusyCursor}}
|
|
|
|
|
|
|
|
\func{}{\destruct{wxBusyCursor}}{\void}
|
|
|
|
|
|
|
|
Destroys the busy cursor object, calling \helpref{wxEndBusyCursor}{wxendbusycursor}.
|
|
|
|
|