]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/busyinfo.h
Add wxSize::IncBy() and DecBy() overloads taking wxPoint.
[wxWidgets.git] / interface / wx / busyinfo.h
index 439d90a574f0117d452e6433d2ab1bb37cbf8061..3600c987addb7b63742924757c27060370e25441 100644 (file)
     It works by creating a window in the constructor, and deleting it
     in the destructor.
 
-    You may also want to call wxTheApp-Yield() to refresh the window
+    You may also want to call wxTheApp->Yield() to refresh the window
     periodically (in case it had been obscured by other windows, for
     example) like this:
 
     @code
         wxWindowDisabler disableAll;
-
         wxBusyInfo wait("Please wait, working...");
 
         for (int i = 0; i < 100000; i++)
@@ -49,6 +48,9 @@
     wxApp::Yield for more details). The simplest way to do it is to use
     wxWindowDisabler class as illustrated in the above example.
 
+    Note that a wxBusyInfo is always built with the @c wxSTAY_ON_TOP window style
+    (see wxFrame window styles for more info).
+
     @library{wxcore}
     @category{cmndlg}
 */