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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1992-1994 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '" Copyright (c) 1997-1999 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: canvas.n,v 1.13.2.4 2007/11/05 17:21:58 dgp Exp $
  10. '"
  11. .so man.macros
  12. .TH canvas 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. canvas - Create and manipulate canvas widgets
  17. .SH SYNOPSIS
  18. fBcanvasfR fIpathName fR?fIoptionsfR?
  19. .SO
  20. -background -insertborderwidth -selectborderwidth
  21. -borderwidth -insertofftime -selectforeground
  22. -cursor -insertontime -takefocus
  23. -highlightbackground -insertwidth -xscrollcommand
  24. -highlightcolor -relief -yscrollcommand
  25. -highlightthickness -state
  26. -insertbackground -selectbackground
  27. .SE
  28. .SH "WIDGET-SPECIFIC OPTIONS"
  29. .OP -closeenough closeEnough CloseEnough
  30. Specifies a floating-point value indicating how close the mouse cursor
  31. must be to an item before it is considered to be ``inside'' the item.
  32. Defaults to 1.0.
  33. .OP -confine confine Confine
  34. Specifies a boolean value that indicates whether or not it should be
  35. allowable to set the canvas's view outside the region defined by the
  36. fBscrollRegionfR argument.
  37. Defaults to true, which means that the view will
  38. be constrained within the scroll region.
  39. .OP -height height Height
  40. Specifies a desired window height that the canvas widget should request from
  41. its geometry manager.  The value may be specified in any
  42. of the forms described in the fBCOORDINATESfR section below.
  43. .OP -scrollregion scrollRegion ScrollRegion
  44. Specifies a list with four coordinates describing the left, top, right, and
  45. bottom coordinates of a rectangular region.
  46. This region is used for scrolling purposes and is considered to be
  47. the boundary of the information in the canvas.
  48. Each of the coordinates may be specified
  49. in any of the forms given in the fBCOORDINATESfR section below.
  50. .OP -state state State
  51. Modifies the default state of the canvas where fIstatefR may be set to
  52. one of: fBnormalfR, fBdisabledfR, or fBhiddenfR. Individual canvas
  53. objects all have their own state option which may override the default
  54. state.  Many options can take separate specifications such that the
  55. appearance of the item can be different in different situations. The
  56. options that start with fBactivefR control the appearance when the mouse
  57. pointer is over it, while the option starting with fBdisabledfR controls
  58. the appearance when the state is disabled.  Canvas items which are
  59. fBdisabledfR will not react to canvas bindings.
  60. .OP -width width width
  61. Specifies a desired window width that the canvas widget should request from
  62. its geometry manager.  The value may be specified in any
  63. of the forms described in the fBCOORDINATESfR section below.
  64. .OP -xscrollincrement xScrollIncrement ScrollIncrement
  65. Specifies an increment for horizontal scrolling, in any of the usual forms
  66. permitted for screen distances.  If the value of this option is greater
  67. than zero, the horizontal view in the window will be constrained so that
  68. the canvas x coordinate at the left edge of the window is always an even
  69. multiple of fBxScrollIncrementfR;  furthermore, the units for scrolling
  70. (e.g., the change in view when the left and right arrows of a scrollbar
  71. are selected) will also be fBxScrollIncrementfR.  If the value of
  72. this option is less than or equal to zero, then horizontal scrolling
  73. is unconstrained.
  74. .OP -yscrollincrement yScrollIncrement ScrollIncrement
  75. Specifies an increment for vertical scrolling, in any of the usual forms
  76. permitted for screen distances.  If the value of this option is greater
  77. than zero, the vertical view in the window will be constrained so that
  78. the canvas y coordinate at the top edge of the window is always an even
  79. multiple of fByScrollIncrementfR;  furthermore, the units for scrolling
  80. (e.g., the change in view when the top and bottom arrows of a scrollbar
  81. are selected) will also be fByScrollIncrementfR.  If the value of
  82. this option is less than or equal to zero, then vertical scrolling
  83. is unconstrained.
  84. .BE
  85. .SH INTRODUCTION
  86. .PP
  87. The fBcanvasfR command creates a new window (given
  88. by the fIpathNamefR argument) and makes it into a canvas widget.
  89. Additional options, described above, may be specified on the
  90. command line or in the option database
  91. to configure aspects of the canvas such as its colors and 3-D relief.
  92. The fBcanvasfR command returns its
  93. fIpathNamefR argument.  At the time this command is invoked,
  94. there must not exist a window named fIpathNamefR, but
  95. fIpathNamefR's parent must exist.
  96. .PP
  97. Canvas widgets implement structured graphics.
  98. A canvas displays any number of fIitemsfR, which may be things like
  99. rectangles, circles, lines, and text.
  100. Items may be manipulated (e.g. moved or re-colored) and commands may
  101. be associated with items in much the same way that the fBbindfR
  102. command allows commands to be bound to widgets.  For example,
  103. a particular command may be associated with the <Button-1> event
  104. so that the command is invoked whenever button 1 is pressed with
  105. the mouse cursor over an item.
  106. This means that items in a canvas can have behaviors defined by
  107. the Tcl scripts bound to them.
  108. .SH "DISPLAY LIST"
  109. .PP
  110. The items in a canvas are ordered for purposes of display,
  111. with the first item in the display list being displayed
  112. first, followed by the next item in the list, and so on.
  113. Items later in the display list obscure those that are
  114. earlier in the display list and are sometimes referred to
  115. as being ``on top'' of earlier items.
  116. When a new item is created it is placed at the end of the
  117. display list, on top of everything else.
  118. Widget commands may be used to re-arrange the order of the
  119. display list.
  120. .PP
  121. Window items are an exception to the above rules.  The underlying
  122. window systems require them always to be drawn on top of other items.
  123. In addition, the stacking order of window items
  124. is not affected by any of the canvas widget commands; you must use
  125. the fBraisefR and fBlowerfR Tk commands instead.
  126. .SH "ITEM IDS AND TAGS"
  127. .PP
  128. Items in a canvas widget may be named in either of two ways:
  129. by id or by tag.
  130. Each item has a unique identifying number, which is assigned to
  131. that item when it is created.  The id of an item never changes
  132. and id numbers are never re-used within the lifetime of a
  133. canvas widget.
  134. .PP
  135. Each item may also have any number of fItagsfR associated
  136. with it.  A tag is just a string of characters, and it may
  137. take any form except that of an integer.
  138. For example, ``x123'' is OK but ``123'' isn't.
  139. The same tag may be associated with many different items.
  140. This is commonly done to group items in various interesting
  141. ways;  for example, all selected items might be given the
  142. tag ``selected''.
  143. .PP
  144. The tag fBallfR is implicitly associated with every item
  145. in the canvas;  it may be used to invoke operations on
  146. all the items in the canvas.
  147. .PP
  148. The tag fBcurrentfR is managed automatically by Tk;
  149. it applies to the fIcurrent itemfR, which is the
  150. topmost item whose drawn area covers the position of
  151. the mouse cursor.
  152. If the mouse is not in the canvas widget or is not over
  153. an item, then no item has the fBcurrentfR tag.
  154. .PP
  155. When specifying items in canvas widget commands, if the
  156. specifier is an integer then it is assumed to refer to
  157. the single item with that id.
  158. If the specifier is not an integer, then it is assumed to
  159. refer to all of the items in the canvas that have a tag
  160. matching the specifier.
  161. The symbol fItagOrIdfR is used below to indicate that
  162. an argument specifies either an id that selects a single
  163. item or a tag that selects zero or more items.
  164. .PP
  165. fItagOrIdfR may contain a logical expressions of
  166. tags by using operators: '&&', '||', '^' '!', and parenthesized
  167. subexpressions.  For example:
  168. .CS
  169.       .c find withtag {(a&&!b)||(!a&&b)}
  170. .CE
  171. or equivalently:
  172. .CS
  173.       .c find withtag {a^b}
  174. .CE
  175. will find only those items with either "a" or "b" tags, but not both.
  176. .PP
  177. Some widget commands only operate on a single item at a
  178. time;  if fItagOrIdfR is specified in a way that
  179. names multiple items, then the normal behavior is for
  180. the command to use the first (lowest) of these items in
  181. the display list that is suitable for the command.
  182. Exceptions are noted in the widget command descriptions
  183. below.
  184. .SH "COORDINATES"
  185. .PP
  186. All coordinates related to canvases are stored as floating-point
  187. numbers.
  188. Coordinates and distances are specified in screen units,
  189. which are floating-point numbers optionally followed
  190. by one of several letters.
  191. If no letter is supplied then the distance is in pixels.
  192. If the letter is fBmfR then the distance is in millimeters on
  193. the screen;  if it is fBcfR then the distance is in centimeters;
  194. fBifR means inches, and fBpfR means printers points (1/72 inch).
  195. Larger y-coordinates refer to points lower on the screen;  larger
  196. x-coordinates refer to points farther to the right.
  197. .VS
  198. Coordinates can be specified either as an even number of parameters,
  199. or as a single list parameter containing an even number of x and y
  200. coordinate values.
  201. .VE
  202. .SH TRANSFORMATIONS
  203. .PP
  204. Normally the origin of the canvas coordinate system is at the
  205. upper-left corner of the window containing the canvas.
  206. It is possible to adjust the origin of the canvas
  207. coordinate system relative to the origin of the window using the
  208. fBxviewfR and fByviewfR widget commands;  this is typically used
  209. for scrolling.
  210. Canvases do not support scaling or rotation of the canvas coordinate
  211. system relative to the window coordinate system.
  212. .PP
  213. Individual items may be moved or scaled using widget commands
  214. described below, but they may not be rotated.
  215. .PP
  216. Note that the default origin of the canvas's visible area is
  217. coincident with the origin for the whole window as that makes bindings
  218. using the mouse position easier to work with; you only need to use the
  219. fBcanvasxfR and fBcanvasyfR widget commands if you adjust the
  220. origin of the visible area.  However, this also means that any focus
  221. ring (as controlled by the fB-highlightthicknessfR option) and
  222. window border (as controlled by the fB-borderwidthfR option) must
  223. be taken into account before you get to the visible area of the
  224. canvas.
  225. .SH "INDICES"
  226. .PP
  227. Text items support the notion of an fIindexfR for identifying
  228. particular positions within the item.
  229. In a similar fashion, line and polygon items support fIindexfR for
  230. identifying, inserting and deleting subsets of their coordinates.
  231. Indices are used for commands such as inserting or deleting
  232. a range of characters or coordinates, and setting the insertion
  233. cursor position. An index may be specified in any of a number
  234. of ways, and different types of items may support different forms
  235. for specifying indices.
  236. Text items support the following forms for an index;  if you
  237. define new types of text-like items, it would be advisable to
  238. support as many of these forms as practical.
  239. Note that it is possible to refer to the character just after
  240. the last one in the text item;  this is necessary for such
  241. tasks as inserting new text at the end of the item.
  242. Lines and Polygons don't support the insertion cursor
  243. and the selection. Their indices are supposed to be even
  244. always, because coordinates always appear in pairs.
  245. .TP 10
  246. fInumberfR
  247. A decimal number giving the position of the desired character
  248. within the text item.
  249. 0 refers to the first character, 1 to the next character, and
  250. so on. If indexes are odd for lines and polygons, they will be
  251. automatically decremented by one.
  252. A number less than 0 is treated as if it were zero, and a
  253. number greater than the length of the text item is treated
  254. as if it were equal to the length of the text item. For
  255. polygons, numbers less than 0 or greater then the length
  256. of the coordinate list will be adjusted by adding or subtracting
  257. the length until the result is between zero and the length,
  258. inclusive.
  259. .TP 10
  260. fBendfR
  261. Refers to the character or coordinate just after the last one
  262. in the item (same as the number of characters or coordinates
  263. in the item).
  264. .TP 10
  265. fBinsertfR
  266. Refers to the character just before which the insertion cursor
  267. is drawn in this item. Not valid for lines and polygons.
  268. .TP 10
  269. fBsel.firstfR
  270. Refers to the first selected character in the item.
  271. If the selection isn't in this item then this form is illegal.
  272. .TP 10
  273. fBsel.lastfR
  274. Refers to the last selected character in the item.
  275. If the selection isn't in this item then this form is illegal.
  276. .TP 10
  277. fB@fIx,yfR
  278. Refers to the character or coordinate at the point given by fIxfR and
  279. fIyfR, where fIxfR and fIyfR are specified in the coordinate
  280. system of the canvas.
  281. If fIxfR and fIyfR lie outside the coordinates covered by the
  282. text item, then they refer to the first or last character in the
  283. line that is closest to the given point.
  284. .SH "DASH PATTERNS"
  285. .PP
  286. Many items support the notion of a dash pattern for outlines.
  287. .PP
  288. The first possible syntax is a list of integers. Each element
  289. represents the number of pixels of a line segment. Only the odd
  290. segments are drawn using the "outline" color. The other segments
  291. are drawn transparent.
  292. .PP
  293. The second possible syntax is a character list containing only
  294. 5 possible characters fB[.,-_ ]fR. The space can be used
  295. to enlarge the space between other line elements, and can not
  296. occur as the first position in the string. Some examples:
  297.     -dash . = -dash {2 4}
  298.     -dash -     = -dash {6 4}
  299.     -dash -.    = -dash {6 4 2 4}
  300.     -dash -..   = -dash {6 4 2 4 2 4}
  301.     -dash {. }  = -dash {2 8}
  302.     -dash , = -dash {4 4}
  303. .PP
  304. The main difference of this syntax with the previous is that it
  305. is shape-conserving. This means that all values in the dash
  306. list will be multiplied by the line width before display. This
  307. assures that "." will always be displayed as a dot and "-"
  308. always as a dash regardless of the line width.
  309. .PP
  310. On systems which support only a limited set of dash patterns, the dash
  311. pattern will be displayed as the closest dash pattern that is available.
  312. For example, on Windows only the first 4 of the above examples are
  313. available.  The last 2 examples will be displayed identically to the first
  314. one.
  315. .SH "WIDGET COMMAND"
  316. .PP
  317. The fBcanvasfR command creates a new Tcl command whose
  318. name is fIpathNamefR.  This
  319. command may be used to invoke various
  320. operations on the widget.  It has the following general form:
  321. .CS
  322. fIpathName option fR?fIarg arg ...fR?
  323. .CE
  324. fIOptionfR and the fIargfRs
  325. determine the exact behavior of the command.
  326. The following widget commands are possible for canvas widgets:
  327. .TP
  328. fIpathName fBaddtag fItag searchSpec fR?fIarg arg ...fR?
  329. For each item that meets the constraints specified by
  330. fIsearchSpecfR and the fIargfRs, add
  331. fItagfR to the list of tags associated with the item if it
  332. isn't already present on that list.
  333. It is possible that no items will satisfy the constraints
  334. given by fIsearchSpecfR and fIargfRs, in which case the
  335. command has no effect.
  336. This command returns an empty string as result.
  337. fISearchSpecfR and fIargfR's may take any of the following
  338. forms:
  339. .RS
  340. .TP
  341. fBabove fItagOrIdfR
  342. Selects the item just after (above) the one given by fItagOrIdfR
  343. in the display list.
  344. If fItagOrIdfR denotes more than one item, then the last (topmost)
  345. of these items in the display list is used.
  346. .TP
  347. fBallfR
  348. Selects all the items in the canvas.
  349. .TP
  350. fBbelow fItagOrIdfR
  351. Selects the item just before (below) the one given by fItagOrIdfR
  352. in the display list.
  353. If fItagOrIdfR denotes more than one item, then the first (lowest)
  354. of these items in the display list is used.
  355. .TP
  356. fBclosest fIx y fR?fIhalofR? ?fIstartfR?
  357. Selects the item closest to the point given by fIxfR and fIyfR.
  358. If more than one item is at the same closest distance (e.g. two
  359. items overlap the point), then the top-most of these items (the
  360. last one in the display list) is used.
  361. If fIhalofR is specified, then it must be a non-negative
  362. value.
  363. Any item closer than fIhalofR to the point is considered to
  364. overlap it.
  365. The fIstartfR argument may be used to step circularly through
  366. all the closest items.
  367. If fIstartfR is specified, it names an item using a tag or id
  368. (if by tag, it selects the first item in the display list with
  369. the given tag).
  370. Instead of selecting the topmost closest item, this form will
  371. select the topmost closest item that is below fIstartfR in
  372. the display list;  if no such item exists, then the selection
  373. behaves as if the fIstartfR argument had not been specified.
  374. .TP
  375. fBenclosedfR fIx1fR fIy1fR fIx2fR fIy2fR
  376. Selects all the items completely enclosed within the rectangular
  377. region given by fIx1fR, fIy1fR, fIx2fR, and fIy2fR.
  378. fIX1fR must be no greater then fIx2fR and fIy1fR must be
  379. no greater than fIy2fR.
  380. .TP
  381. fBoverlappingfR fIx1fR fIy1fR fIx2fR fIy2fR
  382. Selects all the items that overlap or are enclosed within the
  383. rectangular region given by fIx1fR, fIy1fR, fIx2fR,
  384. and fIy2fR.
  385. fIX1fR must be no greater then fIx2fR and fIy1fR must be
  386. no greater than fIy2fR.
  387. .TP
  388. fBwithtag fItagOrIdfR
  389. Selects all the items given by fItagOrIdfR.
  390. .RE
  391. .TP
  392. fIpathName fBbbox fItagOrIdfR ?fItagOrId tagOrId ...fR?
  393. Returns a list with four elements giving an approximate bounding box
  394. for all the items named by the fItagOrIdfR arguments.
  395. The list has the form ``fIx1 y1 x2 y2fR'' such that the drawn
  396. areas of all the named elements are within the region bounded by
  397. fIx1fR on the left, fIx2fR on the right, fIy1fR on the top,
  398. and fIy2fR on the bottom.
  399. The return value may overestimate the actual bounding box by
  400. a few pixels.
  401. If no items match any of the fItagOrIdfR arguments or if the
  402. matching items have empty bounding boxes (i.e. they have nothing
  403. to display)
  404. then an empty string is returned.
  405. .TP
  406. fIpathName fBbind fItagOrIdfR ?fIsequencefR? ?fIcommandfR?
  407. This command associates fIcommandfR with all the items given by
  408. fItagOrIdfR such that whenever the event sequence given by
  409. fIsequencefR occurs for one of the items the command will
  410. be invoked.
  411. This widget command is similar to the fBbindfR command except that
  412. it operates on items in a canvas rather than entire widgets.
  413. See the fBbindfR manual entry for complete details
  414. on the syntax of fIsequencefR and the substitutions performed
  415. on fIcommandfR before invoking it.
  416. If all arguments are specified then a new binding is created, replacing
  417. any existing binding for the same fIsequencefR and fItagOrIdfR
  418. (if the first character of fIcommandfR is ``+'' then fIcommandfR
  419. augments an existing binding rather than replacing it).
  420. In this case the return value is an empty string.
  421. If fIcommandfR is omitted then the command returns the fIcommandfR
  422. associated with fItagOrIdfR and fIsequencefR (an error occurs
  423. if there is no such binding).
  424. If both fIcommandfR and fIsequencefR are omitted then the command
  425. returns a list of all the sequences for which bindings have been
  426. defined for fItagOrIdfR.
  427. .RS
  428. .PP
  429. The only events for which bindings may be specified are those related to
  430. the mouse and keyboard (such as fBEnterfR, fBLeavefR,
  431. fBButtonPressfR, fBMotionfR, and fBKeyPressfR) or virtual events.
  432. The handling of events in canvases uses the current item defined in ITEM
  433. IDS AND TAGS above.  fBEnterfR and fBLeavefR events trigger for an
  434. item when it becomes the current item or ceases to be the current item;
  435. note that these events are different than fBEnterfR and fBLeavefR
  436. events for windows.  Mouse-related events are directed to the current
  437. item, if any.  Keyboard-related events are directed to the focus item, if
  438. any (see the fBfocusfR widget command below for more on this).  If a
  439. virtual event is used in a binding, that binding can trigger only if the
  440. virtual event is defined by an underlying mouse-related or
  441. keyboard-related event.
  442. .PP
  443. It is possible for multiple bindings to match a particular event.
  444. This could occur, for example, if one binding is associated with the
  445. item's id and another is associated with one of the item's tags.
  446. When this occurs, all of the matching bindings are invoked.
  447. A binding associated with the fBallfR tag is invoked first,
  448. followed by one binding for each of the item's tags (in order),
  449. followed by a binding associated with the item's id.
  450. If there are multiple matching bindings for a single tag,
  451. then only the most specific binding is invoked.
  452. A fBcontinuefR command in a binding script terminates that
  453. script, and a fBbreakfR command terminates that script
  454. and skips any remaining scripts for the event, just as for the
  455. fBbindfR command.
  456. .PP
  457. If bindings have been created for a canvas window using the fBbindfR
  458. command, then they are invoked in addition to bindings created for
  459. the canvas's items using the fBbindfR widget command.
  460. The bindings for items will be invoked before any of the bindings
  461. for the window as a whole.
  462. .RE
  463. .TP
  464. fIpathName fBcanvasx fIscreenxfR ?fIgridspacingfR?
  465. Given a window x-coordinate in the canvas fIscreenxfR, this command returns
  466. the canvas x-coordinate that is displayed at that location.
  467. If fIgridspacingfR is specified, then the canvas coordinate is
  468. rounded to the nearest multiple of fIgridspacingfR units.
  469. .TP
  470. fIpathName fBcanvasy fIscreenyfR ?fIgridspacingfR?
  471. Given a window y-coordinate in the canvas fIscreenyfR this command returns
  472. the canvas y-coordinate that is displayed at that location.
  473. If fIgridspacingfR is specified, then the canvas coordinate is
  474. rounded to the nearest multiple of fIgridspacingfR units.
  475. .TP
  476. fIpathName fBcgetfR fIoptionfR
  477. Returns the current value of the configuration option given
  478. by fIoptionfR.
  479. fIOptionfR may have any of the values accepted by the fBcanvasfR
  480. command.
  481. .TP
  482. fIpathName fBconfigure ?fIoptionfR? ?fIvaluefR? ?fIoption value ...fR?
  483. Query or modify the configuration options of the widget.
  484. If no fIoptionfR is specified, returns a list describing all of
  485. the available options for fIpathNamefR (see fBTk_ConfigureInfofR for
  486. information on the format of this list).  If fIoptionfR is specified
  487. with no fIvaluefR, then the command returns a list describing the
  488. one named option (this list will be identical to the corresponding
  489. sublist of the value returned if no fIoptionfR is specified).  If
  490. one or more fIoption-valuefR pairs are specified, then the command
  491. modifies the given widget option(s) to have the given value(s);  in
  492. this case the command returns an empty string.
  493. fIOptionfR may have any of the values accepted by the fBcanvasfR
  494. command.
  495. .TP
  496. fIpathNamefR fBcoords fItagOrId fR?fIx0 y0 ...fR?
  497. .TP
  498. fIpathNamefR fBcoords fItagOrId fR?fIcoordListfR?
  499. Query or modify the coordinates that define an item.
  500. If no coordinates are specified, this command returns a list
  501. whose elements are the coordinates of the item named by
  502. fItagOrIdfR.
  503. If coordinates are specified, then they replace the current
  504. coordinates for the named item.
  505. If fItagOrIdfR refers to multiple items, then
  506. the first one in the display list is used.
  507. .TP
  508. fIpathName fBcreate fItype x y fR?fIx y ...fR? ?fIoption value ...fR?
  509. .TP
  510. fIpathName fBcreate fItype coordList fR?fIoption value ...fR?
  511. Create a new item in fIpathNamefR of type fItypefR.
  512. The exact format of the arguments after fBtypefR depends
  513. on fBtypefR, but usually they consist of the coordinates for
  514. one or more points, followed by specifications for zero or
  515. more item options.
  516. See the subsections on individual item types below for more
  517. on the syntax of this command.
  518. This command returns the id for the new item.
  519. .TP
  520. fIpathName fBdchars fItagOrId first fR?fIlastfR?
  521. For each item given by fItagOrIdfR, delete the characters, or coordinates,
  522. in the range given by fIfirstfR and fIlastfR, inclusive.
  523. If some of the items given by fItagOrIdfR don't support
  524. indexing operations then they ignore dchars.
  525. Text items interpret fIfirstfR and fIlastfR as indices to a character,
  526. line and polygon items interpret them indices to a coordinate (an x,y pair).
  527. Indices are described in INDICES above.
  528. If fIlastfR is omitted, it defaults to fIfirstfR.
  529. This command returns an empty string.
  530. .TP
  531. fIpathName fBdelete fR?fItagOrId tagOrId ...fR?
  532. Delete each of the items given by each fItagOrIdfR, and return
  533. an empty string.
  534. .TP
  535. fIpathName fBdtag fItagOrId fR?fItagToDeletefR?
  536. For each of the items given by fItagOrIdfR, delete the
  537. tag given by fItagToDeletefR from the list of those
  538. associated with the item.
  539. If an item doesn't have the tag fItagToDeletefR then
  540. the item is unaffected by the command.
  541. If fItagToDeletefR is omitted then it defaults to fItagOrIdfR.
  542. This command returns an empty string.
  543. .TP
  544. fIpathName fBfind fIsearchCommand fR?fIarg arg ...fR?
  545. This command returns a list consisting of all the items that
  546. meet the constraints specified by fIsearchCommandfR and
  547. fIargfR's.
  548. fISearchCommandfR and fIargsfR have any of the forms
  549. accepted by the fBaddtagfR command.
  550. The items are returned in stacking order, with the lowest item first.
  551. .TP
  552. fIpathName fBfocus fR?fItagOrIdfR?
  553. Set the keyboard focus for the canvas widget to the item given by
  554. fItagOrIdfR.
  555. If fItagOrIdfR refers to several items, then the focus is set
  556. to the first such item in the display list that supports the
  557. insertion cursor.
  558. If fItagOrIdfR doesn't refer to any items, or if none of them
  559. support the insertion cursor, then the focus isn't changed.
  560. If fItagOrIdfR is an empty
  561. string, then the focus item is reset so that no item has the focus.
  562. If fItagOrIdfR is not specified then the command returns the
  563. id for the item that currently has the focus, or an empty string
  564. if no item has the focus.
  565. .RS
  566. .PP
  567. Once the focus has been set to an item, the item will display
  568. the insertion cursor and all keyboard events will be directed
  569. to that item.
  570. The focus item within a canvas and the focus window on the
  571. screen (set with the fBfocusfR command) are totally independent:
  572. a given item doesn't actually have the input focus unless (a)
  573. its canvas is the focus window and (b) the item is the focus item
  574. within the canvas.
  575. In most cases it is advisable to follow the fBfocusfR widget
  576. command with the fBfocusfR command to set the focus window to
  577. the canvas (if it wasn't there already).
  578. .RE
  579. .TP
  580. fIpathName fBgettagsfR fItagOrIdfR
  581. Return a list whose elements are the tags associated with the
  582. item given by fItagOrIdfR.
  583. If fItagOrIdfR refers to more than one item, then the tags
  584. are returned from the first such item in the display list.
  585. If fItagOrIdfR doesn't refer to any items, or if the item
  586. contains no tags, then an empty string is returned.
  587. .TP
  588. fIpathName fBicursor fItagOrId indexfR
  589. Set the position of the insertion cursor for the item(s) given by fItagOrIdfR
  590. to just before the character whose position is given by fIindexfR.
  591. If some or all of the items given by fItagOrIdfR don't support
  592. an insertion cursor then this command has no effect on them.
  593. See INDICES above for a description of the
  594. legal forms for fIindexfR.
  595. Note:  the insertion cursor is only displayed in an item if
  596. that item currently has the keyboard focus (see the widget
  597. command fBfocusfR, below), but the cursor position may
  598. be set even when the item doesn't have the focus.
  599. This command returns an empty string.
  600. .TP
  601. fIpathName fBindex fItagOrId indexfR
  602. This command returns a decimal string giving the numerical index
  603. within fItagOrIdfR corresponding to fIindexfR.
  604. fIIndexfR gives a textual description of the desired position
  605. as described in INDICES above.
  606. Text items interpret fIindexfR as an index to a  character,
  607. line and polygon items interpret it as an index to a coordinate (an x,y pair).
  608. The return value is guaranteed to lie between 0 and the number
  609. of characters, or coordinates, within the item, inclusive.
  610. If fItagOrIdfR refers to multiple items, then the index
  611. is processed in the first of these items that supports indexing
  612. operations (in display list order).
  613. .TP
  614. fIpathName fBinsert fItagOrId beforeThis stringfR
  615. For each of the items given by fItagOrIdfR, if the item supports
  616. text or coordinate, insertion then fIstringfR is inserted into the item's
  617. text just before the character, or coordinate, whose index is fIbeforeThisfR.
  618. Text items interpret fIbeforeThisfR as an index to a  character,
  619. line and polygon items interpret it as an index to a coordinate (an x,y pair).
  620. For lines and polygons the fIstringfR must be a valid coordinate
  621. sequence.
  622. See INDICES above for information about the forms allowed
  623. for fIbeforeThisfR.
  624. This command returns an empty string.
  625. .TP
  626. fIpathName fBitemcgetfR fItagOrIdfR fIoptionfR
  627. Returns the current value of the configuration option for the
  628. item given by fItagOrIdfR whose name is fIoptionfR.
  629. This command is similar to the fBcgetfR widget command except that
  630. it applies to a particular item rather than the widget as a whole.
  631. fIOptionfR may have any of the values accepted by the fBcreatefR
  632. widget command when the item was created.
  633. If fItagOrIdfR is a tag that refers to more than one item,
  634. the first (lowest) such item is used.
  635. .TP
  636. fIpathName fBitemconfigure fItagOrIdfR ?fIoptionfR? ?fIvaluefR? ?fIoption value ...fR?
  637. This command is similar to the fBconfigurefR widget command except
  638. that it modifies item-specific options for the items given by
  639. fItagOrIdfR instead of modifying options for the overall
  640. canvas widget.
  641. If no fIoptionfR is specified, returns a list describing all of
  642. the available options for the first item given by fItagOrIdfR
  643. (see fBTk_ConfigureInfofR for
  644. information on the format of this list).  If fIoptionfR is specified
  645. with no fIvaluefR, then the command returns a list describing the
  646. one named option (this list will be identical to the corresponding
  647. sublist of the value returned if no fIoptionfR is specified).  If
  648. one or more fIoption-valuefR pairs are specified, then the command
  649. modifies the given widget option(s) to have the given value(s) in
  650. each of the items given by fItagOrIdfR;  in
  651. this case the command returns an empty string.
  652. The fIoptionfRs and fIvaluefRs are the same as those permissible
  653. in the fBcreatefR widget command when the item(s) were created;
  654. see the sections describing individual item types below for details
  655. on the legal options.
  656. .TP
  657. fIpathName fBlower fItagOrId fR?fIbelowThisfR?
  658. Move all of the items given by fItagOrIdfR to a new position
  659. in the display list just before the item given by fIbelowThisfR.
  660. If fItagOrIdfR refers to more than one item then all are moved
  661. but the relative order of the moved items will not be changed.
  662. fIBelowThisfR is a tag or id;  if it refers to more than one
  663. item then the first (lowest) of these items in the display list is used
  664. as the destination location for the moved items.
  665. Note: this command has no effect on window items.  Window items always
  666. obscure other item types, and the stacking order of window items is
  667. determined by the fBraisefR and fBlowerfR commands, not the
  668. fBraisefR and fBlowerfR widget commands for canvases.
  669. This command returns an empty string.
  670. .TP
  671. fIpathName fBmove fItagOrId xAmount yAmountfR
  672. Move each of the items given by fItagOrIdfR in the canvas coordinate
  673. space by adding fIxAmountfR to the x-coordinate of each point
  674. associated with the item and fIyAmountfR to the y-coordinate of
  675. each point associated with the item.
  676. This command returns an empty string.
  677. .TP
  678. fIpathName fBpostscript fR?fIoption value option value ...fR?
  679. Generate a Postscript representation for part or all of the canvas.
  680. If the fB-filefR option is specified then the Postscript is written
  681. to a file and an empty string is returned;  otherwise the Postscript
  682. is returned as the result of the command.
  683. If the interpreter that owns the canvas is marked as safe, the operation
  684. will fail because safe interpreters are not allowed to write files.
  685. If the fB-channelfR option is specified, the argument denotes the name
  686. of a channel already opened for writing. The Postscript is written to
  687. that channel, and the channel is left open for further writing at the end
  688. of the operation.
  689. The Postscript is created in Encapsulated Postscript form using
  690. version 3.0 of the Document Structuring Conventions.
  691. Note: by default Postscript is only generated for information that
  692. appears in the canvas's window on the screen.  If the canvas is
  693. freshly created it may still have its initial size of 1x1 pixel
  694. so nothing will appear in the Postscript.  To get around this problem
  695. either invoke the "update" command to wait for the canvas window
  696. to reach its final size, or else use the fB-widthfR and fB-heightfR
  697. options to specify the area of the canvas to print.
  698. The fIoptionfR-fIvaluefR argument pairs provide additional
  699. information to control the generation of Postscript.  The following
  700. options are supported:
  701. .RS
  702. .TP
  703. fB-colormap fIvarNamefR
  704. fIVarNamefR must be the name of an array variable
  705. that specifies a color mapping to use in the Postscript.
  706. Each element of fIvarNamefR must consist of Postscript
  707. code to set a particular color value (e.g. ``fB1.0 1.0 0.0 setrgbcolorfR'').
  708. When outputting color information in the Postscript, Tk checks
  709. to see if there is an element of fIvarNamefR with the same
  710. name as the color.
  711. If so, Tk uses the value of the element as the Postscript command
  712. to set the color.
  713. If this option hasn't been specified, or if there isn't an entry
  714. in fIvarNamefR for a given color, then Tk uses the red, green,
  715. and blue intensities from the X color.
  716. .TP
  717. fB-colormode fImodefR
  718. Specifies how to output color information.  fIModefR must be either
  719. fBcolorfR (for full color output), fBgrayfR (convert all colors
  720. to their gray-scale equivalents) or fBmonofR (convert all colors
  721. to black or white).
  722. .TP
  723. fB-file fIfileNamefR
  724. Specifies the name of the file in which to write the Postscript.
  725. If this option isn't specified then the Postscript is returned as the
  726. result of the command instead of being written to a file.
  727. .TP
  728. fB-fontmap fIvarNamefR
  729. fIVarNamefR must be the name of an array variable
  730. that specifies a font mapping to use in the Postscript.
  731. Each element of fIvarNamefR must consist of a Tcl list with
  732. two elements, which are the name and point size of a Postscript font.
  733. When outputting Postscript commands for a particular font, Tk
  734. checks to see if fIvarNamefR contains an element with the same
  735. name as the font.
  736. If there is such an element, then the font information contained in
  737. that element is used in the Postscript.
  738. Otherwise Tk attempts to guess what Postscript font to use.
  739. Tk's guesses generally only work for well-known fonts such as
  740. Times and Helvetica and Courier, and only if the X font name does not
  741. omit any dashes up through the point size.
  742. For example, fB-*-Courier-Bold-R-Normal--*-120-*fR will work but
  743. fB*Courier-Bold-R-Normal*120*fR will not;  Tk needs the dashes to
  744. parse the font name).
  745. .TP
  746. fB-height fIsizefR
  747. Specifies the height of the area of the canvas to print.
  748. Defaults to the height of the canvas window.
  749. .TP
  750. fB-pageanchor fIanchorfR
  751. Specifies which point of the printed area of the canvas should appear over
  752. the positioning point on the page (which is given by the fB-pagexfR
  753. and fB-pageyfR options).
  754. For example, fB-pageanchor nfR means that the top center of the
  755. area of the canvas being printed (as it appears in the canvas window)
  756. should be over the positioning point. Defaults to fBcenterfR.
  757. .TP
  758. fB-pageheight fIsizefR
  759. Specifies that the Postscript should be scaled in both x and y so
  760. that the printed area is fIsizefR high on the Postscript page.
  761. fISizefR consists of a floating-point number followed by
  762. fBcfR for centimeters, fBifR for inches, fBmfR for millimeters,
  763. or fBpfR or nothing for printer's points (1/72 inch).
  764. Defaults to the height of the printed area on the screen.
  765. If both fB-pageheightfR and fB-pagewidthfR are specified then
  766. the scale factor from fB-pagewidthfR is used (non-uniform scaling
  767. is not implemented).
  768. .TP
  769. fB-pagewidth fIsizefR
  770. Specifies that the Postscript should be scaled in both x and y so
  771. that the printed area is fIsizefR wide on the Postscript page.
  772. fISizefR has the same form as for fB-pageheightfR.
  773. Defaults to the width of the printed area on the screen.
  774. If both fB-pageheightfR and fB-pagewidthfR are specified then
  775. the scale factor from fB-pagewidthfR  is used (non-uniform scaling
  776. is not implemented).
  777. .TP
  778. fB-pagex fIpositionfR
  779. fIPositionfR gives the x-coordinate of the positioning point on
  780. the Postscript page, using any of the forms allowed for fB-pageheightfR.
  781. Used in conjunction with the fB-pageyfR and fB-pageanchorfR options
  782. to determine where the printed area appears on the Postscript page.
  783. Defaults to the center of the page.
  784. .TP
  785. fB-pagey fIpositionfR
  786. fIPositionfR gives the y-coordinate of the positioning point on
  787. the Postscript page, using any of the forms allowed for fB-pageheightfR.
  788. Used in conjunction with the fB-pagexfR and fB-pageanchorfR options
  789. to determine where the printed area appears on the Postscript page.
  790. Defaults to the center of the page.
  791. .TP
  792. fB-rotate fIbooleanfR
  793. fIBooleanfR specifies whether the printed area is to be rotated 90
  794. degrees.
  795. In non-rotated output the x-axis of the printed area runs along
  796. the short dimension of the page (``portrait'' orientation);
  797. in rotated output the x-axis runs along the long dimension of the
  798. page (``landscape'' orientation).
  799. Defaults to non-rotated.
  800. .TP
  801. fB-width fIsizefR
  802. Specifies the width of the area of the canvas to print.
  803. Defaults to the width of the canvas window.
  804. .TP
  805. fB-x fIpositionfR
  806. Specifies the x-coordinate of the left edge of the area of the
  807. canvas that is to be printed, in canvas coordinates, not window
  808. coordinates.
  809. Defaults to the coordinate of the left edge of the window.
  810. .TP
  811. fB-y fIpositionfR
  812. Specifies the y-coordinate of the top edge of the area of the
  813. canvas that is to be printed, in canvas coordinates, not window
  814. coordinates.
  815. Defaults to the coordinate of the top edge of the window.
  816. .RE
  817. .TP
  818. fIpathName fBraise fItagOrId fR?fIaboveThisfR?
  819. Move all of the items given by fItagOrIdfR to a new position
  820. in the display list just after the item given by fIaboveThisfR.
  821. If fItagOrIdfR refers to more than one item then all are moved
  822. but the relative order of the moved items will not be changed.
  823. fIAboveThisfR is a tag or id;  if it refers to more than one
  824. item then the last (topmost) of these items in the display list is used
  825. as the destination location for the moved items.
  826. Note: this command has no effect on window items.  Window items always
  827. obscure other item types, and the stacking order of window items is
  828. determined by the fBraisefR and fBlowerfR commands, not the
  829. fBraisefR and fBlowerfR widget commands for canvases.
  830. This command returns an empty string.
  831. .TP
  832. fIpathName fBscale fItagOrId xOrigin yOrigin xScale yScalefR
  833. Rescale all of the items given by fItagOrIdfR in canvas coordinate
  834. space.
  835. fIXOriginfR and fIyOriginfR identify the origin for the scaling
  836. operation and fIxScalefR and fIyScalefR identify the scale
  837. factors for x- and y-coordinates, respectively (a scale factor of
  838. 1.0 implies no change to that coordinate).
  839. For each of the points defining each item, the x-coordinate is
  840. adjusted to change the distance from fIxOriginfR by a factor
  841. of fIxScalefR.
  842. Similarly, each y-coordinate is adjusted to change the distance
  843. from fIyOriginfR by a factor of fIyScalefR.
  844. This command returns an empty string.
  845. .TP
  846. fIpathName fBscanfR fIoption argsfR
  847. This command is used to implement scanning on canvases.  It has
  848. two forms, depending on fIoptionfR:
  849. .RS
  850. .TP
  851. fIpathName fBscan mark fIx yfR
  852. Records fIxfR and fIyfR and the canvas's current view;  used
  853. in conjunction with later fBscan dragtofR commands.
  854. Typically this command is associated with a mouse button press in
  855. the widget and fIxfR and fIyfR are the coordinates of the
  856. mouse.  It returns an empty string.
  857. .TP
  858. fIpathName fBscan dragto fIx y ?gain?fR.
  859. This command computes the difference between its fIxfR and fIyfR
  860. arguments (which are typically mouse coordinates) and the fIxfR and
  861. fIyfR arguments to the last fBscan markfR command for the widget.
  862. It then adjusts the view by fIgainfR times the
  863. difference in coordinates, where fIgainfR defaults to 10.
  864. This command is typically associated
  865. with mouse motion events in the widget, to produce the effect of
  866. dragging the canvas at high speed through its window.  The return
  867. value is an empty string.
  868. .RE
  869. .TP
  870. fIpathName fBselect fIoptionfR ?fItagOrId argfR?
  871. Manipulates the selection in one of several ways, depending on
  872. fIoptionfR.
  873. The command may take any of the forms described below.
  874. In all of the descriptions below, fItagOrIdfR must refer to
  875. an item that supports indexing and selection;  if it refers to
  876. multiple items then the first of
  877. these that supports indexing and the selection is used.
  878. fIIndexfR gives a textual description of a position
  879. within fItagOrIdfR, as described in INDICES above.
  880. .RS
  881. .TP
  882. fIpathName fBselect adjust fItagOrId indexfR
  883. Locate the end of the selection in fItagOrIdfR nearest
  884. to the character given by fIindexfR, and adjust that
  885. end of the selection to be at fIindexfR (i.e. including
  886. but not going beyond fIindexfR).
  887. The other end of the selection is made the anchor point
  888. for future fBselect tofR commands.
  889. If the selection isn't currently in fItagOrIdfR then
  890. this command behaves the same as the fBselect tofR widget
  891. command.
  892. Returns an empty string.
  893. .TP
  894. fIpathName fBselect clearfR
  895. Clear the selection if it is in this widget.
  896. If the selection isn't in this widget then the command
  897. has no effect.
  898. Returns an empty string.
  899. .TP
  900. fIpathName fBselect from fItagOrId indexfR
  901. Set the selection anchor point for the widget to be just
  902. before the character
  903. given by fIindexfR in the item given by fItagOrIdfR.
  904. This command doesn't change the selection;  it just sets
  905. the fixed end of the selection for future fBselect tofR
  906. commands.
  907. Returns an empty string.
  908. .TP
  909. fIpathName fBselect itemfR
  910. Returns the id of the selected item, if the selection is in an
  911. item in this canvas.
  912. If the selection is not in this canvas then an empty string
  913. is returned.
  914. .TP
  915. fIpathName fBselect to fItagOrId indexfR
  916. Set the selection to consist of those characters of fItagOrIdfR
  917. between the selection anchor point and
  918. fIindexfR.
  919. The new selection will include the character given by fIindexfR;
  920. it will include the character given by the anchor point only if
  921. fIindexfR is greater than or equal to the anchor point.
  922. The anchor point is determined by the most recent fBselect adjustfR
  923. or fBselect fromfR command for this widget.
  924. If the selection anchor point for the widget isn't currently in
  925. fItagOrIdfR, then it is set to the same character given
  926. by fIindexfR.
  927. Returns an empty string.
  928. .RE
  929. .TP
  930. fIpathName fBtypefI tagOrIdfR
  931. Returns the type of the item given by fItagOrIdfR, such as
  932. fBrectanglefR or fBtextfR.
  933. If fItagOrIdfR refers to more than one item, then the type
  934. of the first item in the display list is returned.
  935. If fItagOrIdfR doesn't refer to any items at all then
  936. an empty string is returned.
  937. .TP
  938. fIpathName fBxview  fR?fIargsfR?
  939. This command is used to query and change the horizontal position of the
  940. information displayed in the canvas's window.
  941. It can take any of the following forms:
  942. .RS
  943. .TP
  944. fIpathName fBxviewfR
  945. Returns a list containing two elements.
  946. Each element is a real fraction between 0 and 1;  together they describe
  947. the horizontal span that is visible in the window.
  948. For example, if the first element is .2 and the second element is .6,
  949. 20% of the canvas's area (as defined by the fB-scrollregionfR option)
  950. is off-screen to the left, the middle 40% is visible
  951. in the window, and 40% of the canvas is off-screen to the right.
  952. These are the same values passed to scrollbars via the fB-xscrollcommandfR
  953. option.
  954. .TP
  955. fIpathName fBxview movetofI fractionfR
  956. Adjusts the view in the window so that fIfractionfR of the
  957. total width of the canvas is off-screen to the left.
  958. fIFractionfR must be a fraction between 0 and 1.
  959. .TP
  960. fIpathName fBxview scroll fInumber whatfR
  961. This command shifts the view in the window left or right according to
  962. fInumberfR and fIwhatfR.
  963. fINumberfR must be an integer.
  964. fIWhatfR must be either fBunitsfR or fBpagesfR or an abbreviation
  965. of one of these.
  966. If fIwhatfR is fBunitsfR, the view adjusts left or right in units
  967. of the fBxScrollIncrementfR option, if it is greater than zero,
  968. or in units of one-tenth the window's width otherwise.
  969. If fIwhat is fBpagesfR then the view
  970. adjusts in units of nine-tenths the window's width.
  971. If fInumberfR is negative then information farther to the left
  972. becomes visible;  if it is positive then information farther to the right
  973. becomes visible.
  974. .RE
  975. .TP
  976. fIpathName fByview fI?argsfR?
  977. This command is used to query and change the vertical position of the
  978. information displayed in the canvas's window.
  979. It can take any of the following forms:
  980. .RS
  981. .TP
  982. fIpathName fByviewfR
  983. Returns a list containing two elements.
  984. Each element is a real fraction between 0 and 1;  together they describe
  985. the vertical span that is visible in the window.
  986. For example, if the first element is .6 and the second element is 1.0,
  987. the lowest 40% of the canvas's area (as defined by the fB-scrollregionfR
  988. option) is visible in the window.
  989. These are the same values passed to scrollbars via the fB-yscrollcommandfR
  990. option.
  991. .TP
  992. fIpathName fByview movetofI fractionfR
  993. Adjusts the view in the window so that fIfractionfR of the canvas's
  994. area is off-screen to the top.
  995. fIFractionfR is a fraction between 0 and 1.
  996. .TP
  997. fIpathName fByview scroll fInumber whatfR
  998. This command adjusts the view in the window up or down according to
  999. fInumberfR and fIwhatfR.
  1000. fINumberfR must be an integer.
  1001. fIWhatfR must be either fBunitsfR or fBpagesfR.
  1002. If fIwhatfR is fBunitsfR, the view adjusts up or down in units
  1003. of the fByScrollIncrementfR option, if it is greater than zero,
  1004. or in units of one-tenth the window's height otherwise.
  1005. If fIwhatfR is fBpagesfR then
  1006. the view adjusts in units of nine-tenths the window's height.
  1007. If fInumberfR is negative then higher information becomes
  1008. visible;  if it is positive then lower information
  1009. becomes visible.
  1010. .RE
  1011. .SH "OVERVIEW OF ITEM TYPES"
  1012. .PP
  1013. The sections below describe the various types of items supported
  1014. by canvas widgets.  Each item type is characterized by two things:
  1015. first, the form of the fBcreatefR command used to create
  1016. instances of the type;  and second, a set of configuration options
  1017. for items of that type, which may be used in the
  1018. fBcreatefR and fBitemconfigurefR widget commands.
  1019. Most items don't support indexing or selection or the commands
  1020. related to them, such as fBindexfR and fBinsertfR.
  1021. Where items do support these facilities, it is noted explicitly
  1022. in the descriptions below.
  1023. At present, text, line and polygon items provide this support.
  1024. For lines and polygons the indexing facility is used to manipulate
  1025. the coordinates of the item.
  1026. .SH "COMMON ITEM OPTIONS"
  1027. .PP
  1028. Many items share a common set of options.  These options are
  1029. explained here, and then referred to be each widget type for brevity.
  1030. .PP
  1031. .TP
  1032. fB-dash fIpatternfR
  1033. .TP
  1034. fB-activedash fIpatternfR
  1035. .TP
  1036. fB-disableddash fIpatternfR
  1037. This option specifies dash patterns for the normal, active
  1038. state, and disabled state of an item.
  1039. fIpatternfR may have any of the forms accepted by fBTk_GetDashfR.
  1040. If the dash options are omitted then the default is a solid outline.
  1041. See "DASH PATTERNS" for more information.
  1042. .TP
  1043. fB-dashoffset fIoffsetfR
  1044. The starting fIoffsetfR in pixels into the pattern provided by the
  1045. fB-dashfR option.  fB-dashoffsetfR is ignored if there is no
  1046. fB-dashfR pattern.  The fIoffsetfR may have any of the forms described
  1047. in the fBCOORDINATESfR section above.
  1048. .TP
  1049. fB-fill fIcolorfR
  1050. .TP
  1051. fB-activefill fIcolorfR
  1052. .TP
  1053. fB-disabledfill fIcolorfR
  1054. Specifies the color to be used to fill item's area.
  1055. in its normal, active, and disabled states,
  1056. fIColorfR may have any of the forms accepted by fBTk_GetColorfR.
  1057. If fIcolorfR is an empty string (the default),
  1058. then the item will not be filled.
  1059. For the line item, it specifies the color of the line drawn.
  1060. For the text item, it specifies the foreground color of the text.
  1061. .TP
  1062. fB-outline fIcolorfR
  1063. .TP
  1064. fB-activeoutline fIcolorfR
  1065. .TP
  1066. fB-disabledoutline fIcolorfR
  1067. This option specifies the color that should be used to draw the
  1068. outline of the item in its normal, active and disabled states.
  1069. fIColorfR may have any of the forms accepted by fBTk_GetColorfR.
  1070. This option defaults to fBblackfR.  If fIcolorfR is specified
  1071. as an empty string then no outline is drawn for the item.
  1072. .TP
  1073. fB-offset fIoffsetfR
  1074. Specifies the offset of stipples.  The offset value can be of the form
  1075. fBx,yfR or fBsidefR, where side can be fBnfR, fBnefR, fBefR,
  1076. fBsefR, fBsfR, fBswfR, fBwfR, fBnwfR, or fBcenterfR. In the
  1077. first case the origin is the origin of the toplevel of the current window.
  1078. For the canvas itself and canvas objects the origin is the canvas origin,
  1079. but putting fB#fR in front of the coordinate pair indicates using the
  1080. toplevel origin instead. For canvas objects, the fB-offsetfR option is
  1081. used for stippling as well.  For the line and polygon canvas items you can
  1082. also specify an index as argument, which connects the stipple origin to one
  1083. of the coordinate points of the line/polygon.
  1084. .TP
  1085. fB-outlinestipple fIbitmapfR
  1086. .TP
  1087. fB-activeoutlinestipple fIbitmapfR
  1088. .TP
  1089. fB-disabledoutlinestipple fIbitmapfR
  1090. This option specifies stipple patterns that should be used to draw the
  1091. outline of the item in its normal, active and disabled states.
  1092. Indicates that the outline for the item should be drawn with a stipple pattern;
  1093. fIbitmapfR specifies the stipple pattern to use, in any of the
  1094. forms accepted by fBTk_GetBitmapfR.
  1095. If the fB-outlinefR option hasn't been specified then this option
  1096. has no effect.
  1097. If fIbitmapfR is an empty string (the default), then the outline is drawn
  1098. in a solid fashion.
  1099. fINote that stipples are not well supported on platforms that do not
  1100. use X11 as their drawing API.fR
  1101. .TP
  1102. fB-stipple fIbitmapfR
  1103. .TP
  1104. fB-activestipple fIbitmapfR
  1105. .TP
  1106. fB-disabledstipple fIbitmapfR
  1107. This option specifies stipple patterns that should be used to fill
  1108. the item in its normal, active and disabled states.
  1109. fIbitmapfR specifies the stipple pattern to use, in any of the
  1110. forms accepted by fBTk_GetBitmapfR.
  1111. If the fB-fillfR option hasn't been specified then this option
  1112. has no effect.
  1113. If fIbitmapfR is an empty string (the default), then filling is done
  1114. in a solid fashion.
  1115. For the text item, it affects the actual text.
  1116. fINote that stipples are not well supported on platforms that do not
  1117. use X11 as their drawing API.fR
  1118. .TP
  1119. fB-state fIstatefR
  1120. This allows an item to override the canvas widget's global fIstatefR
  1121. option.  It takes the same values:
  1122. fInormalfR, fIdisabledfR or fIhiddenfR.
  1123. .TP
  1124. fB-tags fItagListfR
  1125. Specifies a set of tags to apply to the item.
  1126. fITagListfR consists of a list of tag names, which replace any
  1127. existing tags for the item.  fITagListfR may be an empty list.
  1128. .TP
  1129. fB-width fIoutlineWidthfR
  1130. .TP
  1131. fB-activewidth fIoutlineWidthfR
  1132. .TP
  1133. fB-disabledwidth fIoutlineWidthfR
  1134. Specifies the width of the outline to be drawn around
  1135. the item's region, in its normal, active and disabled states.
  1136. fIoutlineWidthfR may be in any of the forms described in the
  1137. fBCOORDINATESfR section above.
  1138. If the fB-outlinefR option has been specified as an empty string then
  1139. this option has no effect.  This option defaults to 1.0.
  1140. For arcs, wide outlines will be drawn centered on the edges of the
  1141. arc's region.
  1142. .SH "ARC ITEMS"
  1143. .PP
  1144. Items of type fBarcfR appear on the display as arc-shaped regions.
  1145. An arc is a section of an oval delimited by two angles (specified
  1146. by the fB-startfR and fB-extentfR options) and displayed in
  1147. one of several ways (specified by the fB-stylefR option).
  1148. Arcs are created with widget commands of the following form:
  1149. .CS
  1150. fIpathName fBcreate arc fIx1 y1 x2 y2 fR?fIoption value option value ...fR?
  1151. fIpathName fBcreate arc fIcoordListfR ?fIoption value option value ...fR?
  1152. .CE
  1153. The arguments fIx1fR, fIy1fR, fIx2fR, and fIy2fR or fIcoordListfR give
  1154. the coordinates of two diagonally opposite corners of a
  1155. rectangular region enclosing the oval that defines the arc.
  1156. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1157. pairs, each of which sets one of the configuration options
  1158. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1159. used in fBitemconfigurefR widget commands to change the item's
  1160. configuration.
  1161. .br
  1162. The following standard options are supported by arcs:
  1163. .CS
  1164. -dash
  1165. -activedash
  1166. -disableddash
  1167. -dashoffset
  1168. -fill
  1169. -activefill
  1170. -disabledfill
  1171. -offset
  1172. -outline
  1173. -activeoutline
  1174. -disabledoutline
  1175. -outlinestipple
  1176. -activeoutlinestipple
  1177. -disabledoutlinestipple
  1178. -stipple
  1179. -activestipple
  1180. -disabledstipple
  1181. -state
  1182. -tags
  1183. -width
  1184. -activewidth
  1185. -disabledwidth
  1186. .CE
  1187. The following extra options are supported for arcs:
  1188. .TP
  1189. fB-extent fIdegreesfR
  1190. Specifies the size of the angular range occupied by the arc.
  1191. The arc's range extends for fIdegreesfR degrees counter-clockwise
  1192. from the starting angle given by the fB-startfR option.
  1193. fIDegreesfR may be negative.
  1194. If it is greater than 360 or less than -360, then fIdegreesfR
  1195. modulo 360 is used as the extent.
  1196. .TP
  1197. fB-start fIdegreesfR
  1198. Specifies the beginning of the angular range occupied by the
  1199. arc.
  1200. fIDegreesfR is given in units of degrees measured counter-clockwise
  1201. from the 3-o'clock position;  it may be either positive or negative.
  1202. .TP
  1203. fB-style fItypefR
  1204. Specifies how to draw the arc.  If fItypefR is fBpieslicefR
  1205. (the default) then the arc's region is defined by a section
  1206. of the oval's perimeter plus two line segments, one between the center
  1207. of the oval and each end of the perimeter section.
  1208. If fItypefR is fBchordfR then the arc's region is defined
  1209. by a section of the oval's perimeter plus a single line segment
  1210. connecting the two end points of the perimeter section.
  1211. If fItypefR is fBarcfR then the arc's region consists of
  1212. a section of the perimeter alone.
  1213. In this last case the fB-fillfR option is ignored.
  1214. .SH "BITMAP ITEMS"
  1215. .PP
  1216. Items of type fBbitmapfR appear on the display as images with
  1217. two colors, foreground and background.
  1218. Bitmaps are created with widget commands of the following form:
  1219. .CS
  1220. fIpathName fBcreate bitmap fIx y fR?fIoption value option value ...fR?
  1221. fIpathName fBcreate bitmap fIcoordListfR ?fIoption value option value ...fR?
  1222. .CE
  1223. The arguments fIxfR and fIyfR or fIcoordListfR specify the coordinates of a
  1224. point used to position the bitmap on the display (see the fB-anchorfR
  1225. option below for more information on how bitmaps are displayed).
  1226. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1227. pairs, each of which sets one of the configuration options
  1228. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1229. used in fBitemconfigurefR widget commands to change the item's
  1230. configuration.
  1231. .br
  1232. The following standard options are supported by bitmaps:
  1233. .CS
  1234. -state
  1235. -tags
  1236. .CE
  1237. The following extra options are supported for bitmaps:
  1238. .TP
  1239. fB-anchor fIanchorPosfR
  1240. fIAnchorPosfR tells how to position the bitmap relative to the
  1241. positioning point for the item;  it may have any of the forms
  1242. accepted by fBTk_GetAnchorfR.  For example, if fIanchorPosfR
  1243. is fBcenterfR then the bitmap is centered on the point;  if
  1244. fIanchorPosfR is fBnfR then the bitmap will be drawn so that
  1245. its top center point is at the positioning point.
  1246. This option defaults to fBcenterfR.
  1247. .TP
  1248. fB-background fIcolorfR
  1249. .TP
  1250. fB-activebackground fIbitmapfR
  1251. .TP
  1252. fB-disabledbackground fIbitmapfR
  1253. Specifies the color to use for each of the bitmap's '0' valued pixels
  1254. in its normal, active and disabled states.
  1255. fIColorfR may have any of the forms accepted by fBTk_GetColorfR.
  1256. If this option isn't specified, or if it is specified as an empty
  1257. string, then nothing is displayed where the bitmap pixels are 0;  this
  1258. produces a transparent effect.
  1259. .TP
  1260. fB-bitmap fIbitmapfR
  1261. .TP
  1262. fB-activebitmap fIbitmapfR
  1263. .TP
  1264. fB-disabledbitmap fIbitmapfR
  1265. Specifies the bitmaps to display in the item in its normal, active and
  1266. disabled states.
  1267. fIBitmapfR may have any of the forms accepted by fBTk_GetBitmapfR.
  1268. .TP
  1269. fB-foreground fIcolorfR
  1270. .TP
  1271. fB-activeforeground fIbitmapfR
  1272. .TP
  1273. fB-disabledforeground fIbitmapfR
  1274. Specifies the color to use for each of the bitmap's '1' valued pixels
  1275. in its normal, active and disabled states.
  1276. fIColorfR may have any of the forms accepted by fBTk_GetColorfR and
  1277. defaults to fBblackfR.
  1278. .SH "IMAGE ITEMS"
  1279. .PP
  1280. Items of type fBimagefR are used to display images on a
  1281. canvas.
  1282. Images are created with widget commands of the following form:
  1283. .CS
  1284. fIpathName fBcreate image fIx y fR?fIoption value option value ...fR?
  1285. fIpathName fBcreate image fIcoordListfR ?fIoption value option value ...fR?
  1286. .CE
  1287. The arguments fIxfR and fIyfR or fIcoordListfR specify the coordinates of a
  1288. point used to position the image on the display (see the fB-anchorfR
  1289. option below for more information).
  1290. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1291. pairs, each of which sets one of the configuration options
  1292. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1293. used in fBitemconfigurefR widget commands to change the item's
  1294. configuration.
  1295. .br
  1296. The following standard options are supported by images:
  1297. .CS
  1298. -state
  1299. -tags
  1300. .CE
  1301. The following extra options are supported for images:
  1302. .TP
  1303. fB-anchor fIanchorPosfR
  1304. fIAnchorPosfR tells how to position the image relative to the
  1305. positioning point for the item;  it may have any of the forms
  1306. accepted by fBTk_GetAnchorfR.  For example, if fIanchorPosfR
  1307. is fBcenterfR then the image is centered on the point;  if
  1308. fIanchorPosfR is fBnfR then the image will be drawn so that
  1309. its top center point is at the positioning point.
  1310. This option defaults to fBcenterfR.
  1311. .TP
  1312. fB-image fInamefR
  1313. .TP
  1314. fB-activeimage fInamefR
  1315. .TP
  1316. fB-disabledimage fInamefR
  1317. Specifies the name of the images to display in the item in is normal,
  1318. active and disabled states.
  1319. This image must have been created previously with the
  1320. fBimage createfR command.
  1321. .SH "LINE ITEMS"
  1322. .PP
  1323. Items of type fBlinefR appear on the display as one or more connected
  1324. line segments or curves.
  1325. Line items support coordinate indexing operations using the canvas
  1326. widget commands: fBdchars, index, insert.fR
  1327. Lines are created with widget commands of the following form:
  1328. .CS
  1329. fIpathName fBcreate line fIx1 y1... xn yn fR?fIoption value option value ...fR?
  1330. fIpathName fBcreate line fIcoordListfR ?fIoption value option value ...fR?
  1331. .CE
  1332. The arguments fIx1fR through fIynfR or fIcoordListfR give
  1333. the coordinates for a series of two or more points that describe
  1334. a series of connected line segments.
  1335. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1336. pairs, each of which sets one of the configuration options
  1337. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1338. used in fBitemconfigurefR widget commands to change the item's
  1339. configuration.
  1340. .br
  1341. The following standard options are supported by lines:
  1342. .CS
  1343. -dash
  1344. -activedash
  1345. -disableddash
  1346. -dashoffset
  1347. -fill
  1348. -activefill
  1349. -disabledfill
  1350. -stipple
  1351. -activestipple
  1352. -disabledstipple
  1353. -state
  1354. -tags
  1355. -width
  1356. -activewidth
  1357. -disabledwidth
  1358. .CE
  1359. The following extra options are supported for lines:
  1360. .TP
  1361. fB-arrow fIwherefR
  1362. Indicates whether or not arrowheads are to be drawn at one or both
  1363. ends of the line.
  1364. fIWherefR must have one of the values fBnonefR (for no arrowheads),
  1365. fBfirstfR (for an arrowhead at the first point of the line),
  1366. fBlastfR (for an arrowhead at the last point of the line), or
  1367. fBbothfR (for arrowheads at both ends).
  1368. This option defaults to fBnonefR.
  1369. .TP
  1370. fB-arrowshape fIshapefR
  1371. This option indicates how to draw arrowheads.
  1372. The fIshapefR argument must be a list with three elements, each
  1373. specifying a distance in any of the forms described in
  1374. the fBCOORDINATESfR section above.
  1375. The first element of the list gives the distance along the line
  1376. from the neck of the arrowhead to its tip.
  1377. The second element gives the distance along the line from the
  1378. trailing points of the arrowhead to the tip, and the third
  1379. element gives the distance from the outside edge of the line to the
  1380. trailing points.
  1381. If this option isn't specified then Tk picks a ``reasonable'' shape.
  1382. .TP
  1383. fB-capstyle fIstylefR
  1384. Specifies the ways in which caps are to be drawn at the endpoints
  1385. of the line.
  1386. fIStylefR may have any of the forms accepted by fBTk_GetCapStylefR
  1387. (fBbuttfR, fBprojectingfR, or fBroundfR).
  1388. If this option isn't specified then it defaults to fBbuttfR.
  1389. Where arrowheads are drawn the cap style is ignored.
  1390. .TP
  1391. fB-joinstyle fIstylefR
  1392. Specifies the ways in which joints are to be drawn at the vertices
  1393. of the line.
  1394. fIStylefR may have any of the forms accepted by fBTk_GetCapStylefR
  1395. (fBbevelfR, fBmiterfR, or fBroundfR).
  1396. If this option isn't specified then it defaults to fBmiterfR.
  1397. If the line only contains two points then this option is
  1398. irrelevant.
  1399. .TP
  1400. fB-smooth fIsmoothMethodfR
  1401. fIsmoothMethodfR must have one of the forms accepted by
  1402. fBTcl_GetBooleanfR or a line smoothing method.  Only fBbezierfR is
  1403. supported in the core, but more can be added at runtime.  If a boolean
  1404. false value or empty string is given, no smoothing is applied.  A boolean
  1405. truth value assume fBbezierfR smoothing.
  1406. It indicates whether or not the line should be drawn as a curve.
  1407. If so, the line is rendered as a set of parabolic splines: one spline
  1408. is drawn for the first and second line segments, one for the second
  1409. and third, and so on.  Straight-line segments can be generated within
  1410. a curve by duplicating the end-points of the desired line segment.
  1411. .TP
  1412. fB-splinesteps fInumberfR
  1413. Specifies the degree of smoothness desired for curves:  each spline
  1414. will be approximated with fInumberfR line segments.  This
  1415. option is ignored unless the fB-smoothfR option is true.
  1416. .SH "OVAL ITEMS"
  1417. .PP
  1418. Items of type fBovalfR appear as circular or oval regions on
  1419. the display.  Each oval may have an outline, a fill, or
  1420. both.  Ovals are created with widget commands of the
  1421. following form:
  1422. .CS
  1423. fIpathName fBcreate oval fIx1 y1 x2 y2 fR?fIoption value option value ...fR?
  1424. fIpathName fBcreate oval fIcoordListfR ?fIoption value option value ...fR?
  1425. .CE
  1426. The arguments fIx1fR, fIy1fR, fIx2fR, and fIy2fR or fIcoordListfR give
  1427. the coordinates of two diagonally opposite corners of a
  1428. rectangular region enclosing the oval.
  1429. The oval will include the top and left edges of the rectangle
  1430. not the lower or right edges.
  1431. If the region is square then the resulting oval is circular;
  1432. otherwise it is elongated in shape.
  1433. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1434. pairs, each of which sets one of the configuration options
  1435. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1436. used in fBitemconfigurefR widget commands to change the item's
  1437. configuration.
  1438. .br
  1439. The following standard options are supported by ovals:
  1440. .CS
  1441. -dash
  1442. -activedash
  1443. -disableddash
  1444. -dashoffset
  1445. -fill
  1446. -activefill
  1447. -disabledfill
  1448. -offset
  1449. -outline
  1450. -activeoutline
  1451. -disabledoutline
  1452. -outlinestipple
  1453. -activeoutlinestipple
  1454. -disabledoutlinestipple
  1455. -stipple
  1456. -activestipple
  1457. -disabledstipple
  1458. -state
  1459. -tags
  1460. -width
  1461. -activewidth
  1462. -disabledwidth
  1463. .CE
  1464. .SH "POLYGON ITEMS"
  1465. .PP
  1466. Items of type fBpolygonfR appear as polygonal or curved filled regions
  1467. on the display.
  1468. Polygon items support coordinate indexing operations using the canvas
  1469. widget commands: fBdchars, index, insert.fR
  1470. Polygons are created with widget commands of the following form:
  1471. .CS
  1472. fIpathName fBcreate polygon fIx1 y1 ... xn yn fR?fIoption value option value ...fR?
  1473. fIpathName fBcreate polygon fIcoordListfR ?fIoption value option value ...fR?
  1474. .CE
  1475. The arguments fIx1fR through fIynfR or fIcoordListfR specify the coordinates for
  1476. three or more points that define a polygon.
  1477. The first point should not be repeated as the last to
  1478. close the shape; Tk will automatically close the periphery between
  1479. the first and last points.
  1480. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1481. pairs, each of which sets one of the configuration options
  1482. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1483. used in fBitemconfigurefR widget commands to change the item's
  1484. configuration.
  1485. .br
  1486. The following standard options are supported by polygons:
  1487. .CS
  1488. -dash
  1489. -activedash
  1490. -disableddash
  1491. -dashoffset
  1492. -fill
  1493. -activefill
  1494. -disabledfill
  1495. -offset
  1496. -outline
  1497. -activeoutline
  1498. -disabledoutline
  1499. -outlinestipple
  1500. -activeoutlinestipple
  1501. -disabledoutlinestipple
  1502. -stipple
  1503. -activestipple
  1504. -disabledstipple
  1505. -state
  1506. -tags
  1507. -width
  1508. -activewidth
  1509. -disabledwidth
  1510. .CE
  1511. The following extra options are supported for polygons:
  1512. .TP
  1513. fB-joinstyle fIstylefR
  1514. Specifies the ways in which joints are to be drawn at the vertices
  1515. of the outline.
  1516. fIStylefR may have any of the forms accepted by fBTk_GetCapStylefR
  1517. (fBbevelfR, fBmiterfR, or fBroundfR).
  1518. If this option isn't specified then it defaults to fBmiterfR.
  1519. .TP
  1520. fB-smooth fIbooleanfR
  1521. fIBooleanfR must have one of the forms accepted by fBTcl_GetBooleanfR.
  1522. It indicates whether or not the polygon should be drawn with a
  1523. curved perimeter.
  1524. If so, the outline of the polygon becomes a set of parabolic splines,
  1525. one spline for the first and second line segments, one for the second
  1526. and third, and so on.  Straight-line segments can be generated in a
  1527. smoothed polygon by duplicating the end-points of the desired line segment.
  1528. .TP
  1529. fB-splinesteps fInumberfR
  1530. Specifies the degree of smoothness desired for curves:  each spline
  1531. will be approximated with fInumberfR line segments.  This
  1532. option is ignored unless the fB-smoothfR option is true.
  1533. .PP
  1534. Polygon items are different from other items such as rectangles, ovals
  1535. and arcs in that interior points are considered to be ``inside'' a
  1536. polygon (e.g. for purposes of the fBfind closestfR and
  1537. fBfind overlappingfR widget commands) even if it is not filled.
  1538. For most other item types, an
  1539. interior point is considered to be inside the item only if the item
  1540. is filled or if it has neither a fill nor an outline.  If you would
  1541. like an unfilled polygon whose interior points are not considered
  1542. to be inside the polygon, use a line item instead.
  1543. .SH "RECTANGLE ITEMS"
  1544. .PP
  1545. Items of type fBrectanglefR appear as rectangular regions on
  1546. the display.  Each rectangle may have an outline, a fill, or
  1547. both.  Rectangles are created with widget commands of the
  1548. following form:
  1549. .CS
  1550. fIpathName fBcreate rectangle fIx1 y1 x2 y2 fR?fIoption value option value ...fR?
  1551. fIpathName fBcreate rectangle fIcoordListfR ?fIoption value option value ...fR?
  1552. .CE
  1553. The arguments fIx1fR, fIy1fR, fIx2fR, and fIy2fR or fIcoordListfR give
  1554. the coordinates of two diagonally opposite corners of the rectangle
  1555. (the rectangle will include its upper and left edges but not
  1556. its lower or right edges).
  1557. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1558. pairs, each of which sets one of the configuration options
  1559. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1560. used in fBitemconfigurefR widget commands to change the item's
  1561. configuration.
  1562. .br
  1563. The following standard options are supported by rectangles:
  1564. .CS
  1565. -dash
  1566. -activedash
  1567. -disableddash
  1568. -dashoffset
  1569. -fill
  1570. -activefill
  1571. -disabledfill
  1572. -offset
  1573. -outline
  1574. -activeoutline
  1575. -disabledoutline
  1576. -outlinestipple
  1577. -activeoutlinestipple
  1578. -disabledoutlinestipple
  1579. -stipple
  1580. -activestipple
  1581. -disabledstipple
  1582. -state
  1583. -tags
  1584. -width
  1585. -activewidth
  1586. -disabledwidth
  1587. .CE
  1588. .SH "TEXT ITEMS"
  1589. .PP
  1590. A text item displays a string of characters on the screen in one
  1591. or more lines.
  1592. Text items support indexing and selection, along with the
  1593. following text-related canvas widget commands:  fBdcharsfR,
  1594. fBfocusfR, fBicursorfR, fBindexfR, fBinsertfR,
  1595. fBselectfR.
  1596. Text items are created with widget commands of the following
  1597. form:
  1598. .CS
  1599. fIpathName fBcreate text fIx y fR?fIoption value option value ...fR?
  1600. fIpathName fBcreate text fIcoordListfR ?fIoption value option value ...fR?
  1601. .CE
  1602. The arguments fIxfR and fIyfR or fIcoordListfR specify the coordinates of a
  1603. point used to position the text on the display (see the options
  1604. below for more information on how text is displayed).
  1605. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1606. pairs, each of which sets one of the configuration options
  1607. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1608. used in fBitemconfigurefR widget commands to change the item's
  1609. configuration.
  1610. .br
  1611. The following standard options are supported by text items:
  1612. .CS
  1613. -fill
  1614. -activefill
  1615. -disabledfill
  1616. -stipple
  1617. -activestipple
  1618. -disabledstipple
  1619. -state
  1620. -tags
  1621. .CE
  1622. The following extra options are supported for text items:
  1623. .TP
  1624. fB-anchor fIanchorPosfR
  1625. fIAnchorPosfR tells how to position the text relative to the
  1626. positioning point for the text;  it may have any of the forms
  1627. accepted by fBTk_GetAnchorfR.  For example, if fIanchorPosfR
  1628. is fBcenterfR then the text is centered on the point;  if
  1629. fIanchorPosfR is fBnfR then the text will be drawn such that
  1630. the top center point of the rectangular region occupied by the
  1631. text will be at the positioning point.
  1632. This option defaults to fBcenterfR.
  1633. .TP
  1634. fB-font fIfontNamefR
  1635. Specifies the font to use for the text item.
  1636. fIFontNamefR may be any string acceptable to fBTk_GetFontfR.
  1637. If this option isn't specified, it defaults to a system-dependent
  1638. font.
  1639. .TP
  1640. fB-justify fIhowfR
  1641. Specifies how to justify the text within its bounding region.
  1642. fIHowfR must be one of the values fBleftfR, fBrightfR,
  1643. or fBcenterfR.
  1644. This option will only matter if the text is displayed as multiple
  1645. lines.
  1646. If the option is omitted, it defaults to fBleftfR.
  1647. .TP
  1648. fB-text fIstringfR
  1649. fIStringfR specifies the characters to be displayed in the text item.
  1650. Newline characters cause line breaks.
  1651. The characters in the item may also be changed with the
  1652. fBinsertfR and fBdeletefR widget commands.
  1653. This option defaults to an empty string.
  1654. .TP
  1655. fB-width fIlineLengthfR
  1656. Specifies a maximum line length for the text, in any of the forms
  1657. described in the fBCOORDINATESfR section above.
  1658. If this option is zero (the default) the text is broken into
  1659. lines only at newline characters.
  1660. However, if this option is non-zero then any line that would
  1661. be longer than fIlineLengthfR is broken just before a space
  1662. character to make the line shorter than fIlineLengthfR;  the
  1663. space character is treated as if it were a newline
  1664. character.
  1665. .SH "WINDOW ITEMS"
  1666. .PP
  1667. Items of type fBwindowfR cause a particular window to be displayed
  1668. at a given position on the canvas.
  1669. Window items are created with widget commands of the following form:
  1670. .CS
  1671. fIpathName fBcreate window fIx y fR?fIoption value option value ...fR?
  1672. fIpathName fBcreate window fIcoordListfR ?fIoption value option value ...fR?
  1673. .CE
  1674. The arguments fIxfR and fIyfR or fIcoordListfR specify the coordinates of a
  1675. point used to position the window on the display (see the fB-anchorfR
  1676. option below for more information on how bitmaps are displayed).
  1677. After the coordinates there may be any number of fIoptionfR-fIvaluefR
  1678. pairs, each of which sets one of the configuration options
  1679. for the item.  These same fIoptionfR-fIvaluefR pairs may be
  1680. used in fBitemconfigurefR widget commands to change the item's
  1681. configuration.
  1682. .br
  1683. The following standard options are supported by window items:
  1684. .CS
  1685. -state
  1686. -tags
  1687. .CE
  1688. The following extra options are supported for window items:
  1689. .TP
  1690. fB-anchor fIanchorPosfR
  1691. fIAnchorPosfR tells how to position the window relative to the
  1692. positioning point for the item;  it may have any of the forms
  1693. accepted by fBTk_GetAnchorfR.  For example, if fIanchorPosfR
  1694. is fBcenterfR then the window is centered on the point;  if
  1695. fIanchorPosfR is fBnfR then the window will be drawn so that
  1696. its top center point is at the positioning point.
  1697. This option defaults to fBcenterfR.
  1698. .TP
  1699. fB-height fIpixelsfR
  1700. Specifies the height to assign to the item's window.
  1701. fIPixelsfR may have any of the
  1702. forms described in the fBCOORDINATESfR section above.
  1703. If this option isn't specified, or if it is specified as an empty
  1704. string, then the window is given whatever height it requests internally.
  1705. .TP
  1706. fB-width fIpixelsfR
  1707. Specifies the width to assign to the item's window.
  1708. fIPixelsfR may have any of the
  1709. forms described in the fBCOORDINATESfR section above.
  1710. If this option isn't specified, or if it is specified as an empty
  1711. string, then the window is given whatever width it requests internally.
  1712. .TP
  1713. fB-window fIpathNamefR
  1714. Specifies the window to associate with this item.
  1715. The window specified by fIpathNamefR must either be a child of
  1716. the canvas widget or a child of some ancestor of the canvas widget.
  1717. fIPathNamefR may not refer to a top-level window.
  1718. .PP
  1719. Note:  due to restrictions in the ways that windows are managed, it is not
  1720. possible to draw other graphical items (such as lines and images) on top
  1721. of window items.  A window item always obscures any graphics that
  1722. overlap it, regardless of their order in the display list.
  1723. .SH "APPLICATION-DEFINED ITEM TYPES"
  1724. .PP
  1725. It is possible for individual applications to define new item
  1726. types for canvas widgets using C code.
  1727. See the documentation for fBTk_CreateItemTypefR.
  1728. .SH BINDINGS
  1729. .PP
  1730. In the current implementation, new canvases are not given any
  1731. default behavior:  you'll have to execute explicit Tcl commands
  1732. to give the canvas its behavior.
  1733. .SH CREDITS
  1734. .PP
  1735. Tk's canvas widget is a blatant ripoff of ideas from Joel Bartlett's
  1736. fIezdfR program.  fIEzdfR provides structured graphics in a Scheme
  1737. environment and preceded canvases by a year or two.  Its simple
  1738. mechanisms for placing and animating graphical objects inspired the
  1739. functions of canvases.
  1740. .SH "SEE ALSO"
  1741. bind(n), font(n), image(n), scrollbar(n)
  1742. .SH KEYWORDS
  1743. canvas, widget