Lines Matching refs:slave

77 				 * largest slave in the slot. */
95 struct Gridder *binNextPtr; /* The next slave window in this bin.
123 int columnEnd; /* The last column occupied by any slave. */
127 int rowEnd; /* The last row occupied by any slave. */
161 int numCols, numRows; /* Number of columns or rows this slave spans.
189 struct Gridder *binNextPtr; /* Link to next span>1 slave in this bin. */
191 * of the slave. This includes the padding. */
419 Tk_Window slave;
424 slave = Tk_NameToWindow(interp, argv[i], tkwin);
425 if (slave == NULL) {
428 slavePtr = GetGrid(slave);
445 Tk_ManageGeometry(slave, (Tk_GeomMgr *) NULL,
453 Tk_Window slave;
461 slave = Tk_NameToWindow(interp, argv[2], tkwin);
462 if (slave == NULL) {
465 slavePtr = GetGrid(slave);
886 * claims control over a slave that used to be managed by us.
892 * Forgets all grid-related information about the slave.
899 ClientData clientData; /* Grid structure for slave window that
901 Tk_Window tkwin; /* Tk's handle for the slave window. */
1086 * This procedure adjusts the size of a slave in its cavity based
1091 * desired coordinates of the slave.
1107 int diffx=0; /* Cavity width - slave width. */
1108 int diffy=0; /* Cavity hight - slave height. */
1246 * Now adjust the actual size of the slave to its cavity by
1254 int width, height; /* slot or slave size */
1271 * from tkPack.c.) If the slave is a child of the master, then
1290 * Don't map the slave if the master isn't mapped: wait
1342 register Gridder *slavePtr; /* List of slave windows in this grid. */
1754 register Gridder *slavePtr; /* Current slave window. */
2100 * slaves. Used to look up slave names. */
2110 Tk_Window other, slave, parent, ancestor;
2166 * Iterate over all of the slave windows and short-cuts, parsing
2167 * options for each slave. It's a bit wasteful to re-parse the
2168 * options for each slave, but things get too messy if we try to
2170 * if a slave already is managed we want to just change a few
2182 * as part of its preceeding slave.
2200 slave = Tk_NameToWindow(interp, argv[j], tkwin);
2201 if (slave == NULL) {
2204 if (Tk_IsTopLevel(slave)) {
2209 slavePtr = GetGrid(slave);
2214 * "If the slave isn't currently managed, reset all of its
2218 * I [D.S.] disagree with this statement. If a slave is disabled (using
2259 if (other == slave) {
2266 if ((Tk_GetPixels(interp, slave, argv[i+1], &tmp) != TCL_OK)
2276 if ((Tk_GetPixels(interp, slave, argv[i+1], &tmp) != TCL_OK)
2286 if ((Tk_GetPixels(interp, slave, argv[i+1], &tmp) != TCL_OK)
2296 if ((Tk_GetPixels(interp, slave, argv[i+1], &tmp) != TCL_OK)
2343 * 2) the geometry master of the first slave (if specified)
2344 * 3) the parent of the first slave.
2350 parent = Tk_Parent(slave);
2369 * Make sure that the slave's parent is either the master or
2370 * an ancestor of the master, and that the master and slave
2400 Tk_ManageGeometry(slave, &gridMgrType, (ClientData) slavePtr);
2491 Tcl_AppendResult(interp, "can't find slave to extend with \"^\".",