1 \section{\class{wxBusyInfo
}}\label{wxbusyinfo
}
3 This class makes it easy to tell your user that the program is temporarily busy.
4 Just create a wxBusyInfo object on the stack, and within the current scope,
5 a message window will be shown.
10 wxBusyInfo wait("Please wait, working...");
12 for (int i =
0; i <
100000; i++)
16 It works by creating a window in the constructor,
17 and deleting it in the destructor.
19 \wxheading{Derived from
}
23 \wxheading{Include files
}
27 \latexignore{\rtfignore{\wxheading{Members
}}}
29 \membersection{wxBusyInfo::wxBusyInfo
}
31 \func{}{wxBusyInfo
}{\param{const wxString\&
}{ msg
}}
33 Constructs a busy info object, displays
{\it msg
}.