loadTk.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1995-1996 Sun Microsystems, Inc.
  3. '"
  4. '" See the file "license.terms" for information on usage and redistribution
  5. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  6. '" 
  7. '" RCS: @(#) $Id: loadTk.n,v 1.5.2.2 2005/01/05 21:57:17 dkf Exp $
  8. '" 
  9. .so man.macros
  10. .TH "Safe Tk" n 8.0 Tk "Tk Built-In Commands"
  11. .BS
  12. '" Note:  do not modify the .SH NAME line immediately below!
  13. .SH NAME
  14. loadTk - Load Tk into a safe interpreter.
  15. .SH SYNOPSIS
  16. fB::safe::loadTk fIslavefR ?fB-usefR fIwindowIdfR? ?fB-displayfR fIdisplayNamefR? 
  17. .BE
  18. Safe Tk is based on Safe Tcl, which provides a mechanism 
  19. that allows restricted and mediated
  20. access to auto-loading and packages for safe interpreters.
  21. Safe Tk adds the ability to configure the interpreter
  22. for safe Tk operations and load Tk into safe 
  23. interpreters.
  24. .SH DESCRIPTION
  25. .PP
  26. The fB::safe::loadTkfR command initializes the required data structures
  27. in the named safe interpreter and then loads Tk into it.
  28. The interpreter must have been created with fB::safe::interpCreatefR
  29. or have been initialized with fB::safe::interpInitfR.
  30. The command returns the name of the safe interpreter.
  31. If fB-usefR is specified, the window identified by the specified system
  32. dependent identifier fIwindowIdfR is used to contain the ``.''
  33. window of the safe interpreter; it can be any valid id, eventually 
  34. referencing a window belonging to another application. As a convenience,
  35. if the window you plan to use is a Tk Window of the application you
  36. can use the window name (e.g. fB.x.yfR) instead of its window Id 
  37. (fB[winfo id .x.y]fR).
  38. When fB-usefR is not specified,
  39. a new toplevel window is created for the ``.'' window of
  40. the safe interpreter. On X11 if you want the embedded window
  41. to use another display than the default one, specify it with
  42. fB-displayfR.
  43. See the fBSECURITY ISSUESfR section below for implementation details.
  44. .SH "SECURITY ISSUES"
  45. .PP
  46. Please read the fBsafefR manual page for Tcl to learn about the basic
  47. security considerations for Safe Tcl.
  48. .PP
  49. fB::safe::loadTkfR adds the value of fBtk_libraryfR taken from the master
  50. interpreter to the virtual access path of the safe interpreter so that
  51. auto-loading will work in the safe interpreter.
  52. .PP
  53. .PP
  54. Tk initialization is now safe with respect to not trusting
  55. the slave's state for startup. fB::safe::loadTkfR
  56. registers the slave's name so
  57. when the Tk initialization (fBTk_SafeInitfR) is called
  58. and in turn calls the master's fB::safe::InitTkfR it will
  59. return the desired fBargvfR equivalent (fB-usefR 
  60. fIwindowIdfR, correct fB-displayfR, etc.)
  61. .PP
  62. When fB-usefR is not used, the new toplevel created is specially
  63. decorated so the user is always aware that the user interface presented comes
  64. from a potentially unsafe code and can easily delete the corresponding
  65. interpreter.
  66. .PP
  67. On X11, conflicting fB-usefR and fB-displayfR are likely
  68. to generate a fatal X error.
  69. .SH "SEE ALSO"
  70. safe(n), interp(n), library(n), load(n), package(n), source(n), unknown(n)
  71.  
  72. .SH KEYWORDS
  73. alias, auto-loading, auto_mkindex, load, master interpreter, safe
  74. interpreter, slave interpreter, source
  75. '" Local Variables:
  76. '" mode: nroff
  77. '" End: