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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990-1993 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: ConfigWind.3,v 1.2 1998/09/14 18:22:46 stanton Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tk_ConfigureWindow 3 4.0 Tk "Tk Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tk_ConfigureWindow, Tk_MoveWindow, Tk_ResizeWindow, Tk_MoveResizeWindow, Tk_SetWindowBorderWidth, Tk_ChangeWindowAttributes, Tk_SetWindowBackground, Tk_SetWindowBackgroundPixmap, Tk_SetWindowBorder, Tk_SetWindowBorderPixmap, Tk_SetWindowColormap, Tk_DefineCursor, Tk_UndefineCursor - change window configuration or attributes
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tk.h>fR
  18. .sp
  19. fBTk_ConfigureWindowfR(fItkwin, valueMask, valuePtrfR)
  20. .sp
  21. fBTk_MoveWindowfR(fItkwin, x, yfR)
  22. .sp
  23. fBTk_ResizeWindowfR(fItkwin, width, heightfR)
  24. .sp
  25. fBTk_MoveResizeWindowfR(fItkwin, x,  y, width, heightfR)
  26. .sp
  27. fBTk_SetWindowBorderWidthfR(fItkwin, borderWidthfR)
  28. .sp
  29. fBTk_ChangeWindowAttributesfR(fItkwin, valueMask, attsPtrfR)
  30. .sp
  31. fBTk_SetWindowBackgroundfR(fItkwin, pixelfR)
  32. .sp
  33. fBTk_SetWindowBackgroundPixmapfR(fItkwin, pixmapfR)
  34. .sp
  35. fBTk_SetWindowBorderfR(fItkwin, pixelfR)
  36. .sp
  37. fBTk_SetWindowBorderPixmapfR(fItkwin, pixmapfR)
  38. .sp
  39. fBTk_SetWindowColormapfR(fItkwin, colormapfR)
  40. .sp
  41. fBTk_DefineCursorfR(fItkwin, cursorfR)
  42. .sp
  43. fBTk_UndefineCursorfR(fItkwinfR)
  44. .SH ARGUMENTS
  45. .AS XSetWindowAttributes borderWidth
  46. .AP Tk_Window tkwin in
  47. Token for window.
  48. .AP "unsigned int" valueMask in
  49. OR-ed mask of values like fBCWXfR or fBCWBorderPixelfR,
  50. indicating which fields of fI*valuePtrfR or fI*attsPtrfR to use.
  51. .AP XWindowChanges *valuePtr in
  52. Points to a structure containing new values for the configuration
  53. parameters selected by fIvalueMaskfR.  Fields not selected
  54. by fIvalueMaskfR are ignored.
  55. .AP int x in
  56. New x-coordinate for fItkwinfR's top left pixel (including
  57. border, if any) within tkwin's parent.
  58. .AP int y in
  59. New y-coordinate for fItkwinfR's top left pixel (including
  60. border, if any) within tkwin's parent.
  61. .AP "int" width in
  62. New width for fItkwinfR (interior, not including border).
  63. .AP "int" height in
  64. New height for fItkwinfR (interior, not including border).
  65. .AP "int" borderWidth in
  66. New width for fItkwinfR's border.
  67. .AP XSetWindowAttributes *attsPtr in
  68. Points to a structure containing new values for the attributes
  69. given by the fIvalueMaskfR argument.  Attributes not selected
  70. by fIvalueMaskfR are ignored.
  71. .AP "unsigned long" pixel in
  72. New background or border color for window.
  73. .AP Pixmap pixmap in
  74. New pixmap to use for background or border of fItkwinfR.  WARNING:
  75. cannot necessarily be deleted immediately, as for Xlib calls.  See
  76. note below.
  77. .AP Colormap colormap in
  78. New colormap to use for fItkwinfR.
  79. .AP Tk_Cursor cursor in
  80. New cursor to use for fItkwinfR.  If fBNonefR is specified, then
  81. fItkwinfR will not have its own cursor;  it will use the cursor
  82. of its parent.
  83. .BE
  84. .SH DESCRIPTION
  85. .PP
  86. These procedures are analogous to the X library procedures
  87. with similar names, such as fBXConfigureWindowfR.  Each
  88. one of the above procedures calls the corresponding X procedure
  89. and also saves the configuration information in Tk's local
  90. structure for the window.  This allows the information to
  91. be retrieved quickly by the application (using macros such
  92. as fBTk_XfR and fBTk_HeightfR) without having to contact
  93. the X server.  In addition, if no X window has actually been
  94. created for fItkwinfR yet, these procedures do not issue
  95. X operations or cause event handlers to be invoked;  they save
  96. the information in Tk's local
  97. structure for the window;  when the window is created later,
  98. the saved information will be used to configure the window.
  99. .PP
  100. See the X library documentation for details on what these
  101. procedures do and how they use their arguments.
  102. .PP
  103. In the procedures fBTk_ConfigureWindowfR, fBTk_MoveWindowfR,
  104. fBTk_ResizeWindowfR, fBTk_MoveResizeWindowfR, and
  105. fBTk_SetWindowBorderWidthfR,
  106. if fItkwinfR is an internal window then event handlers interested
  107. in configure events are invoked immediately, before the procedure
  108. returns.  If fItkwinfR is a top-level window
  109. then the event handlers will be invoked later, after X has seen
  110. the request and returned an event for it.
  111. .PP
  112. Applications using Tk should never call procedures like
  113. fBXConfigureWindowfR directly;  they should always use the
  114. corresponding Tk procedures.
  115. .PP
  116. The size and location of a window should only be modified by the
  117. appropriate geometry manager for that window and never by a window
  118. itself (but see fBTk_MoveToplevelWindowfR for moving a top-level
  119. window).
  120. .PP
  121. You may not use fBTk_ConfigureWindowfR to change the
  122. stacking order of a window (fIvalueMaskfR may not contain the
  123. fBCWSiblingfR or fBCWStackModefR bits).
  124. To change the stacking order, use the procedure fBTk_RestackWindowfR.
  125. .PP
  126. The procedure fBTk_SetWindowColormapfR will automatically add
  127. fItkwinfR to the fBTK_COLORMAP_WINDOWSfR property of its
  128. nearest top-level ancestor if the new colormap is different from
  129. that of fItkwinfR's parent and fItkwinfR isn't already in
  130. the fBTK_COLORMAP_WINDOWSfR property.
  131. .SH BUGS
  132. .PP
  133. fBTk_SetWindowBackgroundPixmapfR and fBTk_SetWindowBorderPixmapfR
  134. differ slightly from their Xlib counterparts in that the fIpixmapfR
  135. argument may not necessarily be deleted immediately after calling
  136. one of these procedures.  This is because fItkwinfR's window
  137. may not exist yet at the time of the call, in which case fIpixmapfR
  138. is merely saved and used later when fItkwinfR's window is actually
  139. created.  If you wish to delete fIpixmapfR, then call
  140. fBTk_MakeWindowExistfR first to be sure that fItkwinfR's window exists
  141. and fIpixmapfR has been passed to the X server.
  142. .PP
  143. A similar problem occurs for the fIcursorfR argument passed to
  144. fBTk_DefineCursorfR.  The solution is the same as for pixmaps above:
  145. call fBTk_MakeWindowExistfR before freeing the cursor.
  146. .SH "SEE ALSO"
  147. Tk_MoveToplevelWindow, Tk_RestackWindow
  148. .SH KEYWORDS
  149. attributes, border, color, configure, height, pixel, pixmap, width, window, x, y