Direct input focus to this widget. If the application currently does not have the focus this widget will get the focus if the application gets the focus through the window manager.
(self)
| 798 | raise ValueError("invalid literal for getboolean()") |
| 799 | |
| 800 | def focus_set(self): |
| 801 | """Direct input focus to this widget. |
| 802 | |
| 803 | If the application currently does not have the focus |
| 804 | this widget will get the focus if the application gets |
| 805 | the focus through the window manager.""" |
| 806 | self.tk.call('focus', self._w) |
| 807 | focus = focus_set # XXX b/w compat? |
| 808 | |
| 809 | def focus_force(self): |