Direct input focus to this widget even if the application does not have the focus. Use with caution!
(self)
| 807 | focus = focus_set # XXX b/w compat? |
| 808 | |
| 809 | def focus_force(self): |
| 810 | """Direct input focus to this widget even if the |
| 811 | application does not have the focus. Use with |
| 812 | caution!""" |
| 813 | self.tk.call('focus', '-force', self._w) |
| 814 | |
| 815 | def focus_get(self): |
| 816 | """Return the widget which has currently the focus in the |