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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1992 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: tkwait.n,v 1.2 1998/09/14 18:23:00 stanton Exp $
  9. '" 
  10. .so man.macros
  11. .TH tkwait n "" Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. tkwait - Wait for variable to change or window to be destroyed
  16. .SH SYNOPSIS
  17. fBtkwait variable fInamefR
  18. .sp
  19. fBtkwait visibility fInamefR
  20. .sp
  21. fBtkwait window fInamefR
  22. .BE
  23. .SH DESCRIPTION
  24. .PP
  25. The fBtkwaitfR command waits for one of several things to happen,
  26. then it returns without taking any other actions.
  27. The return value is always an empty string.
  28. If the first argument is fBvariablefR (or any abbreviation of
  29. it) then the second argument is the name of a global variable and the
  30. command waits for that variable to be modified.
  31. If the first argument is fBvisibilityfR (or any abbreviation
  32. of it) then the second argument is the name of a window and the
  33. fBtkwaitfR command waits for a change in its
  34. visibility state (as indicated by the arrival of a VisibilityNotify
  35. event).  This form is typically used to wait for a newly-created
  36. window to appear on the screen before taking some action.
  37. If the first argument is fBwindowfR (or any abbreviation
  38. of it) then the second argument is the name of a window and the
  39. fBtkwaitfR command waits for that window to be destroyed.
  40. This form is typically used to wait for a user to finish interacting
  41. with a dialog box before using the result of that interaction.
  42. .PP
  43. While the fBtkwaitfR command is waiting it processes events in
  44. the normal fashion, so the application will continue to respond
  45. to user interactions.
  46. If an event handler invokes fBtkwaitfR again, the nested call
  47. to fBtkwaitfR must complete before the outer call can complete.
  48. .SH KEYWORDS
  49. variable, visibility, wait, window