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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990 The Regents of the University of California.
  3. '" Copyright (c) 1994-1997 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: listbox.n,v 1.9.2.1 2004/10/28 10:19:29 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH listbox 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. listbox - Create and manipulate listbox widgets
  16. .SH SYNOPSIS
  17. fBlistboxfR fIpathName fR?fIoptionsfR?
  18. .SO
  19. -activestyle -height -selectforeground
  20. -background -highlightbackground -setgrid
  21. -borderwidth -highlightcolor -state
  22. -cursor -highlightthickness -takefocus
  23. -disabledforeground -relief -width
  24. -exportselection -selectbackground -xscrollcommand
  25. -font -selectborderwidth -yscrollcommand
  26. -foreground
  27. .SE
  28. .SH "WIDGET-SPECIFIC OPTIONS"
  29. .VS 8.4
  30. .OP -activestyle activeStyle ActiveStyle
  31. Specifies the style in which to draw the active element.  This must be
  32. one of fBdotboxfR (show a focus ring around the active element),
  33. fBnonefR (no special indication of active element) or
  34. fBunderlinefR (underline the active element).
  35. The default is fBunderlinefR.
  36. .VS 8.4
  37. .OP -height height Height
  38. Specifies the desired height for the window, in lines.
  39. If zero or less, then the desired height for the window is made just
  40. large enough to hold all the elements in the listbox.
  41. .OP -listvariable listVariable Variable
  42. Specifies the name of a variable.  The value of the variable is a list to
  43. be displayed inside the widget; if the variable value changes then the
  44. widget will automatically update itself to reflect the new value.  Attempts
  45. to assign a variable with an invalid list value to fB-listvariablefR
  46. will cause an error.  Attempts to unset a variable in use as a
  47. fB-listvariablefR will fail but will not generate an error.
  48. .OP -selectmode selectMode SelectMode
  49. Specifies one of several styles for manipulating the selection.
  50. The value of the option may be arbitrary, but the default bindings
  51. expect it to be either fBsinglefR, fBbrowsefR, fBmultiplefR,
  52. or fBextendedfR;  the default value is fBbrowsefR.
  53. .OP -state state State
  54. Specifies one of two states for the listbox:  fBnormalfR or fBdisabledfR.
  55. If the listbox is disabled then items may not be inserted or deleted,
  56. items are drawn in the fB-disabledforegroundfR color, and selection
  57. cannot be modified and is not shown (though selection information is retained).
  58. .OP -width width Width
  59. Specifies the desired width for the window in characters.
  60. If the font doesn't have a uniform width then the width of the
  61. character ``0'' is used in translating from character units to
  62. screen units.
  63. If zero or less, then the desired width for the window is made just
  64. large enough to hold all the elements in the listbox.
  65. .BE
  66. .SH DESCRIPTION
  67. .PP
  68. The fBlistboxfR command creates a new window (given by the
  69. fIpathNamefR argument) and makes it into a listbox widget.
  70. Additional
  71. options, described above, may be specified on the command line
  72. or in the option database
  73. to configure aspects of the listbox such as its colors, font,
  74. text, and relief.  The fBlistboxfR command returns its
  75. fIpathNamefR argument.  At the time this command is invoked,
  76. there must not exist a window named fIpathNamefR, but
  77. fIpathNamefR's parent must exist.
  78. .PP
  79. A listbox is a widget that displays a list of strings, one per line.
  80. When first created, a new listbox has no elements.
  81. Elements may be added or deleted using widget commands described
  82. below.  In addition, one or more elements may be selected as described
  83. below.
  84. If a listbox is exporting its selection (see fBexportSelectionfR
  85. option), then it will observe the standard X11 protocols
  86. for handling the selection.
  87. Listbox selections are available as type fBSTRINGfR;
  88. the value of the selection will be the text of the selected elements, with
  89. newlines separating the elements.
  90. .PP
  91. It is not necessary for all the elements to be
  92. displayed in the listbox window at once;  commands described below
  93. may be used to change the view in the window.  Listboxes allow
  94. scrolling in both directions using the standard fBxScrollCommandfR
  95. and fByScrollCommandfR options.
  96. They also support scanning, as described below.
  97. .SH "INDICES"
  98. .PP
  99. Many of the widget commands for listboxes take one or more indices
  100. as arguments.
  101. An index specifies a particular element of the listbox, in any of
  102. the following ways:
  103. .TP 12
  104. fInumberfR
  105. Specifies the element as a numerical index, where 0 corresponds
  106. to the first element in the listbox.
  107. .TP 12
  108. fBactivefR
  109. Indicates the element that has the location cursor.  This element
  110. will be displayed as specified by fB-activestylefR when the listbox
  111. has the keyboard focus, and it is specified with the fBactivatefR
  112. widget command.
  113. .TP 12
  114. fBanchorfR
  115. Indicates the anchor point for the selection, which is set with the
  116. fBselection anchorfR widget command.
  117. .TP 12
  118. fBendfR
  119. Indicates the end of the listbox.
  120. .VS 8.0
  121. For most commands this refers to the last element in the listbox,
  122. but for a few commands such as fBindexfR and fBinsertfR
  123. it refers to the element just after the last one.
  124. .VE
  125. .TP 12
  126. fB@fIxfB,fIyfR
  127. Indicates the element that covers the point in the listbox window
  128. specified by fIxfR and fIyfR (in pixel coordinates).  If no
  129. element covers that point, then the closest element to that
  130. point is used.
  131. .LP
  132. In the widget command descriptions below, arguments named fIindexfR,
  133. fIfirstfR, and fIlastfR always contain text indices in one of
  134. the above forms.
  135. .SH "WIDGET COMMAND"
  136. .PP
  137. The fBlistboxfR command creates a new Tcl command whose
  138. name is fIpathNamefR.  This
  139. command may be used to invoke various
  140. operations on the widget.  It has the following general form:
  141. .CS
  142. fIpathName option fR?fIarg arg ...fR?
  143. .CE
  144. fIOptionfR and the fIargfRs
  145. determine the exact behavior of the command.  The following
  146. commands are possible for listbox widgets:
  147. .TP
  148. fIpathName fBactivatefR fIindexfR
  149. Sets the active element to the one indicated by fIindexfR.
  150. .VS 8.0
  151. If fIindexfR is outside the range of elements in the listbox
  152. then the closest element is activated.
  153. .VE
  154. The active element is drawn as specified by fB-activestylefR when the
  155. widget has the input focus, and its index may be retrieved with the
  156. index fBactivefR.
  157. .TP
  158. fIpathName fBbboxfR fIindexfR
  159. Returns a list of four numbers describing the bounding box of
  160. the text in the element given by fIindexfR.
  161. The first two elements of the list give the x and y coordinates
  162. of the upper-left corner of the screen area covered by the text
  163. (specified in pixels relative to the widget) and the last two
  164. elements give the width and height of the area, in pixels.
  165. If no part of the element given by fIindexfR is visible on the
  166. screen,
  167. .VS 8.0
  168. or if fIindexfR refers to a non-existent element,
  169. .VE
  170. then the result is an empty string;  if the element is
  171. partially visible, the result gives the full area of the element,
  172. including any parts that are not visible.
  173. .TP
  174. fIpathName fBcgetfR fIoptionfR
  175. Returns the current value of the configuration option given
  176. by fIoptionfR.
  177. fIOptionfR may have any of the values accepted by the fBlistboxfR
  178. command.
  179. .TP
  180. fIpathName fBconfigurefR ?fIoptionfR? ?fIvalue option value ...fR?
  181. Query or modify the configuration options of the widget.
  182. If no fIoptionfR is specified, returns a list describing all of
  183. the available options for fIpathNamefR (see fBTk_ConfigureInfofR for
  184. information on the format of this list).  If fIoptionfR is specified
  185. with no fIvaluefR, then the command returns a list describing the
  186. one named option (this list will be identical to the corresponding
  187. sublist of the value returned if no fIoptionfR is specified).  If
  188. one or more fIoption-valuefR pairs are specified, then the command
  189. modifies the given widget option(s) to have the given value(s);  in
  190. this case the command returns an empty string.
  191. fIOptionfR may have any of the values accepted by the fBlistboxfR
  192. command.
  193. .TP
  194. fIpathName fBcurselectionfR
  195. Returns a list containing the numerical indices of
  196. all of the elements in the listbox that are currently selected.
  197. If there are no elements selected in the listbox then an empty
  198. string is returned.
  199. .TP
  200. fIpathName fBdelete fIfirst fR?fIlastfR?
  201. Deletes one or more elements of the listbox.  fIFirstfR and fIlastfR
  202. are indices specifying the first and last elements in the range
  203. to delete.  If fIlastfR isn't specified it defaults to
  204. fIfirstfR, i.e. a single element is deleted.
  205. .TP
  206. fIpathName fBget fIfirstfR ?fIlastfR?
  207. If fIlastfR is omitted, returns the contents of the listbox
  208. element indicated by fIfirstfR,
  209. .VS 8.0
  210. or an empty string if fIfirstfR refers to a non-existent element.
  211. .VE
  212. If fIlastfR is specified, the command returns a list whose elements
  213. are all of the listbox elements between fIfirstfR and fIlastfR,
  214. inclusive.
  215. Both fIfirstfR and fIlastfR may have any of the standard
  216. forms for indices.
  217. .TP
  218. fIpathName fBindex fIindexfR
  219. Returns the integer index value that corresponds to fIindexfR.
  220. .VS 8.0
  221. If fIindexfR is fBendfR the return value is a count of the number
  222. of elements in the listbox (not the index of the last element).
  223. .VE
  224. .TP
  225. fIpathName fBinsert fIindex fR?fIelement element ...fR?
  226. Inserts zero or more new elements in the list just before the
  227. element given by fIindexfR.  If fIindexfR is specified as
  228. fBendfR then the new elements are added to the end of the
  229. list.  Returns an empty string.
  230. .TP
  231. fIpathName fBitemcget fIindex optionfR
  232. Returns the current value of the item configuration option given
  233. by fIoptionfR. fIOptionfR may have any of the values accepted 
  234. by the fBlistbox itemconfigurefR command.
  235. .TP
  236. fIpathName fBitemconfigure fIindexfR ?fIoptionfR? ?fIvaluefR? ?fIoption value ...fR?
  237. Query or modify the configuration options of an item in the listbox.
  238. If no fIoptionfR is specified, returns a list describing all of
  239. the available options for the item (see fBTk_ConfigureInfofR for
  240. information on the format of this list).  If fIoptionfR is specified
  241. with no fIvaluefR, then the command returns a list describing the
  242. one named option (this list will be identical to the corresponding
  243. sublist of the value returned if no fIoptionfR is specified).  If
  244. one or more fIoption-valuefR pairs are specified, then the command
  245. modifies the given widget option(s) to have the given value(s);  in
  246. this case the command returns an empty string. The following options
  247. are currently supported for items:
  248. .RS
  249. .TP
  250. fB-background fIcolorfR
  251. fIColorfR specifies the background color to use when displaying the 
  252. item. It may have any of the forms accepted by fBTk_GetColorfR.
  253. .TP
  254. fB-foreground fIcolorfR
  255. fIColorfR specifies the foreground color to use when displaying the
  256. item. It may have any of the forms accepted by fBTk_GetColorfR.
  257. .TP
  258. fB-selectbackground fIcolorfR
  259. fIcolorfR specifies the background color to use when displaying the
  260. item while it is selected. It may have any of the forms accepted by
  261. fBTk_GetColorfR.
  262. .TP
  263. fB-selectforeground fIcolorfR
  264. fIcolorfR specifies the foreground color to use when displaying the
  265. item while it is selected. It may have any of the forms accepted by
  266. fBTk_GetColorfR.
  267. .RE
  268. .TP
  269. fIpathName fBnearest fIyfR
  270. Given a y-coordinate within the listbox window, this command returns
  271. the index of the (visible) listbox element nearest to that y-coordinate.
  272. .TP
  273. fIpathName fBscanfR fIoption argsfR
  274. This command is used to implement scanning on listboxes.  It has
  275. two forms, depending on fIoptionfR:
  276. .RS
  277. .TP
  278. fIpathName fBscan mark fIx yfR
  279. Records fIxfR and fIyfR and the current view in the listbox
  280. window;  used in conjunction with later fBscan dragtofR commands.
  281. Typically this command is associated with a mouse button press in
  282. the widget.  It returns an empty string.
  283. .TP
  284. fIpathName fBscan dragto fIx yfR.
  285. This command computes the difference between its fIxfR and fIyfR
  286. arguments and the fIxfR and fIyfR arguments to the last
  287. fBscan markfR command for the widget.
  288. It then adjusts the view by 10 times the
  289. difference in coordinates.  This command is typically associated
  290. with mouse motion events in the widget, to produce the effect of
  291. dragging the list at high speed through the window.  The return
  292. value is an empty string.
  293. .RE
  294. .TP
  295. fIpathName fBsee fIindexfR
  296. Adjust the view in the listbox so that the element given by fIindexfR
  297. is visible.
  298. If the element is already visible then the command has no effect;
  299. if the element is near one edge of the window then the listbox
  300. scrolls to bring the element into view at the edge;  otherwise
  301. the listbox scrolls to center the element.
  302. .TP
  303. fIpathName fBselection fIoption argfR
  304. This command is used to adjust the selection within a listbox.  It
  305. has several forms, depending on fIoptionfR:
  306. .RS
  307. .TP
  308. fIpathName fBselection anchor fIindexfR
  309. Sets the selection anchor to the element given by fIindexfR.
  310. .VS 8.0
  311. If fIindexfR refers to a non-existent element, then the closest
  312. element is used.
  313. .VE
  314. The selection anchor is the end of the selection that is fixed
  315. while dragging out a selection with the mouse.
  316. The index fBanchorfR may be used to refer to the anchor
  317. element.
  318. .TP
  319. fIpathName fBselection clear fIfirst fR?fIlastfR?
  320. If any of the elements between fIfirstfR and fIlastfR
  321. (inclusive) are selected, they are deselected.
  322. The selection state is not changed for elements outside
  323. this range.
  324. .TP
  325. fIpathName fBselection includes fIindexfR
  326. Returns 1 if the element indicated by fIindexfR is currently
  327. selected, 0 if it isn't.
  328. .TP
  329. fIpathName fBselection set fIfirst fR?fIlastfR?
  330. Selects all of the elements in the range between
  331. fIfirstfR and fIlastfR, inclusive, without affecting
  332. the selection state of elements outside that range.
  333. .RE
  334. .TP
  335. fIpathName fBsizefR
  336. Returns a decimal string indicating the total number of elements
  337. in the listbox.
  338. .TP
  339. fIpathName fBxview fIargsfR
  340. This command is used to query and change the horizontal position of the
  341. information in the widget's window.  It can take any of the following
  342. forms:
  343. .RS
  344. .TP
  345. fIpathName fBxviewfR
  346. Returns a list containing two elements.
  347. Each element is a real fraction between 0 and 1;  together they describe
  348. the horizontal span that is visible in the window.
  349. For example, if the first element is .2 and the second element is .6,
  350. 20% of the listbox's text is off-screen to the left, the middle 40% is visible
  351. in the window, and 40% of the text is off-screen to the right.
  352. These are the same values passed to scrollbars via the fB-xscrollcommandfR
  353. option.
  354. .TP
  355. fIpathName fBxviewfR fIindexfR
  356. Adjusts the view in the window so that the character position given by
  357. fIindexfR is displayed at the left edge of the window.
  358. Character positions are defined by the width of the character fB0fR.
  359. .TP
  360. fIpathName fBxview movetofI fractionfR
  361. Adjusts the view in the window so that fIfractionfR of the
  362. total width of the listbox text is off-screen to the left.
  363. fIfractionfR must be a fraction between 0 and 1.
  364. .TP
  365. fIpathName fBxview scroll fInumber whatfR
  366. This command shifts the view in the window left or right according to
  367. fInumberfR and fIwhatfR.
  368. fINumberfR must be an integer.
  369. fIWhatfR must be either fBunitsfR or fBpagesfR or an abbreviation
  370. of one of these.
  371. If fIwhatfR is fBunitsfR, the view adjusts left or right by
  372. fInumberfR character units (the width of the fB0fR character)
  373. on the display;  if it is fBpagesfR then the view adjusts by
  374. fInumberfR screenfuls.
  375. If fInumberfR is negative then characters farther to the left
  376. become visible;  if it is positive then characters farther to the right
  377. become visible.
  378. .RE
  379. .TP
  380. fIpathName fByview fI?argsfR?
  381. This command is used to query and change the vertical position of the
  382. text in the widget's window.
  383. It can take any of the following forms:
  384. .RS
  385. .TP
  386. fIpathName fByviewfR
  387. Returns a list containing two elements, both of which are real fractions
  388. between 0 and 1.
  389. The first element gives the position of the listbox element at the
  390. top of the window, relative to the listbox as a whole (0.5 means
  391. it is halfway through the listbox, for example).
  392. The second element gives the position of the listbox element just after
  393. the last one in the window, relative to the listbox as a whole.
  394. These are the same values passed to scrollbars via the fB-yscrollcommandfR
  395. option.
  396. .TP
  397. fIpathName fByviewfR fIindexfR
  398. Adjusts the view in the window so that the element given by
  399. fIindexfR is displayed at the top of the window.
  400. .TP
  401. fIpathName fByview movetofI fractionfR
  402. Adjusts the view in the window so that the element given by fIfractionfR
  403. appears at the top of the window.
  404. fIFractionfR is a fraction between 0 and 1;  0 indicates the first
  405. element in the listbox, 0.33 indicates the element one-third the
  406. way through the listbox, and so on.
  407. .TP
  408. fIpathName fByview scroll fInumber whatfR
  409. This command adjusts the view in the window up or down according to
  410. fInumberfR and fIwhatfR.
  411. fINumberfR must be an integer.
  412. fIWhatfR must be either fBunitsfR or fBpagesfR.
  413. If fIwhatfR is fBunitsfR, the view adjusts up or down by
  414. fInumberfR lines;  if it is fBpagesfR then
  415. the view adjusts by fInumberfR screenfuls.
  416. If fInumberfR is negative then earlier elements
  417. become visible;  if it is positive then later elements
  418. become visible.
  419. .RE
  420. .SH "DEFAULT BINDINGS"
  421. .PP
  422. Tk automatically creates class bindings for listboxes that give them
  423. Motif-like behavior.  Much of the behavior of a listbox is determined
  424. by its fBselectModefR option, which selects one of four ways
  425. of dealing with the selection.
  426. .PP
  427. If the selection mode is fBsinglefR or fBbrowsefR, at most one
  428. element can be selected in the listbox at once.
  429. In both modes, clicking button 1 on an element selects
  430. it and deselects any other selected item.
  431. In fBbrowsefR mode it is also possible to drag the selection
  432. with button 1.
  433. .PP
  434. If the selection mode is fBmultiplefR or fBextendedfR,
  435. any number of elements may be selected at once, including discontiguous
  436. ranges.  In fBmultiplefR mode, clicking button 1 on an element
  437. toggles its selection state without affecting any other elements.
  438. In fBextendedfR mode, pressing button 1 on an element selects
  439. it, deselects everything else, and sets the anchor to the element
  440. under the mouse;  dragging the mouse with button 1
  441. down extends the selection to include all the elements between
  442. the anchor and the element under the mouse, inclusive.
  443. .PP
  444. Most people will probably want to use fBbrowsefR mode for
  445. single selections and fBextendedfR mode for multiple selections;
  446. the other modes appear to be useful only in special situations.
  447. .PP
  448. Any time the selection changes in the listbox, the virtual event
  449. fB<<ListboxSelect>>fR will be generated.  It is easiest to bind
  450. to this event to be made aware of any changes to listbox selection.
  451. .PP
  452. In addition to the above behavior, the following additional behavior
  453. is defined by the default bindings:
  454. .IP [1]
  455. In fBextendedfR mode, the selected range can be adjusted by pressing
  456. button 1 with the Shift key down:  this modifies the selection to
  457. consist of the elements between the anchor and the element under
  458. the mouse, inclusive.
  459. The un-anchored end of this new selection can also be dragged with
  460. the button down.
  461. .IP [2]
  462. In fBextendedfR mode, pressing button 1 with the Control key down
  463. starts a toggle operation: the anchor is set to the element under
  464. the mouse, and its selection state is reversed.  The selection state
  465. of other elements isn't changed.
  466. If the mouse is dragged with button 1 down, then the selection state
  467. of all elements between the anchor and the element under the mouse
  468. is set to match that of the anchor element;  the selection state of
  469. all other elements remains what it was before the toggle operation
  470. began.
  471. .IP [3]
  472. If the mouse leaves the listbox window with button 1 down, the window
  473. scrolls away from the mouse, making information visible that used
  474. to be off-screen on the side of the mouse.
  475. The scrolling continues until the mouse re-enters the window, the
  476. button is released, or the end of the listbox is reached.
  477. .IP [4]
  478. Mouse button 2 may be used for scanning.
  479. If it is pressed and dragged over the listbox, the contents of
  480. the listbox drag at high speed in the direction the mouse moves.
  481. .IP [5]
  482. If the Up or Down key is pressed, the location cursor (active
  483. element) moves up or down one element.
  484. If the selection mode is fBbrowsefR or fBextendedfR then the
  485. new active element is also selected and all other elements are
  486. deselected.
  487. In fBextendedfR mode the new active element becomes the
  488. selection anchor.
  489. .IP [6]
  490. In fBextendedfR mode, Shift-Up and Shift-Down move the location
  491. cursor (active element) up or down one element and also extend
  492. the selection to that element in a fashion similar to dragging
  493. with mouse button 1.
  494. .IP [7]
  495. The Left and Right keys scroll the listbox view left and right
  496. by the width of the character fB0fR.
  497. Control-Left and Control-Right scroll the listbox view left and
  498. right by the width of the window.
  499. Control-Prior and Control-Next also scroll left and right by
  500. the width of the window.
  501. .IP [8]
  502. The Prior and Next keys scroll the listbox view up and down
  503. by one page (the height of the window).
  504. .IP [9]
  505. The Home and End keys scroll the listbox horizontally to
  506. the left and right edges, respectively.
  507. .IP [10]
  508. Control-Home sets the location cursor to the first element in
  509. the listbox, selects that element, and deselects everything else
  510. in the listbox.
  511. .IP [11]
  512. Control-End sets the location cursor to the last element in
  513. the listbox, selects that element, and deselects everything else
  514. in the listbox.
  515. .IP [12]
  516. In fBextendedfR mode, Control-Shift-Home extends the selection
  517. to the first element in the listbox and Control-Shift-End extends
  518. the selection to the last element.
  519. .IP [13]
  520. In fBmultiplefR mode, Control-Shift-Home moves the location cursor
  521. to the first element in the listbox and Control-Shift-End moves
  522. the location cursor to the last element.
  523. .IP [14]
  524. The space and Select keys make a selection at the location cursor
  525. (active element) just as if mouse button 1 had been pressed over
  526. this element.
  527. .IP [15]
  528. In fBextendedfR mode, Control-Shift-space and Shift-Select
  529. extend the selection to the active element just as if button 1
  530. had been pressed with the Shift key down.
  531. .IP [16]
  532. In fBextendedfR mode, the Escape key cancels the most recent
  533. selection and restores all the elements in the selected range
  534. to their previous selection state.
  535. .IP [17]
  536. Control-slash selects everything in the widget, except in
  537. fBsinglefR and fBbrowsefR modes, in which case it selects
  538. the active element and deselects everything else.
  539. .IP [18]
  540. Control-backslash deselects everything in the widget, except in
  541. fBbrowsefR mode where it has no effect.
  542. .IP [19]
  543. The F16 key (labelled Copy on many Sun workstations) or Meta-w
  544. copies the selection in the widget to the clipboard, if there is
  545. a selection.
  546. .PP
  547. The behavior of listboxes can be changed by defining new bindings for
  548. individual widgets or by redefining the class bindings.
  549. .SH KEYWORDS
  550. listbox, widget