Restack.3
上传用户: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: Restack.3,v 1.2 1998/09/14 18:22:53 stanton Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tk_RestackWindow 3 "" Tk "Tk Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tk_RestackWindow - Change a window's position in the stacking order
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tk.h>fR
  18. .sp
  19. int
  20. fBTk_RestackWindowfR(fItkwin, aboveBelow, otherfR)
  21. .SH ARGUMENTS
  22. .AS Tk_Window aboveBelow
  23. .AP Tk_Window tkwin in
  24. Token for window to restack.
  25. .AP int aboveBelow in
  26. Indicates new position of fItkwinfR relative to fIotherfR;
  27. must be fBAbovefR or fBBelowfR.
  28. .AP Tk_Window other in
  29. fITkwinfR will be repositioned just above or below this window.
  30. Must be a sibling of fItkwinfR or a descendant of a sibling.
  31. If NULL then fItkwinfR is restacked above or below all siblings.
  32. .BE
  33. .SH DESCRIPTION
  34. .PP
  35. fBTk_RestackWindowfR changes the stacking order of fIwindowfR relative
  36. to its siblings.
  37. If fIotherfR is specified as NULL then fIwindowfR is repositioned
  38. at the top or bottom of its stacking order, depending on whether
  39. fIaboveBelowfR is fBAbovefR or fBBelowfR.
  40. If fIotherfR has a non-NULL value then fIwindowfR is repositioned
  41. just above or below fIotherfR.
  42. .PP
  43. The fIaboveBelowfR argument must have one of the symbolic values
  44. fBAbovefR or fBBelowfR.
  45. Both of these values are defined by the include file <X11/Xlib.h>.
  46. .SH KEYWORDS
  47. above, below, obscure, stacking order