.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "focus 3pm" .TH focus 3pm 2024-03-07 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Tk::focus \- Manage the input focus .SH SYNOPSIS .IX Header "SYNOPSIS" \ \ \ \fR\f(CI$widget\fR\fI\fR\->\fBfocus\fR .PP \ \ \ \fR\f(CI$widget\fR\fI\fR\->\fBfocus\fR\fIOption\fR .PP \ \ \ \fR\f(CI$widget\fR\fI\fR\->\fBfocusNext\fR .PP \ \ \ \fR\f(CI$widget\fR\fI\fR\->\fBfocusPrev\fR .PP \ \ \ \fR\f(CI$widget\fR\fI\fR\->\fBfocusFollowsMouse\fR .SH DESCRIPTION .IX Header "DESCRIPTION" The \fBfocus\fR methods are used to manage the Tk input focus. At any given time, one window on each display is designated as the \fIfocus window\fR; any key press or key release events for the display are sent to that window. It is normally up to the window manager to redirect the focus among the top-level windows of a display. For example, some window managers automatically set the input focus to a top-level window whenever the mouse enters it; others redirect the input focus only when the user clicks on a window. Usually the window manager will set the focus only to top-level windows, leaving it up to the application to redirect the focus among the children of the top-level. .PP Tk remembers one focus window for each top-level (the most recent descendant of that top-level to receive the focus); when the window manager gives the focus to a top-level, Tk automatically redirects it to the remembered window. Within a top-level Tk uses an \fIexplicit\fR focus model by default. Moving the mouse within a top-level does not normally change the focus; the focus changes only when a widget decides explicitly to claim the focus (e.g., because of a button click), or when the user types a key such as Tab that moves the focus. .PP The method \fBfocusFollowsMouse\fR may be invoked to create an \fIimplicit\fR focus model: it reconfigures Tk so that the focus is set to a window whenever the mouse enters it. The methods \fBfocusNext\fR and \fBfocusPrev\fR implement a focus order among the windows of a top-level; they are used in the default bindings for Tab and Shift-Tab, among other things. .PP The \fBfocus\fR methods can take any of the following forms: .ie n .IP \fR\fI$widget\fR\fI\fR\->\fBfocusCurrent\fR 4 .el .IP \fR\f(CI$widget\fR\fI\fR\->\fBfocusCurrent\fR 4 .IX Item "$widget->focusCurrent" Returns the focus window on the display containing the \fR\f(CI$widget\fR\fI\fR, or an empty string if no window in this application has the focus on that display. .ie n .IP \fR\fI$widget\fR\fI\fR\->\fBfocus\fR 4 .el .IP \fR\f(CI$widget\fR\fI\fR\->\fBfocus\fR 4 .IX Item "$widget->focus" If the application currently has the input focus on \fR\f(CI$widget\fR\fI\fR's display, this command resets the input focus for \fI\fR\f(CI$widget\fR\fI\fR's display to \fI\fR\f(CI$widget\fR\fI\fR and returns an empty string. If the application doesn't currently have the input focus on \&\fI\fR\f(CI$widget\fR\fI\fR's display, \fI\fR\f(CI$widget\fR\fI\fR will be remembered as the focus for its top-level; the next time the focus arrives at the top-level, Tk will redirect it to \fI\fR\f(CI$widget\fR\fI\fR. .ie n .IP \fR\fI$widget\fR\fI\fR\->\fBfocusForce\fR 4 .el .IP \fR\f(CI$widget\fR\fI\fR\->\fBfocusForce\fR 4 .IX Item "$widget->focusForce" Sets the focus of \fR\f(CI$widget\fR\fI\fR's display to \fI\fR\f(CI$widget\fR\fI\fR, even if the application doesn't currently have the input focus for the display. This command should be used sparingly, if at all. In normal usage, an application should not claim the focus for itself; instead, it should wait for the window manager to give it the focus. .ie n .IP \fR\fI$widget\fR\fI\fR\->\fBfocusLastfor\fR 4 .el .IP \fR\f(CI$widget\fR\fI\fR\->\fBfocusLastfor\fR 4 .IX Item "$widget->focusLastfor" Returns the name of the most recent window to have the input focus among all the windows in the same top-level as \fR\f(CI$widget\fR\fI\fR. If no window in that top-level has ever had the input focus, or if the most recent focus window has been deleted, then the top-level is returned. The return value is the window that will receive the input focus the next time the window manager gives the focus to the top-level. .ie n .IP \fR\fI$widget\fR\fI\fR\->\fBfocusNext\fR 4 .el .IP \fR\f(CI$widget\fR\fI\fR\->\fBfocusNext\fR 4 .IX Item "$widget->focusNext" .PD 0 .ie n .IP \fR\fI$widget\fR\fI\fR\->\fBfocusPrev\fR 4 .el .IP \fR\f(CI$widget\fR\fI\fR\->\fBfocusPrev\fR 4 .IX Item "$widget->focusPrev" .PD \&\fBfocusNext\fR is a utility method used for keyboard traversal, but can be useful in other contexts. It sets the focus to the ``next'' window after \fR\f(CI$widget\fR\fI\fR in focus order. The focus order is determined by the stacking order of windows and the structure of the window hierarchy. Among siblings, the focus order is the same as the stacking order, with the lowest window being first. If a window has children, the window is visited first, followed by its children (recursively), followed by its next sibling. Top-level windows other than \fI\fR\f(CI$widget\fR\fI\fR are skipped, so that \&\fBfocusNext\fR never returns a window in a different top-level from \fI\fR\f(CI$widget\fR\fI\fR. .Sp After computing the next window, \fBfocusNext\fR examines the window's \fB\-takefocus\fR option to see whether it should be skipped. If so, \fBfocusNext\fR continues on to the next window in the focus order, until it eventually finds a window that will accept the focus or returns back to \fR\f(CI$widget\fR\fI\fR. .Sp \&\fBfocusPrev\fR is similar to \fBfocusNext\fR except that it sets the focus to the window just before \fR\f(CI$widget\fR\fI\fR in the focus order. .ie n .IP \fR\fI$widget\fR\fI\fR\->\fBfocusFollowsMouse\fR 4 .el .IP \fR\f(CI$widget\fR\fI\fR\->\fBfocusFollowsMouse\fR 4 .IX Item "$widget->focusFollowsMouse" \&\fBfocusFollowsMouse\fR changes the focus model for the application to an implicit one where the window under the mouse gets the focus. After this procedure is called, whenever the mouse enters a window Tk will automatically give it the input focus. The \fBfocus\fR command may be used to move the focus to a window other than the one under the mouse, but as soon as the mouse moves into a new window the focus will jump to that window. Note: at present there is no built-in support for returning the application to an explicit focus model; to do this you'll have to write a script that deletes the bindings created by \&\fBfocusFollowsMouse\fR. .SH QUIRKS .IX Header "QUIRKS" When an internal window receives the input focus, Tk doesn't actually set the X focus to that window; as far as X is concerned, the focus will stay on the top-level window containing the window with the focus. However, Tk generates FocusIn and FocusOut events just as if the X focus were on the internal window. This approach gets around a number of problems that would occur if the X focus were actually moved; the fact that the X focus is on the top-level is invisible unless you use C code to query the X server directly. .SH CAVEATS .IX Header "CAVEATS" Note that for the \fBCanvas\fR widget, the call to \fBfocus\fR has to be fully qualified. This is because there is already a focus method for the \fBCanvas\fR widget, which sets the focus on individual canvas tags. .PP \ \ \ \ \fR\f(CI$canvas\fR\fI\fR\->\fBTk::focus\fR .SH KEYWORDS .IX Header "KEYWORDS" events, focus, keyboard, top-level, window manager