mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-09 05:20:08 +01:00
Phoenix:
- 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:
@@ -0,0 +1,7 @@
|
||||
|
||||
wait = wx.BusyInfo("Please wait, working...")
|
||||
|
||||
for i in xrange(10000):
|
||||
DoACalculation()
|
||||
|
||||
del wait
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user