focus.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:5k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990-1994 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: focus.n,v 1.2.26.1 2004/10/28 10:19:29 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH focus n 4.0 Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. focus - Manage the input focus
  16. .SH SYNOPSIS
  17. .nf
  18. fBfocusfR
  19. fBfocus fIwindowfR
  20. fBfocus fIoptionfR ?fIarg arg ...fR?
  21. .fi
  22. .BE
  23. .SH DESCRIPTION
  24. .PP
  25. The fBfocusfR command is used to manage the Tk input focus.
  26. At any given time, one window on each display is designated as
  27. the fIfocus windowfR;  any key press or key release events for the
  28. display are sent to that window.
  29. It is normally up to the window manager to redirect the focus among the
  30. top-level windows of a display.  For example, some window managers
  31. automatically set the input focus to a top-level window whenever
  32. the mouse enters it;  others redirect the input focus only when
  33. the user clicks on a window.
  34. Usually the window manager will set the focus
  35. only to top-level windows, leaving it up to the application to
  36. redirect the focus among the children of the top-level.
  37. .PP
  38. Tk remembers one focus window for each top-level (the most recent
  39. descendant of that top-level to receive the focus);  when the window
  40. manager gives the focus
  41. to a top-level, Tk automatically redirects it to the remembered
  42. window.  Within a top-level Tk uses an fIexplicitfR focus model
  43. by default.  Moving the mouse within a top-level does not normally
  44. change the focus;  the focus changes only when a widget
  45. decides explicitly to claim the focus (e.g., because of a button
  46. click), or when the user types a key such as Tab that moves the
  47. focus.
  48. .PP
  49. The Tcl procedure fBtk_focusFollowsMousefR may be invoked to
  50. create an fIimplicitfR focus model:  it reconfigures Tk so that
  51. the focus is set to a window whenever the mouse enters it.
  52. The Tcl procedures fBtk_focusNextfR and fBtk_focusPrevfR
  53. implement a focus order among the windows of a top-level;  they
  54. are used in the default bindings for Tab and Shift-Tab, among other
  55. things.
  56. .PP
  57. The fBfocusfR command can take any of the following forms:
  58. .TP
  59. fBfocusfR
  60. Returns the path name of the focus window on the display containing
  61. the application's main window,  or an empty string if no window in
  62. this application has the focus on that display.   Note:  it is
  63. better to specify the display explicitly using fB-displayoffR
  64. (see below) so that the code will work in applications using multiple
  65. displays.
  66. .TP
  67. fBfocus fIwindowfR
  68. If the application currently has the input focus on fIwindowfR's
  69. display, this command resets the input focus for fIwindowfR's display
  70. to fIwindowfR and returns an empty string.
  71. If the application doesn't currently have the  input focus on
  72. fIwindowfR's display, fIwindowfR will be remembered as the focus
  73. for its top-level;  the next time the focus arrives at the top-level,
  74. Tk will redirect it to fIwindowfR.
  75. If fIwindowfR is an empty string then the command does nothing.
  76. .TP
  77. fBfocus -displayoffR fIwindowfR
  78. Returns the name of the focus window on the display containing fIwindowfR.
  79. If the focus window for fIwindowfR's display isn't in this
  80. application, the return value is an empty string.
  81. .TP
  82. fBfocus -force fIwindowfR
  83. Sets the focus of fIwindowfR's display to fIwindowfR, even if
  84. the application doesn't currently have the input focus for the display.
  85. This command should be used sparingly, if at all.
  86. In normal usage, an application should not claim the focus for
  87. itself;  instead, it should wait for the window manager to give it
  88. the focus.
  89. If fIwindowfR is an empty string then the command does nothing.
  90. .TP
  91. fBfocus -lastforfR fIwindowfR
  92. Returns the name of the most recent window to have the input focus
  93. among all the windows in the same top-level as fIwindowfR.
  94. If no window in that top-level has ever had the input focus, or
  95. if the most recent focus window has been deleted, then the name
  96. of the top-level is returned.  The return value is the window that
  97. will receive the input focus the next time the window manager gives
  98. the focus to the top-level.
  99. .SH "QUIRKS"
  100. .PP
  101. When an internal window receives the input focus, Tk doesn't actually
  102. set the X focus to that window;  as far as X is concerned, the focus
  103. will stay on the top-level window containing the window with the focus.
  104. However, Tk generates FocusIn and FocusOut events just as if the X
  105. focus were on the internal window.   This approach gets around a
  106. number of problems that would occur if the X focus were actually moved;
  107. the fact that the X focus is on the top-level is invisible unless
  108. you use C code to query the X server directly.
  109. .SH "EXAMPLE"
  110. To make a window that only participates in the focus traversal ring
  111. when a variable is set, add the following bindings to the widgets
  112. fIbeforefR and fIafterfR it in that focus ring:
  113. .CS
  114. button .before -text "Before"
  115. button .middle -text "Middle"
  116. button .after  -text "After"
  117. checkbutton .flag -variable traverseToMiddle -takefocus 0
  118. pack .flag -side left
  119. pack .before .middle .after
  120. bind .before <Tab> {
  121.    if {!$traverseToMiddle} {
  122.       fBfocusfR .after
  123.       break
  124.    }
  125. }
  126. bind .after <Shift-Tab> {
  127.    if {!$traverseToMiddle} {
  128.       fBfocusfR .before
  129.       break
  130.    }
  131. }
  132. fBfocusfR .before
  133. .CE
  134. .SH KEYWORDS
  135. events, focus, keyboard, top-level, window manager