Lines Matching defs:focus

145     focus - whether the window has the focus (Enter, Leave)
461 """Direct input focus to this widget.
463 If the application currently does not have the focus
464 this widget will get the focus if the application gets
465 the focus through the window manager."""
466 self.tk.call('focus', self._w)
467 focus = focus_set # XXX b/w compat?
469 """Direct input focus to this widget even if the
470 application does not have the focus. Use with
472 self.tk.call('focus', '-force', self._w)
474 """Return the widget which has currently the focus in the
479 the focus."""
480 name = self.tk.call('focus')
484 """Return the widget which has currently the focus on the
487 Return None if the application does not have the focus."""
488 name = self.tk.call('focus', '-displayof', self._w)
492 """Return the widget which would have the focus if top level
493 for this widget gets the focus from the window manager."""
494 name = self.tk.call('focus', '-lastfor', self._w)
498 """The widget under mouse will get automatically focus. Can not
502 """Return the next widget in the focus order which follows
503 widget which has currently the focus.
505 The focus order first goes to the next child, then to
514 """Return previous widget in the focus order. See tk_focusNext for details."""
1205 try: e.focus = getboolean(f)
1578 On Windows it will raise this widget and give it the focus."""
1582 """Set focus model to MODEL. "active" means that this widget will claim
1583 the focus itself, "passive" means that the window manager shall give
1584 the focus. Return current focus model if MODEL is None."""
2320 def focus(self, *args):
2321 """Set focus to the first item specified in ARGS."""
2322 return self.tk.call((self._w, 'focus') + args)