home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / tcl_447.lzh / TCL / tcl.lzh / tcl / help / window < prev    next >
Text File  |  1990-05-03  |  1KB  |  52 lines

  1.  
  2.  
  3. Window commands are:
  4.  
  5.     window open left top width height title
  6.         create the specified window, set up a null menu strip, add
  7.         the window to the interpreter's window list (handled through
  8.         the clientdata structure -- no changes were made to the
  9.         interpreter to support this), make it the current window,
  10.         and return a window handle
  11.  
  12.     window close windowhandle
  13.         close the specified window, remove it from the window list,
  14.         discard its menu list, etc, etc
  15.  
  16.     window limits windowhandle minwidth minheight maxwidth maxheight
  17.         set new max and min size limits for the specified window
  18.  
  19.     window title windowhandle  newtitle
  20.         set the titles for the window (buggy)
  21.  
  22.     window front windowhandle 
  23.         move the specified window to the front
  24.  
  25.     window back windowhandle 
  26.         move the specified window to the back
  27.  
  28.     window move windowhandle  deltax deltay
  29.         move the specified window by delta
  30.  
  31.     window size windowhandle  deltax deltay
  32.         resize the specified window
  33.  
  34.     window current windowhandle 
  35.         make the specified window the current window (for the display
  36.         command)
  37.  
  38.     window blank windowhandle 
  39.         blanks the specified window draw area, more or less
  40.  
  41.     window width windowhandle
  42.         returns the width of the specified window
  43.  
  44.     window height windowhandle
  45.         returns the height of the specified window
  46.  
  47.  
  48. BUGS
  49.  
  50. titles don't work right
  51.  
  52.