• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/tcl-102/tk84/tk/generic/

Lines Matching defs:master

22  * structures associated with its master.
27 Tk_Window master; /* The master that determines slave's
31 * master. */
35 * with master. */
39 * For each window that has been specified as a master to
52 * with this master. */
230 * All the slaves for which this is the master window must now be
321 * whose master's are not their parents. It translates the desired
324 * Furthermore, it sets up event handlers so that if the master (or
333 * of slave. Note: if slave was already managed for master by
343 Tk_MaintainGeometry(slave, master, x, y, width, height)
345 Tk_Window master; /* Master for slave; must be a descendant
347 int x, y; /* Desired position of slave within master. */
355 TkDisplay *dispPtr = ((TkWindow *) master)->dispPtr;
357 if (master == Tk_Parent(slave)) {
359 * If the slave is a direct descendant of the master, don't bother
367 * Map the slave if the master is already mapped; otherwise, wait
368 * until the master is mapped later (in which case mapping the slave
371 if (Tk_IsMapped(master)) {
383 * See if there is already a MaintainMaster structure for the master;
389 (char *) master, &new);
394 masterPtr->ancestor = master;
413 slavePtr->master = master;
421 * the windows between master and slave's parent (including master
422 * but not slave's parent). There may already be handlers for master
426 for (ancestor = master; ancestor != parent;
446 for (ancestor = slavePtr->master; ; ancestor = Tk_Parent(ancestor)) {
476 * so that the relationship between slave and master is no longer
484 * track master any more. If we weren't previously managing slave
485 * relative to master, then this procedure has no effect.
491 Tk_UnmaintainGeometry(slave, master)
493 Tk_Window master; /* Master for slave; must be a descendant
502 if (master == Tk_Parent(slave)) {
504 * If the slave is a direct descendant of the master,
519 hPtr = Tcl_FindHashEntry(&dispPtr->maintainHashTable, (char *) master);
544 for (ancestor = master; ; ancestor = Tk_Parent(ancestor)) {
567 * response to StructureNotify events on the master or one
576 * the maintained slaves of the master. Or, if the master window is
585 * for the master window. */
601 * Delete all of the state associated with this master, but
612 Tk_UnmaintainGeometry(slavePtr->slave, slavePtr->master);
640 * for master-slave pair. */
646 Tk_UnmaintainGeometry(slavePtr->slave, slavePtr->master);
657 * idle handler, when a master or one of its ancestors has been
659 * the slaves for the master and reposition them, map them, or
661 * the master.
675 * for the master window. */
689 for (ancestor = slavePtr->master; ; ancestor = Tk_Parent(ancestor)) {