- Add support for `wx.Caret` and `wx.BusyInfo` in the documentation builder.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71807 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Andrea Gavana
2012-06-18 19:41:24 +00:00
parent 2ba7d71620
commit 01296cf8cb
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
wait = wx.BusyInfo("Please wait, working...")
for i in xrange(10000):
DoACalculation()
del wait

View File

@@ -0,0 +1,11 @@
disableAll = wx.WindowDisabler()
wait = wx.BusyInfo("Please wait, working...")
for i in xrange(10000):
DoACalculation()
if i % 1000 == 0:
wx.GetApp().Yield()
del wait