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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1992 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: tk.n,v 1.7.2.1 2007/11/05 17:21:59 dgp Exp $
  9. '" 
  10. .so man.macros
  11. .TH tk n 8.4 Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. tk - Manipulate Tk internal state
  16. .SH SYNOPSIS
  17. fBtkfR fIoption fR?fIarg arg ...fR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. The fBtkfR command provides access to miscellaneous
  22. elements of Tk's internal state.
  23. Most of the information manipulated by this command pertains to the
  24. application as a whole, or to a screen or display, rather than to a
  25. particular window.
  26. The command can take any of a number of different forms
  27. depending on the fIoptionfR argument.  The legal forms are:
  28. .TP
  29. fBtk appname fR?fInewNamefR?
  30. If fInewNamefR isn't specified, this command returns the name
  31. of the application (the name that may be used in fBsendfR
  32. commands to communicate with the application).
  33. If fInewNamefR is specified, then the name of the application
  34. is changed to fInewNamefR.
  35. If the given name is already in use, then a suffix of the form
  36. ``fB #2fR'' or ``fB #3fR'' is appended in order to make the name unique.
  37. The command's result is the name actually chosen.
  38. fInewNamefR should not start with a capital letter.
  39. This will interfere with option processing, since names starting with
  40. capitals are assumed to be classes;  as a result, Tk may not
  41. be able to find some options for the application.
  42. If sends have been disabled by deleting the fBsendfR command,
  43. this command will reenable them and recreate the fBsendfR
  44. command.
  45. .VS 8.4
  46. .TP
  47. fBtk caret window fR?fB-x fIxfR? ?fB-y fIyfR? ?fB-height fIheightfR?
  48. .
  49. Sets and queries the caret location for the display of the specified
  50. Tk window fIwindowfR.  The caret is the per-display cursor location
  51. used for indicating global focus (e.g. to comply with Microsoft
  52. Accessibility guidelines), as well as for location of the over-the-spot
  53. XIM (X Input Methods) or Windows IME windows.  If no options are specified,
  54. the last values used for setting the caret are return in option-value pair
  55. format.  fI-xfR and fI-yfR represent window-relative coordinates, and
  56. fI-heightfR is the height of the current cursor location, or the height
  57. of the specified fIwindowfR if none is given.
  58. .VE
  59. .TP
  60. fBtk scaling fR?fB-displayof fIwindowfR? ?fInumberfR?
  61. .
  62. Sets and queries the current scaling factor used by Tk to convert between
  63. physical units (for example, points, inches, or millimeters) and pixels.  The
  64. fInumberfR argument is a floating point number that specifies the number of
  65. pixels per point on fIwindowfR's display.  If the fIwindowfR argument is
  66. omitted, it defaults to the main window.  If the fInumberfR argument is 
  67. omitted, the current value of the scaling factor is returned.
  68. .RS
  69. .PP
  70. A ``point'' is a unit of measurement equal to 1/72 inch.  A scaling factor
  71. of 1.0 corresponds to 1 pixel per point, which is equivalent to a standard
  72. 72 dpi monitor.  A scaling factor of 1.25 would mean 1.25 pixels per point,
  73. which is the setting for a 90 dpi monitor; setting the scaling factor to
  74. 1.25 on a 72 dpi monitor would cause everything in the application to be
  75. displayed 1.25 times as large as normal.  The initial value for the scaling
  76. factor is set when the application starts, based on properties of the
  77. installed monitor, but it can be changed at any time.  Measurements made
  78. after the scaling factor is changed will use the new scaling factor, but it
  79. is undefined whether existing widgets will resize themselves dynamically to
  80. accommodate the new scaling factor.
  81. .RE
  82. .VS 8.3
  83. .TP
  84. fBtk useinputmethods fR?fB-displayof fIwindowfR? ?fIbooleanfR?
  85. .
  86. Sets and queries the state of whether Tk should use XIM (X Input Methods)
  87. for filtering events.  The resulting state is returned.  XIM is used in
  88. some locales (ie: Japanese, Korean), to handle special input devices.  This
  89. feature is only significant on X.  If XIM support is not available, this
  90. will always return 0.  If the fIwindowfR argument is omitted, it defaults
  91. to the main window.  If the fIbooleanfR argument is omitted, the current
  92. state is returned.  This is turned on by default for the main display.
  93. .VE
  94. .VS 8.4
  95. .TP
  96. fBtk windowingsystemfR
  97. .
  98. Returns the current Tk windowing system, one of
  99. fBx11fR (X11-based), fBwin32fR (MS Windows),
  100. fBclassicfR (Mac OS Classic), or fBaquafR (Mac OS X Aqua).
  101. .VE
  102. .SH KEYWORDS
  103. application name, send