home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _7a19e2b17564793c6b4543dccbd2472f < prev    next >
Text File  |  2000-03-23  |  9KB  |  188 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>focus - Manage the input focus</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> focus - Manage the input focus</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#quirks">QUIRKS</A></LI>
  26.     <LI><A HREF="#caveats">CAVEATS</A></LI>
  27.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>focus - Manage the input focus</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  38. <UL>
  39. <LI>Linux</LI>
  40. <LI>Solaris</LI>
  41. <LI>Windows</LI>
  42. </UL>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <P>   <EM>$widget</EM>-><STRONG>focus</STRONG></P>
  46. <P>   <EM>$widget</EM>-><STRONG>focus</STRONG><EM>Option</EM></P>
  47. <P>   <EM>$widget</EM>-><STRONG>focusNext</STRONG></P>
  48. <P>   <EM>$widget</EM>-><STRONG>focusPrev</STRONG></P>
  49. <P>   <EM>$widget</EM>-><STRONG>focusFollowsMouse</STRONG></P>
  50. <P>
  51. <HR>
  52. <H1><A NAME="description">DESCRIPTION</A></H1>
  53. <P>The <STRONG>focus</STRONG> methods are used to manage the Tk input focus.
  54. At any given time, one window on each display is designated as
  55. the <EM>focus window</EM>;  any key press or key release events for the
  56. display are sent to that window.
  57. It is normally up to the window manager to redirect the focus among the
  58. top-level windows of a display.  For example, some window managers
  59. automatically set the input focus to a top-level window whenever
  60. the mouse enters it;  others redirect the input focus only when
  61. the user clicks on a window.
  62. Usually the window manager will set the focus
  63. only to top-level windows, leaving it up to the application to
  64. redirect the focus among the children of the top-level.</P>
  65. <P>Tk remembers one focus window for each top-level (the most recent
  66. descendant of that top-level to receive the focus);  when the window
  67. manager gives the focus
  68. to a top-level, Tk automatically redirects it to the remembered
  69. window.  Within a top-level Tk uses an <EM>explicit</EM> focus model
  70. by default.  Moving the mouse within a top-level does not normally
  71. change the focus;  the focus changes only when a widget
  72. decides explicitly to claim the focus (e.g., because of a button
  73. click), or when the user types a key such as Tab that moves the
  74. focus.</P>
  75. <P>The method <STRONG>focusFollowsMouse</STRONG> may be invoked to
  76. create an <EM>implicit</EM> focus model:  it reconfigures Tk so that
  77. the focus is set to a window whenever the mouse enters it.
  78. The methods <STRONG>focusNext</STRONG> and <STRONG>focusPrev</STRONG>
  79. implement a focus order among the windows of a top-level;  they
  80. are used in the default bindings for Tab and Shift-Tab, among other
  81. things.</P>
  82. <P>The <STRONG>focus</STRONG> methods can take any of the following forms:</P>
  83. <DL>
  84. <DT><STRONG><A NAME="item_focusCurrent"><EM>$widget</EM>-><STRONG>focusCurrent</STRONG></A></STRONG><BR>
  85. <DD>
  86. Returns the focus window on the display containing
  87. the <EM>$widget</EM>,  or an empty string if no window in
  88. this application has the focus on that display.
  89. <P></P>
  90. <DT><STRONG><A NAME="item_focus"><EM>$widget</EM>-><STRONG>focus</STRONG></A></STRONG><BR>
  91. <DD>
  92. If the application currently has the input focus on <EM>$widget</EM>'s
  93. display, this command resets the input focus for <EM>$widget</EM>'s display
  94. to <EM>$widget</EM> and returns an empty string.
  95. If the application doesn't currently have the  input focus on
  96. <EM>$widget</EM>'s display, <EM>$widget</EM> will be remembered as the focus
  97. for its top-level;  the next time the focus arrives at the top-level,
  98. Tk will redirect it to <EM>$widget</EM>.
  99. <P></P>
  100. <DT><STRONG><A NAME="item_focusForce"><EM>$widget</EM>-><STRONG>focusForce</STRONG></A></STRONG><BR>
  101. <DD>
  102. Sets the focus of <EM>$widget</EM>'s display to <EM>$widget</EM>, even if
  103. the application doesn't currently have the input focus for the display.
  104. This command should be used sparingly, if at all.
  105. In normal usage, an application should not claim the focus for
  106. itself;  instead, it should wait for the window manager to give it
  107. the focus.
  108. <P></P>
  109. <DT><STRONG><A NAME="item_focusLast"><EM>$widget</EM>-><STRONG>focusLast</STRONG></A></STRONG><BR>
  110. <DD>
  111. Returns the name of the most recent window to have the input focus
  112. among all the windows in the same top-level as <EM>$widget</EM>.
  113. If no window in that top-level has ever had the input focus, or
  114. if the most recent focus window has been deleted, then
  115. the top-level is returned.  The return value is the window that
  116. will receive the input focus the next time the window manager gives
  117. the focus to the top-level.
  118. <P></P>
  119. <DT><STRONG><A NAME="item_focusNext"><EM>$widget</EM>-><STRONG>focusNext</STRONG></A></STRONG><BR>
  120. <DD>
  121. <DT><STRONG><A NAME="item_focusPrev"><EM>$widget</EM>-><STRONG>focusPrev</STRONG></A></STRONG><BR>
  122. <DD>
  123. <STRONG>focusNext</STRONG> is a utility method used for keyboard traversal, but can be
  124. useful in other contexts.
  125. It sets the focus to the ``next'' window after <EM>$widget</EM> in focus order.
  126. The focus order is determined by
  127. the stacking order of windows and the structure of the window hierarchy.
  128. Among siblings, the focus order is the same as the stacking order, with the
  129. lowest window being first.
  130. If a window has children, the window is visited first, followed by
  131. its children (recursively), followed by its next sibling.
  132. Top-level windows other than <EM>$widget</EM> are skipped, so that
  133. <STRONG>focusNext</STRONG> never returns a window in a different top-level
  134. from <EM>$widget</EM>.
  135. <P>After computing the next window, <STRONG>focusNext</STRONG> examines the
  136. window's <STRONG>-takefocus</STRONG> option to see whether it should be skipped.
  137. If so, <STRONG>focusNext</STRONG> continues on to the next window in the focus
  138. order, until it eventually finds a window that will accept the focus
  139. or returns back to <EM>$widget</EM>.</P>
  140. <P><STRONG>focusPrev</STRONG> is similar to <STRONG>focusNext</STRONG> except that it
  141. sets the focus to the window just before <EM>$widget</EM> in the focus order.</P>
  142. <P></P>
  143. <DT><STRONG><A NAME="item_focusFollowsMouse"><EM>$widget</EM>-><STRONG>focusFollowsMouse</STRONG></A></STRONG><BR>
  144. <DD>
  145. <STRONG>focusFollowsMouse</STRONG> changes the focus model for the application
  146. to an implicit one where the window under the mouse gets the focus.
  147. After this procedure is called, whenever the mouse enters a window
  148. Tk will automatically give it the input focus.
  149. The <STRONG>focus</STRONG> command may be used to move the focus to a window
  150. other than the one under the mouse, but as soon as the mouse moves
  151. into a new window the focus will jump to that window.
  152. Note: at present there is no built-in support for returning the
  153. application to an explicit focus model;  to do this you'll have
  154. to write a script that deletes the bindings created by
  155. <STRONG>focusFollowsMouse</STRONG>.
  156. <P></P></DL>
  157. <P>
  158. <HR>
  159. <H1><A NAME="quirks">QUIRKS</A></H1>
  160. <P>When an internal window receives the input focus, Tk doesn't actually
  161. set the X focus to that window;  as far as X is concerned, the focus
  162. will stay on the top-level window containing the window with the focus.
  163. However, Tk generates FocusIn and FocusOut events just as if the X
  164. focus were on the internal window.   This approach gets around a
  165. number of problems that would occur if the X focus were actually moved;
  166. the fact that the X focus is on the top-level is invisible unless
  167. you use C code to query the X server directly.</P>
  168. <P>
  169. <HR>
  170. <H1><A NAME="caveats">CAVEATS</A></H1>
  171. <P>Note that for the <STRONG>Canvas</STRONG> widget, the call to <STRONG>focus</STRONG> has to be
  172. fully qualified. This is because there is already a focus method for
  173. the <STRONG>Canvas</STRONG> widget, which sets the focus on individual canvas tags.</P>
  174. <P>    <EM>$canvas</EM>-><STRONG>Tk::focus</STRONG></P>
  175. <P>
  176. <HR>
  177. <H1><A NAME="keywords">KEYWORDS</A></H1>
  178. <P>events, focus, keyboard, top-level, window manager</P>
  179. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  180. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  181. <STRONG><P CLASS=block> focus - Manage the input focus</P></STRONG>
  182. </TD></TR>
  183. </TABLE>
  184.  
  185. </BODY>
  186.  
  187. </HTML>
  188.