GetVRoot.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: GetVRoot.3,v 1.2 1998/09/14 18:22:51 stanton Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tk_GetVRootGeometry 3 4.0 Tk "Tk Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tk_GetVRootGeometry - Get location and size of virtual root for window
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tk.h>fR
  18. .sp
  19. fBTk_GetVRootGeometry(fItkwin, xPtr, yPtr, widthPtr, heightPtrfB)fR
  20. .SH ARGUMENTS
  21. .AS Tk_Window heightPtr
  22. .AP Tk_Window tkwin in
  23. Token for window whose virtual root is to be queried.
  24. .AP int xPtr out
  25. Points to word in which to store x-offset of virtual root.
  26. .AP int yPtr out
  27. Points to word in which to store y-offset of virtual root.
  28. .AP "int" widthPtr out
  29. Points to word in which to store width of virtual root.
  30. .AP "int" heightPtr out
  31. Points to word in which to store height of virtual root.
  32. .BE
  33. .SH DESCRIPTION
  34. .PP
  35. fBTkGetVRootGeometryfR returns geometry information about the virtual
  36. root window associated with fItkwinfR.  The ``associated'' virtual
  37. root is the one in which fItkwinfR's nearest top-level ancestor (or
  38. fItkwinfR itself if it is a top-level window) has
  39. been reparented by the window manager.  This window is identified by
  40. a fB__SWM_ROOTfR or fB__WM_ROOTfR property placed on the top-level
  41. window by the window manager.
  42. If fItkwinfR is not associated with a virtual root (e.g.
  43. because the window manager doesn't use virtual roots) then *fIxPtrfR and
  44. *fIyPtrfR will be set to 0 and *fIwidthPtrfR and *fIheightPtrfR
  45. will be set to the dimensions of the screen containing fItkwinfR.
  46. .SH KEYWORDS
  47. geometry, height, location, virtual root, width, window manager