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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990-1994 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: pack-old.n,v 1.2.26.1 2004/11/19 09:48:02 rmax Exp $
  9. '" 
  10. .so man.macros
  11. .TH pack-old n 4.0 Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. pack-old - Obsolete syntax for packer geometry manager
  16. .SH SYNOPSIS
  17. fBpack after fIsibling fIwindow optionsfR ?fIwindow options fR...?
  18. .sp
  19. fBpack append fIparent fIwindow optionsfR ?fIwindow options fR...?
  20. .sp
  21. fBpack before fIsibling fIwindow optionsfR ?fIwindow options fR...?
  22. .sp
  23. fBpack unpack fIwindowfR
  24. .BE
  25. .SH DESCRIPTION
  26. .PP
  27. fINote: this manual entry describes the syntax for the fBpackfI
  28. command as it existed before Tk version 3.3.
  29. Although this syntax continues to be supported for backward
  30. compatibility, it is obsolete and should not be used anymore.
  31. At some point in the future it may cease to be supported.fR
  32. .PP
  33. The packer is a geometry manager that arranges the
  34. children of a parent by packing them in order around the edges of
  35. the parent.  The first child is placed against one side of
  36. the window, occupying the entire span of the window along that
  37. side.  This reduces the space remaining for other children as
  38. if the side had been moved in by the size of the first child.
  39. Then the next child is placed against one side of the remaining
  40. cavity, and so on until all children have been placed or there
  41. is no space left in the cavity.
  42. .PP
  43. The fBbeforefR, fBafterfR, and fBappendfR forms of the fBpackfR
  44. command are used to insert one or more children into the packing order
  45. for their parent.  The fBbeforefR form inserts the children before
  46. window fIsiblingfR in the order;  all of the other windows must be
  47. siblings of fIsiblingfR.  The fBafterfR form inserts the windows
  48. after fIsiblingfR, and the fBappendfR form appends one or more
  49. windows to the end of the packing order for fIparentfR.  If a
  50. fIwindowfR named in any of these commands is already packed in
  51. its parent, it is removed from its current position in the packing
  52. order and repositioned as indicated by the command.  All of these
  53. commands return an empty string as result.
  54. .PP
  55. The fBunpackfR form of the fBpackfR command removes fIwindowfR
  56. from the packing order of its parent and unmaps it.  After the
  57. execution of this command the packer will no longer manage
  58. fIwindowfR's geometry.
  59. .PP
  60. The placement of each child is actually a four-step process;
  61. the fIoptionsfR argument following each fIwindowfR consists of
  62. a list of one or more fields that govern the placement of that
  63. window.  In the discussion below, the term fIcavityfR refers
  64. to the space left in a parent when a particular child is placed
  65. (i.e. all the space that wasn't claimed by earlier children in
  66. the packing order).  The term fIparcelfR refers to the space
  67. allocated to a particular child;  this is not necessarily the
  68. same as the child window's final geometry.
  69. .PP
  70. The first step in placing a child is to determine which side of
  71. the cavity it will lie against.  Any one of the following options
  72. may be used to specify a side:
  73. .TP
  74. fBtopfR
  75. Position the child's parcel against the top of the cavity,
  76. occupying the full width of the cavity.
  77. .TP
  78. fBbottomfR
  79. Position the child's parcel against the bottom of the cavity,
  80. occupying the full width of the cavity.
  81. .TP
  82. fBleftfR
  83. Position the child's parcel against the left side of the cavity,
  84. occupying the full height of the cavity.
  85. .TP
  86. fBrightfR
  87. Position the child's parcel against the right side of the cavity,
  88. occupying the full height of the cavity.
  89. .LP
  90. At most one of these options should be specified for any given window.
  91. If no side is specified, then the default is fBtopfR.
  92. .PP
  93. The second step is to decide on a parcel for the child.  For fBtopfR
  94. and fBbottomfR windows, the desired parcel width is normally the cavity
  95. width and the desired parcel height is the window's requested height,
  96. as passed to fBTk_GeometryRequestfR. For fBleftfR and fBrightfR
  97. windows, the desired parcel height is normally the cavity height and the
  98. desired width is the window's requested width.  However, extra
  99. space may be requested for the window using any of the following
  100. options:
  101. .TP 12
  102. fBpadx fInumfR
  103. Add fInumfR pixels to the window's requested width before computing
  104. the parcel size as described above.
  105. .TP 12
  106. fBpady fInumfR
  107. Add fInumfR pixels to the window's requested height before computing
  108. the parcel size as described above.
  109. .TP 12
  110. fBexpandfR
  111. This option requests that the window's parcel absorb any extra space left over
  112. in the parent's cavity after packing all the children.
  113. The amount of space left over depends on the sizes requested by the
  114. other children, and may be zero.  If several windows have all specified
  115. fBexpandfR then the extra width will be divided equally among all the
  116. fBleftfR and fBrightfR windows that specified fBexpandfR and
  117. the extra height will be divided equally among all the fBtopfR and
  118. fBbottomfR windows that specified fBexpandfR.
  119. .LP
  120. If the desired width or height for a parcel is larger than the corresponding
  121. dimension of the cavity, then the cavity's dimension is used instead.
  122. .PP
  123. The third step in placing the window is to decide on the window's
  124. width and height.  The default is for the window to receive either
  125. its requested width and height or the those of the parcel, whichever
  126. is smaller.  If the parcel is larger than the window's requested
  127. size, then the following options may be used to expand the
  128. window to partially or completely fill the parcel:
  129. .TP
  130. fBfillfR
  131. Set the window's size to equal the parcel size.
  132. .TP
  133. fBfillxfR
  134. Increase the window's width to equal the parcel's width, but retain
  135. the window's requested height.
  136. .TP
  137. fBfillyfR
  138. Increase the window's height to equal the parcel's height, but retain
  139. the window's requested width.
  140. .PP
  141. The last step is to decide the window's location within its parcel.
  142. If the window's size equals the parcel's size, then the window simply
  143. fills the entire parcel.  If the parcel is larger than the window,
  144. then one of
  145. the following options may be used to specify where the window should
  146. be positioned within its parcel:
  147. .TP 15
  148. fBframe centerfR
  149. Center the window in its parcel.  This is the default if no framing
  150. option is specified.
  151. .TP 15
  152. fBframe nfR
  153. Position the window with its top edge centered on the top edge of
  154. the parcel.
  155. .TP 15
  156. fBframe nefR
  157. Position the window with its upper-right corner at the upper-right corner
  158. of the parcel.
  159. .TP 15
  160. fBframe efR
  161. Position the window with its right edge centered on the right edge of
  162. the parcel.
  163. .TP 15
  164. fBframe sefR
  165. Position the window with its lower-right corner at the lower-right corner
  166. of the parcel.
  167. .TP 15
  168. fBframe sfR
  169. Position the window with its bottom edge centered on the bottom edge of
  170. the parcel.
  171. .TP 15
  172. fBframe swfR
  173. Position the window with its lower-left corner at the lower-left corner
  174. of the parcel.
  175. .TP 15
  176. fBframe wfR
  177. Position the window with its left edge centered on the left edge of
  178. the parcel.
  179. .TP 15
  180. fBframe nwfR
  181. Position the window with its upper-left corner at the upper-left corner
  182. of the parcel.
  183. .PP
  184. The packer manages the mapped/unmapped state of all the packed
  185. children windows.  It automatically maps the windows when it packs
  186. them, and it unmaps any windows for which there was no space left
  187. in the cavity.
  188. .PP
  189. The packer makes geometry requests on behalf of the parent windows
  190. it manages.  For each parent window it requests a size large enough
  191. to accommodate all the options specified by all the packed children,
  192. such that zero space would be leftover for fBexpandfR options.
  193. .SH KEYWORDS
  194. geometry manager, location, packer, parcel, size