Lines Matching defs:focus
232 focus - whether the window has the focus (Enter, Leave)
287 'num', 'delta', 'focus',
782 """Direct input focus to this widget.
784 If the application currently does not have the focus
785 this widget will get the focus if the application gets
786 the focus through the window manager."""
787 self.tk.call('focus', self._w)
788 focus = focus_set # XXX b/w compat?
791 """Direct input focus to this widget even if the
792 application does not have the focus. Use with
794 self.tk.call('focus', '-force', self._w)
797 """Return the widget which has currently the focus in the
802 the focus."""
803 name = self.tk.call('focus')
808 """Return the widget which has currently the focus on the
811 Return None if the application does not have the focus."""
812 name = self.tk.call('focus', '-displayof', self._w)
817 """Return the widget which would have the focus if top level
818 for this widget gets the focus from the window manager."""
819 name = self.tk.call('focus', '-lastfor', self._w)
824 """The widget under mouse will get automatically focus. Can not
829 """Return the next widget in the focus order which follows
830 widget which has currently the focus.
832 The focus order first goes to the next child, then to
842 """Return previous widget in the focus order. See tk_focusNext for details."""
1634 try: e.focus = getboolean(f)
2068 On Windows it will raise this widget and give it the focus."""
2074 """Set focus model to MODEL. "active" means that this widget will claim
2075 the focus itself, "passive" means that the window manager shall give
2076 the focus. Return current focus model if MODEL is None."""
2924 def focus(self, *args):
2925 """Set focus to the first item specified in ARGS."""
2926 return self.tk.call((self._w, 'focus') + args)