home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _13688cc2b5bd8e71aec409684d348d9e < prev    next >
Text File  |  2000-03-23  |  22KB  |  407 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::grid - Geometry manager that arranges widgets in a grid</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Tk::grid - Geometry manager that arranges widgets in a grid</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#relative placement">RELATIVE PLACEMENT</A></LI>
  26.     <LI><A HREF="#the grid algorithm">THE GRID ALGORITHM</A></LI>
  27.     <LI><A HREF="#geometry propagation">GEOMETRY PROPAGATION</A></LI>
  28.     <LI><A HREF="#restrictions on master windows">RESTRICTIONS ON MASTER WINDOWS</A></LI>
  29.     <LI><A HREF="#stacking order">STACKING ORDER</A></LI>
  30.     <LI><A HREF="#credits">CREDITS</A></LI>
  31.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  32.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  33. </UL>
  34. <!-- INDEX END -->
  35.  
  36. <HR>
  37. <P>
  38. <H1><A NAME="name">NAME</A></H1>
  39. <P>Tk::grid - Geometry manager that arranges widgets in a grid</P>
  40. <P>
  41. <HR>
  42. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  43. <UL>
  44. <LI>Linux</LI>
  45. <LI>Solaris</LI>
  46. <LI>Windows</LI>
  47. </UL>
  48. <HR>
  49. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  50. <P>    <EM>$widget</EM>-><STRONG>grid</STRONG>?(?<EM>widget</EM> ...,? ?<EM>arg</EM> ?...>?)?</P>
  51. <P>    <EM>$widget</EM>-><STRONG>grid</STRONG><EM>Option</EM>?(<EM>arg</EM> ?,<EM>arg</EM> ...?)?</P>
  52. <P>
  53. <HR>
  54. <H1><A NAME="description">DESCRIPTION</A></H1>
  55. <P>The <STRONG>grid</STRONG> method is used to communicate with the grid
  56. geometry manager that arranges widgets in rows and columns inside
  57. of another window, called the geometry master (or master window).
  58. The <STRONG>grid</STRONG> method can have any of several forms, depending
  59. on the <EM>option</EM> argument:</P>
  60. <DL>
  61. <DT><STRONG><A NAME="item_grid"><EM>$slave</EM>-><STRONG>grid</STRONG>(?<EM>$slave, ...</EM>??, <EM>options</EM>?)</A></STRONG><BR>
  62. <DD>
  63. The arguments consist of the optional references to more slave windows
  64. followed by pairs of arguments that specify how to manage the slaves.
  65. The characters <STRONG>-</STRONG>,  <STRONG>x</STRONG> and <STRONG>^</STRONG>,
  66. can be specified instead of a window reference to alter the default
  67. location of a <EM>$slave</EM>, as described in <A HREF="#relative placement">RELATIVE PLACEMENT</A>, below.
  68. <P>If any of the slaves are already managed by the geometry manager
  69. then any unspecified options for them retain their previous values rather
  70. than receiving default values.</P>
  71. <P>The following options are supported:</P>
  72. <DL>
  73. <DT><STRONG><A NAME="item_%2Dcolumn_%3D%3E_n"><STRONG>-column</STRONG> => <EM>n</EM></A></STRONG><BR>
  74. <DD>
  75. Insert the <EM>$slave</EM> so that it occupies the <EM>n</EM>th column in the grid.
  76. Column numbers start with 0.  If this option is not supplied, then the
  77. <EM>$slave</EM> is arranged just to the right of previous slave specified on this
  78. call to <STRONG>grid</STRONG>, or column ``0'' if it is the first slave.  For each
  79. <STRONG>x</STRONG> that immediately precedes the <EM>$slave</EM>, the column position
  80. is incremented by one.  Thus the <STRONG>x</STRONG> represents a blank column
  81. for this row in the grid.
  82. <P></P>
  83. <DT><STRONG><A NAME="item_%2Dcolumnspan_%3D%3E_n"><STRONG>-columnspan</STRONG> => <EM>n</EM></A></STRONG><BR>
  84. <DD>
  85. Insert the slave so that it occupies <EM>n</EM> columns in the grid.
  86. The default is one column, unless the window name is followed by a
  87. <STRONG>-</STRONG>, in which case the columnspan is incremented once for each immediately
  88. following <STRONG>-</STRONG>.
  89. <P></P>
  90. <DT><STRONG><A NAME="item_%2Din_%3D%3E_%24other"><STRONG>-in</STRONG> => <EM>$other</EM></A></STRONG><BR>
  91. <DD>
  92. Insert the <CODE>slave(s)</CODE> in the master
  93. window given by <EM>$other</EM>.  The default is the first slave's
  94. parent window.
  95. <P></P>
  96. <DT><STRONG><A NAME="item_%2Dipadx_%3D%3E_amount"><STRONG>-ipadx</STRONG> => <EM>amount</EM></A></STRONG><BR>
  97. <DD>
  98. The <EM>amount</EM> specifies how much horizontal internal padding to
  99. leave on each side of the slave(s).  This is space is added
  100. inside the <CODE>slave(s)</CODE> border.
  101. The <EM>amount</EM> must be a valid screen distance, such as <STRONG>2</STRONG> or <STRONG>'.5c'</STRONG>.
  102. It defaults to 0.
  103. <P></P>
  104. <DT><STRONG><A NAME="item_%2Dipady_%3D%3E_amount"><STRONG>-ipady</STRONG> => <EM>amount</EM></A></STRONG><BR>
  105. <DD>
  106. The <EM>amount</EM> specifies how much vertical internal padding to
  107. leave on on the top and bottom of the slave(s).
  108. This space is added inside the <CODE>slave(s)</CODE> border.
  109. The <EM>amount</EM>  defaults to 0.
  110. <P></P>
  111. <DT><STRONG><A NAME="item_%2Dpadx_%3D%3E_amount"><STRONG>-padx</STRONG> => <EM>amount</EM></A></STRONG><BR>
  112. <DD>
  113. The <EM>amount</EM> specifies how much horizontal external padding to
  114. leave on each side of the slave(s), in screen units.
  115. The <EM>amount</EM> defaults to 0.
  116. This space is added outside the <CODE>slave(s)</CODE> border.
  117. <P></P>
  118. <DT><STRONG><A NAME="item_%2Dpady_%3D%3E_amount"><STRONG>-pady</STRONG> => <EM>amount</EM></A></STRONG><BR>
  119. <DD>
  120. The <EM>amount</EM> specifies how much vertical external padding to
  121. leave on the top and bottom of the slave(s), in screen units.
  122. The <EM>amount</EM> defaults to 0.
  123. This space is added outside the <CODE>slave(s)</CODE> border.
  124. <P></P>
  125. <DT><STRONG><A NAME="item_%2Drow_%3D%3E_n"><STRONG>-row</STRONG> => <EM>n</EM></A></STRONG><BR>
  126. <DD>
  127. Insert the slave so that it occupies the <EM>n</EM>th row in the grid.
  128. Row numbers start with 0.  If this option is not supplied, then the
  129. slave is arranged on the same row as the previous slave specified on this
  130. call to <STRONG>grid</STRONG>, or the first unoccupied row if this is the first slave.
  131. <P></P>
  132. <DT><STRONG><A NAME="item_%2Drowspan_%3D%3E_n"><STRONG>-rowspan</STRONG> => <EM>n</EM></A></STRONG><BR>
  133. <DD>
  134. Insert the slave so that it occupies <EM>n</EM> rows in the grid.
  135. The default is one row.  If the next <STRONG>grid</STRONG> method contains
  136. <STRONG>^</STRONG> characters instead of <EM>$slave</EM>s that line up with the columns
  137. of this <EM>$slave</EM>, then the <STRONG>rowspan</STRONG> of this <EM>$slave</EM> is
  138. extended by one.
  139. <P></P>
  140. <DT><STRONG><A NAME="item_%2Dsticky_%3D%3E_style"><STRONG>-sticky</STRONG> => <EM>style</EM></A></STRONG><BR>
  141. <DD>
  142. If a slave's cell is larger than its requested dimensions, this
  143. option may be used to position (or stretch) the slave within its cell.
  144. <EM>Style</EM>  is a string that contains zero or more of the characters
  145. <STRONG>n</STRONG>, <STRONG>s</STRONG>, <STRONG>e</STRONG> or <STRONG>w</STRONG>.
  146. The string can optionally contain spaces or
  147. commas, but they are ignored.  Each letter refers to a side (north, south,
  148. east, or west) that the slave will ``stick'' to.  If both <STRONG>n</STRONG> and <STRONG>s</STRONG> (or
  149. <STRONG>e</STRONG> and <STRONG>w</STRONG>) are specified, the slave will be stretched to fill the entire
  150. height (or width) of its cavity.  The <STRONG>sticky</STRONG> option subsumes the
  151. combination of <STRONG>-anchor</STRONG> and <STRONG>-fill</STRONG> that is used by <A HREF="../../../site/lib/Tk/pack.html">pack</A>.
  152. The default is <STRONG>''</STRONG>, which causes the slave to be centered in its cavity,
  153. at its requested size.
  154. <P></P></DL>
  155. <DT><STRONG><A NAME="item_gridBbox"><EM>$master</EM>-><STRONG>gridBbox</STRONG>(?<EM>column, row</EM>,? ?<EM>column2, row2</EM>?)</A></STRONG><BR>
  156. <DD>
  157. With no arguments,
  158. the bounding box (in pixels) of the grid is returned.
  159. The return value consists of 4 integers.  The first two are the pixel
  160. offset from the master window (x then y) of the top-left corner of the
  161. grid, and the second two integers are the width and height of the grid,
  162. also in pixels.  If a single <EM>column</EM> and <EM>row</EM> is specified on
  163. the command line, then the bounding box for that cell is returned, where the
  164. top left cell is numbered from zero.  If both <EM>column</EM> and <EM>row</EM>
  165. arguments are specified, then the bounding box spanning the rows and columns
  166. indicated is returned.
  167. <P></P>
  168. <DT><STRONG><A NAME="item_gridColumnconfigure"><EM>$master</EM>-><STRONG>gridColumnconfigure</STRONG>(<EM>index</EM>?, <EM>-option</EM>=><EM>value, ...</EM>?)</A></STRONG><BR>
  169. <DD>
  170. Query or set the column properties of the <EM>index</EM> column of the
  171. geometry master, <EM>$master</EM>.
  172. The valid options are <STRONG>-minsize</STRONG>, <STRONG>-weight</STRONG> and <STRONG>-pad</STRONG>.
  173. If one or more options are provided, then <EM>index</EM> may be given as
  174. a list of column indices to which the configuration options will operate on.
  175. The <STRONG>-minsize</STRONG> option sets the minimum size, in screen units,
  176. that will be permitted for this column.
  177. The <STRONG>-weight</STRONG> option (an integer value)
  178. sets the relative weight for apportioning
  179. any extra spaces among
  180. columns.
  181. A weight of zero (0) indicates the column will not deviate from its requested
  182. size.  A column whose weight is two will grow at twice the rate as a column
  183. of weight one when extra space is allocated to the layout.
  184. The <STRONG>-pad</STRONG> option specifies the number of screen units that will be
  185. added to the largest window contained completely in that column when the
  186. grid geometry manager requests a size from the containing window.
  187. If only an option is specified, with no value,
  188. the current value of that option is returned.
  189. If only the master window and index is specified, all the current settings
  190. are returned in an list of ``-option value'' pairs.
  191. <P></P>
  192. <DT><STRONG><A NAME="item_gridConfigure"><EM>$slave</EM>-><STRONG>gridConfigure</STRONG>(?<EM>$slave, ...</EM>?, <EM>options</EM>?)</A></STRONG><BR>
  193. <DD>
  194. The same as <STRONG>grid</STRONG> method.
  195. <P></P>
  196. <DT><STRONG><A NAME="item_gridForget"><EM>$slave</EM>-><STRONG>gridForget</STRONG>?(<EM>$slave, ...</EM>)?</A></STRONG><BR>
  197. <DD>
  198. Removes each of the <EM>$slave</EM>s from grid for its
  199. master and unmaps their windows.
  200. The slaves will no longer be managed by the grid geometry manager.
  201. The configuration options for that window are forgotten, so that if the
  202. slave is managed once more by the grid geometry manager, the initial
  203. default settings are used.
  204. <P></P>
  205. <DT><STRONG><A NAME="item_gridInfo"><EM>$slave</EM>-><STRONG>gridInfo</STRONG></A></STRONG><BR>
  206. <DD>
  207. Returns a list whose elements are the current configuration state of
  208. the slave given by <EM>$slave</EM> in the same option-value form that
  209. might be specified to <STRONG>gridConfigure</STRONG>.
  210. The first two elements of the list are ``<STRONG>-in</STRONG>=><EM>$master</EM>'' where
  211. <EM>$master</EM> is the slave's master.
  212. <P></P>
  213. <DT><STRONG><A NAME="item_gridLocation"><EM>$master</EM>-><STRONG>gridLocation</STRONG>(<EM>x, y</EM>)</A></STRONG><BR>
  214. <DD>
  215. Given  <EM>x</EM> and <EM>y</EM> values in screen units relative to the master window,
  216. the column and row number at that <EM>x</EM> and <EM>y</EM> location is returned.
  217. For locations that are above or to the left of the grid, <STRONG>-1</STRONG> is returned.
  218. <P></P>
  219. <DT><STRONG><A NAME="item_gridPropagate"><EM>$master</EM>-><STRONG>gridPropagate</STRONG>?(<EM>boolean</EM>)?</A></STRONG><BR>
  220. <DD>
  221. If <EM>boolean</EM> has a true boolean value such as <STRONG>1</STRONG> or <STRONG>on</STRONG>
  222. then propagation is enabled for <EM>$master</EM>, which must be a window
  223. name (see <A HREF="#geometry propagation">GEOMETRY PROPAGATION</A> below).
  224. If <EM>boolean</EM> has a false boolean value then propagation is
  225. disabled for <EM>$master</EM>.
  226. In either of these cases an empty string is returned.
  227. If <EM>boolean</EM> is omitted then the method returns <STRONG>0</STRONG> or
  228. <STRONG>1</STRONG> to indicate whether propagation is currently enabled
  229. for <EM>$master</EM>.
  230. Propagation is enabled by default.
  231. <P></P>
  232. <DT><STRONG><A NAME="item_gridRowconfigure"><EM>$master</EM>-><STRONG>gridRowconfigure</STRONG>(<EM>index</EM>?, <EM>-option</EM>=><EM>value, ...</EM>?)</A></STRONG><BR>
  233. <DD>
  234. Query or set the row properties of the <EM>index</EM> row of the
  235. geometry master, <EM>$master</EM>.
  236. The valid options are <STRONG>-minsize</STRONG>, <STRONG>-weight</STRONG> and <STRONG>-pad</STRONG>.
  237. If one or more options are provided, then <EM>index</EM> may be given as
  238. a list of row indeces to which the configuration options will operate on.
  239. The <STRONG>-minsize</STRONG> option sets the minimum size, in screen units,
  240. that will be permitted for this row.
  241. The <STRONG>-weight</STRONG> option (an integer value)
  242. sets the relative weight for apportioning
  243. any extra spaces among
  244. rows.
  245. A weight of zero (0) indicates the row will not deviate from its requested
  246. size.  A row whose weight is two will grow at twice the rate as a row
  247. of weight one when extra space is allocated to the layout.
  248. The <STRONG>-pad</STRONG> option specifies the number of screen units that will be
  249. added to the largest window contained completely in that row when the
  250. grid geometry manager requests a size from the containing window.
  251. If only an option is specified, with no value,
  252. the current value of that option is returned.
  253. If only the master window and index is specified, all the current settings
  254. are returned in an list of ``option-value'' pairs.
  255. <P></P>
  256. <DT><STRONG><A NAME="item_gridRemove"><EM>$slave</EM>-><STRONG>gridRemove</STRONG>?(<EM>$slave, ...</EM>)?</A></STRONG><BR>
  257. <DD>
  258. Removes each of the <EM>$slave</EM>s from grid for its
  259. master and unmaps their windows.
  260. The slaves will no longer be managed by the grid geometry manager.
  261. However, the configuration options for that window are remembered,
  262. so that if the
  263. slave is managed once more by the grid geometry manager, the previous
  264. values are retained.
  265. <P></P>
  266. <DT><STRONG><A NAME="item_gridSize"><EM>$master</EM>-><STRONG>gridSize</STRONG></A></STRONG><BR>
  267. <DD>
  268. Returns the size of the grid (in columns then rows) for <EM>$master</EM>.
  269. The size is determined either by the <EM>$slave</EM> occupying the largest
  270. row or column, or the largest column or row with a <STRONG>-minsize</STRONG>,
  271. <STRONG>-weight</STRONG>, or <STRONG>-pad</STRONG> that is non-zero.
  272. <P></P>
  273. <DT><STRONG><A NAME="item_gridSlaves"><EM>$master</EM>-><STRONG>gridSlaves</STRONG>?(<EM>-option</EM>=><EM>value</EM>)?</A></STRONG><BR>
  274. <DD>
  275. If no options are supplied, a list of all of the slaves in <EM>$master</EM>
  276. are returned, most recently manages first.
  277. <EM>-option</EM> can be either <STRONG>-row</STRONG> or <STRONG>-column</STRONG> which
  278. causes only the slaves in the row (or column) specified by <EM>value</EM>
  279. to be returned.
  280. <P></P></DL>
  281. <P>
  282. <HR>
  283. <H1><A NAME="relative placement">RELATIVE PLACEMENT</A></H1>
  284. <P>The <STRONG>grid</STRONG> method contains a limited set of capabilities that
  285. permit layouts to be created without specifying the row and column
  286. information for each slave.  This permits slaves to be rearranged,
  287. added, or removed without the need to explicitly specify row and
  288. column information.
  289. When no column or row information is specified for a <EM>$slave</EM>,
  290. default values are chosen for
  291. <STRONG>-column</STRONG>, <STRONG>-row</STRONG>, <STRONG>-columnspan</STRONG> and <STRONG>-rowspan</STRONG>
  292. at the time the <EM>$slave</EM> is managed. The values are chosen
  293. based upon the current layout of the grid, the position of the <EM>$slave</EM>
  294. relative to other <EM>$slave</EM>s in the same grid method, and the presence
  295. of the characters <STRONG>-</STRONG>, <STRONG>^</STRONG>, and <STRONG>^</STRONG> in <STRONG>grid</STRONG>
  296. method where <EM>$slave</EM> names are normally expected.</P>
  297. <DL>
  298. <DT><STRONG><A NAME="item_%2D"><STRONG>-</STRONG></A></STRONG><BR>
  299. <DD>
  300. This increases the columnspan of the <EM>$slave</EM> to the left.  Several
  301. <STRONG>-</STRONG>'s in a row will successively increase the columnspan. A <STRONG>-</STRONG>
  302. may not follow a <STRONG>^</STRONG> or a <STRONG>x</STRONG>.
  303. <P></P>
  304. <DT><STRONG><A NAME="item_x"><STRONG>x</STRONG></A></STRONG><BR>
  305. <DD>
  306. This leaves an empty column between the <EM>$slave</EM> on the left and
  307. the <EM>$slave</EM> on the right.
  308. <P></P>
  309. <DT><STRONG><A NAME="item_%5E"><STRONG>^</STRONG></A></STRONG><BR>
  310. <DD>
  311. This extends the <STRONG>-rowspan</STRONG> of the <EM>$slave</EM> above the <STRONG>^</STRONG>'s
  312. in the grid.  The number of <STRONG>^</STRONG>'s in a row must match the number of
  313. columns spanned by the <EM>$slave</EM> above it.
  314. <P></P></DL>
  315. <P>
  316. <HR>
  317. <H1><A NAME="the grid algorithm">THE GRID ALGORITHM</A></H1>
  318. <P>The grid geometry manager lays out its slaves in three steps.
  319. In the first step, the minimum size needed to fit all of the slaves
  320. is computed, then (if propagation is turned on), a request is made
  321. of the master window to become that size.
  322. In the second step, the requested size is compared against the actual size
  323. of the master.  If the sizes are different, then space is added to or taken
  324. away from the layout as needed.
  325. For the final step, each slave is positioned in its <CODE>row(s)</CODE> and <CODE>column(s)</CODE>
  326. based on the setting of its <EM>sticky</EM> flag.</P>
  327. <P>To compute the minimum size of a layout, the grid geometry manager
  328. first looks at all slaves whose columnspan and rowspan values are one,
  329. and computes the nominal size of each row or column to be either the
  330. <EM>minsize</EM> for that row or column, or the sum of the <EM>pad</EM>ding
  331. plus the size of the largest slave, whichever is greater.  Then the
  332. slaves whose rowspans or columnspans are greater than one are
  333. examined.  If a group of rows or columns need to be increased in size
  334. in order to accommodate these slaves, then extra space is added to each
  335. row or column in the group according to its <EM>weight</EM>.  For each
  336. group whose weights are all zero, the additional space is apportioned
  337. equally.</P>
  338. <P>For masters whose size is larger than the requested layout, the additional
  339. space is apportioned according to the row and column weights.  If all of
  340. the weights are zero, the layout is centered within its master.
  341. For masters whose size is smaller than the requested layout, space is taken
  342. away from columns and rows according to their weights.  However, once a
  343. column or row shrinks to its minsize, its weight is taken to be zero.
  344. If more space needs to be removed from a layout than would be permitted, as
  345. when all the rows or columns are at there minimum sizes, the layout is
  346. clipped on the bottom and right.</P>
  347. <P>
  348. <HR>
  349. <H1><A NAME="geometry propagation">GEOMETRY PROPAGATION</A></H1>
  350. <P>The grid geometry manager normally computes how large a master must be to
  351. just exactly meet the needs of its slaves, and it sets the
  352. requested width and height of the master to these dimensions.
  353. This causes geometry information to propagate up through a
  354. window hierarchy to a top-level window so that the entire
  355. sub-tree sizes itself to fit the needs of the leaf windows.
  356. However, the <STRONG>gridPropagate</STRONG> method may be used to
  357. turn off propagation for one or more masters.
  358. If propagation is disabled then grid will not set
  359. the requested width and height of the master window.
  360. This may be useful if, for example, you wish for a master
  361. window to have a fixed size that you specify.</P>
  362. <P>
  363. <HR>
  364. <H1><A NAME="restrictions on master windows">RESTRICTIONS ON MASTER WINDOWS</A></H1>
  365. <P>The master for each slave must either be the slave's parent
  366. (the default) or a descendant of the slave's parent.
  367. This restriction is necessary to guarantee that the
  368. slave can be placed over any part of its master that is
  369. visible without danger of the slave being clipped by its parent.
  370. In addition, all slaves in one call to <STRONG>grid</STRONG> must have the same master.</P>
  371. <P>
  372. <HR>
  373. <H1><A NAME="stacking order">STACKING ORDER</A></H1>
  374. <P>If the master for a slave is not its parent then you must make sure
  375. that the slave is higher in the stacking order than the master.
  376. Otherwise the master will obscure the slave and it will appear as
  377. if the slave hasn't been managed correctly.
  378. The easiest way to make sure the slave is higher than the master is
  379. to create the master window first:  the most recently created window
  380. will be highest in the stacking order.</P>
  381. <P>
  382. <HR>
  383. <H1><A NAME="credits">CREDITS</A></H1>
  384. <P>The <STRONG>grid</STRONG> method is based on ideas taken from the <EM>GridBag</EM>
  385. geometry manager written by Doug. Stein, and the <STRONG>blt_table</STRONG> geometry
  386. manager, written by George Howlett.</P>
  387. <P>
  388. <HR>
  389. <H1><A NAME="see also">SEE ALSO</A></H1>
  390. <P><A HREF="../../../site/lib/Tk/form.html">Tk::form</A>
  391. <A HREF="../../../site/lib/Tk/pack.html">Tk::pack</A>
  392. <A HREF="../../../site/lib/Tk/place.html">Tk::place</A></P>
  393. <P>
  394. <HR>
  395. <H1><A NAME="keywords">KEYWORDS</A></H1>
  396. <P>geometry manager, location, grid, cell, propagation, size, pack,
  397. master, slave</P>
  398. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  399. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  400. <STRONG><P CLASS=block> Tk::grid - Geometry manager that arranges widgets in a grid</P></STRONG>
  401. </TD></TR>
  402. </TABLE>
  403.  
  404. </BODY>
  405.  
  406. </HTML>
  407.