Return a list of widgets that are currently busy. If a pattern is given, only busy widgets whose path names match a pattern are returned.
(self, pattern=None)
| 974 | busy_config = busy_configure = tk_busy_config = tk_busy_configure |
| 975 | |
| 976 | def tk_busy_current(self, pattern=None): |
| 977 | """Return a list of widgets that are currently busy. |
| 978 | |
| 979 | If a pattern is given, only busy widgets whose path names match |
| 980 | a pattern are returned. |
| 981 | """ |
| 982 | return [self._nametowidget(x) for x in |
| 983 | self.tk.splitlist(self.tk.call( |
| 984 | 'tk', 'busy', 'current', pattern))] |
| 985 | busy_current = tk_busy_current |
| 986 | |
| 987 | def tk_busy_forget(self): |