home *** CD-ROM | disk | FTP | other *** search
-
- <HTML>
- <HEAD>
- <TITLE>Tk::grid - Geometry manager that arranges widgets in a grid</TITLE>
- <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
- <LINK REV="made" HREF="mailto:">
- </HEAD>
-
- <BODY>
- <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
- <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
- <STRONG><P CLASS=block> Tk::grid - Geometry manager that arranges widgets in a grid</P></STRONG>
- </TD></TR>
- </TABLE>
-
- <A NAME="__index__"></A>
- <!-- INDEX BEGIN -->
-
- <UL>
-
- <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
-
- <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
- <LI><A HREF="#description">DESCRIPTION</A></LI>
- <LI><A HREF="#relative placement">RELATIVE PLACEMENT</A></LI>
- <LI><A HREF="#the grid algorithm">THE GRID ALGORITHM</A></LI>
- <LI><A HREF="#geometry propagation">GEOMETRY PROPAGATION</A></LI>
- <LI><A HREF="#restrictions on master windows">RESTRICTIONS ON MASTER WINDOWS</A></LI>
- <LI><A HREF="#stacking order">STACKING ORDER</A></LI>
- <LI><A HREF="#credits">CREDITS</A></LI>
- <LI><A HREF="#see also">SEE ALSO</A></LI>
- <LI><A HREF="#keywords">KEYWORDS</A></LI>
- </UL>
- <!-- INDEX END -->
-
- <HR>
- <P>
- <H1><A NAME="name">NAME</A></H1>
- <P>Tk::grid - Geometry manager that arranges widgets in a grid</P>
- <P>
- <HR>
- <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
- <UL>
- <LI>Linux</LI>
- <LI>Solaris</LI>
- <LI>Windows</LI>
- </UL>
- <HR>
- <H1><A NAME="synopsis">SYNOPSIS</A></H1>
- <P> <EM>$widget</EM>-><STRONG>grid</STRONG>?(?<EM>widget</EM> ...,? ?<EM>arg</EM> ?...>?)?</P>
- <P> <EM>$widget</EM>-><STRONG>grid</STRONG><EM>Option</EM>?(<EM>arg</EM> ?,<EM>arg</EM> ...?)?</P>
- <P>
- <HR>
- <H1><A NAME="description">DESCRIPTION</A></H1>
- <P>The <STRONG>grid</STRONG> method is used to communicate with the grid
- geometry manager that arranges widgets in rows and columns inside
- of another window, called the geometry master (or master window).
- The <STRONG>grid</STRONG> method can have any of several forms, depending
- on the <EM>option</EM> argument:</P>
- <DL>
- <DT><STRONG><A NAME="item_grid"><EM>$slave</EM>-><STRONG>grid</STRONG>(?<EM>$slave, ...</EM>??, <EM>options</EM>?)</A></STRONG><BR>
- <DD>
- The arguments consist of the optional references to more slave windows
- followed by pairs of arguments that specify how to manage the slaves.
- The characters <STRONG>-</STRONG>, <STRONG>x</STRONG> and <STRONG>^</STRONG>,
- can be specified instead of a window reference to alter the default
- location of a <EM>$slave</EM>, as described in <A HREF="#relative placement">RELATIVE PLACEMENT</A>, below.
- <P>If any of the slaves are already managed by the geometry manager
- then any unspecified options for them retain their previous values rather
- than receiving default values.</P>
- <P>The following options are supported:</P>
- <DL>
- <DT><STRONG><A NAME="item_%2Dcolumn_%3D%3E_n"><STRONG>-column</STRONG> => <EM>n</EM></A></STRONG><BR>
- <DD>
- Insert the <EM>$slave</EM> so that it occupies the <EM>n</EM>th column in the grid.
- Column numbers start with 0. If this option is not supplied, then the
- <EM>$slave</EM> is arranged just to the right of previous slave specified on this
- call to <STRONG>grid</STRONG>, or column ``0'' if it is the first slave. For each
- <STRONG>x</STRONG> that immediately precedes the <EM>$slave</EM>, the column position
- is incremented by one. Thus the <STRONG>x</STRONG> represents a blank column
- for this row in the grid.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dcolumnspan_%3D%3E_n"><STRONG>-columnspan</STRONG> => <EM>n</EM></A></STRONG><BR>
- <DD>
- Insert the slave so that it occupies <EM>n</EM> columns in the grid.
- The default is one column, unless the window name is followed by a
- <STRONG>-</STRONG>, in which case the columnspan is incremented once for each immediately
- following <STRONG>-</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_%2Din_%3D%3E_%24other"><STRONG>-in</STRONG> => <EM>$other</EM></A></STRONG><BR>
- <DD>
- Insert the <CODE>slave(s)</CODE> in the master
- window given by <EM>$other</EM>. The default is the first slave's
- parent window.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dipadx_%3D%3E_amount"><STRONG>-ipadx</STRONG> => <EM>amount</EM></A></STRONG><BR>
- <DD>
- The <EM>amount</EM> specifies how much horizontal internal padding to
- leave on each side of the slave(s). This is space is added
- inside the <CODE>slave(s)</CODE> border.
- The <EM>amount</EM> must be a valid screen distance, such as <STRONG>2</STRONG> or <STRONG>'.5c'</STRONG>.
- It defaults to 0.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dipady_%3D%3E_amount"><STRONG>-ipady</STRONG> => <EM>amount</EM></A></STRONG><BR>
- <DD>
- The <EM>amount</EM> specifies how much vertical internal padding to
- leave on on the top and bottom of the slave(s).
- This space is added inside the <CODE>slave(s)</CODE> border.
- The <EM>amount</EM> defaults to 0.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dpadx_%3D%3E_amount"><STRONG>-padx</STRONG> => <EM>amount</EM></A></STRONG><BR>
- <DD>
- The <EM>amount</EM> specifies how much horizontal external padding to
- leave on each side of the slave(s), in screen units.
- The <EM>amount</EM> defaults to 0.
- This space is added outside the <CODE>slave(s)</CODE> border.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dpady_%3D%3E_amount"><STRONG>-pady</STRONG> => <EM>amount</EM></A></STRONG><BR>
- <DD>
- The <EM>amount</EM> specifies how much vertical external padding to
- leave on the top and bottom of the slave(s), in screen units.
- The <EM>amount</EM> defaults to 0.
- This space is added outside the <CODE>slave(s)</CODE> border.
- <P></P>
- <DT><STRONG><A NAME="item_%2Drow_%3D%3E_n"><STRONG>-row</STRONG> => <EM>n</EM></A></STRONG><BR>
- <DD>
- Insert the slave so that it occupies the <EM>n</EM>th row in the grid.
- Row numbers start with 0. If this option is not supplied, then the
- slave is arranged on the same row as the previous slave specified on this
- call to <STRONG>grid</STRONG>, or the first unoccupied row if this is the first slave.
- <P></P>
- <DT><STRONG><A NAME="item_%2Drowspan_%3D%3E_n"><STRONG>-rowspan</STRONG> => <EM>n</EM></A></STRONG><BR>
- <DD>
- Insert the slave so that it occupies <EM>n</EM> rows in the grid.
- The default is one row. If the next <STRONG>grid</STRONG> method contains
- <STRONG>^</STRONG> characters instead of <EM>$slave</EM>s that line up with the columns
- of this <EM>$slave</EM>, then the <STRONG>rowspan</STRONG> of this <EM>$slave</EM> is
- extended by one.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dsticky_%3D%3E_style"><STRONG>-sticky</STRONG> => <EM>style</EM></A></STRONG><BR>
- <DD>
- If a slave's cell is larger than its requested dimensions, this
- option may be used to position (or stretch) the slave within its cell.
- <EM>Style</EM> is a string that contains zero or more of the characters
- <STRONG>n</STRONG>, <STRONG>s</STRONG>, <STRONG>e</STRONG> or <STRONG>w</STRONG>.
- The string can optionally contain spaces or
- commas, but they are ignored. Each letter refers to a side (north, south,
- east, or west) that the slave will ``stick'' to. If both <STRONG>n</STRONG> and <STRONG>s</STRONG> (or
- <STRONG>e</STRONG> and <STRONG>w</STRONG>) are specified, the slave will be stretched to fill the entire
- height (or width) of its cavity. The <STRONG>sticky</STRONG> option subsumes the
- combination of <STRONG>-anchor</STRONG> and <STRONG>-fill</STRONG> that is used by <A HREF="../../../site/lib/Tk/pack.html">pack</A>.
- The default is <STRONG>''</STRONG>, which causes the slave to be centered in its cavity,
- at its requested size.
- <P></P></DL>
- <DT><STRONG><A NAME="item_gridBbox"><EM>$master</EM>-><STRONG>gridBbox</STRONG>(?<EM>column, row</EM>,? ?<EM>column2, row2</EM>?)</A></STRONG><BR>
- <DD>
- With no arguments,
- the bounding box (in pixels) of the grid is returned.
- The return value consists of 4 integers. The first two are the pixel
- offset from the master window (x then y) of the top-left corner of the
- grid, and the second two integers are the width and height of the grid,
- also in pixels. If a single <EM>column</EM> and <EM>row</EM> is specified on
- the command line, then the bounding box for that cell is returned, where the
- top left cell is numbered from zero. If both <EM>column</EM> and <EM>row</EM>
- arguments are specified, then the bounding box spanning the rows and columns
- indicated is returned.
- <P></P>
- <DT><STRONG><A NAME="item_gridColumnconfigure"><EM>$master</EM>-><STRONG>gridColumnconfigure</STRONG>(<EM>index</EM>?, <EM>-option</EM>=><EM>value, ...</EM>?)</A></STRONG><BR>
- <DD>
- Query or set the column properties of the <EM>index</EM> column of the
- geometry master, <EM>$master</EM>.
- The valid options are <STRONG>-minsize</STRONG>, <STRONG>-weight</STRONG> and <STRONG>-pad</STRONG>.
- If one or more options are provided, then <EM>index</EM> may be given as
- a list of column indices to which the configuration options will operate on.
- The <STRONG>-minsize</STRONG> option sets the minimum size, in screen units,
- that will be permitted for this column.
- The <STRONG>-weight</STRONG> option (an integer value)
- sets the relative weight for apportioning
- any extra spaces among
- columns.
- A weight of zero (0) indicates the column will not deviate from its requested
- size. A column whose weight is two will grow at twice the rate as a column
- of weight one when extra space is allocated to the layout.
- The <STRONG>-pad</STRONG> option specifies the number of screen units that will be
- added to the largest window contained completely in that column when the
- grid geometry manager requests a size from the containing window.
- If only an option is specified, with no value,
- the current value of that option is returned.
- If only the master window and index is specified, all the current settings
- are returned in an list of ``-option value'' pairs.
- <P></P>
- <DT><STRONG><A NAME="item_gridConfigure"><EM>$slave</EM>-><STRONG>gridConfigure</STRONG>(?<EM>$slave, ...</EM>?, <EM>options</EM>?)</A></STRONG><BR>
- <DD>
- The same as <STRONG>grid</STRONG> method.
- <P></P>
- <DT><STRONG><A NAME="item_gridForget"><EM>$slave</EM>-><STRONG>gridForget</STRONG>?(<EM>$slave, ...</EM>)?</A></STRONG><BR>
- <DD>
- Removes each of the <EM>$slave</EM>s from grid for its
- master and unmaps their windows.
- The slaves will no longer be managed by the grid geometry manager.
- The configuration options for that window are forgotten, so that if the
- slave is managed once more by the grid geometry manager, the initial
- default settings are used.
- <P></P>
- <DT><STRONG><A NAME="item_gridInfo"><EM>$slave</EM>-><STRONG>gridInfo</STRONG></A></STRONG><BR>
- <DD>
- Returns a list whose elements are the current configuration state of
- the slave given by <EM>$slave</EM> in the same option-value form that
- might be specified to <STRONG>gridConfigure</STRONG>.
- The first two elements of the list are ``<STRONG>-in</STRONG>=><EM>$master</EM>'' where
- <EM>$master</EM> is the slave's master.
- <P></P>
- <DT><STRONG><A NAME="item_gridLocation"><EM>$master</EM>-><STRONG>gridLocation</STRONG>(<EM>x, y</EM>)</A></STRONG><BR>
- <DD>
- Given <EM>x</EM> and <EM>y</EM> values in screen units relative to the master window,
- the column and row number at that <EM>x</EM> and <EM>y</EM> location is returned.
- For locations that are above or to the left of the grid, <STRONG>-1</STRONG> is returned.
- <P></P>
- <DT><STRONG><A NAME="item_gridPropagate"><EM>$master</EM>-><STRONG>gridPropagate</STRONG>?(<EM>boolean</EM>)?</A></STRONG><BR>
- <DD>
- If <EM>boolean</EM> has a true boolean value such as <STRONG>1</STRONG> or <STRONG>on</STRONG>
- then propagation is enabled for <EM>$master</EM>, which must be a window
- name (see <A HREF="#geometry propagation">GEOMETRY PROPAGATION</A> below).
- If <EM>boolean</EM> has a false boolean value then propagation is
- disabled for <EM>$master</EM>.
- In either of these cases an empty string is returned.
- If <EM>boolean</EM> is omitted then the method returns <STRONG>0</STRONG> or
- <STRONG>1</STRONG> to indicate whether propagation is currently enabled
- for <EM>$master</EM>.
- Propagation is enabled by default.
- <P></P>
- <DT><STRONG><A NAME="item_gridRowconfigure"><EM>$master</EM>-><STRONG>gridRowconfigure</STRONG>(<EM>index</EM>?, <EM>-option</EM>=><EM>value, ...</EM>?)</A></STRONG><BR>
- <DD>
- Query or set the row properties of the <EM>index</EM> row of the
- geometry master, <EM>$master</EM>.
- The valid options are <STRONG>-minsize</STRONG>, <STRONG>-weight</STRONG> and <STRONG>-pad</STRONG>.
- If one or more options are provided, then <EM>index</EM> may be given as
- a list of row indeces to which the configuration options will operate on.
- The <STRONG>-minsize</STRONG> option sets the minimum size, in screen units,
- that will be permitted for this row.
- The <STRONG>-weight</STRONG> option (an integer value)
- sets the relative weight for apportioning
- any extra spaces among
- rows.
- A weight of zero (0) indicates the row will not deviate from its requested
- size. A row whose weight is two will grow at twice the rate as a row
- of weight one when extra space is allocated to the layout.
- The <STRONG>-pad</STRONG> option specifies the number of screen units that will be
- added to the largest window contained completely in that row when the
- grid geometry manager requests a size from the containing window.
- If only an option is specified, with no value,
- the current value of that option is returned.
- If only the master window and index is specified, all the current settings
- are returned in an list of ``option-value'' pairs.
- <P></P>
- <DT><STRONG><A NAME="item_gridRemove"><EM>$slave</EM>-><STRONG>gridRemove</STRONG>?(<EM>$slave, ...</EM>)?</A></STRONG><BR>
- <DD>
- Removes each of the <EM>$slave</EM>s from grid for its
- master and unmaps their windows.
- The slaves will no longer be managed by the grid geometry manager.
- However, the configuration options for that window are remembered,
- so that if the
- slave is managed once more by the grid geometry manager, the previous
- values are retained.
- <P></P>
- <DT><STRONG><A NAME="item_gridSize"><EM>$master</EM>-><STRONG>gridSize</STRONG></A></STRONG><BR>
- <DD>
- Returns the size of the grid (in columns then rows) for <EM>$master</EM>.
- The size is determined either by the <EM>$slave</EM> occupying the largest
- row or column, or the largest column or row with a <STRONG>-minsize</STRONG>,
- <STRONG>-weight</STRONG>, or <STRONG>-pad</STRONG> that is non-zero.
- <P></P>
- <DT><STRONG><A NAME="item_gridSlaves"><EM>$master</EM>-><STRONG>gridSlaves</STRONG>?(<EM>-option</EM>=><EM>value</EM>)?</A></STRONG><BR>
- <DD>
- If no options are supplied, a list of all of the slaves in <EM>$master</EM>
- are returned, most recently manages first.
- <EM>-option</EM> can be either <STRONG>-row</STRONG> or <STRONG>-column</STRONG> which
- causes only the slaves in the row (or column) specified by <EM>value</EM>
- to be returned.
- <P></P></DL>
- <P>
- <HR>
- <H1><A NAME="relative placement">RELATIVE PLACEMENT</A></H1>
- <P>The <STRONG>grid</STRONG> method contains a limited set of capabilities that
- permit layouts to be created without specifying the row and column
- information for each slave. This permits slaves to be rearranged,
- added, or removed without the need to explicitly specify row and
- column information.
- When no column or row information is specified for a <EM>$slave</EM>,
- default values are chosen for
- <STRONG>-column</STRONG>, <STRONG>-row</STRONG>, <STRONG>-columnspan</STRONG> and <STRONG>-rowspan</STRONG>
- at the time the <EM>$slave</EM> is managed. The values are chosen
- based upon the current layout of the grid, the position of the <EM>$slave</EM>
- relative to other <EM>$slave</EM>s in the same grid method, and the presence
- of the characters <STRONG>-</STRONG>, <STRONG>^</STRONG>, and <STRONG>^</STRONG> in <STRONG>grid</STRONG>
- method where <EM>$slave</EM> names are normally expected.</P>
- <DL>
- <DT><STRONG><A NAME="item_%2D"><STRONG>-</STRONG></A></STRONG><BR>
- <DD>
- This increases the columnspan of the <EM>$slave</EM> to the left. Several
- <STRONG>-</STRONG>'s in a row will successively increase the columnspan. A <STRONG>-</STRONG>
- may not follow a <STRONG>^</STRONG> or a <STRONG>x</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_x"><STRONG>x</STRONG></A></STRONG><BR>
- <DD>
- This leaves an empty column between the <EM>$slave</EM> on the left and
- the <EM>$slave</EM> on the right.
- <P></P>
- <DT><STRONG><A NAME="item_%5E"><STRONG>^</STRONG></A></STRONG><BR>
- <DD>
- This extends the <STRONG>-rowspan</STRONG> of the <EM>$slave</EM> above the <STRONG>^</STRONG>'s
- in the grid. The number of <STRONG>^</STRONG>'s in a row must match the number of
- columns spanned by the <EM>$slave</EM> above it.
- <P></P></DL>
- <P>
- <HR>
- <H1><A NAME="the grid algorithm">THE GRID ALGORITHM</A></H1>
- <P>The grid geometry manager lays out its slaves in three steps.
- In the first step, the minimum size needed to fit all of the slaves
- is computed, then (if propagation is turned on), a request is made
- of the master window to become that size.
- In the second step, the requested size is compared against the actual size
- of the master. If the sizes are different, then space is added to or taken
- away from the layout as needed.
- For the final step, each slave is positioned in its <CODE>row(s)</CODE> and <CODE>column(s)</CODE>
- based on the setting of its <EM>sticky</EM> flag.</P>
- <P>To compute the minimum size of a layout, the grid geometry manager
- first looks at all slaves whose columnspan and rowspan values are one,
- and computes the nominal size of each row or column to be either the
- <EM>minsize</EM> for that row or column, or the sum of the <EM>pad</EM>ding
- plus the size of the largest slave, whichever is greater. Then the
- slaves whose rowspans or columnspans are greater than one are
- examined. If a group of rows or columns need to be increased in size
- in order to accommodate these slaves, then extra space is added to each
- row or column in the group according to its <EM>weight</EM>. For each
- group whose weights are all zero, the additional space is apportioned
- equally.</P>
- <P>For masters whose size is larger than the requested layout, the additional
- space is apportioned according to the row and column weights. If all of
- the weights are zero, the layout is centered within its master.
- For masters whose size is smaller than the requested layout, space is taken
- away from columns and rows according to their weights. However, once a
- column or row shrinks to its minsize, its weight is taken to be zero.
- If more space needs to be removed from a layout than would be permitted, as
- when all the rows or columns are at there minimum sizes, the layout is
- clipped on the bottom and right.</P>
- <P>
- <HR>
- <H1><A NAME="geometry propagation">GEOMETRY PROPAGATION</A></H1>
- <P>The grid geometry manager normally computes how large a master must be to
- just exactly meet the needs of its slaves, and it sets the
- requested width and height of the master to these dimensions.
- This causes geometry information to propagate up through a
- window hierarchy to a top-level window so that the entire
- sub-tree sizes itself to fit the needs of the leaf windows.
- However, the <STRONG>gridPropagate</STRONG> method may be used to
- turn off propagation for one or more masters.
- If propagation is disabled then grid will not set
- the requested width and height of the master window.
- This may be useful if, for example, you wish for a master
- window to have a fixed size that you specify.</P>
- <P>
- <HR>
- <H1><A NAME="restrictions on master windows">RESTRICTIONS ON MASTER WINDOWS</A></H1>
- <P>The master for each slave must either be the slave's parent
- (the default) or a descendant of the slave's parent.
- This restriction is necessary to guarantee that the
- slave can be placed over any part of its master that is
- visible without danger of the slave being clipped by its parent.
- In addition, all slaves in one call to <STRONG>grid</STRONG> must have the same master.</P>
- <P>
- <HR>
- <H1><A NAME="stacking order">STACKING ORDER</A></H1>
- <P>If the master for a slave is not its parent then you must make sure
- that the slave is higher in the stacking order than the master.
- Otherwise the master will obscure the slave and it will appear as
- if the slave hasn't been managed correctly.
- The easiest way to make sure the slave is higher than the master is
- to create the master window first: the most recently created window
- will be highest in the stacking order.</P>
- <P>
- <HR>
- <H1><A NAME="credits">CREDITS</A></H1>
- <P>The <STRONG>grid</STRONG> method is based on ideas taken from the <EM>GridBag</EM>
- geometry manager written by Doug. Stein, and the <STRONG>blt_table</STRONG> geometry
- manager, written by George Howlett.</P>
- <P>
- <HR>
- <H1><A NAME="see also">SEE ALSO</A></H1>
- <P><A HREF="../../../site/lib/Tk/form.html">Tk::form</A>
- <A HREF="../../../site/lib/Tk/pack.html">Tk::pack</A>
- <A HREF="../../../site/lib/Tk/place.html">Tk::place</A></P>
- <P>
- <HR>
- <H1><A NAME="keywords">KEYWORDS</A></H1>
- <P>geometry manager, location, grid, cell, propagation, size, pack,
- master, slave</P>
- <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
- <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
- <STRONG><P CLASS=block> Tk::grid - Geometry manager that arranges widgets in a grid</P></STRONG>
- </TD></TR>
- </TABLE>
-
- </BODY>
-
- </HTML>
-