]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/ProgressDialog.py
Script updates
[wxWidgets.git] / wxPython / demo / ProgressDialog.py
index 91441759769016a9be460d310b6891a4fc7ff4dd..ce4220191ba4636388e3cd50cfe05768de34f5e6 100644 (file)
@@ -41,18 +41,19 @@ def runTest(frame, nb, log):
 
 
 overview = """\
 
 
 overview = """\
+<html><body>
 This class represents a dialog that shows a short message and a progress bar. 
 Optionally, it can display an ABORT button
 This class represents a dialog that shows a short message and a progress bar. 
 Optionally, it can display an ABORT button
-
+<p>
 This dialog indicates the progress of some event that takes a while to accomplish, 
 usually, such as file copy progress, download progress, and so on. The display
 is <b>completely</b> under control of the program; you must update the dialog from
 within the program creating it. 
 This dialog indicates the progress of some event that takes a while to accomplish, 
 usually, such as file copy progress, download progress, and so on. The display
 is <b>completely</b> under control of the program; you must update the dialog from
 within the program creating it. 
-
+<p>
 When the dialog closes, you must check to see if the user aborted the process or
 not, and act accordingly -- that is, if the PD_CAN_ABORT style flag is set. 
 If not then you may progress blissfully onward.
 When the dialog closes, you must check to see if the user aborted the process or
 not, and act accordingly -- that is, if the PD_CAN_ABORT style flag is set. 
 If not then you may progress blissfully onward.
-
+</body></html>
 """
 
 if __name__ == '__main__':
 """
 
 if __name__ == '__main__':