home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tkisrc04.zip / tk / os2 / tkCmds.c < prev    next >
C/C++ Source or Header  |  1998-08-07  |  42KB  |  1,453 lines

  1. /* 
  2.  * tkCmds.c --
  3.  *
  4.  *    This file contains a collection of Tk-related Tcl commands
  5.  *    that didn't fit in any particular file of the toolkit.
  6.  *
  7.  * Copyright (c) 1990-1994 The Regents of the University of California.
  8.  * Copyright (c) 1994-1996 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * SCCS: @(#) tkCmds.c 1.110 96/04/03 15:54:47
  14.  */
  15.  
  16. #include "tkPort.h"
  17. #include "tkInt.h"
  18. #include <errno.h>
  19.  
  20. /*
  21.  * Forward declarations for procedures defined later in this file:
  22.  */
  23.  
  24. static Tk_Window    GetDisplayOf _ANSI_ARGS_((Tcl_Interp *interp,
  25.                 Tk_Window tkwin, char **argv));
  26. static TkWindow *    GetToplevel _ANSI_ARGS_((Tk_Window tkwin));
  27. static char *        WaitVariableProc _ANSI_ARGS_((ClientData clientData,
  28.                 Tcl_Interp *interp, char *name1, char *name2,
  29.                 int flags));
  30. static void        WaitVisibilityProc _ANSI_ARGS_((ClientData clientData,
  31.                 XEvent *eventPtr));
  32. static void        WaitWindowProc _ANSI_ARGS_((ClientData clientData,
  33.                 XEvent *eventPtr));
  34.  
  35. /*
  36.  *----------------------------------------------------------------------
  37.  *
  38.  * Tk_BellCmd --
  39.  *
  40.  *    This procedure is invoked to process the "bell" Tcl command.
  41.  *    See the user documentation for details on what it does.
  42.  *
  43.  * Results:
  44.  *    A standard Tcl result.
  45.  *
  46.  * Side effects:
  47.  *    See the user documentation.
  48.  *
  49.  *----------------------------------------------------------------------
  50.  */
  51.  
  52. int
  53. Tk_BellCmd(clientData, interp, argc, argv)
  54.     ClientData clientData;    /* Main window associated with interpreter. */
  55.     Tcl_Interp *interp;        /* Current interpreter. */
  56.     int argc;            /* Number of arguments. */
  57.     char **argv;        /* Argument strings. */
  58. {
  59.     Tk_Window tkwin = (Tk_Window) clientData;
  60.     size_t length;
  61.  
  62.     if ((argc != 1) && (argc != 3)) {
  63.     Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
  64.         " ?-displayof window?\"", (char *) NULL);
  65.     return TCL_ERROR;
  66.     }
  67.  
  68.     if (argc == 3) {
  69.     length = strlen(argv[1]);
  70.     if ((length < 2) || (strncmp(argv[1], "-displayof", length) != 0)) {
  71.         Tcl_AppendResult(interp, "bad option \"", argv[1],
  72.             "\": must be -displayof", (char *) NULL);
  73.         return TCL_ERROR;
  74.     }
  75.     tkwin = Tk_NameToWindow(interp, argv[2], tkwin);
  76.     if (tkwin == NULL) {
  77.         return TCL_ERROR;
  78.     }
  79.     }
  80.     XBell(Tk_Display(tkwin), 0);
  81.     XForceScreenSaver(Tk_Display(tkwin), ScreenSaverReset);
  82.     XFlush(Tk_Display(tkwin));
  83.     return TCL_OK;
  84. }
  85.  
  86. /*
  87.  *----------------------------------------------------------------------
  88.  *
  89.  * Tk_BindCmd --
  90.  *
  91.  *    This procedure is invoked to process the "bind" Tcl command.
  92.  *    See the user documentation for details on what it does.
  93.  *
  94.  * Results:
  95.  *    A standard Tcl result.
  96.  *
  97.  * Side effects:
  98.  *    See the user documentation.
  99.  *
  100.  *----------------------------------------------------------------------
  101.  */
  102.  
  103. int
  104. Tk_BindCmd(clientData, interp, argc, argv)
  105.     ClientData clientData;    /* Main window associated with interpreter. */
  106.     Tcl_Interp *interp;        /* Current interpreter. */
  107.     int argc;            /* Number of arguments. */
  108.     char **argv;        /* Argument strings. */
  109. {
  110.     Tk_Window tkwin = (Tk_Window) clientData;
  111.     TkWindow *winPtr;
  112.     ClientData object;
  113.  
  114.     if ((argc < 2) || (argc > 4)) {
  115.     Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
  116.         " window ?pattern? ?command?\"", (char *) NULL);
  117.     return TCL_ERROR;
  118.     }
  119.     if (argv[1][0] == '.') {
  120.     winPtr = (TkWindow *) Tk_NameToWindow(interp, argv[1], tkwin);
  121.     if (winPtr == NULL) {
  122.         return TCL_ERROR;
  123.     }
  124.     object = (ClientData) winPtr->pathName;
  125.     } else {
  126.     winPtr = (TkWindow *) clientData;
  127.     object = (ClientData) Tk_GetUid(argv[1]);
  128.     }
  129.  
  130.     if (argc == 4) {
  131.     int append = 0;
  132.     unsigned long mask;
  133.  
  134.     if (argv[3][0] == 0) {
  135.         return Tk_DeleteBinding(interp, winPtr->mainPtr->bindingTable,
  136.             object, argv[2]);
  137.     }
  138.     if (argv[3][0] == '+') {
  139.         argv[3]++;
  140.         append = 1;
  141.     }
  142.     mask = Tk_CreateBinding(interp, winPtr->mainPtr->bindingTable,
  143.         object, argv[2], argv[3], append);
  144.     if (mask == 0) {
  145.         return TCL_ERROR;
  146.     }
  147.     } else if (argc == 3) {
  148.     char *command;
  149.  
  150.     command = Tk_GetBinding(interp, winPtr->mainPtr->bindingTable,
  151.         object, argv[2]);
  152.     if (command == NULL) {
  153.         Tcl_ResetResult(interp);
  154.         return TCL_OK;
  155.     }
  156.     interp->result = command;
  157.     } else {
  158.     Tk_GetAllBindings(interp, winPtr->mainPtr->bindingTable, object);
  159.     }
  160.     return TCL_OK;
  161. }
  162.  
  163. /*
  164.  *----------------------------------------------------------------------
  165.  *
  166.  * TkBindEventProc --
  167.  *
  168.  *    This procedure is invoked by Tk_HandleEvent for each event;  it
  169.  *    causes any appropriate bindings for that event to be invoked.
  170.  *
  171.  * Results:
  172.  *    None.
  173.  *
  174.  * Side effects:
  175.  *    Depends on what bindings have been established with the "bind"
  176.  *    command.
  177.  *
  178.  *----------------------------------------------------------------------
  179.  */
  180.  
  181. void
  182. TkBindEventProc(winPtr, eventPtr)
  183.     TkWindow *winPtr;            /* Pointer to info about window. */
  184.     XEvent *eventPtr;            /* Information about event. */
  185. {
  186. #define MAX_OBJS 20
  187.     ClientData objects[MAX_OBJS], *objPtr;
  188.     static Tk_Uid allUid = NULL;
  189.     TkWindow *topLevPtr;
  190.     int i, count;
  191.     char *p;
  192.     Tcl_HashEntry *hPtr;
  193.  
  194.     if ((winPtr->mainPtr == NULL) || (winPtr->mainPtr->bindingTable == NULL)) {
  195.     return;
  196.     }
  197.  
  198.     objPtr = objects;
  199.     if (winPtr->numTags != 0) {
  200.     /*
  201.      * Make a copy of the tags for the window, replacing window names
  202.      * with pointers to the pathName from the appropriate window.
  203.      */
  204.  
  205.     if (winPtr->numTags > MAX_OBJS) {
  206.         objPtr = (ClientData *) ckalloc((unsigned)
  207.             (winPtr->numTags * sizeof(ClientData)));
  208.     }
  209.     for (i = 0; i < winPtr->numTags; i++) {
  210.         p = (char *) winPtr->tagPtr[i];
  211.         if (*p == '.') {
  212.         hPtr = Tcl_FindHashEntry(&winPtr->mainPtr->nameTable, p);
  213.         if (hPtr != NULL) {
  214.             p = ((TkWindow *) Tcl_GetHashValue(hPtr))->pathName;
  215.         } else {
  216.             p = NULL;
  217.         }
  218.         }
  219.         objPtr[i] = (ClientData) p;
  220.     }
  221.     count = winPtr->numTags;
  222.     } else {
  223.     objPtr[0] = (ClientData) winPtr->pathName;
  224.     objPtr[1] = (ClientData) winPtr->classUid;
  225.     for (topLevPtr = winPtr;
  226.         (topLevPtr != NULL) && !(topLevPtr->flags & TK_TOP_LEVEL);
  227.         topLevPtr = topLevPtr->parentPtr) {
  228.         /* Empty loop body. */
  229.     }
  230.     if ((winPtr != topLevPtr) && (topLevPtr != NULL)) {
  231.         count = 4;
  232.         objPtr[2] = (ClientData) topLevPtr->pathName;
  233.     } else {
  234.         count = 3;
  235.     }
  236.     if (allUid == NULL) {
  237.         allUid = Tk_GetUid("all");
  238.     }
  239.     objPtr[count-1] = (ClientData) allUid;
  240.     }
  241.     Tk_BindEvent(winPtr->mainPtr->bindingTable, eventPtr, (Tk_Window) winPtr,
  242.         count, objPtr);
  243.     if (objPtr != objects) {
  244.     ckfree((char *) objPtr);
  245.     }
  246. }
  247.  
  248. /*
  249.  *----------------------------------------------------------------------
  250.  *
  251.  * Tk_BindtagsCmd --
  252.  *
  253.  *    This procedure is invoked to process the "bindtags" Tcl command.
  254.  *    See the user documentation for details on what it does.
  255.  *
  256.  * Results:
  257.  *    A standard Tcl result.
  258.  *
  259.  * Side effects:
  260.  *    See the user documentation.
  261.  *
  262.  *----------------------------------------------------------------------
  263.  */
  264.  
  265. int
  266. Tk_BindtagsCmd(clientData, interp, argc, argv)
  267.     ClientData clientData;    /* Main window associated with interpreter. */
  268.     Tcl_Interp *interp;        /* Current interpreter. */
  269.     int argc;            /* Number of arguments. */
  270.     char **argv;        /* Argument strings. */
  271. {
  272.     Tk_Window tkwin = (Tk_Window) clientData;
  273.     TkWindow *winPtr, *winPtr2;
  274.     int i, tagArgc;
  275.     char *p, **tagArgv;
  276.  
  277.     if ((argc < 2) || (argc > 3)) {
  278.     Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
  279.         " window ?tags?\"", (char *) NULL);
  280.     return TCL_ERROR;
  281.     }
  282.     winPtr = (TkWindow *) Tk_NameToWindow(interp, argv[1], tkwin);
  283.     if (winPtr == NULL) {
  284.     return TCL_ERROR;
  285.     }
  286.     if (argc == 2) {
  287.     if (winPtr->numTags == 0) {
  288.         Tcl_AppendElement(interp, winPtr->pathName);
  289.         Tcl_AppendElement(interp, winPtr->classUid);
  290.         for (winPtr2 = winPtr;
  291.             (winPtr2 != NULL) && !(winPtr2->flags & TK_TOP_LEVEL);
  292.             winPtr2 = winPtr2->parentPtr) {
  293.         /* Empty loop body. */
  294.         }
  295.         if ((winPtr != winPtr2) && (winPtr2 != NULL)) {
  296.         Tcl_AppendElement(interp, winPtr2->pathName);
  297.         }
  298.         Tcl_AppendElement(interp, "all");
  299.     } else {
  300.         for (i = 0; i < winPtr->numTags; i++) {
  301.         Tcl_AppendElement(interp, (char *) winPtr->tagPtr[i]);
  302.         }
  303.     }
  304.     return TCL_OK;
  305.     }
  306.     if (winPtr->tagPtr != NULL) {
  307.     TkFreeBindingTags(winPtr);
  308.     }
  309.     if (argv[2][0] == 0) {
  310.     return TCL_OK;
  311.     }
  312.     if (Tcl_SplitList(interp, argv[2], &tagArgc, &tagArgv) != TCL_OK) {
  313.     return TCL_ERROR;
  314.     }
  315.     winPtr->numTags = tagArgc;
  316.     winPtr->tagPtr = (ClientData *) ckalloc((unsigned)
  317.         (tagArgc * sizeof(ClientData)));
  318.     for (i = 0; i < tagArgc; i++) {
  319.     p = tagArgv[i];
  320.     if (p[0] == '.') {
  321.         char *copy;
  322.  
  323.         /*
  324.          * Handle names starting with "." specially: store a malloc'ed
  325.          * string, rather than a Uid;  at event time we'll look up the
  326.          * name in the window table and use the corresponding window,
  327.          * if there is one.
  328.          */
  329.  
  330.         copy = (char *) ckalloc((unsigned) (strlen(p) + 1));
  331.         strcpy(copy, p);
  332.         winPtr->tagPtr[i] = (ClientData) copy;
  333.     } else {
  334.         winPtr->tagPtr[i] = (ClientData) Tk_GetUid(p);
  335.     }
  336.     }
  337.     ckfree((char *) tagArgv);
  338.     return TCL_OK;
  339. }
  340.  
  341. /*
  342.  *----------------------------------------------------------------------
  343.  *
  344.  * TkFreeBindingTags --
  345.  *
  346.  *    This procedure is called to free all of the binding tags
  347.  *    associated with a window;  typically it is only invoked where
  348.  *    there are window-specific tags.
  349.  *
  350.  * Results:
  351.  *    None.
  352.  *
  353.  * Side effects:
  354.  *    Any binding tags for winPtr are freed.
  355.  *
  356.  *----------------------------------------------------------------------
  357.  */
  358.  
  359. void
  360. TkFreeBindingTags(winPtr)
  361.     TkWindow *winPtr;        /* Window whose tags are to be released. */
  362. {
  363.     int i;
  364.     char *p;
  365.  
  366.     for (i = 0; i < winPtr->numTags; i++) {
  367.     p = (char *) (winPtr->tagPtr[i]);
  368.     if (*p == '.') {
  369.         /*
  370.          * Names starting with "." are malloced rather than Uids, so
  371.          * they have to be freed.
  372.          */
  373.     
  374.         ckfree(p);
  375.     }
  376.     }
  377.     ckfree((char *) winPtr->tagPtr);
  378.     winPtr->numTags = 0;
  379.     winPtr->tagPtr = NULL;
  380. }
  381.  
  382. /*
  383.  *----------------------------------------------------------------------
  384.  *
  385.  * Tk_DestroyCmd --
  386.  *
  387.  *    This procedure is invoked to process the "destroy" Tcl command.
  388.  *    See the user documentation for details on what it does.
  389.  *
  390.  * Results:
  391.  *    A standard Tcl result.
  392.  *
  393.  * Side effects:
  394.  *    See the user documentation.
  395.  *
  396.  *----------------------------------------------------------------------
  397.  */
  398.  
  399. int
  400. Tk_DestroyCmd(clientData, interp, argc, argv)
  401.     ClientData clientData;        /* Main window associated with
  402.                  * interpreter. */
  403.     Tcl_Interp *interp;        /* Current interpreter. */
  404.     int argc;            /* Number of arguments. */
  405.     char **argv;        /* Argument strings. */
  406. {
  407.     Tk_Window window;
  408.     Tk_Window tkwin = (Tk_Window) clientData;
  409.     int i;
  410.  
  411.     for (i = 1; i < argc; i++) {
  412.     window = Tk_NameToWindow(interp, argv[i], tkwin);
  413.     if (window == NULL) {
  414.         return TCL_ERROR;
  415.     }
  416.     Tk_DestroyWindow(window);
  417.     }
  418.     return TCL_OK;
  419. }
  420.  
  421. /*
  422.  *----------------------------------------------------------------------
  423.  *
  424.  * Tk_LowerCmd --
  425.  *
  426.  *    This procedure is invoked to process the "lower" Tcl command.
  427.  *    See the user documentation for details on what it does.
  428.  *
  429.  * Results:
  430.  *    A standard Tcl result.
  431.  *
  432.  * Side effects:
  433.  *    See the user documentation.
  434.  *
  435.  *----------------------------------------------------------------------
  436.  */
  437.  
  438.     /* ARGSUSED */
  439. int
  440. Tk_LowerCmd(clientData, interp, argc, argv)
  441.     ClientData clientData;    /* Main window associated with
  442.                  * interpreter. */
  443.     Tcl_Interp *interp;        /* Current interpreter. */
  444.     int argc;            /* Number of arguments. */
  445.     char **argv;        /* Argument strings. */
  446. {
  447.     Tk_Window main = (Tk_Window) clientData;
  448.     Tk_Window tkwin, other;
  449.  
  450.     if ((argc != 2) && (argc != 3)) {
  451.     Tcl_AppendResult(interp, "wrong # args: should be \"",
  452.         argv[0], " window ?belowThis?\"", (char *) NULL);
  453.     return TCL_ERROR;
  454.     }
  455.  
  456.     tkwin = Tk_NameToWindow(interp, argv[1], main);
  457.     if (tkwin == NULL) {
  458.     return TCL_ERROR;
  459.     }
  460.     if (argc == 2) {
  461.     other = NULL;
  462.     } else {
  463.     other = Tk_NameToWindow(interp, argv[2], main);
  464.     if (other == NULL) {
  465.         return TCL_ERROR;
  466.     }
  467.     }
  468.     if (Tk_RestackWindow(tkwin, Below, other) != TCL_OK) {
  469.     Tcl_AppendResult(interp, "can't lower \"", argv[1], "\" below \"",
  470.         argv[2], "\"", (char *) NULL);
  471.     return TCL_ERROR;
  472.     }
  473.     return TCL_OK;
  474. }
  475.  
  476. /*
  477.  *----------------------------------------------------------------------
  478.  *
  479.  * Tk_RaiseCmd --
  480.  *
  481.  *    This procedure is invoked to process the "raise" Tcl command.
  482.  *    See the user documentation for details on what it does.
  483.  *
  484.  * Results:
  485.  *    A standard Tcl result.
  486.  *
  487.  * Side effects:
  488.  *    See the user documentation.
  489.  *
  490.  *----------------------------------------------------------------------
  491.  */
  492.  
  493.     /* ARGSUSED */
  494. int
  495. Tk_RaiseCmd(clientData, interp, argc, argv)
  496.     ClientData clientData;    /* Main window associated with
  497.                  * interpreter. */
  498.     Tcl_Interp *interp;        /* Current interpreter. */
  499.     int argc;            /* Number of arguments. */
  500.     char **argv;        /* Argument strings. */
  501. {
  502.     Tk_Window main = (Tk_Window) clientData;
  503.     Tk_Window tkwin, other;
  504.  
  505.     if ((argc != 2) && (argc != 3)) {
  506.     Tcl_AppendResult(interp, "wrong # args: should be \"",
  507.         argv[0], " window ?aboveThis?\"", (char *) NULL);
  508.     return TCL_ERROR;
  509.     }
  510.  
  511.     tkwin = Tk_NameToWindow(interp, argv[1], main);
  512.     if (tkwin == NULL) {
  513.     return TCL_ERROR;
  514.     }
  515.     if (argc == 2) {
  516.     other = NULL;
  517.     } else {
  518.     other = Tk_NameToWindow(interp, argv[2], main);
  519.     if (other == NULL) {
  520.         return TCL_ERROR;
  521.     }
  522.     }
  523.     if (Tk_RestackWindow(tkwin, Above, other) != TCL_OK) {
  524.     Tcl_AppendResult(interp, "can't raise \"", argv[1], "\" above \"",
  525.         argv[2], "\"", (char *) NULL);
  526.     return TCL_ERROR;
  527.     }
  528.     return TCL_OK;
  529. }
  530.  
  531. /*
  532.  *----------------------------------------------------------------------
  533.  *
  534.  * Tk_TkCmd --
  535.  *
  536.  *    This procedure is invoked to process the "tk" Tcl command.
  537.  *    See the user documentation for details on what it does.
  538.  *
  539.  * Results:
  540.  *    A standard Tcl result.
  541.  *
  542.  * Side effects:
  543.  *    See the user documentation.
  544.  *
  545.  *----------------------------------------------------------------------
  546.  */
  547.  
  548.     /* ARGSUSED */
  549. int
  550. Tk_TkCmd(clientData, interp, argc, argv)
  551.     ClientData clientData;    /* Main window associated with
  552.                  * interpreter. */
  553.     Tcl_Interp *interp;        /* Current interpreter. */
  554.     int argc;            /* Number of arguments. */
  555.     char **argv;        /* Argument strings. */
  556. {
  557.     char c;
  558.     size_t length;
  559.     Tk_Window tkwin = (Tk_Window) clientData;
  560.     TkWindow *winPtr;
  561.  
  562.     if (argc < 2) {
  563.     Tcl_AppendResult(interp, "wrong # args: should be \"",
  564.         argv[0], " option ?arg?\"", (char *) NULL);
  565.     return TCL_ERROR;
  566.     }
  567.     c = argv[1][0];
  568.     length = strlen(argv[1]);
  569.     if ((c == 'a') && (strncmp(argv[1], "appname", length) == 0)) {
  570.     winPtr = ((TkWindow *) tkwin)->mainPtr->winPtr;
  571.     if (argc > 3) {
  572.         Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
  573.             " appname ?newName?\"", (char *) NULL);
  574.         return TCL_ERROR;
  575.     }
  576.     if (argc == 3) {
  577.         winPtr->nameUid = Tk_GetUid(Tk_SetAppName(tkwin, argv[2]));
  578.     }
  579.     interp->result = winPtr->nameUid;
  580.     } else {
  581.     Tcl_AppendResult(interp, "bad option \"", argv[1],
  582.         "\": must be appname", (char *) NULL);
  583.     return TCL_ERROR;
  584.     }
  585.     return TCL_OK;
  586. }
  587.  
  588. /*
  589.  *----------------------------------------------------------------------
  590.  *
  591.  * Tk_TkwaitCmd --
  592.  *
  593.  *    This procedure is invoked to process the "tkwait" Tcl command.
  594.  *    See the user documentation for details on what it does.
  595.  *
  596.  * Results:
  597.  *    A standard Tcl result.
  598.  *
  599.  * Side effects:
  600.  *    See the user documentation.
  601.  *
  602.  *----------------------------------------------------------------------
  603.  */
  604.  
  605.     /* ARGSUSED */
  606. int
  607. Tk_TkwaitCmd(clientData, interp, argc, argv)
  608.     ClientData clientData;    /* Main window associated with
  609.                  * interpreter. */
  610.     Tcl_Interp *interp;        /* Current interpreter. */
  611.     int argc;            /* Number of arguments. */
  612.     char **argv;        /* Argument strings. */
  613. {
  614.     Tk_Window tkwin = (Tk_Window) clientData;
  615.     int c, done;
  616.     size_t length;
  617.  
  618.     if (argc != 3) {
  619.     Tcl_AppendResult(interp, "wrong # args: should be \"",
  620.         argv[0], " variable|visibility|window name\"", (char *) NULL);
  621.     return TCL_ERROR;
  622.     }
  623.     c = argv[1][0];
  624.     length = strlen(argv[1]);
  625.     if ((c == 'v') && (strncmp(argv[1], "variable", length) == 0)
  626.         && (length >= 2)) {
  627.     if (Tcl_TraceVar(interp, argv[2],
  628.         TCL_GLOBAL_ONLY|TCL_TRACE_WRITES|TCL_TRACE_UNSETS,
  629.         WaitVariableProc, (ClientData) &done) != TCL_OK) {
  630.         return TCL_ERROR;
  631.     }
  632.     done = 0;
  633.     while (!done) {
  634.         Tcl_DoOneEvent(0);
  635.     }
  636.     Tcl_UntraceVar(interp, argv[2],
  637.         TCL_GLOBAL_ONLY|TCL_TRACE_WRITES|TCL_TRACE_UNSETS,
  638.         WaitVariableProc, (ClientData) &done);
  639.     } else if ((c == 'v') && (strncmp(argv[1], "visibility", length) == 0)
  640.         && (length >= 2)) {
  641.     Tk_Window window;
  642.  
  643.     window = Tk_NameToWindow(interp, argv[2], tkwin);
  644.     if (window == NULL) {
  645.         return TCL_ERROR;
  646.     }
  647.     Tk_CreateEventHandler(window, VisibilityChangeMask|StructureNotifyMask,
  648.         WaitVisibilityProc, (ClientData) &done);
  649.     done = 0;
  650.     while (!done) {
  651.         Tcl_DoOneEvent(0);
  652.     }
  653.     if (done != 1) {
  654.         /*
  655.          * Note that we do not delete the event handler because it
  656.          * was deleted automatically when the window was destroyed.
  657.          */
  658.  
  659.         Tcl_ResetResult(interp);
  660.         Tcl_AppendResult(interp, "window \"", argv[2],
  661.             "\" was deleted before its visibility changed",
  662.             (char *) NULL);
  663.         return TCL_ERROR;
  664.     }
  665.     Tk_DeleteEventHandler(window, VisibilityChangeMask|StructureNotifyMask,
  666.         WaitVisibilityProc, (ClientData) &done);
  667.     } else if ((c == 'w') && (strncmp(argv[1], "window", length) == 0)) {
  668.     Tk_Window window;
  669.  
  670.     window = Tk_NameToWindow(interp, argv[2], tkwin);
  671.     if (window == NULL) {
  672.         return TCL_ERROR;
  673.     }
  674.     Tk_CreateEventHandler(window, StructureNotifyMask,
  675.         WaitWindowProc, (ClientData) &done);
  676.     done = 0;
  677.     while (!done) {
  678.         Tcl_DoOneEvent(0);
  679.     }
  680.     /*
  681.      * Note:  there's no need to delete the event handler.  It was
  682.      * deleted automatically when the window was destroyed.
  683.      */
  684.     } else {
  685.     Tcl_AppendResult(interp, "bad option \"", argv[1],
  686.         "\": must be variable, visibility, or window", (char *) NULL);
  687.     return TCL_ERROR;
  688.     }
  689.  
  690.     /*
  691.      * Clear out the interpreter's result, since it may have been set
  692.      * by event handlers.
  693.      */
  694.  
  695.     Tcl_ResetResult(interp);
  696.     return TCL_OK;
  697. }
  698.  
  699.     /* ARGSUSED */
  700. static char *
  701. WaitVariableProc(clientData, interp, name1, name2, flags)
  702.     ClientData clientData;    /* Pointer to integer to set to 1. */
  703.     Tcl_Interp *interp;        /* Interpreter containing variable. */
  704.     char *name1;        /* Name of variable. */
  705.     char *name2;        /* Second part of variable name. */
  706.     int flags;            /* Information about what happened. */
  707. {
  708.     int *donePtr = (int *) clientData;
  709.  
  710.     *donePtr = 1;
  711.     return (char *) NULL;
  712. }
  713.  
  714.     /*ARGSUSED*/
  715. static void
  716. WaitVisibilityProc(clientData, eventPtr)
  717.     ClientData clientData;    /* Pointer to integer to set to 1. */
  718.     XEvent *eventPtr;        /* Information about event (not used). */
  719. {
  720.     int *donePtr = (int *) clientData;
  721.  
  722.     if (eventPtr->type == VisibilityNotify) {
  723.     *donePtr = 1;
  724.     }
  725.     if (eventPtr->type == DestroyNotify) {
  726.     *donePtr = 2;
  727.     }
  728. }
  729.  
  730. static void
  731. WaitWindowProc(clientData, eventPtr)
  732.     ClientData clientData;    /* Pointer to integer to set to 1. */
  733.     XEvent *eventPtr;        /* Information about event. */
  734. {
  735.     int *donePtr = (int *) clientData;
  736.  
  737.     if (eventPtr->type == DestroyNotify) {
  738.     *donePtr = 1;
  739.     }
  740. }
  741.  
  742. /*
  743.  *----------------------------------------------------------------------
  744.  *
  745.  * Tk_UpdateCmd --
  746.  *
  747.  *    This procedure is invoked to process the "update" Tcl command.
  748.  *    See the user documentation for details on what it does.
  749.  *
  750.  * Results:
  751.  *    A standard Tcl result.
  752.  *
  753.  * Side effects:
  754.  *    See the user documentation.
  755.  *
  756.  *----------------------------------------------------------------------
  757.  */
  758.  
  759.     /* ARGSUSED */
  760. int
  761. Tk_UpdateCmd(clientData, interp, argc, argv)
  762.     ClientData clientData;    /* Main window associated with
  763.                  * interpreter. */
  764.     Tcl_Interp *interp;        /* Current interpreter. */
  765.     int argc;            /* Number of arguments. */
  766.     char **argv;        /* Argument strings. */
  767. {
  768.     Tk_Window tkwin = (Tk_Window) clientData;
  769.     int flags;
  770.     Display *display;
  771.  
  772.     if (argc == 1) {
  773.     flags = TCL_DONT_WAIT;
  774.     } else if (argc == 2) {
  775.     if (strncmp(argv[1], "idletasks", strlen(argv[1])) != 0) {
  776.         Tcl_AppendResult(interp, "bad option \"", argv[1],
  777.             "\": must be idletasks", (char *) NULL);
  778.         return TCL_ERROR;
  779.     }
  780.     flags = TCL_IDLE_EVENTS;
  781.     } else {
  782.     Tcl_AppendResult(interp, "wrong # args: should be \"",
  783.         argv[0], " ?idletasks?\"", (char *) NULL);
  784.     return TCL_ERROR;
  785.     }
  786.  
  787.     /*
  788.      * Handle all pending events, sync the display, and repeat over
  789.      * and over again until all pending events have been handled.
  790.      * Special note:  it's possible that the entire application could
  791.      * be destroyed by an event handler that occurs during the update.
  792.      * Thus, don't use any information from tkwin after calling
  793.      * Tcl_DoOneEvent.
  794.      */
  795.  
  796.     display = Tk_Display(tkwin);
  797.     while (1) {
  798.     while (Tcl_DoOneEvent(flags) != 0) {
  799.         /* Empty loop body */
  800.     }
  801.     XSync(display, False);
  802.     if (Tcl_DoOneEvent(flags) == 0) {
  803.         break;
  804.     }
  805.     }
  806.  
  807.     /*
  808.      * Must clear the interpreter's result because event handlers could
  809.      * have executed commands.
  810.      */
  811.  
  812.     Tcl_ResetResult(interp);
  813.     return TCL_OK;
  814. }
  815.  
  816. /*
  817.  *----------------------------------------------------------------------
  818.  *
  819.  * Tk_WinfoCmd --
  820.  *
  821.  *    This procedure is invoked to process the "winfo" Tcl command.
  822.  *    See the user documentation for details on what it does.
  823.  *
  824.  * Results:
  825.  *    A standard Tcl result.
  826.  *
  827.  * Side effects:
  828.  *    See the user documentation.
  829.  *
  830.  *----------------------------------------------------------------------
  831.  */
  832.  
  833. int
  834. Tk_WinfoCmd(clientData, interp, argc, argv)
  835.     ClientData clientData;    /* Main window associated with
  836.                  * interpreter. */
  837.     Tcl_Interp *interp;        /* Current interpreter. */
  838.     int argc;            /* Number of arguments. */
  839.     char **argv;        /* Argument strings. */
  840. {
  841.     Tk_Window tkwin = (Tk_Window) clientData;
  842.     size_t length;
  843.     char c, *argName;
  844.     Tk_Window window;
  845.     register TkWindow *winPtr;
  846.  
  847. #define SETUP(name) \
  848.     if (argc != 3) {\
  849.     argName = name; \
  850.     goto wrongArgs; \
  851.     } \
  852.     window = Tk_NameToWindow(interp, argv[2], tkwin); \
  853.     if (window == NULL) { \
  854.     return TCL_ERROR; \
  855.     }
  856.  
  857.     if (argc < 2) {
  858.     Tcl_AppendResult(interp, "wrong # args: should be \"",
  859.         argv[0], " option ?arg?\"", (char *) NULL);
  860.     return TCL_ERROR;
  861.     }
  862.     c = argv[1][0];
  863.     length = strlen(argv[1]);
  864.     if ((c == 'a') && (strcmp(argv[1], "atom") == 0)) {
  865.     char *atomName;
  866.  
  867.     if (argc == 3) {
  868.         atomName = argv[2];
  869.     } else if (argc == 5) {
  870.         atomName = argv[4];
  871.         tkwin = GetDisplayOf(interp, tkwin, argv+2);
  872.         if (tkwin == NULL) {
  873.         return TCL_ERROR;
  874.         }
  875.     } else {
  876.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  877.             argv[0], " atom ?-displayof window? name\"",
  878.             (char *) NULL);
  879.         return TCL_ERROR;
  880.     }
  881.     sprintf(interp->result, "%ld", Tk_InternAtom(tkwin, atomName));
  882.     } else if ((c == 'a') && (strncmp(argv[1], "atomname", length) == 0)
  883.         && (length >= 5)) {
  884.     Atom atom;
  885.     char *name, *id;
  886.  
  887.     if (argc == 3) {
  888.         id = argv[2];
  889.     } else if (argc == 5) {
  890.         id = argv[4];
  891.         tkwin = GetDisplayOf(interp, tkwin, argv+2);
  892.         if (tkwin == NULL) {
  893.         return TCL_ERROR;
  894.         }
  895.     } else {
  896.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  897.             argv[0], " atomname ?-displayof window? id\"",
  898.             (char *) NULL);
  899.         return TCL_ERROR;
  900.     }
  901.     if (Tcl_GetInt(interp, id, (int *) &atom) != TCL_OK) {
  902.         return TCL_ERROR;
  903.     }
  904.     name = Tk_GetAtomName(tkwin, atom);
  905.     if (strcmp(name, "?bad atom?") == 0) {
  906.         Tcl_AppendResult(interp, "no atom exists with id \"",
  907.             argv[2], "\"", (char *) NULL);
  908.         return TCL_ERROR;
  909.     }
  910.     interp->result = name;
  911.     } else if ((c == 'c') && (strncmp(argv[1], "cells", length) == 0)
  912.         && (length >= 2)) {
  913.     SETUP("cells");
  914.     sprintf(interp->result, "%d", Tk_Visual(window)->map_entries);
  915.     } else if ((c == 'c') && (strncmp(argv[1], "children", length) == 0)
  916.         && (length >= 2)) {
  917.     SETUP("children");
  918.     for (winPtr = ((TkWindow *) window)->childList; winPtr != NULL;
  919.         winPtr = winPtr->nextPtr) {
  920.         Tcl_AppendElement(interp, winPtr->pathName);
  921.     }
  922.     } else if ((c == 'c') && (strncmp(argv[1], "class", length) == 0)
  923.         && (length >= 2)) {
  924.     SETUP("class");
  925.     interp->result = Tk_Class(window);
  926.     } else if ((c == 'c') && (strncmp(argv[1], "colormapfull", length) == 0)
  927.         && (length >= 3)) {
  928.     SETUP("colormapfull");
  929.     interp->result = (TkCmapStressed(window, Tk_Colormap(window)))
  930.         ? "1" : "0";
  931.     } else if ((c == 'c') && (strncmp(argv[1], "containing", length) == 0)
  932.         && (length >= 3)) {
  933.     int rootX, rootY, index;
  934.  
  935.     if (argc == 4) {
  936.         index = 2;
  937.     } else if (argc == 6) {
  938.         index = 4;
  939.         tkwin = GetDisplayOf(interp, tkwin, argv+2);
  940.         if (tkwin == NULL) {
  941.         return TCL_ERROR;
  942.         }
  943.     } else {
  944.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  945.             argv[0], " containing ?-displayof window? rootX rootY\"",
  946.             (char *) NULL);
  947.         return TCL_ERROR;
  948.     }
  949.     if ((Tk_GetPixels(interp, tkwin, argv[index], &rootX) != TCL_OK)
  950.         || (Tk_GetPixels(interp, tkwin, argv[index+1], &rootY)
  951.         != TCL_OK)) {
  952.         return TCL_ERROR;
  953.     }
  954.     window = Tk_CoordsToWindow(rootX, rootY, tkwin);
  955.     if (window != NULL) {
  956.         interp->result = Tk_PathName(window);
  957.     }
  958.     } else if ((c == 'd') && (strncmp(argv[1], "depth", length) == 0)) {
  959.     SETUP("depth");
  960.     sprintf(interp->result, "%d", Tk_Depth(window));
  961.     } else if ((c == 'e') && (strncmp(argv[1], "exists", length) == 0)) {
  962.     if (argc != 3) {
  963.         argName = "exists";
  964.         goto wrongArgs;
  965.     }
  966.     window = Tk_NameToWindow(interp, argv[2], tkwin);
  967.     if ((window == NULL)
  968.         || (((TkWindow *) window)->flags & TK_ALREADY_DEAD)) {
  969.         interp->result = "0";
  970.     } else {
  971.         interp->result = "1";
  972.     }
  973.     } else if ((c == 'f') && (strncmp(argv[1], "fpixels", length) == 0)
  974.         && (length >= 2)) {
  975.     double mm, pixels;
  976.  
  977.     if (argc != 4) {
  978.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  979.             argv[0], " fpixels window number\"", (char *) NULL);
  980.         return TCL_ERROR;
  981.     }
  982.     window = Tk_NameToWindow(interp, argv[2], tkwin);
  983.     if (window == NULL) {
  984.         return TCL_ERROR;
  985.     }
  986.     if (Tk_GetScreenMM(interp, window, argv[3], &mm) != TCL_OK) {
  987.         return TCL_ERROR;
  988.     }
  989.     pixels = mm * WidthOfScreen(Tk_Screen(window))
  990.         / WidthMMOfScreen(Tk_Screen(window));
  991.     Tcl_PrintDouble(interp, pixels, interp->result);
  992.     } else if ((c == 'g') && (strncmp(argv[1], "geometry", length) == 0)) {
  993.     SETUP("geometry");
  994.     sprintf(interp->result, "%dx%d+%d+%d", Tk_Width(window),
  995.         Tk_Height(window), Tk_X(window), Tk_Y(window));
  996.     } else if ((c == 'h') && (strncmp(argv[1], "height", length) == 0)) {
  997.     SETUP("height");
  998.     sprintf(interp->result, "%d", Tk_Height(window));
  999.     } else if ((c == 'i') && (strcmp(argv[1], "id") == 0)) {
  1000.     SETUP("id");
  1001.     Tk_MakeWindowExist(window);
  1002.     sprintf(interp->result, "0x%x", (unsigned int) Tk_WindowId(window));
  1003.     } else if ((c == 'i') && (strncmp(argv[1], "interps", length) == 0)
  1004.         && (length >= 2)) {
  1005.     if (argc == 4) {
  1006.         tkwin = GetDisplayOf(interp, tkwin, argv+2);
  1007.         if (tkwin == NULL) {
  1008.         return TCL_ERROR;
  1009.         }
  1010.     } else if (argc != 2) {
  1011.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  1012.             argv[0], " interps ?-displayof window?\"",
  1013.             (char *) NULL);
  1014.         return TCL_ERROR;
  1015.     }
  1016.     return TkGetInterpNames(interp, tkwin);
  1017.     } else if ((c == 'i') && (strncmp(argv[1], "ismapped", length) == 0)
  1018.         && (length >= 2)) {
  1019.     SETUP("ismapped");
  1020.     interp->result = Tk_IsMapped(window) ? "1" : "0";
  1021.     } else if ((c == 'm') && (strncmp(argv[1], "manager", length) == 0)) {
  1022.     SETUP("manager");
  1023.     winPtr = (TkWindow *) window;
  1024.     if (winPtr->geomMgrPtr != NULL) {
  1025.         interp->result = winPtr->geomMgrPtr->name;
  1026.     }
  1027.     } else if ((c == 'n') && (strncmp(argv[1], "name", length) == 0)) {
  1028.     SETUP("name");
  1029.     interp->result = Tk_Name(window);
  1030.     } else if ((c == 'p') && (strncmp(argv[1], "parent", length) == 0)) {
  1031.     SETUP("parent");
  1032.     winPtr = (TkWindow *) window;
  1033.     if (winPtr->parentPtr != NULL) {
  1034.         interp->result = winPtr->parentPtr->pathName;
  1035.     }
  1036.     } else if ((c == 'p') && (strncmp(argv[1], "pathname", length) == 0)
  1037.         && (length >= 2)) {
  1038.     int index, id;
  1039.  
  1040.     if (argc == 3) {
  1041.         index = 2;
  1042.     } else if (argc == 5) {
  1043.         index = 4;
  1044.         tkwin = GetDisplayOf(interp, tkwin, argv+2);
  1045.         if (tkwin == NULL) {
  1046.         return TCL_ERROR;
  1047.         }
  1048.     } else {
  1049.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  1050.             argv[0], " pathname ?-displayof window? id\"",
  1051.             (char *) NULL);
  1052.         return TCL_ERROR;
  1053.     }
  1054.     if (Tcl_GetInt(interp, argv[index], &id) != TCL_OK) {
  1055.         return TCL_ERROR;
  1056.     }
  1057.     window = Tk_IdToWindow(Tk_Display(tkwin), (Window) id);
  1058.     if ((window == NULL) || (((TkWindow *) window)->mainPtr
  1059.         != ((TkWindow *) tkwin)->mainPtr)) {
  1060.         Tcl_AppendResult(interp, "window id \"", argv[index],
  1061.             "\" doesn't exist in this application", (char *) NULL);
  1062.         return TCL_ERROR;
  1063.     }
  1064.     interp->result = Tk_PathName(window);
  1065.     } else if ((c == 'p') && (strncmp(argv[1], "pixels", length) == 0)
  1066.         && (length >= 2)) {
  1067.     int pixels;
  1068.  
  1069.     if (argc != 4) {
  1070.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  1071.             argv[0], " pixels window number\"", (char *) NULL);
  1072.         return TCL_ERROR;
  1073.     }
  1074.     window = Tk_NameToWindow(interp, argv[2], tkwin);
  1075.     if (window == NULL) {
  1076.         return TCL_ERROR;
  1077.     }
  1078.     if (Tk_GetPixels(interp, window, argv[3], &pixels) != TCL_OK) {
  1079.         return TCL_ERROR;
  1080.     }
  1081.     sprintf(interp->result, "%d", pixels);
  1082.     } else if ((c == 'p') && (strcmp(argv[1], "pointerx") == 0)) {
  1083.     int x, y;
  1084.  
  1085.     SETUP("pointerx");
  1086.     winPtr = GetToplevel(window);
  1087.     if (winPtr == NULL) {
  1088.         x = -1;
  1089.     } else {
  1090.         TkGetPointerCoords((Tk_Window)winPtr, &x, &y);
  1091.     }
  1092.     sprintf(interp->result, "%d", x);
  1093.     } else if ((c == 'p') && (strcmp(argv[1], "pointerxy") == 0)) {
  1094.     int x, y;
  1095.  
  1096.     SETUP("pointerxy");
  1097.     winPtr = GetToplevel(window);
  1098.     if (winPtr == NULL) {
  1099.         x = -1;
  1100.     } else {
  1101.         TkGetPointerCoords((Tk_Window)winPtr, &x, &y);
  1102.     }
  1103.     sprintf(interp->result, "%d %d", x, y);
  1104.     } else if ((c == 'p') && (strcmp(argv[1], "pointery") == 0)) {
  1105.     int x, y;
  1106.  
  1107.     SETUP("pointery");
  1108.     winPtr = GetToplevel(window);
  1109.     if (winPtr == NULL) {
  1110.         y = -1;
  1111.     } else {
  1112.         TkGetPointerCoords((Tk_Window)winPtr, &x, &y);
  1113.     }
  1114.     sprintf(interp->result, "%d", y);
  1115.     } else if ((c == 'r') && (strncmp(argv[1], "reqheight", length) == 0)
  1116.         && (length >= 4)) {
  1117.     SETUP("reqheight");
  1118.     sprintf(interp->result, "%d", Tk_ReqHeight(window));
  1119.     } else if ((c == 'r') && (strncmp(argv[1], "reqwidth", length) == 0)
  1120.         && (length >= 4)) {
  1121.     SETUP("reqwidth");
  1122.     sprintf(interp->result, "%d", Tk_ReqWidth(window));
  1123.     } else if ((c == 'r') && (strncmp(argv[1], "rgb", length) == 0)
  1124.         && (length >= 2)) {
  1125.     XColor *colorPtr;
  1126.  
  1127.     if (argc != 4) {
  1128.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  1129.             argv[0], " rgb window colorName\"", (char *) NULL);
  1130.         return TCL_ERROR;
  1131.     }
  1132.     window = Tk_NameToWindow(interp, argv[2], tkwin);
  1133.     if (window == NULL) {
  1134.         return TCL_ERROR;
  1135.     }
  1136.     colorPtr = Tk_GetColor(interp, window, argv[3]);
  1137.     if (colorPtr == NULL) {
  1138.         return TCL_ERROR;
  1139.     }
  1140.     sprintf(interp->result, "%d %d %d", colorPtr->red, colorPtr->green,
  1141.         colorPtr->blue);
  1142.     Tk_FreeColor(colorPtr);
  1143.     } else if ((c == 'r') && (strcmp(argv[1], "rootx") == 0)) {
  1144.     int x, y;
  1145.  
  1146.     SETUP("rootx");
  1147.     Tk_GetRootCoords(window, &x, &y);
  1148.     sprintf(interp->result, "%d", x);
  1149.     } else if ((c == 'r') && (strcmp(argv[1], "rooty") == 0)) {
  1150.     int x, y;
  1151.  
  1152.     SETUP("rooty");
  1153.     Tk_GetRootCoords(window, &x, &y);
  1154.     sprintf(interp->result, "%d", y);
  1155.     } else if ((c == 's') && (strcmp(argv[1], "screen") == 0)) {
  1156.     char string[20];
  1157.  
  1158.     SETUP("screen");
  1159.     sprintf(string, "%d", Tk_ScreenNumber(window));
  1160.     Tcl_AppendResult(interp, Tk_DisplayName(window), ".", string,
  1161.         (char *) NULL);
  1162.     } else if ((c == 's') && (strncmp(argv[1], "screencells", length) == 0)
  1163.         && (length >= 7)) {
  1164.     SETUP("screencells");
  1165.     sprintf(interp->result, "%d", CellsOfScreen(Tk_Screen(window)));
  1166.     } else if ((c == 's') && (strncmp(argv[1], "screendepth", length) == 0)
  1167.         && (length >= 7)) {
  1168.     SETUP("screendepth");
  1169.     sprintf(interp->result, "%d", DefaultDepthOfScreen(Tk_Screen(window)));
  1170.     } else if ((c == 's') && (strncmp(argv[1], "screenheight", length) == 0)
  1171.         && (length >= 7)) {
  1172.     SETUP("screenheight");
  1173.     sprintf(interp->result, "%d",  HeightOfScreen(Tk_Screen(window)));
  1174.     } else if ((c == 's') && (strncmp(argv[1], "screenmmheight", length) == 0)
  1175.         && (length >= 9)) {
  1176.     SETUP("screenmmheight");
  1177.     sprintf(interp->result, "%d",  HeightMMOfScreen(Tk_Screen(window)));
  1178.     } else if ((c == 's') && (strncmp(argv[1], "screenmmwidth", length) == 0)
  1179.         && (length >= 9)) {
  1180.     SETUP("screenmmwidth");
  1181.     sprintf(interp->result, "%d",  WidthMMOfScreen(Tk_Screen(window)));
  1182.     } else if ((c == 's') && (strncmp(argv[1], "screenvisual", length) == 0)
  1183.         && (length >= 7)) {
  1184.     SETUP("screenvisual");
  1185.     switch (DefaultVisualOfScreen(Tk_Screen(window))->class) {
  1186.         case PseudoColor:    interp->result = "pseudocolor"; break;
  1187.         case GrayScale:    interp->result = "grayscale"; break;
  1188.         case DirectColor:    interp->result = "directcolor"; break;
  1189.         case TrueColor:    interp->result = "truecolor"; break;
  1190.         case StaticColor:    interp->result = "staticcolor"; break;
  1191.         case StaticGray:    interp->result = "staticgray"; break;
  1192.         default:        interp->result = "unknown"; break;
  1193.     }
  1194.     } else if ((c == 's') && (strncmp(argv[1], "screenwidth", length) == 0)
  1195.         && (length >= 7)) {
  1196.     SETUP("screenwidth");
  1197.     sprintf(interp->result, "%d",  WidthOfScreen(Tk_Screen(window)));
  1198.     } else if ((c == 's') && (strncmp(argv[1], "server", length) == 0)
  1199.         && (length >= 2)) {
  1200.     SETUP("server");
  1201.     TkGetServerInfo(interp, window);
  1202.     } else if ((c == 't') && (strncmp(argv[1], "toplevel", length) == 0)) {
  1203.     SETUP("toplevel");
  1204.     winPtr = GetToplevel(window);
  1205.     if (winPtr != NULL) {
  1206.         interp->result = winPtr->pathName;
  1207.     }
  1208.     } else if ((c == 'v') && (strncmp(argv[1], "viewable", length) == 0)
  1209.         && (length >= 3)) {
  1210.     SETUP("viewable");
  1211.     for (winPtr = (TkWindow *) window; ; winPtr = winPtr->parentPtr) {
  1212.         if ((winPtr == NULL) || !(winPtr->flags & TK_MAPPED)) {
  1213.         interp->result = "0";
  1214.         break;
  1215.         }
  1216.         if (winPtr->flags & TK_TOP_LEVEL) {
  1217.         interp->result = "1";
  1218.         break;
  1219.         }
  1220.     }
  1221.     } else if ((c == 'v') && (strcmp(argv[1], "visual") == 0)) {
  1222.     SETUP("visual");
  1223.     switch (Tk_Visual(window)->class) {
  1224.         case PseudoColor:    interp->result = "pseudocolor"; break;
  1225.         case GrayScale:    interp->result = "grayscale"; break;
  1226.         case DirectColor:    interp->result = "directcolor"; break;
  1227.         case TrueColor:    interp->result = "truecolor"; break;
  1228.         case StaticColor:    interp->result = "staticcolor"; break;
  1229.         case StaticGray:    interp->result = "staticgray"; break;
  1230.         default:        interp->result = "unknown"; break;
  1231.     }
  1232.     } else if ((c == 'v') && (strncmp(argv[1], "visualid", length) == 0)
  1233.            && (length >= 7)) {
  1234.     SETUP("visualid");
  1235.     sprintf(interp->result, "0x%x", (unsigned int)
  1236.         XVisualIDFromVisual(Tk_Visual(window)));
  1237.     } else if ((c == 'v') && (strncmp(argv[1], "visualsavailable", length) == 0)
  1238.         && (length >= 7)) {
  1239.     XVisualInfo template, *visInfoPtr;
  1240.     int count, i;
  1241.     char string[70], visualIdString[16], *fmt;
  1242.     int includeVisualId;
  1243.  
  1244.     if (argc == 3) {
  1245.         includeVisualId = 0;
  1246.     } else if ((argc == 4)
  1247.         && (strncmp(argv[3], "includeids", strlen(argv[3])) == 0)) {
  1248.         includeVisualId = 1;
  1249.     } else {
  1250.         Tcl_AppendResult(interp, "wrong # args: should be \"",
  1251.             argv[0], " visualsavailable window ?includeids?\"", 
  1252.             (char *) NULL);
  1253.         return TCL_ERROR;
  1254.     }
  1255.  
  1256.     window = Tk_NameToWindow(interp, argv[2], tkwin); 
  1257.     if (window == NULL) { 
  1258.       return TCL_ERROR; 
  1259.     }
  1260.  
  1261.     template.screen = Tk_ScreenNumber(window);
  1262.     visInfoPtr = XGetVisualInfo(Tk_Display(window), VisualScreenMask,
  1263.         &template, &count);
  1264.     if (visInfoPtr == NULL) {
  1265.         interp->result = "can't find any visuals for screen";
  1266.         return TCL_ERROR;
  1267.     }
  1268.     for (i = 0; i < count; i++) {
  1269.         switch (visInfoPtr[i].class) {
  1270.         case PseudoColor:    fmt = "pseudocolor %d"; break;
  1271.         case GrayScale:        fmt = "grayscale %d"; break;
  1272.         case DirectColor:    fmt = "directcolor %d"; break;
  1273.         case TrueColor:        fmt = "truecolor %d"; break;
  1274.         case StaticColor:    fmt = "staticcolor %d"; break;
  1275.         case StaticGray:    fmt = "staticgray %d"; break;
  1276.         default:        fmt = "unknown"; break;
  1277.         }
  1278.         sprintf(string, fmt, visInfoPtr[i].depth);
  1279.         if (includeVisualId) {
  1280.         sprintf(visualIdString, " 0x%x",
  1281.             (unsigned int) visInfoPtr[i].visualid);
  1282.         strcat(string, visualIdString);
  1283.         }
  1284.         Tcl_AppendElement(interp, string);
  1285.     }
  1286.     XFree((char *) visInfoPtr);
  1287.     } else if ((c == 'v') && (strncmp(argv[1], "vrootheight", length) == 0)
  1288.         && (length >= 6)) {
  1289.     int x, y;
  1290.     int width, height;
  1291.  
  1292.     SETUP("vrootheight");
  1293.     Tk_GetVRootGeometry(window, &x, &y, &width, &height);
  1294.     sprintf(interp->result, "%d", height);
  1295.     } else if ((c == 'v') && (strncmp(argv[1], "vrootwidth", length) == 0)
  1296.         && (length >= 6)) {
  1297.     int x, y;
  1298.     int width, height;
  1299.  
  1300.     SETUP("vrootwidth");
  1301.     Tk_GetVRootGeometry(window, &x, &y, &width, &height);
  1302.     sprintf(interp->result, "%d", width);
  1303.     } else if ((c == 'v') && (strcmp(argv[1], "vrootx") == 0)) {
  1304.     int x, y;
  1305.     int width, height;
  1306.  
  1307.     SETUP("vrootx");
  1308.     Tk_GetVRootGeometry(window, &x, &y, &width, &height);
  1309.     sprintf(interp->result, "%d", x);
  1310.     } else if ((c == 'v') && (strcmp(argv[1], "vrooty") == 0)) {
  1311.     int x, y;
  1312.     int width, height;
  1313.  
  1314.     SETUP("vrooty");
  1315.     Tk_GetVRootGeometry(window, &x, &y, &width, &height);
  1316.     sprintf(interp->result, "%d", y);
  1317.     } else if ((c == 'w') && (strncmp(argv[1], "width", length) == 0)) {
  1318.     SETUP("width");
  1319.     sprintf(interp->result, "%d", Tk_Width(window));
  1320.     } else if ((c == 'x') && (argv[1][1] == '\0')) {
  1321.     SETUP("x");
  1322.     sprintf(interp->result, "%d", Tk_X(window));
  1323.     } else if ((c == 'y') && (argv[1][1] == '\0')) {
  1324.     SETUP("y");
  1325.     sprintf(interp->result, "%d", Tk_Y(window));
  1326.     } else {
  1327.     Tcl_AppendResult(interp, "bad option \"", argv[1],
  1328.         "\": must be atom, atomname, cells, children, ",
  1329.         "class, colormapfull, containing, depth, exists, fpixels, ",
  1330.         "geometry, height, ",
  1331.         "id, interps, ismapped, manager, name, parent, pathname, ",
  1332.         "pixels, pointerx, pointerxy, pointery, reqheight, ",
  1333.         "reqwidth, rgb, ",
  1334.         "rootx, rooty, ",
  1335.         "screen, screencells, screendepth, screenheight, ",
  1336.         "screenmmheight, screenmmwidth, screenvisual, ",
  1337.         "screenwidth, server, ",
  1338.         "toplevel, viewable, visual, visualid, visualsavailable, ",
  1339.         "vrootheight, vrootwidth, vrootx, vrooty, ",
  1340.         "width, x, or y", (char *) NULL);
  1341.     return TCL_ERROR;
  1342.     }
  1343.     return TCL_OK;
  1344.  
  1345.     wrongArgs:
  1346.     Tcl_AppendResult(interp, "wrong # arguments: must be \"",
  1347.         argv[0], " ", argName, " window\"", (char *) NULL);
  1348.     return TCL_ERROR;
  1349. }
  1350.  
  1351. /*
  1352.  *----------------------------------------------------------------------
  1353.  *
  1354.  * GetDisplayOf --
  1355.  *
  1356.  *    Parses a "-displayof" option for the "winfo" command.
  1357.  *
  1358.  * Results:
  1359.  *    The return value is a token for the window specified in
  1360.  *    argv[1].  If argv[0] and argv[1] couldn't be parsed, NULL
  1361.  *    is returned and an error is left in interp->result.
  1362.  *
  1363.  * Side effects:
  1364.  *    None.
  1365.  *
  1366.  *----------------------------------------------------------------------
  1367.  */
  1368.  
  1369. static Tk_Window
  1370. GetDisplayOf(interp, tkwin, argv)
  1371.     Tcl_Interp *interp;        /* Interpreter for error reporting. */
  1372.     Tk_Window tkwin;        /* Window to use for looking up window
  1373.                  * given in argv[1]. */
  1374.     char **argv;        /* Array of two strings.   First must be
  1375.                  * "-displayof" or an abbreviation, second
  1376.                  * must be window name. */
  1377. {
  1378.     size_t length;
  1379.  
  1380.     length = strlen(argv[0]);
  1381.     if ((length < 2) || (strncmp(argv[0], "-displayof", length) != 0)) {
  1382.     Tcl_AppendResult(interp, "bad argument \"", argv[0],
  1383.         "\": must be -displayof", (char *) NULL);
  1384.     return (Tk_Window) NULL;
  1385.     }
  1386.     return Tk_NameToWindow(interp, argv[1], tkwin);
  1387. }
  1388.  
  1389. /*
  1390.  *----------------------------------------------------------------------
  1391.  *
  1392.  * TkDeadAppCmd --
  1393.  *
  1394.  *    If an application has been deleted then all Tk commands will be
  1395.  *    re-bound to this procedure.
  1396.  *
  1397.  * Results:
  1398.  *    A standard Tcl error is reported to let the user know that
  1399.  *    the application is dead.
  1400.  *
  1401.  * Side effects:
  1402.  *    See the user documentation.
  1403.  *
  1404.  *----------------------------------------------------------------------
  1405.  */
  1406.  
  1407.     /* ARGSUSED */
  1408. int
  1409. TkDeadAppCmd(clientData, interp, argc, argv)
  1410.     ClientData clientData;    /* Dummy. */
  1411.     Tcl_Interp *interp;        /* Current interpreter. */
  1412.     int argc;            /* Number of arguments. */
  1413.     char **argv;        /* Argument strings. */
  1414. {
  1415.     Tcl_AppendResult(interp, "can't invoke \"", argv[0],
  1416.         "\" command:  application has been destroyed", (char *) NULL);
  1417.     return TCL_ERROR;
  1418. }
  1419.  
  1420. /*
  1421.  *----------------------------------------------------------------------
  1422.  *
  1423.  * GetToplevel --
  1424.  *
  1425.  *    Retrieves the toplevel window which is the nearest ancestor of
  1426.  *    of the specified window.
  1427.  *
  1428.  * Results:
  1429.  *    Returns the toplevel window or NULL if the window has no
  1430.  *    ancestor which is a toplevel.
  1431.  *
  1432.  * Side effects:
  1433.  *    None.
  1434.  *
  1435.  *----------------------------------------------------------------------
  1436.  */
  1437.  
  1438. static TkWindow *
  1439. GetToplevel(tkwin)
  1440.     Tk_Window tkwin;        /* Window for which the toplevel should be
  1441.                  * deterined. */
  1442. {
  1443.      TkWindow *winPtr = (TkWindow *) tkwin;
  1444.  
  1445.      while (!(winPtr->flags & TK_TOP_LEVEL)) {
  1446.      winPtr = winPtr->parentPtr;
  1447.      if (winPtr == NULL) {
  1448.          return NULL;
  1449.      }
  1450.      }
  1451.      return winPtr;
  1452. }
  1453.