Lines Matching refs:slave

259 	Tk_Window slave;
264 slave = Tk_NameToWindow(interp, argv[i], tkwin);
265 if (slave == NULL) {
268 slavePtr = GetPacker(slave);
270 Tk_ManageGeometry(slave, (Tk_GeomMgr *) NULL,
282 Tk_Window slave;
291 slave = Tk_NameToWindow(interp, argv[2], tkwin);
292 if (slave == NULL) {
295 slavePtr = GetPacker(slave);
466 * claims control over a slave that used to be managed by us.
472 * Forgets all packer-related information about the slave.
480 ClientData clientData; /* Packer structure for slave window that
482 Tk_Window tkwin; /* Tk's handle for the slave window. */
575 * to just barely satisfy all the slave's needs. For
576 * each slave, the code computes the width needed for
759 * state of the slave. If the slave is a child of the master, then
778 * Don't map the slave if the master isn't mapped: wait
1423 * slaves. Used to look up slave names. */
1432 Tk_Window other, slave, parent, ancestor;
1447 * Iterate over all of the slave windows, parsing the configuration
1448 * options for each slave. It's a bit wasteful to re-parse the
1449 * options for each slave, but things get too messy if we try to
1451 * if a slave already is packed we want to just change a few
1461 slave = Tk_NameToWindow(interp, argv[j], tkwin);
1462 if (slave == NULL) {
1465 if (Tk_IsTopLevel(slave)) {
1470 slavePtr = GetPacker(slave);
1474 * If the slave isn't currently packed, reset all of its
1582 if ((Tk_GetPixels(interp, slave, argv[i+1], &tmp) != TCL_OK)
1593 if ((Tk_GetPixels(interp, slave, argv[i+1], &tmp) != TCL_OK)
1599 if ((Tk_GetPixels(interp, slave, argv[i+1], &tmp) != TCL_OK)
1605 if ((Tk_GetPixels(interp, slave, argv[i+1], &tmp) != TCL_OK)
1637 * If no position in a packing list was specified and the slave
1648 * If the slave is going to be put back after itself then
1659 * been specified, arrange for the slave to go at the end of
1664 masterPtr = GetPacker(Tk_Parent(slave));
1674 * Make sure that the slave's parent is either the master or
1675 * an ancestor of the master, and that the master and slave
1679 parent = Tk_Parent(slave);
1691 if (slave == masterPtr->tkwin) {
1698 * Unpack the slave if it's currently packed, then position it
1719 Tk_ManageGeometry(slave, &packerType, (ClientData) slavePtr);