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

通讯编程

开发平台:

Visual C++

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