Make this widget appear busy. The specified widget and its descendants will be blocked from user interactions. Normally update() should be called immediately afterward to insure that the hold operation is in effect before the application starts its processing.
(self, **kw)
| 993 | busy_forget = tk_busy_forget |
| 994 | |
| 995 | def tk_busy_hold(self, **kw): |
| 996 | """Make this widget appear busy. |
| 997 | |
| 998 | The specified widget and its descendants will be blocked from |
| 999 | user interactions. Normally update() should be called |
| 1000 | immediately afterward to insure that the hold operation is in |
| 1001 | effect before the application starts its processing. |
| 1002 | |
| 1003 | The only supported configuration option is: |
| 1004 | |
| 1005 | cursor: the cursor to be displayed when the widget is made |
| 1006 | busy. |
| 1007 | """ |
| 1008 | self.tk.call('tk', 'busy', 'hold', self._w, *self._options(kw)) |
| 1009 | busy = busy_hold = tk_busy = tk_busy_hold |
| 1010 | |
| 1011 | def tk_busy_status(self): |