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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 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: focusNext.n,v 1.2 1998/09/14 18:22:56 stanton Exp $
  9. '" 
  10. .so man.macros
  11. .TH tk_focusNext 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. tk_focusNext, tk_focusPrev, tk_focusFollowsMouse - Utility procedures for managing the input focus.
  16. .SH SYNOPSIS
  17. fBtk_focusNext fIwindowfR
  18. .sp
  19. fBtk_focusPrev fIwindowfR
  20. .sp
  21. fBtk_focusFollowsMousefR
  22. .BE
  23. .SH DESCRIPTION
  24. .PP
  25. fBtk_focusNextfR is a utility procedure used for keyboard traversal.
  26. It returns the ``next'' window after fIwindowfR in focus order.
  27. The focus order is determined by
  28. the stacking order of windows and the structure of the window hierarchy.
  29. Among siblings, the focus order is the same as the stacking order, with the
  30. lowest window being first.
  31. If a window has children, the window is visited first, followed by
  32. its children (recursively), followed by its next sibling.
  33. Top-level windows other than fIwindowfR are skipped, so that
  34. fBtk_focusNextfR never returns a window in a different top-level
  35. from fIwindowfR.
  36. .PP
  37. After computing the next window, fBtk_focusNextfR examines the
  38. window's fB-takefocusfR option to see whether it should be skipped.
  39. If so, fBtk_focusNextfR continues on to the next window in the focus
  40. order, until it eventually finds a window that will accept the focus
  41. or returns back to fIwindowfR.
  42. .PP
  43. fBtk_focusPrevfR is similar to fBtk_focusNextfR except that it
  44. returns the window just before fIwindowfR in the focus order.
  45. .PP
  46. fBtk_focusFollowsMousefR changes the focus model for the application
  47. to an implicit one where the window under the mouse gets the focus.
  48. After this procedure is called, whenever the mouse enters a window
  49. Tk will automatically give it the input focus.
  50. The fBfocusfR command may be used to move the focus to a window
  51. other than the one under the mouse, but as soon as the mouse moves
  52. into a new window the focus will jump to that window.
  53. Note: at present there is no built-in support for returning the
  54. application to an explicit focus model;  to do this you'll have
  55. to write a script that deletes the bindings created by
  56. fBtk_focusFollowsMousefR.
  57. .SH KEYWORDS
  58. focus, keyboard traversal, top-level