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

通讯编程

开发平台:

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: scrollbar.n,v 1.3.8.1 2004/10/28 12:25:22 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH scrollbar n 4.1 Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. scrollbar - Create and manipulate scrollbar widgets
  16. .SH SYNOPSIS
  17. fBscrollbarfR fIpathName fR?fIoptionsfR?
  18. .SO
  19. -activebackground -highlightcolor -repeatdelay
  20. -background -highlightthickness -repeatinterval
  21. -borderwidth -jump -takefocus
  22. -cursor -orient -troughcolor
  23. -highlightbackground -relief
  24. .SE
  25. .SH "WIDGET-SPECIFIC OPTIONS"
  26. .OP -activerelief activeRelief ActiveRelief
  27. Specifies the relief to use when displaying the element that is
  28. active, if any.
  29. Elements other than the active element are always displayed with
  30. a raised relief.
  31. .OP -command command Command
  32. Specifies the prefix of a Tcl command to invoke to change the view
  33. in the widget associated with the scrollbar.  When a user requests
  34. a view change by manipulating the scrollbar, a Tcl command is
  35. invoked.  The actual command consists of this option followed by
  36. additional information as described later.  This option almost always has
  37. a value such as fB.t xviewfR or fB.t yviewfR, consisting of the
  38. name of a widget and either fBxviewfR (if the scrollbar is for
  39. horizontal scrolling) or fByviewfR (for vertical scrolling).
  40. All scrollable widgets have fBxviewfR and fByviewfR commands
  41. that take exactly the additional arguments appended by the scrollbar
  42. as described in SCROLLING COMMANDS below.
  43. .OP -elementborderwidth elementBorderWidth BorderWidth
  44. Specifies the width of borders drawn around the internal elements
  45. of the scrollbar (the two arrows and the slider).  The value may
  46. have any of the forms acceptable to fBTk_GetPixelsfR.
  47. If this value is less than zero, the value of the fBborderWidthfR
  48. option is used in its place.
  49. .OP -width width Width
  50. Specifies the desired narrow dimension of the scrollbar window,
  51. not including 3-D border, if any.  For vertical
  52. scrollbars this will be the width and for horizontal scrollbars
  53. this will be the height.
  54. The value may have any of the forms acceptable to fBTk_GetPixelsfR.
  55. .BE
  56. .SH DESCRIPTION
  57. .PP
  58. The fBscrollbarfR command creates a new window (given by the
  59. fIpathNamefR argument) and makes it into a scrollbar widget.
  60. Additional options, described above, may be specified on the command
  61. line or in the option database to configure aspects of the scrollbar
  62. such as its colors, orientation, and relief.
  63. The fBscrollbarfR command returns its fIpathNamefR argument.
  64. At the time this command is invoked, there must not exist a window
  65. named fIpathNamefR, but fIpathNamefR's parent must exist.
  66. .PP
  67. A scrollbar is a widget that displays two arrows, one at each end of
  68. the scrollbar, and a fIsliderfR in the middle portion of the
  69. scrollbar.
  70. It provides information about what is visible in an fIassociated windowfR
  71. that displays a document of some sort (such as a file being edited or
  72. a drawing).
  73. The position and size of the slider indicate which portion of the
  74. document is visible in the associated window.  For example, if the
  75. slider in a vertical scrollbar covers the top third of the area
  76. between the two arrows, it means that the associated window displays
  77. the top third of its document.
  78. .PP
  79. Scrollbars can be used to adjust the view in the associated window
  80. by clicking or dragging with the mouse.  See the fBBINDINGSfR section
  81. below for details.
  82. .SH "ELEMENTS"
  83. .PP
  84. A scrollbar displays five elements, which are referred to in the
  85. widget commands for the scrollbar:
  86. .TP 10
  87. fBarrow1fR
  88. The top or left arrow in the scrollbar.
  89. .TP 10
  90. fBtrough1fR
  91. The region between the slider and fBarrow1fR.
  92. .TP 10
  93. fBsliderfR
  94. The rectangle that indicates what is visible in the associated widget.
  95. .TP 10
  96. fBtrough2fR
  97. The region between the slider and fBarrow2fR.
  98. .TP 10
  99. fBarrow2fR
  100. The bottom or right arrow in the scrollbar.
  101. .SH "WIDGET COMMAND"
  102. .PP
  103. The fBscrollbarfR command creates a new Tcl command whose
  104. name is fIpathNamefR.  This
  105. command may be used to invoke various
  106. operations on the widget.  It has the following general form:
  107. .CS
  108. fIpathName option fR?fIarg arg ...fR?
  109. .CE
  110. fIOptionfR and the fIargfRs
  111. determine the exact behavior of the command.  The following
  112. commands are possible for scrollbar widgets:
  113. .TP
  114. fIpathName fBactivate fR?fIelementfR?
  115. Marks the element indicated by fIelementfR as active, which
  116. causes it to be displayed as specified by the fBactiveBackgroundfR
  117. and fBactiveRelieffR options.
  118. The only element values understood by this command are fBarrow1fR,
  119. fBsliderfR, or fBarrow2fR.
  120. If any other value is specified then no element of the scrollbar
  121. will be active.
  122. If fIelementfR is not specified, the command returns
  123. the name of the element that is currently active, or an empty string
  124. if no element is active.
  125. .TP
  126. fIpathName fBcgetfR fIoptionfR
  127. Returns the current value of the configuration option given
  128. by fIoptionfR.
  129. fIOptionfR may have any of the values accepted by the fBscrollbarfR
  130. command.
  131. .TP
  132. fIpathName fBconfigurefR ?fIoptionfR? ?fIvalue option value ...fR?
  133. Query or modify the configuration options of the widget.
  134. If no fIoptionfR is specified, returns a list describing all of
  135. the available options for fIpathNamefR (see fBTk_ConfigureInfofR for
  136. information on the format of this list).  If fIoptionfR is specified
  137. with no fIvaluefR, then the command returns a list describing the
  138. one named option (this list will be identical to the corresponding
  139. sublist of the value returned if no fIoptionfR is specified).  If
  140. one or more fIoption-valuefR pairs are specified, then the command
  141. modifies the given widget option(s) to have the given value(s);  in
  142. this case the command returns an empty string.
  143. fIOptionfR may have any of the values accepted by the fBscrollbarfR
  144. command.
  145. .TP
  146. fIpathName fBdelta fIdeltaX deltaYfR
  147. Returns a real number indicating the fractional change in
  148. the scrollbar setting that corresponds to a given change
  149. in slider position.  For example, if the scrollbar is horizontal,
  150. the result indicates how much the scrollbar setting must change
  151. to move the slider fIdeltaXfR pixels to the right (fIdeltaYfR is
  152. ignored in this case).
  153. If the scrollbar is vertical, the result indicates how much the
  154. scrollbar setting must change to move the slider fIdeltaYfR pixels
  155. down.  The arguments and the result may be zero or negative.
  156. .TP
  157. fIpathName fBfraction fIx yfR
  158. Returns a real number between 0 and 1 indicating where the point
  159. given by fIxfR and fIyfR lies in the trough area of the scrollbar.
  160. The value 0 corresponds to the top or left of the trough, the
  161. value 1 corresponds to the bottom or right, 0.5 corresponds to
  162. the middle, and so on.
  163. fIXfR and fIyfR must be pixel coordinates relative to the scrollbar
  164. widget.
  165. If fIxfR and fIyfR refer to a point outside the trough, the closest
  166. point in the trough is used.
  167. .TP
  168. fIpathName fBgetfR
  169. Returns the scrollbar settings in the form of a list whose
  170. elements are the arguments to the most recent fBsetfR widget command.
  171. .TP
  172. fIpathName fBidentifyfR fIx yfR
  173. Returns the name of the element under the point given by fIxfR and
  174. fIyfR (such as fBarrow1fR), or an empty string if the point does
  175. not lie in any element of the scrollbar.
  176. fIXfR and fIyfR must be pixel coordinates relative to the scrollbar
  177. widget.
  178. .TP
  179. fIpathName fBsetfR fIfirst lastfR
  180. This command is invoked by the scrollbar's associated widget to
  181. tell the scrollbar about the current view in the widget.
  182. The command takes two arguments, each of which is a real fraction
  183. between 0 and 1.
  184. The fractions describe the range of the document that is visible in
  185. the associated widget.
  186. For example, if fIfirstfR is 0.2 and fIlastfR is 0.4, it means
  187. that the first part of the document visible in the window is 20%
  188. of the way through the document, and the last visible part is 40%
  189. of the way through.
  190. .SH "SCROLLING COMMANDS"
  191. .PP
  192. When the user interacts with the scrollbar, for example by dragging
  193. the slider, the scrollbar notifies the associated widget that it
  194. must change its view.
  195. The scrollbar makes the notification by evaluating a Tcl command
  196. generated from the scrollbar's fB-commandfR option.
  197. The command may take any of the following forms.
  198. In each case, fIprefixfR is the contents of the
  199. fB-commandfR option, which usually has a form like fB.t yviewfR
  200. .TP
  201. fIprefix fBmoveto fIfractionfR
  202. fIFractionfR is a real number between 0 and 1.
  203. The widget should adjust its view so that the point given
  204. by fIfractionfR appears at the beginning of the widget.
  205. If fIfractionfR is 0 it refers to the beginning of the
  206. document.  1.0 refers to the end of the document, 0.333
  207. refers to a point one-third of the way through the document,
  208. and so on.
  209. .TP
  210. fIprefix fBscroll fInumber fBunitsfR
  211. The widget should adjust its view by fInumberfR units.
  212. The units are defined in whatever way makes sense for the widget,
  213. such as characters or lines in a text widget.
  214. fINumberfR is either 1, which means one unit should scroll off
  215. the top or left of the window, or -1, which means that one unit
  216. should scroll off the bottom or right of the window.
  217. .TP
  218. fIprefix fBscroll fInumber fBpagesfR
  219. The widget should adjust its view by fInumberfR pages.
  220. It is up to the widget to define the meaning of a page;  typically
  221. it is slightly less than what fits in the window, so that there
  222. is a slight overlap between the old and new views.
  223. fINumberfR is either 1, which means the next page should
  224. become visible, or -1, which means that the previous page should
  225. become visible.
  226. .SH "OLD COMMAND SYNTAX"
  227. .PP
  228. In versions of Tk before 4.0, the fBsetfR and fBgetfR widget
  229. commands used a different form.
  230. This form is still supported for backward compatibility, but it
  231. is deprecated.
  232. In the old command syntax, the fBsetfR widget command has the
  233. following form:
  234. .TP
  235. fIpathName fBsetfR fItotalUnits windowUnits firstUnit lastUnitfR
  236. In this form the arguments are all integers.
  237. fITotalUnitsfR gives the total size of the object being displayed in the
  238. associated widget.  The meaning of one unit depends on the associated
  239. widget;  for example, in a text editor widget units might
  240. correspond to lines of
  241. text.  fIWindowUnitsfR indicates the total number of units that
  242. can fit in the associated window at one time.  fIFirstUnitfR
  243. and fIlastUnitfR give the indices of the first and last units
  244. currently visible in the associated window (zero corresponds to the
  245. first unit of the object).
  246. .LP
  247. Under the old syntax the fBgetfR widget command returns a list
  248. of four integers, consisting of the fItotalUnitsfR, fIwindowUnitsfR,
  249. fIfirstUnitfR, and fIlastUnitfR values from the last fBsetfR
  250. widget command.
  251. .PP
  252. The commands generated by scrollbars also have a different form
  253. when the old syntax is being used:
  254. .TP
  255. fIprefixfR fIunitfR
  256. fIUnitfR is an integer that indicates what should appear at
  257. the top or left of the associated widget's window.
  258. It has the same meaning as the fIfirstUnitfR and fIlastUnitfR
  259. arguments to the fBsetfR widget command.
  260. .LP
  261. The most recent fBsetfR widget command determines whether or not
  262. to use the old syntax.
  263. If it is given two real arguments then the new syntax will be
  264. used in the future, and if it is given four integer arguments then
  265. the old syntax will be used.
  266. .SH BINDINGS
  267. Tk automatically creates class bindings for scrollbars that give them
  268. the following default behavior.
  269. If the behavior is different for vertical and horizontal scrollbars,
  270. the horizontal behavior is described in parentheses.
  271. .IP [1]
  272. Pressing button 1 over fBarrow1fR causes the view in the
  273. associated widget to shift up (left) by one unit so that the
  274. document appears to move down (right) one unit.
  275. If the button is held down, the action auto-repeats.
  276. .IP [2]
  277. Pressing button 1 over fBtrough1fR causes the view in the
  278. associated widget to shift up (left) by one screenful so that the
  279. document appears to move down (right) one screenful.
  280. If the button is held down, the action auto-repeats.
  281. .IP [3]
  282. Pressing button 1 over the slider and dragging causes the view
  283. to drag with the slider.
  284. If the fBjumpfR option is true, then the view doesn't drag along
  285. with the slider;  it changes only when the mouse button is released.
  286. .IP [4]
  287. Pressing button 1 over fBtrough2fR causes the view in the
  288. associated widget to shift down (right) by one screenful so that the
  289. document appears to move up (left) one screenful.
  290. If the button is held down, the action auto-repeats.
  291. .IP [5]
  292. Pressing button 1 over fBarrow2fR causes the view in the
  293. associated widget to shift down (right) by one unit so that the
  294. document appears to move up (left) one unit.
  295. If the button is held down, the action auto-repeats.
  296. .IP [6]
  297. If button 2 is pressed over the trough or the slider, it sets
  298. the view to correspond to the mouse position;  dragging the
  299. mouse with button 2 down causes the view to drag with the mouse.
  300. If button 2 is pressed over one of the arrows, it causes the
  301. same behavior as pressing button 1.
  302. .IP [7]
  303. If button 1 is pressed with the Control key down, then if the
  304. mouse is over fBarrow1fR or fBtrough1fR the view changes
  305. to the very top (left) of the document;  if the mouse is over
  306. fBarrow2fR or fBtrough2fR the view changes
  307. to the very bottom (right) of the document;  if the mouse is
  308. anywhere else then the button press has no effect.
  309. .IP [8]
  310. In vertical scrollbars the Up and Down keys have the same behavior
  311. as mouse clicks over fBarrow1fR and fBarrow2fR, respectively.
  312. In horizontal scrollbars these keys have no effect.
  313. .IP [9]
  314. In vertical scrollbars Control-Up and Control-Down have the same
  315. behavior as mouse clicks over fBtrough1fR and fBtrough2fR, respectively.
  316. In horizontal scrollbars these keys have no effect.
  317. .IP [10]
  318. In horizontal scrollbars the Up and Down keys have the same behavior
  319. as mouse clicks over fBarrow1fR and fBarrow2fR, respectively.
  320. In vertical scrollbars these keys have no effect.
  321. .IP [11]
  322. In horizontal scrollbars Control-Up and Control-Down have the same
  323. behavior as mouse clicks over fBtrough1fR and fBtrough2fR, respectively.
  324. In vertical scrollbars these keys have no effect.
  325. .IP [12]
  326. The Prior and Next keys have the same behavior
  327. as mouse clicks over fBtrough1fR and fBtrough2fR, respectively.
  328. .IP [13]
  329. The Home key adjusts the view to the top (left edge) of the document.
  330. .IP [14]
  331. The End key adjusts the view to the bottom (right edge) of the document.
  332. .SH EXAMPLE
  333. Create a window with a scrollable fBtextfR widget:
  334. .CS
  335. toplevel .tl
  336. text .tl.t -yscrollcommand {.tl.s set}
  337. fBscrollbarfR .tl.s -command {.tl.t yview}
  338. grid .tl.t .tl.s -sticky nsew
  339. grid columnconfigure .tl 0 -weight 1
  340. grid rowconfigure .tl 0 -weight 1
  341. .CE
  342. .SH KEYWORDS
  343. scrollbar, widget