.\" This is a wxWidgets manpage page generated from the XML docs .TH wxBusyCursor 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxBusyCursor \- .SH DESCRIPTION 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: wxBusyCursor wait; for (int i = 0; i < 100000; i++) DoACalculation(); It works by calling wxBeginBusyCursor in the constructor, and wxEndBusyCursor in the destructor. .SH "PARENTS" .SH "INCLUDE FILES" wx/utils.h .SH MEMBERS .SS wxBusyCursor (wxCursor* cursor = wxHOURGLASS_CURSOR) Constructs a busy cursor object, calling wxBeginBusyCursor . .SS ~wxBusyCursor () Destroys the busy cursor object, calling wxEndBusyCursor . .SH "SEE ALSO" wxBeginBusyCursor , wxEndBusyCursor , wxWindowDisabler .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.