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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990-1994 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: options.n,v 1.6.8.1 2004/10/28 10:19:29 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH options n 4.4 Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. options - Standard options supported by widgets
  16. .BE
  17. .SH DESCRIPTION
  18. This manual entry describes the common configuration options supported
  19. by widgets in the Tk toolkit.  Every widget does not necessarily support
  20. every option (see the manual entries for individual widgets for a list
  21. of the standard options supported by that widget), but if a widget does
  22. support an option with one of the names listed below, then the option
  23. has exactly the effect described below.
  24. .PP
  25. In the descriptions below, ``Command-Line Name'' refers to the
  26. switch used in class commands and fBconfigurefR widget commands to
  27. set this value.  For example, if an option's command-line switch is
  28. fB-foregroundfR and there exists a widget fB.a.b.cfR, then the
  29. command
  30. .CS
  31. &fB.a.b.cconfigure-foreground blackfR
  32. .CE
  33. may be used to specify the value fBblackfR for the option in
  34. the widget fB.a.b.cfR.  Command-line switches may be abbreviated,
  35. as long as the abbreviation is unambiguous.
  36. ``Database Name'' refers to the option's name in the option database (e.g.
  37. in .Xdefaults files).  ``Database Class'' refers to the option's class value
  38. in the option database.
  39. .OP -activebackground activeBackground Foreground
  40. Specifies background color to use when drawing active elements.
  41. An element (a widget or portion of a widget) is active if the
  42. mouse cursor is positioned over the element and pressing a mouse button
  43. will cause some action to occur.
  44. If strict Motif compliance has been requested by setting the
  45. fBtk_strictMotiffR variable, this option will normally be
  46. ignored;  the normal background color will be used instead.
  47. .VS
  48. For some elements on Windows and Macintosh systems, the active color
  49. will only be used while mouse button 1 is pressed over the element.
  50. .VE
  51. .OP -activeborderwidth activeBorderWidth BorderWidth
  52. Specifies a non-negative value indicating
  53. the width of the 3-D border drawn around active elements.  See above for
  54. definition of active elements.
  55. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  56. This option is typically only available in widgets displaying more
  57. than one element at a time (e.g. menus but not buttons).
  58. .OP -activeforeground activeForeground Background
  59. Specifies foreground color to use when drawing active elements.
  60. See above for definition of active elements.
  61. .OP -anchor anchor Anchor
  62. Specifies how the information in a widget (e.g. text or a bitmap)
  63. is to be displayed in the widget.
  64. Must be one of the values fBnfR, fBnefR, fBefR, fBsefR,
  65. fBsfR, fBswfR, fBwfR, fBnwfR, or fBcenterfR.
  66. For example, fBnwfR means display the information such that its
  67. top-left corner is at the top-left corner of the widget.
  68. .OP "-background or -bg" background Background
  69. Specifies the normal background color to use when displaying the
  70. widget.
  71. .OP -bitmap bitmap Bitmap
  72. Specifies a bitmap to display in the widget, in any of the forms
  73. acceptable to fBTk_GetBitmapfR.
  74. The exact way in which the bitmap is displayed may be affected by
  75. other options such as fBanchorfR or fBjustifyfR.
  76. Typically, if this option is specified then it overrides other
  77. options that specify a textual value to display in the widget
  78. but this is controlled by the fBcompoundfR option;
  79. the fBbitmapfR option may be reset to an empty string to re-enable
  80. a text display.
  81. In widgets that support both fBbitmapfR and fBimagefR options,
  82. fBimagefR will usually override fBbitmapfR.
  83. .OP "-borderwidth or -bd" borderWidth BorderWidth
  84. Specifies a non-negative value indicating the width
  85. of the 3-D border to draw around the outside of the widget (if such a
  86. border is being drawn;  the fBrelieffR option typically determines
  87. this).  The value may also be used when drawing 3-D effects in the
  88. interior of the widget.
  89. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  90. .OP -cursor cursor Cursor
  91. Specifies the mouse cursor to be used for the widget.
  92. The value may have any of the forms acceptable to fBTk_GetCursorfR.
  93. .OP -compound compound Compound
  94. .VS 8.4
  95. Specifies if the widget should display text and bitmaps/images at the
  96. same time, and if so, where the bitmap/image should be placed relative
  97. to the text.  Must be one of the values fBnonefR, fBbottomfR,
  98. fBtopfR, fBleftfR, fBrightfR, or fBcenterfR.  For example, the
  99. (default) value fBnonefR specifies that the bitmap or image should
  100. (if defined) be displayed instead of the text, the value fBleftfR
  101. specifies that the bitmap or image should be displayed to the left of
  102. the text, and the value fBcenterfR specifies that the bitmap or
  103. image should be displayed on top of the text.
  104. .VE 8.4
  105. .OP -disabledforeground disabledForeground DisabledForeground
  106. Specifies foreground color to use when drawing a disabled element.
  107. If the option is specified as an empty string (which is typically the
  108. case on monochrome displays), disabled elements are drawn with the
  109. normal foreground color but they are dimmed by drawing them
  110. with a stippled fill pattern.
  111. .OP -exportselection exportSelection ExportSelection
  112. Specifies whether or not a selection in the widget should also be
  113. the X selection.
  114. The value may have any of the forms accepted by fBTcl_GetBooleanfR,
  115. such as fBtruefR, fBfalsefR, fB0fR, fB1fR, fByesfR, or fBnofR.
  116. If the selection is exported, then selecting in the widget deselects
  117. the current X selection, selecting outside the widget deselects any
  118. widget selection, and the widget will respond to selection retrieval
  119. requests when it has a selection.  The default is usually for widgets
  120. to export selections.
  121. .OP -font font Font
  122. Specifies the font to use when drawing text inside the widget.
  123. The value may have any of the forms accepted by fBTk_GetFontfR.
  124. .OP "-foreground or -fg" foreground Foreground
  125. Specifies the normal foreground color to use when displaying the widget.
  126. .OP -highlightbackground highlightBackground HighlightBackground
  127. Specifies the color to display in the traversal highlight region when
  128. the widget does not have the input focus.
  129. .OP -highlightcolor highlightColor HighlightColor
  130. Specifies the color to use for the traversal highlight rectangle that is
  131. drawn around the widget when it has the input focus.
  132. .OP -highlightthickness highlightThickness HighlightThickness
  133. Specifies a non-negative value indicating the width of the highlight
  134. rectangle to draw around the outside of the widget when it has the
  135. input focus.
  136. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  137. If the value is zero, no focus highlight is drawn around the widget.
  138. .OP -image image Image
  139. Specifies an image to display in the widget, which must have been
  140. created with the fBimage createfR command.
  141. Typically, if the fBimagefR option is specified then it overrides other
  142. options that specify a bitmap or textual value to display in the
  143. widget, though this is controlled by the fBcompoundfR option;
  144. the fBimagefR option may be reset to an empty string to re-enable
  145. a bitmap or text display.
  146. .OP -insertbackground insertBackground Foreground
  147. Specifies the color to use as background in the area covered by the
  148. insertion cursor.  This color will normally override either the normal
  149. background for the widget (or the selection background if the insertion
  150. cursor happens to fall in the selection).
  151. .OP -insertborderwidth insertBorderWidth BorderWidth
  152. Specifies a non-negative value indicating the width
  153. of the 3-D border to draw around the insertion cursor.
  154. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  155. .OP -insertofftime insertOffTime OffTime
  156. Specifies a non-negative integer value indicating the number of
  157. milliseconds the insertion cursor should remain ``off'' in each blink cycle.
  158. If this option is zero then the cursor doesn't blink:  it is on
  159. all the time.
  160. .OP -insertontime insertOnTime OnTime
  161. Specifies a non-negative integer value indicating the number of
  162. milliseconds the insertion cursor should remain ``on'' in each blink cycle.
  163. .OP -insertwidth insertWidth InsertWidth
  164. Specifies a  value indicating the total width of the insertion cursor.
  165. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  166. If a border has been specified for the insertion
  167. cursor (using the fBinsertBorderWidthfR option), the border
  168. will be drawn inside the width specified by the fBinsertWidthfR
  169. option.
  170. .OP -jump jump Jump
  171. For widgets with a slider that can be dragged to adjust a value,
  172. such as scrollbars, this option determines when
  173. notifications are made about changes in the value.
  174. The option's value must be a boolean of the form accepted by
  175. fBTcl_GetBooleanfR.
  176. If the value is false, updates are made continuously as the
  177. slider is dragged.
  178. If the value is true, updates are delayed until the mouse button
  179. is released to end the drag;  at that point a single notification
  180. is made (the value ``jumps'' rather than changing smoothly).
  181. .OP -justify justify Justify
  182. When there are multiple lines of text displayed in a widget, this
  183. option determines how the lines line up with each other.
  184. Must be one of fBleftfR, fBcenterfR, or fBrightfR.
  185. fBLeftfR means that the lines' left edges all line up, fBcenterfR
  186. means that the lines' centers are aligned, and fBrightfR means
  187. that the lines' right edges line up.
  188. .OP -orient orient Orient
  189. For widgets that can lay themselves out with either a horizontal
  190. or vertical orientation, such as scrollbars, this option specifies
  191. which orientation should be used.  Must be either fBhorizontalfR
  192. or fBverticalfR or an abbreviation of one of these.
  193. .OP -padx padX Pad
  194. Specifies a non-negative value indicating how much extra space
  195. to request for the widget in the X-direction.
  196. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  197. When computing how large a window it needs, the widget will
  198. add this amount to the width it would normally need (as determined
  199. by the width of the things displayed in the widget);  if the geometry
  200. manager can satisfy this request, the widget will end up with extra
  201. internal space to the left and/or right of what it displays inside.
  202. Most widgets only use this option for padding text:  if they are
  203. displaying a bitmap or image, then they usually ignore padding
  204. options.
  205. .OP -pady padY Pad
  206. Specifies a non-negative value indicating how much extra space
  207. to request for the widget in the Y-direction.
  208. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  209. When computing how large a window it needs, the widget will add
  210. this amount to the height it would normally need (as determined by
  211. the height of the things displayed in the widget);  if the geometry
  212. manager can satisfy this request, the widget will end up with extra
  213. internal space above and/or below what it displays inside.
  214. Most widgets only use this option for padding text:  if they are
  215. displaying a bitmap or image, then they usually ignore padding
  216. options.
  217. .OP -relief relief Relief
  218. Specifies the 3-D effect desired for the widget.  Acceptable
  219. values are fBraisedfR, fBsunkenfR, fBflatfR, fBridgefR,
  220. fBsolidfR, and fBgroovefR.
  221. The value
  222. indicates how the interior of the widget should appear relative
  223. to its exterior;  for example, fBraisedfR means the interior of
  224. the widget should appear to protrude from the screen, relative to
  225. the exterior of the widget.
  226. .OP -repeatdelay repeatDelay RepeatDelay
  227. Specifies the number of milliseconds a button or key must be held
  228. down before it begins to auto-repeat.  Used, for example, on the
  229. up- and down-arrows in scrollbars.
  230. .OP -repeatinterval repeatInterval RepeatInterval
  231. Used in conjunction with fBrepeatDelayfR:  once auto-repeat
  232. begins, this option determines the number of milliseconds between
  233. auto-repeats.
  234. .OP -selectbackground selectBackground Foreground
  235. Specifies the background color to use when displaying selected
  236. items.
  237. .OP -selectborderwidth selectBorderWidth BorderWidth
  238. Specifies a non-negative value indicating the width
  239. of the 3-D border to draw around selected items.
  240. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  241. .OP -selectforeground selectForeground Background
  242. Specifies the foreground color to use when displaying selected
  243. items.
  244. .OP -setgrid setGrid SetGrid
  245. Specifies a boolean value that determines whether this widget controls the
  246. resizing grid for its top-level window.
  247. This option is typically used in text widgets, where the information
  248. in the widget has a natural size (the size of a character) and it makes
  249. sense for the window's dimensions to be integral numbers of these units.
  250. These natural window sizes form a grid.
  251. If the fBsetGridfR option is set to true then the widget will
  252. communicate with the window manager so that when the user interactively
  253. resizes the top-level window that contains the widget, the dimensions of
  254. the window will be displayed to the user in grid units and the window
  255. size will be constrained to integral numbers of grid units.
  256. See the section fBGRIDDED GEOMETRY MANAGEMENTfR in the fBwmfR manual
  257. entry for more details.
  258. .OP -takefocus takeFocus TakeFocus
  259. Determines whether the window accepts the focus during keyboard
  260. traversal (e.g., Tab and Shift-Tab).
  261. Before setting the focus to a window, the traversal scripts
  262. consult the value of the fBtakeFocusfR option.
  263. A value of fB0fR means that the window should be skipped entirely
  264. during keyboard traversal. 
  265. fB1fR means that the window should receive the input
  266. focus as long as it is viewable (it and all of its ancestors are mapped).
  267. An empty value for the option means that the traversal scripts make
  268. the decision about whether or not to focus on the window:  the current
  269. algorithm is to skip the window if it is
  270. disabled, if it has no key bindings, or if it is not viewable.
  271. If the value has any other form, then the traversal scripts take
  272. the value, append the name of the window to it (with a separator space),
  273. and evaluate the resulting string as a Tcl script.
  274. The script must return fB0fR, fB1fR, or an empty string:  a 
  275. fB0fR or fB1fR value specifies whether the window will receive
  276. the input focus, and an empty string results in the default decision
  277. described above.
  278. Note: this interpretation of the option is defined entirely by
  279. the Tcl scripts that implement traversal:  the widget implementations
  280. ignore the option entirely, so you can change its meaning if you
  281. redefine the keyboard traversal scripts.
  282. .OP -text text Text
  283. Specifies a string to be displayed inside the widget.  The way in which
  284. the string is displayed depends on the particular widget and may be
  285. determined by other options, such as fBanchorfR or fBjustifyfR.
  286. .OP -textvariable textVariable Variable
  287. Specifies the name of a variable.  The value of the variable is a text
  288. string to be displayed inside the widget;  if the variable value changes
  289. then the widget will automatically update itself to reflect the new value.
  290. The way in which the string is displayed in the widget depends on the
  291. particular widget and may be determined by other options, such as
  292. fBanchorfR or fBjustifyfR.
  293. .OP -troughcolor troughColor Background
  294. Specifies the color to use for the rectangular trough areas
  295. in widgets such as scrollbars and scales.  This option is ignored for
  296. scrollbars on Windows (native widget doesn't recognize this option).
  297. .OP -underline underline Underline
  298. Specifies the integer index of a character to underline in the widget.
  299. This option is used by the default bindings to implement keyboard
  300. traversal for menu buttons and menu entries.
  301. 0 corresponds to the first character of the text displayed in the
  302. widget, 1 to the next character, and so on.
  303. .OP -wraplength wrapLength WrapLength
  304. For widgets that can perform word-wrapping, this option specifies
  305. the maximum line length.
  306. Lines that would exceed this length are wrapped onto the next line,
  307. so that no line is longer than the specified length.
  308. The value may be specified in any of the standard forms for
  309. screen distances.
  310. If this value is less than or equal to 0 then no wrapping is done:  lines
  311. will break only at newline characters in the text.
  312. .OP -xscrollcommand xScrollCommand ScrollCommand
  313. Specifies the prefix for a command used to communicate with horizontal
  314. scrollbars.
  315. When the view in the widget's window changes (or
  316. whenever anything else occurs that could change the display in a
  317. scrollbar, such as a change in the total size of the widget's
  318. contents), the widget will
  319. generate a Tcl command by concatenating the scroll command and
  320. two numbers.
  321. Each of the numbers is a fraction between 0 and 1, which indicates
  322. a position in the document.  0 indicates the beginning of the document,
  323. 1 indicates the end, .333 indicates a position one third the way through
  324. the document, and so on.
  325. The first fraction indicates the first information in the document
  326. that is visible in the window, and the second fraction indicates
  327. the information just after the last portion that is visible.
  328. The command is
  329. then passed to the Tcl interpreter for execution.  Typically the
  330. fBxScrollCommandfR option consists of the path name of a scrollbar
  331. widget followed by ``set'', e.g. ``.x.scrollbar set'':  this will cause
  332. the scrollbar to be updated whenever the view in the window changes.
  333. If this option is not specified, then no command will be executed.
  334. .OP -yscrollcommand yScrollCommand ScrollCommand
  335. Specifies the prefix for a command used to communicate with vertical
  336. scrollbars.  This option is treated in the same way as the
  337. fBxScrollCommandfR option, except that it is used for vertical
  338. scrollbars and is provided by widgets that support vertical scrolling.
  339. See the description of fBxScrollCommandfR for details
  340. on how this option is used.
  341. .SH "SEE ALSO"
  342. colors, cursors, font
  343. .SH KEYWORDS
  344. class, name, standard option, switch