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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990-1994 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '" Copyright (c) 1998-2000 Scriptics Corporation.
  5. '"
  6. '" See the file "license.terms" for information on usage and redistribution
  7. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  8. '" 
  9. '" RCS: @(#) $Id: entry.n,v 1.11.2.1 2004/10/28 10:19:29 dkf Exp $
  10. '" 
  11. .so man.macros
  12. .TH entry n 8.3 Tk "Tk Built-In Commands"
  13. .BS
  14. '" Note:  do not modify the .SH NAME line immediately below!
  15. .SH NAME
  16. entry - Create and manipulate entry widgets
  17. .SH SYNOPSIS
  18. fBentryfR fIpathName fR?fIoptionsfR?
  19. .SO
  20. -background -highlightthickness -selectbackground
  21. -borderwidth -insertbackground -selectborderwidth
  22. -cursor -insertborderwidth -selectforeground
  23. -exportselection -insertofftime -takefocus
  24. -font -insertontime -textvariable
  25. -foreground -insertwidth -xscrollcommand
  26. -highlightbackground -justify
  27. -highlightcolor -relief
  28. .SE
  29. .SH "WIDGET-SPECIFIC OPTIONS"
  30. .VS 8.4
  31. .OP -disabledbackground disabledBackground DisabledBackground
  32. Specifies the background color to use when the entry is disabled.  If
  33. this option is the empty string, the normal background color is used.
  34. .OP -disabledforeground disabledForeground DisabledForeground
  35. Specifies the foreground color to use when the entry is disabled.  If
  36. this option is the empty string, the normal foreground color is used.
  37. .VE 8.4
  38. .VS 8.3
  39. .OP "-invalidcommand or -invcmd" invalidCommand InvalidCommand
  40. Specifies a script to eval when fBvalidateCommandfR returns 0.
  41. Setting it to {} disables this feature (the default).  The best use
  42. of this option is to set it to fIbellfR.  See fBValidationfR
  43. below for more information.
  44. .VE
  45. .VS 8.4
  46. .OP -readonlybackground readonlyBackground ReadonlyBackground
  47. Specifies the background color to use when the entry is readonly.  If
  48. this option is the empty string, the normal background color is used.
  49. .VE
  50. .OP -show show Show
  51. If this option is specified, then the true contents of the entry
  52. are not displayed in the window.
  53. Instead, each character in the entry's value will be displayed as
  54. the first character in the value of this option, such as ``*''.
  55. This is useful, for example, if the entry is to be used to enter
  56. a password.
  57. If characters in the entry are selected and copied elsewhere, the
  58. information copied will be what is displayed, not the true contents
  59. of the entry.
  60. .VS 8.4
  61. .OP -state state State
  62. Specifies one of three states for the entry:  fBnormalfR,
  63. fBdisabledfR, or fBreadonlyfR.  If the entry is readonly, then the
  64. value may not be changed using widget commands and no insertion cursor
  65. will be displayed, even if the input focus is in the widget; the
  66. contents of the widget may still be selected.  If the entry is
  67. disabled, the value may not be changed, no insertion cursor will be
  68. displayed, the contents will not be selectable, and the entry may
  69. be displayed in a different color, depending on the values of the
  70. fB-disabledforegroundfR and fB-disabledbackgroundfR options.
  71. .VE 8.4
  72. .VS 8.3
  73. .OP -validate validate Validate
  74. Specifies the mode in which validation should operate: fBnonefR,
  75. fBfocusfR, fBfocusinfR, fBfocusoutfR, fBkeyfR, or fBallfR.
  76. It defaults to fBnonefR.  When you want validation, you must explicitly
  77. state which mode you wish to use.  See fBValidationfR below for more.
  78. .OP "-validatecommand or -vcmd" validateCommand ValidateCommand
  79. Specifies a script to eval when you want to validate the input into
  80. the entry widget.  Setting it to {} disables this feature (the default).
  81. This command must return a valid Tcl boolean value.  If it returns 0 (or
  82. the valid Tcl boolean equivalent) then it means you reject the new edition
  83. and it will not occur and the fBinvalidCommandfR will be evaluated if it
  84. is set. If it returns 1, then the new edition occurs.
  85. See fBValidationfR below for more information.
  86. .VE
  87. .OP -width width Width
  88. Specifies an integer value indicating the desired width of the entry window,
  89. in average-size characters of the widget's font.
  90. If the value is less than or equal to zero, the widget picks a
  91. size just large enough to hold its current text.
  92. .BE
  93. .SH DESCRIPTION
  94. .PP
  95. The fBentryfR command creates a new window (given by the
  96. fIpathNamefR argument) and makes it into an entry widget.
  97. Additional options, described above, may be specified on the
  98. command line or in the option database
  99. to configure aspects of the entry such as its colors, font,
  100. and relief.  The fBentryfR command returns its
  101. fIpathNamefR argument.  At the time this command is invoked,
  102. there must not exist a window named fIpathNamefR, but
  103. fIpathNamefR's parent must exist.
  104. .PP
  105. An entry is a widget that displays a one-line text string and
  106. allows that string to be edited using widget commands described below, which
  107. are typically bound to keystrokes and mouse actions.
  108. When first created, an entry's string is empty.
  109. A portion of the entry may be selected as described below.
  110. If an entry is exporting its selection (see the fBexportSelectionfR
  111. option), then it will observe the standard X11 protocols for handling the
  112. selection;  entry selections are available as type fBSTRINGfR.
  113. Entries also observe the standard Tk rules for dealing with the
  114. input focus.  When an entry has the input focus it displays an
  115. fIinsertion cursorfR to indicate where new characters will be
  116. inserted.
  117. .PP
  118. Entries are capable of displaying strings that are too long to
  119. fit entirely within the widget's window.  In this case, only a
  120. portion of the string will be displayed;  commands described below
  121. may be used to change the view in the window.  Entries use
  122. the standard fBxScrollCommandfR mechanism for interacting with
  123. scrollbars (see the description of the fBxScrollCommandfR option
  124. for details).  They also support scanning, as described below.
  125. .SH VALIDATION
  126. .VS 8.3
  127. .PP
  128. Validation works by setting the fBvalidateCommandfR
  129. option to a script which will be evaluated according to the fBvalidatefR
  130. option as follows:
  131. .PP
  132. .IP fBnonefR 10
  133. Default.  This means no validation will occur.
  134. .IP fBfocusfR 10
  135. fBvalidateCommandfR will be called when the entry receives or
  136. loses focus.
  137. .IP fBfocusinfR 10
  138. fBvalidateCommandfR will be called when the entry receives focus.
  139. .IP fBfocusoutfR 10
  140. fBvalidateCommandfR will be called when the entry loses focus.
  141. .IP fBkeyfR 10
  142. fBvalidateCommandfR will be called when the entry is edited.
  143. .IP fBallfR 10
  144. fBvalidateCommandfR will be called for all above conditions.
  145. .PP
  146. It is possible to perform percent substitutions on the fBvalidateCommandfR
  147. and fBinvalidCommandfR,
  148. just as you would in a fBbindfR script.  The following substitutions
  149. are recognized:
  150. .PP
  151. .IP fB%dfR 5
  152. Type of action: 1 for fBinsertfR, 0 for fBdeletefR,
  153. or -1 for focus, forced or textvariable validation.
  154. .IP fB%ifR 5
  155. Index of char string to be inserted/deleted, if any, otherwise -1.
  156. .IP fB%PfR 5
  157. The value of the entry if the edit is allowed.  If you are configuring the
  158. entry widget to have a new textvariable, this will be the value of that
  159. textvariable.
  160. .IP fB%sfR 5
  161. The current value of entry prior to editing.
  162. .IP fB%SfR 5
  163. The text string being inserted/deleted, if any, {} otherwise.
  164. .IP fB%vfR 5
  165. The type of validation currently set.
  166. .IP fB%VfR 5
  167. The type of validation that triggered the callback
  168. (key, focusin, focusout, forced).
  169. .IP fB%WfR 5
  170. The name of the entry widget.
  171. .PP
  172. In general, the fBtextVariablefR and fBvalidateCommandfR can be
  173. dangerous to mix.  Any problems have been overcome so that using the
  174. fBvalidateCommandfR will not interfere with the traditional behavior of
  175. the entry widget.  Using the fBtextVariablefR for read-only purposes will
  176. never cause problems.  The danger comes when you try set the
  177. fBtextVariablefR to something that the fBvalidateCommandfR would not
  178. accept, which causes fBvalidatefR to become fInonefR (the
  179. fBinvalidCommandfR will not be triggered).  The same happens
  180. when an error occurs evaluating the fBvalidateCommandfR.
  181. .PP
  182. Primarily, an error will occur when the fBvalidateCommandfR or
  183. fBinvalidCommandfR encounters an error in its script while evaluating or
  184. fBvalidateCommandfR does not return a valid Tcl boolean value.  The
  185. fBvalidatefR option will also set itself to fBnonefR when you edit the
  186. entry widget from within either the fBvalidateCommandfR or the
  187. fBinvalidCommandfR.  Such editions will override the one that was being
  188. validated.  If you wish to edit the entry widget (for example set it to {})
  189. during validation and still have the fBvalidatefR option set, you should
  190. include the command
  191. .CS
  192. after idle {%W config -validate %v}
  193. .CE
  194. in the fBvalidateCommandfR or fBinvalidCommandfR (whichever one you
  195. were editing the entry widget from).  It is also recommended to not set an
  196. associated fBtextVariablefR during validation, as that can cause the
  197. entry widget to become out of sync with the fBtextVariablefR.
  198. .VE
  199. .SH "WIDGET COMMAND"
  200. .PP
  201. The fBentryfR command creates a new Tcl command whose
  202. name is fIpathNamefR.  This command may be used to invoke various
  203. operations on the widget.  It has the following general form:
  204. .CS
  205. fIpathName option fR?fIarg arg ...fR?
  206. .CE
  207. fIOptionfR and the fIargfRs
  208. determine the exact behavior of the command.
  209. .PP
  210. Many of the widget commands for entries take one or more indices as
  211. arguments.  An index specifies a particular character in the entry's
  212. string, in any of the following ways:
  213. .TP 12
  214. fInumberfR
  215. Specifies the character as a numerical index, where 0 corresponds
  216. to the first character in the string.
  217. .TP 12
  218. fBanchorfR
  219. Indicates the anchor point for the selection, which is set with the
  220. fBselect fromfR and fBselect adjustfR widget commands.
  221. .TP 12
  222. fBendfR
  223. Indicates the character just after the last one in the entry's string.
  224. This is equivalent to specifying a numerical index equal to the length
  225. of the entry's string.
  226. .TP 12
  227. fBinsertfR
  228. Indicates the character adjacent to and immediately following the
  229. insertion cursor.
  230. .TP 12
  231. fBsel.firstfR
  232. Indicates the first character in the selection.  It is an error to
  233. use this form if the selection isn't in the entry window.
  234. .TP 12
  235. fBsel.lastfR
  236. Indicates the character just after the last one in the selection.
  237. It is an error to use this form if the selection isn't in the
  238. entry window.
  239. .TP 12
  240. fB@fInumberfR
  241. In this form, fInumberfR is treated as an x-coordinate in the
  242. entry's window;  the character spanning that x-coordinate is used.
  243. For example, ``fB@0fR'' indicates the left-most character in the
  244. window.
  245. .LP
  246. Abbreviations may be used for any of the forms above, e.g. ``fBefR''
  247. or ``fBsel.ffR''.  In general, out-of-range indices are automatically
  248. rounded to the nearest legal value.
  249. .PP
  250. The following commands are possible for entry widgets:
  251. .TP
  252. fIpathName fBbbox fIindexfR
  253. Returns a list of four numbers describing the bounding box of the
  254. character given by fIindexfR.
  255. The first two elements of the list give the x and y coordinates of
  256. the upper-left corner of the screen area covered by the character
  257. (in pixels relative to the widget) and the last two elements give
  258. the width and height of the character, in pixels.
  259. The bounding box may refer to a region outside the visible area
  260. of the window.
  261. .TP
  262. fIpathName fBcgetfR fIoptionfR
  263. Returns the current value of the configuration option given
  264. by fIoptionfR.
  265. fIOptionfR may have any of the values accepted by the fBentryfR
  266. command.
  267. .TP
  268. fIpathName fBconfigurefR ?fIoptionfR? ?fIvalue option value ...fR?
  269. Query or modify the configuration options of the widget.
  270. If no fIoptionfR is specified, returns a list describing all of
  271. the available options for fIpathNamefR (see fBTk_ConfigureInfofR for
  272. information on the format of this list).  If fIoptionfR is specified
  273. with no fIvaluefR, then the command returns a list describing the
  274. one named option (this list will be identical to the corresponding
  275. sublist of the value returned if no fIoptionfR is specified).  If
  276. one or more fIoption-valuefR pairs are specified, then the command
  277. modifies the given widget option(s) to have the given value(s);  in
  278. this case the command returns an empty string.
  279. fIOptionfR may have any of the values accepted by the fBentryfR
  280. command.
  281. .TP
  282. fIpathName fBdelete fIfirst fR?fIlastfR?
  283. Delete one or more elements of the entry.
  284. fIFirstfR is the index of the first character to delete, and
  285. fIlastfR is the index of the character just after the last
  286. one to delete.
  287. If fIlastfR isn't specified it defaults to fIfirstfR+1,
  288. i.e. a single character is deleted.
  289. This command returns an empty string.
  290. .TP
  291. fIpathName fBgetfR
  292. Returns the entry's string.
  293. .TP
  294. fIpathName fBicursor fIindexfR
  295. Arrange for the insertion cursor to be displayed just before the character
  296. given by fIindexfR.  Returns an empty string.
  297. .TP
  298. fIpathName fBindexfI indexfR
  299. Returns the numerical index corresponding to fIindexfR.
  300. .TP
  301. fIpathName fBinsert fIindex stringfR
  302. Insert the characters of fIstringfR just before the character
  303. indicated by fIindexfR.  Returns an empty string.
  304. .TP
  305. fIpathName fBscanfR fIoption argsfR
  306. This command is used to implement scanning on entries.  It has
  307. two forms, depending on fIoptionfR:
  308. .RS
  309. .TP
  310. fIpathName fBscan mark fIxfR
  311. Records fIxfR and the current view in the entry window;  used in
  312. conjunction with later fBscan dragtofR commands.  Typically this
  313. command is associated with a mouse button press in the widget.  It
  314. returns an empty string.
  315. .TP
  316. fIpathName fBscan dragto fIxfR
  317. This command computes the difference between its fIxfR argument
  318. and the fIxfR argument to the last fBscan markfR command for
  319. the widget.  It then adjusts the view left or right by 10 times the
  320. difference in x-coordinates.  This command is typically associated
  321. with mouse motion events in the widget, to produce the effect of
  322. dragging the entry at high speed through the window.  The return
  323. value is an empty string.
  324. .RE
  325. .TP
  326. fIpathName fBselection fIoption argfR
  327. This command is used to adjust the selection within an entry.  It
  328. has several forms, depending on fIoptionfR:
  329. .RS
  330. .TP
  331. fIpathName fBselection adjust fIindexfR
  332. Locate the end of the selection nearest to the character given by
  333. fIindexfR, and adjust that end of the selection to be at fIindexfR
  334. (i.e. including but not going beyond fIindexfR).  The other
  335. end of the selection is made the anchor point for future
  336. fBselect tofR commands.  If the selection
  337. isn't currently in the entry, then a new selection is created to
  338. include the characters between fIindexfR and the most recent
  339. selection anchor point, inclusive.
  340. Returns an empty string.
  341. .TP
  342. fIpathName fBselection clearfR
  343. Clear the selection if it is currently in this widget.  If the
  344. selection isn't in this widget then the command has no effect.
  345. Returns an empty string.
  346. .TP
  347. fIpathName fBselection from fIindexfR
  348. Set the selection anchor point to just before the character
  349. given by fIindexfR.  Doesn't change the selection.
  350. Returns an empty string.
  351. .TP
  352. fIpathName fBselection presentfR
  353. Returns 1 if there is are characters selected in the entry,
  354. 0 if nothing is selected.
  355. .TP
  356. fIpathName fBselection range fIstartfR fIendfR
  357. Sets the selection to include the characters starting with
  358. the one indexed by fIstartfR and ending with the one just
  359. before fIendfR.
  360. If fIendfR refers to the same character as fIstartfR or an
  361. earlier one, then the entry's selection is cleared.
  362. .TP
  363. fIpathName fBselection to fIindexfR
  364. If fIindexfR is before the anchor point, set the selection
  365. to the characters from fIindexfR up to but not including
  366. the anchor point.
  367. If fIindexfR is the same as the anchor point, do nothing.
  368. If fIindexfR is after the anchor point, set the selection
  369. to the characters from the anchor point up to but not including
  370. fIindexfR.
  371. The anchor point is determined by the most recent fBselect fromfR
  372. or fBselect adjustfR command in this widget.
  373. If the selection isn't in this widget then a new selection is
  374. created using the most recent anchor point specified for the widget.
  375. Returns an empty string.
  376. .RE
  377. .VS 8.3
  378. .TP
  379. fIpathName fBvalidatefR
  380. This command is used to force an evaluation of the fBvalidateCommandfR
  381. independent of the conditions specified by the fBvalidatefR option.
  382. This is done by temporarily setting the fBvalidatefR option to fBallfR.
  383. It returns 0 or 1.
  384. .VE
  385. .TP
  386. fIpathName fBxview fIargsfR
  387. This command is used to query and change the horizontal position of the
  388. text in the widget's window.  It can take any of the following
  389. forms:
  390. .RS
  391. .TP
  392. fIpathName fBxviewfR
  393. Returns a list containing two elements.
  394. Each element is a real fraction between 0 and 1;  together they describe
  395. the horizontal span that is visible in the window.
  396. For example, if the first element is .2 and the second element is .6,
  397. 20% of the entry's text is off-screen to the left, the middle 40% is visible
  398. in the window, and 40% of the text is off-screen to the right.
  399. These are the same values passed to scrollbars via the fB-xscrollcommandfR
  400. option.
  401. .TP
  402. fIpathName fBxviewfR fIindexfR
  403. Adjusts the view in the window so that the character given by fIindexfR
  404. is displayed at the left edge of the window.
  405. .TP
  406. fIpathName fBxview movetofI fractionfR
  407. Adjusts the view in the window so that the character fIfractionfR of the
  408. way through the text appears at the left edge of the window.
  409. fIFractionfR must be a fraction between 0 and 1.
  410. .TP
  411. fIpathName fBxview scroll fInumber whatfR
  412. This command shifts the view in the window left or right according to
  413. fInumberfR and fIwhatfR.
  414. fINumberfR must be an integer.
  415. fIWhatfR must be either fBunitsfR or fBpagesfR or an abbreviation
  416. of one of these.
  417. If fIwhatfR is fBunitsfR, the view adjusts left or right by
  418. fInumberfR average-width characters on the display;  if it is
  419. fBpagesfR then the view adjusts by fInumberfR screenfuls.
  420. If fInumberfR is negative then characters farther to the left
  421. become visible;  if it is positive then characters farther to the right
  422. become visible.
  423. .RE
  424. .SH "DEFAULT BINDINGS"
  425. .PP
  426. Tk automatically creates class bindings for entries that give them
  427. the following default behavior.
  428. In the descriptions below, ``word'' refers to a contiguous group
  429. of letters, digits, or ``_'' characters, or any single character
  430. other than these.
  431. .IP [1]
  432. Clicking mouse button 1 positions the insertion cursor
  433. just before the character underneath the mouse cursor, sets the
  434. input focus to this widget, and clears any selection in the widget.
  435. Dragging with mouse button 1 strokes out a selection between
  436. the insertion cursor and the character under the mouse.
  437. .IP [2]
  438. Double-clicking with mouse button 1 selects the word under the mouse
  439. and positions the insertion cursor at the end of the word.
  440. Dragging after a double click will stroke out a selection consisting
  441. of whole words.
  442. .IP [3]
  443. Triple-clicking with mouse button 1 selects all of the text in the
  444. entry and positions the insertion cursor at the end of the line.
  445. .IP [4]
  446. The ends of the selection can be adjusted by dragging with mouse
  447. button 1 while the Shift key is down;  this will adjust the end
  448. of the selection that was nearest to the mouse cursor when button
  449. 1 was pressed.
  450. If the button is double-clicked before dragging then the selection
  451. will be adjusted in units of whole words.
  452. .IP [5]
  453. Clicking mouse button 1 with the Control key down will position the
  454. insertion cursor in the entry without affecting the selection.
  455. .IP [6]
  456. If any normal printing characters are typed in an entry, they are
  457. inserted at the point of the insertion cursor.
  458. .IP [7]
  459. The view in the entry can be adjusted by dragging with mouse button 2.
  460. If mouse button 2 is clicked without moving the mouse, the selection
  461. is copied into the entry at the position of the mouse cursor.
  462. .IP [8]
  463. If the mouse is dragged out of the entry on the left or right sides
  464. while button 1 is pressed, the entry will automatically scroll to
  465. make more text visible (if there is more text off-screen on the side
  466. where the mouse left the window).
  467. .IP [9]
  468. The Left and Right keys move the insertion cursor one character to the
  469. left or right;  they also clear any selection in the entry and set
  470. the selection anchor.
  471. If Left or Right is typed with the Shift key down, then the insertion
  472. cursor moves and the selection is extended to include the new character.
  473. Control-Left and Control-Right move the insertion cursor by words, and
  474. Control-Shift-Left and Control-Shift-Right move the insertion cursor
  475. by words and also extend the selection.
  476. Control-b and Control-f behave the same as Left and Right, respectively.
  477. Meta-b and Meta-f behave the same as Control-Left and Control-Right,
  478. respectively.
  479. .IP [10]
  480. The Home key, or Control-a, will move the insertion cursor to the
  481. beginning of the entry and clear any selection in the entry.
  482. Shift-Home moves the insertion cursor to the beginning of the entry
  483. and also extends the selection to that point.
  484. .IP [11]
  485. The End key, or Control-e, will move the insertion cursor to the
  486. end of the entry and clear any selection in the entry.
  487. Shift-End moves the cursor to the end and extends the selection
  488. to that point.
  489. .IP [12]
  490. The Select key and Control-Space set the selection anchor to the position
  491. of the insertion cursor.  They don't affect the current selection.
  492. Shift-Select and Control-Shift-Space adjust the selection to the
  493. current position of the insertion cursor, selecting from the anchor
  494. to the insertion cursor if there was not any selection previously.
  495. .IP [13]
  496. Control-/ selects all the text in the entry.
  497. .IP [14]
  498. Control-e clears any selection in the entry.
  499. .IP [15]
  500. The F16 key (labelled Copy on many Sun workstations) or Meta-w
  501. copies the selection in the widget to the clipboard, if there is a selection.
  502. .IP [16]
  503. The F20 key (labelled Cut on many Sun workstations) or Control-w
  504. copies the selection in the widget to the clipboard and deletes
  505. the selection.
  506. If there is no selection in the widget then these keys have no effect.
  507. .IP [17]
  508. The F18 key (labelled Paste on many Sun workstations) or Control-y
  509. inserts the contents of the clipboard at the position of the
  510. insertion cursor.
  511. .IP [18]
  512. The Delete key deletes the selection, if there is one in the entry.
  513. If there is no selection, it deletes the character to the right of
  514. the insertion cursor.
  515. .IP [19]
  516. The BackSpace key and Control-h delete the selection, if there is one
  517. in the entry.
  518. If there is no selection, it deletes the character to the left of
  519. the insertion cursor.
  520. .IP [20]
  521. Control-d deletes the character to the right of the insertion cursor.
  522. .IP [21]
  523. Meta-d deletes the word to the right of the insertion cursor.
  524. .IP [22]
  525. Control-k deletes all the characters to the right of the insertion
  526. cursor.
  527. .IP [23]
  528. Control-t reverses the order of the two characters to the right of
  529. the insertion cursor.
  530. .PP
  531. If the entry is disabled using the fB-statefR option, then the entry's
  532. view can still be adjusted and text in the entry can still be selected,
  533. but no insertion cursor will be displayed and no text modifications will
  534. take place
  535. .VS
  536. except if the entry is linked to a variable using the fB-textvariablefR
  537. option, in which case any changes to the variable are reflected by the
  538. entry whatever the value of its fB-statefR option.
  539. .VE
  540. .PP
  541. The behavior of entries can be changed by defining new bindings for
  542. individual widgets or by redefining the class bindings.
  543. .SH KEYWORDS
  544. entry, widget