Lines Matching refs:master

117  * Keep one of these for each geometry master.
158 GridMaster *masterDataPtr; /* Additional data for geometry master. */
216 * size. 0 means if this window is a master
292 Gridder *masterPtr; /* master grid record */
310 Tk_Window master;
320 " bbox master ?column row ?column row??\"",
325 master = Tk_NameToWindow(interp, argv[2], tkwin);
326 if (master == NULL) {
329 masterPtr = GetGrid(master);
484 Tk_Window master;
492 argv[0], " location master x y\"", (char *)NULL);
496 master = Tk_NameToWindow(interp, argv[2], tkwin);
497 if (master == NULL) {
501 if (Tk_GetPixels(interp, master, argv[3], &x) != TCL_OK) {
504 if (Tk_GetPixels(interp, master, argv[4], &y) != TCL_OK) {
508 masterPtr = GetGrid(master);
551 Tk_Window master;
560 master = Tk_NameToWindow(interp, argv[2], tkwin);
561 if (master == NULL) {
564 masterPtr = GetGrid(master);
576 * Re-arrange the master to allow new geometry information to
577 * propagate upwards to the master's master.
590 Tk_Window master;
597 master = Tk_NameToWindow(interp, argv[2], tkwin);
598 if (master == NULL) {
601 masterPtr = GetGrid(master);
614 Tk_Window master;
655 master = Tk_NameToWindow(interp, argv[2], tkwin);
656 if (master == NULL) {
659 masterPtr = GetGrid(master);
676 * grid columnconfigure <master> <index> -option
677 * grid columnconfigure <master> <index> -option value -option value
678 * grid rowconfigure <master> <index>
679 * grid rowconfigure <master> <index> -option
680 * grid rowconfigure <master> <index> -option value -option value.
687 Tk_Window master;
699 " ", argv[1], " master index ?-option value...?\"",
704 master = Tk_NameToWindow(interp, argv[2], tkwin);
705 if (master == NULL) {
714 masterPtr = GetGrid(master);
761 } else if (Tk_GetPixels(interp, master, argv[i+1], &size)
785 } else if (Tk_GetPixels(interp, master, argv[i+1], &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
1291 * until the master gets mapped later.
1329 * geometry master.
1336 Gridder *masterPtr; /* The geometry master for this grid. */
1492 * It might be prudent to stop here if our "master" will resize itself
1645 * layout information back into the master.
1743 * The width and height arguments are filled in the master data structure.
1752 Gridder *masterPtr; /* The geometry master for this grid. */
1781 * A new master grid structure may be created. If so, then
1791 Gridder *masterPtr; /* the geometry master for this grid */
1861 * the data for a geometry master, if the data
1868 * A new master grid structure may be created. If so, then
1968 * freeing the main structure for all windows. and the master structure
2341 * Make sure we have a geometry master. We look at:
2343 * 2) the geometry master of the first slave (if specified)
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
2388 * Try to make sure our master isn't managed by us.
2450 Tcl_AppendResult(interp, "can't use '^', cant find master",
2499 Tcl_AppendResult(interp, "can't determine master window",