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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990 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: raise.n,v 1.2.26.1 2004/10/28 12:25:22 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH raise n 3.3 Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. raise - Change a window's position in the stacking order
  16. .SH SYNOPSIS
  17. fBraise fIwindow fR?fIaboveThisfR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. If the fIaboveThisfR argument is omitted then the command raises
  22. fIwindowfR so that it is above all of its siblings in the stacking
  23. order (it will not be obscured by any siblings and will obscure
  24. any siblings that overlap it).
  25. If fIaboveThisfR is specified then it must be the path name of
  26. a window that is either a sibling of fIwindowfR or the descendant
  27. of a sibling of fIwindowfR.
  28. In this case the fBraisefR command will insert
  29. fIwindowfR into the stacking order just above fIaboveThisfR
  30. (or the ancestor of fIaboveThisfR that is a sibling of fIwindowfR);
  31. this could end up either raising or lowering fIwindowfR.
  32. .SH EXAMPLE
  33. Make a button appear to be in a sibling frame that was created after
  34. it. This is is often necessary when building GUIs in the style where
  35. you create your activity widgets first before laying them out on the
  36. display:
  37. .CS
  38. button .b -text "Hi there!"
  39. pack [frame .f -background blue]
  40. pack [label .f.l1 -text "This is above"]
  41. pack .b -in .f
  42. pack [label .f.l2 -text "This is below"]
  43. fBraisefR .b
  44. .CE
  45. .SH "SEE ALSO"
  46. lower(n)
  47. .SH KEYWORDS
  48. obscure, raise, stacking order