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

通讯编程

开发平台:

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: place.n,v 1.3.8.1 2004/10/28 12:25:22 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH place n "" Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. place - Geometry manager for fixed or rubber-sheet placement
  16. .SH SYNOPSIS
  17. fBplace fIoption arg fR?fIarg ...fR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. The placer is a geometry manager for Tk.
  22. It provides simple fixed placement of windows, where you specify
  23. the exact size and location of one window, called the fIslavefR,
  24. within another window, called the fImasterfR.
  25. The placer also provides rubber-sheet placement, where you specify the
  26. size and location of the slave in terms of the dimensions of
  27. the master, so that the slave changes size and location
  28. in response to changes in the size of the master.
  29. Lastly, the placer allows you to mix these styles of placement so
  30. that, for example, the slave has a fixed width and height but is
  31. centered inside the master.
  32. .PP
  33. .TP
  34. fBplace fIwindow option value fR?fIoption value ...fR?
  35. Arrange for the placer to manage the geometry of a slave whose
  36. pathName is fIwindowfR.  The remaining arguments consist of one or
  37. more fIoption-valuefR pairs that specify the way in which
  38. fIwindowfR's geometry is managed.  fIOptionfR may have any of the
  39. values accepted by the fBplace configurefR command.
  40. .TP
  41. fBplace configure fIwindow fR?fIoptionfR? ?fIvalue option value ...fR?
  42. Query or modify the geometry options of the slave given by
  43. fIwindowfR.  If no fIoptionfR is specified, this command returns a
  44. list describing the available options (see fBTk_ConfigureInfofR for
  45. information on the format of this list).  If fIoptionfR is specified
  46. with no fIvaluefR, then the command returns a list describing the
  47. one named option (this list will be identical to the corresponding
  48. sublist of the value returned if no fIoptionfR is specified).  If
  49. one or more fIoption-valuefR pairs are specified, then the command
  50. modifies the given option(s) to have the given value(s); in this case
  51. the command returns an empty string.
  52. The following fIoption-valuefR pairs are supported:
  53. .RS
  54. .TP
  55. fB-anchor fIwherefR
  56. fIWherefR specifies which point of fIwindowfR is to be positioned
  57. at the (x,y) location selected by the fB-xfR, fB-yfR,
  58. fB-relxfR, and fB-relyfR options.
  59. The anchor point is in terms of the outer area of fIwindowfR
  60. including its border, if any.
  61. Thus if fIwherefR is fBsefR then the lower-right corner of
  62. fIwindowfR's border will appear at the given (x,y) location
  63. in the master.
  64. The anchor position defaults to fBnwfR.
  65. .TP
  66. fB-bordermode fImodefR
  67. fIModefR determines the degree to which borders within the
  68. master are used in determining the placement of the slave.
  69. The default and most common value is fBinsidefR.
  70. In this case the placer considers the area of the master to
  71. be the innermost area of the master, inside any border:
  72. an option of fB-x 0fR corresponds to an x-coordinate just
  73. inside the border and an option of fB-relwidth 1.0fR
  74. means fIwindowfR will fill the area inside the master's
  75. border.
  76. If fImodefR is fBoutsidefR then the placer considers
  77. the area of the master to include its border;
  78. this mode is typically used when placing fIwindowfR
  79. outside its master, as with the options fB-x 0 -y 0 -anchor nefR.
  80. Lastly, fImodefR may be specified as fBignorefR, in which
  81. case borders are ignored:  the area of the master is considered
  82. to be its official X area, which includes any internal border but
  83. no external border.  A bordermode of fBignorefR is probably
  84. not very useful.
  85. .TP
  86. fB-height fIsizefR
  87. fISizefR specifies the height for fIwindowfR in screen units
  88. (i.e. any of the forms accepted by fBTk_GetPixelsfR).
  89. The height will be the outer dimension of fIwindowfR including its
  90. border, if any.
  91. If fIsizefR is an empty string, or if no fB-heightfR or
  92. fB-relheightfR option is specified, then the height requested
  93. internally by the window will be used.
  94. .TP
  95. fB-in fImasterfR
  96. fIMasterfR specifies the path name of the window relative
  97. to which fIwindowfR is to be placed.
  98. fIMasterfR must either be fIwindowfR's parent or a descendant
  99. of fIwindowfR's parent.
  100. In addition, fImasterfR and fIwindowfR must both be descendants
  101. of the same top-level window.
  102. These restrictions are necessary to guarantee
  103. that fIwindowfR is visible whenever fImasterfR is visible.
  104. If this option isn't specified then the master defaults to
  105. fIwindowfR's parent.
  106. .TP
  107. fB-relheight fIsizefR
  108. fISizefR specifies the height for fIwindowfR.
  109. In this case the height is specified as a floating-point number
  110. relative to the height of the master: 0.5 means fIwindowfR will
  111. be half as high as the master, 1.0 means fIwindowfR will have
  112. the same height as the master, and so on.
  113. If both fB-heightfR and fB-relheightfR are specified for a slave,
  114. their values are summed.  For example, fB-relheight 1.0 -height -2fR
  115. makes the slave 2 pixels shorter than the master.
  116. .TP
  117. fB-relwidth fIsizefR
  118. fISizefR specifies the width for fIwindowfR.
  119. In this case the width is specified as a floating-point number
  120. relative to the width of the master: 0.5 means fIwindowfR will
  121. be half as wide as the master, 1.0 means fIwindowfR will have
  122. the same width as the master, and so on.
  123. If both fB-widthfR and fB-relwidthfR are specified for a slave,
  124. their values are summed.  For example, fB-relwidth 1.0 -width 5fR
  125. makes the slave 5 pixels wider than the master.
  126. .TP
  127. fB-relx fIlocationfR
  128. fILocationfR specifies the x-coordinate within the master window
  129. of the anchor point for fIwindowfR.
  130. In this case the location is specified in a relative fashion
  131. as a floating-point number:  0.0 corresponds to the left edge
  132. of the master and 1.0 corresponds to the right edge of the master.
  133. fILocationfR need not be in the range 0.0-1.0.
  134. If both fB-xfR and fB-relxfR are specified for a slave
  135. then their values are summed.  For example, fB-relx 0.5 -x -2fR
  136. positions the left edge of the slave 2 pixels to the left of the
  137. center of its master.
  138. .TP
  139. fB-rely fIlocationfR
  140. fILocationfR specifies the y-coordinate within the master window
  141. of the anchor point for fIwindowfR.
  142. In this case the value is specified in a relative fashion
  143. as a floating-point number:  0.0 corresponds to the top edge
  144. of the master and 1.0 corresponds to the bottom edge of the master.
  145. fILocationfR need not be in the range 0.0-1.0.
  146. If both fB-yfR and fB-relyfR are specified for a slave
  147. then their values are summed.  For example, fB-rely 0.5 -x 3fR
  148. positions the top edge of the slave 3 pixels below the
  149. center of its master.
  150. .TP
  151. fB-width fIsizefR
  152. fISizefR specifies the width for fIwindowfR in screen units
  153. (i.e. any of the forms accepted by fBTk_GetPixelsfR).
  154. The width will be the outer width of fIwindowfR including its
  155. border, if any.
  156. If fIsizefR is an empty string, or if no fB-widthfR
  157. or fB-relwidthfR option is specified, then the width requested
  158. internally by the window will be used.
  159. .TP
  160. fB-x fIlocationfR
  161. fILocationfR specifies the x-coordinate within the master window
  162. of the anchor point for fIwindowfR.
  163. The location is specified in screen units (i.e. any of the forms
  164. accepted by fBTk_GetPixelsfR) and need not lie within the bounds
  165. of the master window.
  166. .TP
  167. fB-y fIlocationfR
  168. fILocationfR specifies the y-coordinate within the master window
  169. of the anchor point for fIwindowfR.
  170. The location is specified in screen units (i.e. any of the forms
  171. accepted by fBTk_GetPixelsfR) and need not lie within the bounds
  172. of the master window.
  173. .PP
  174. If the same value is specified separately with
  175. two different options, such as fB-xfR and fB-relxfR, then
  176. the most recent option is used and the older one is ignored.
  177. .RE
  178. .TP
  179. fBplace forget fIwindowfR
  180. Causes the placer to stop managing the geometry of fIwindowfR.  As a
  181. side effect of this command fIwindowfR will be unmapped so that it
  182. doesn't appear on the screen.  If fIwindowfR isn't currently managed
  183. by the placer then the command has no effect.  This command returns an
  184. empty string.
  185. .TP
  186. fBplace info fIwindowfR
  187. Returns a list giving the current configuration of fIwindowfR.
  188. The list consists of fIoption-valuefR pairs in exactly the
  189. same form as might be specified to the fBplace configurefR
  190. command.
  191. .TP
  192. fBplace slaves fIwindowfR
  193. Returns a list of all the slave windows for which fIwindowfR is the master.
  194. If there are no slaves for fIwindowfR then an empty string is returned.
  195. .PP
  196. If the configuration of a window has been retrieved with
  197. fBplace infofR, that configuration can be restored later by
  198. first using fBplace forgetfR to erase any existing information
  199. for the window and then invoking fBplace configurefR with
  200. the saved information.
  201. .SH "FINE POINTS"
  202. .PP
  203. It is not necessary for the master window to be the parent
  204. of the slave window.
  205. This feature is useful in at least two situations.
  206. First, for complex window layouts it means you can create a
  207. hierarchy of subwindows whose only purpose
  208. is to assist in the layout of the parent.
  209. The ``real children'' of the parent (i.e. the windows that
  210. are significant for the application's user interface) can be
  211. children of the parent yet be placed inside the windows
  212. of the geometry-management hierarchy.
  213. This means that the path names of the ``real children''
  214. don't reflect the geometry-management hierarchy and users
  215. can specify options for the real children
  216. without being aware of the structure of the geometry-management
  217. hierarchy.
  218. .PP
  219. A second reason for having a master different than the slave's
  220. parent is to tie two siblings together.
  221. For example, the placer can be used to force a window always to
  222. be positioned centered just below one of its
  223. siblings by specifying the configuration
  224. .CS
  225. fB-in fIsiblingfB -relx 0.5 -rely 1.0 -anchor n -bordermode outsidefR
  226. .CE
  227. Whenever the sibling is repositioned in the future, the slave
  228. will be repositioned as well.
  229. .PP
  230. Unlike many other geometry managers (such as the packer)
  231. the placer does not make any attempt to manipulate the geometry of
  232. the master windows or the parents of slave windows (i.e. it doesn't
  233. set their requested sizes).
  234. To control the sizes of these windows, make them windows like
  235. frames and canvases that provide configuration options for this purpose.
  236. .SH EXAMPLE
  237. Make the label occupy the middle bit of the toplevel, no matter how it
  238. is resized:
  239. .CS
  240. label .l -text "In the\nMiddle!" -bg black -fg white
  241. fBplacefR .l -relwidth .3 -relx .35 -relheight .3 -rely .35
  242. .CE
  243. .SH "SEE ALSO"
  244. grid(n), pack(n)
  245. .SH KEYWORDS
  246. geometry manager, height, location, master, place, rubber sheet, slave, width