1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2020 by Total Control Software
License: wxWindows License
.. include:: headings.inc
.. _wx.BusyInfo:
==========================================================================================================================================
|phoenix_title| **wx.BusyInfo**
==========================================================================================================================================
This class makes it easy to tell your user that the program is temporarily busy.
Normally the main thread should always return to the main loop to continue dispatching events as quickly as possible, hence this class shouldn't be needed. However if the main thread does need to block, this class provides a simple way to at least show this to the user: just create a :ref:`wx.BusyInfo` object on the stack, and within the current scope, a message window will be shown.
For example:
::
# Normal usage
wait = wx.BusyInfo("Please wait, working...")
for i in range(10000):
DoACalculation()
del wait
# It can be used as a context manager too
with wx.BusyInfo("Please wait, working..."):
for i in range(10000):
DoACalculation()
It works by creating a window in the constructor, and deleting it in the destructor.
This window is rather plain by default but can be customized by passing :ref:`wx.BusyInfo` constructor an object of :ref:`wx.BusyInfoFlags` class instead of a simple message. Here is an example from the dialogs sample:
::
info = wx.BusyInfo(
wx.BusyInfoFlags()
.Parent(self)
.Icon(wx.ArtProvider.GetIcon(wx.ART_PRINT,
wx.ART_OTHER, wx.Size(128, 128)))
.Title("<b>Printing your document</b>")
.Text("Please wait...")
.Foreground(wx.WHITE)
.Background(wx.BLACK)
.Transparency(4 * wx.ALPHA_OPAQUE / 5)
)
This shows that separate title and text can be set, and that simple markup (:meth:`wx.Control.SetLabelMarkup` ) can be used in them, and that it's also possible to add an icon and customize the colours and transparency of the window.
You may also want to call TheApp.Yield() to refresh the window periodically (in case it had been obscured by other windows, for example) like this:
::
with wx.WindowDisabler():
wait = wx.BusyInfo("Please wait, working...")
for i in range(100000):
DoACalculation()
if not (i % 1000):
wx.GetApp().Yield()
but take care to not cause undesirable reentrancies when doing it (see :meth:`wx.App.Yield` for more details). The simplest way to do it is to use :ref:`wx.WindowDisabler` class as illustrated in the above example.
Note that a :ref:`wx.BusyInfo` is always built with the ``STAY_ON_TOP`` window style (see :ref:`wx.Frame` window styles for more info).
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html
<div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
<img id="toggleBlock-trigger" src="_static/images/closed.png"/>
Inheritance diagram for class <strong>BusyInfo</strong>:
</div>
<div id="toggleBlock-summary" style="display:block;"></div>
<div id="toggleBlock-content" style="display:none;">
<p class="graphviz">
<center><img src="_static/images/inheritance/wx.BusyInfo_inheritance.png" alt="Inheritance diagram of BusyInfo" usemap="#dummy" class="inheritance"/></center>
<script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
<map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.BusyInfo.html" title="wx.BusyInfo" alt="" coords="5,5,108,35"/> </map>
</p>
</div>
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.BusyInfo.__init__` General constructor.
:meth:`~wx.BusyInfo.UpdateLabel` Same as :meth:`~BusyInfo.UpdateText` but doesn't interpret the string as containing markup.
:meth:`~wx.BusyInfo.UpdateText` Update the information text.
:meth:`~wx.BusyInfo.__enter__`
:meth:`~wx.BusyInfo.__exit__`
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: wx.BusyInfo(object)
**Possible constructors**::
BusyInfo(flags)
BusyInfo(msg, parent=None)
This class makes it easy to tell your user that the program is
temporarily busy.
.. method:: __init__(self, *args, **kw)
|overload| Overloaded Implementations:
:html:`<hr class="overloadsep" /><br />`
**__init__** `(self, flags)`
General constructor.
This constructor allows specifying all supported attributes by calling the appropriate methods on :ref:`wx.BusyInfoFlags` object passed to it as parameter. All of them are optional but usually at least the message should be specified.
:param `flags`:
:type `flags`: wx.BusyInfoFlags
.. versionadded:: 4.1/wxWidgets-3.1.0
:html:`<hr class="overloadsep" /><br />`
**__init__** `(self, msg, parent=None)`
Simple constructor specifying only the message and the parent.
This constructs a busy info window as child of `parent` and displays `msg` in it. It is exactly equivalent to using ::
wait = wx.BusyInfo(wx.BusyInfoFlags().Parent(parent).Label(message))
:param `msg`:
:type `msg`: string
:param `parent`:
:type `parent`: wx.Window
.. note::
If `parent` is not ``None`` you must ensure that it is not closed while the busy info is shown.
:html:`<hr class="overloadsep" /><br />`
.. method:: UpdateLabel(self, str)
Same as :meth:`UpdateText` but doesn't interpret the string as containing markup.
:param `str`:
:type `str`: string
.. versionadded:: 4.1/wxWidgets-3.1.3
.. method:: UpdateText(self, str)
Update the information text.
The `text` string may contain markup as described in :meth:`wx.Control.SetLabelMarkup` .
:param `str`:
:type `str`: string
.. versionadded:: 4.1/wxWidgets-3.1.3
.. method:: __enter__(self)
.. method:: __exit__(self, exc_type, exc_val, exc_tb)
|