home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _eb24a464926831da95bf0860f9b0849b < prev    next >
Text File  |  2000-03-23  |  22KB  |  464 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::DItem - Tix Display Items</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Tk::DItem - Tix Display Items</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#display item types and options">DISPLAY ITEM TYPES AND OPTIONS</A></LI>
  26.     <LI><A HREF="#imagetext items">IMAGETEXT ITEMS</A></LI>
  27.     <UL>
  28.  
  29.         <LI><A HREF="#imagetext item options">Imagetext Item Options</A></LI>
  30.         <LI><A HREF="#imagetext style options">Imagetext Style Options</A></LI>
  31.     </UL>
  32.  
  33.     <LI><A HREF="#text items">TEXT ITEMS</A></LI>
  34.     <UL>
  35.  
  36.         <LI><A HREF="#text item options">Text Item Options</A></LI>
  37.         <LI><A HREF="#text style options">Text Style Options</A></LI>
  38.     </UL>
  39.  
  40.     <LI><A HREF="#window items">WINDOW ITEMS</A></LI>
  41.     <UL>
  42.  
  43.         <LI><A HREF="#window item options">Window Item Options</A></LI>
  44.         <LI><A HREF="#window style options">Window Style Options</A></LI>
  45.     </UL>
  46.  
  47.     <LI><A HREF="#creating display items">CREATING DISPLAY ITEMS</A></LI>
  48.     <LI><A HREF="#creating and manipulating item styles">CREATING AND MANIPULATING ITEM STYLES</A></LI>
  49.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  50.     <LI><A HREF="#style methods">STYLE METHODS</A></LI>
  51.     <LI><A HREF="#example">EXAMPLE</A></LI>
  52.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  53.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  54. </UL>
  55. <!-- INDEX END -->
  56.  
  57. <HR>
  58. <P>
  59. <H1><A NAME="name">NAME</A></H1>
  60. <P>Tk::DItem - Tix Display Items</P>
  61. <P>
  62. <HR>
  63. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  64. <UL>
  65. <LI>Linux</LI>
  66. <LI>Solaris</LI>
  67. <LI>Windows</LI>
  68. </UL>
  69. <HR>
  70. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  71. <P>
  72. <HR>
  73. <H1><A NAME="description">DESCRIPTION</A></H1>
  74. <P>The Tix <STRONG>Display Items</STRONG> and <STRONG>Display Types</STRONG> are devised to
  75. solve a general problem: many Tix widgets (both existing and planned
  76. ones) display many items of many types simultaneously.</P>
  77. <P>For example, a hierarchical listbox widget (see <A HREF="../../../site/lib/Tk/HList.html">the Tk::HList manpage</A>) can display
  78. items
  79. of images, plain text and subwindows in the form of a
  80. hierarchy. Another widget, the tabular listbox widget (see <A HREF="../../../site/lib/Tk/TList.html">the Tk::TList manpage</A>)
  81. also displays items of the
  82. same types, although it arranges the items in a tabular form. Yet
  83. another widget, the spreadsheet widget (see <A HREF="../../../site/lib/Tk/TixGrid.html">the Tk::TixGrid manpage</A>),
  84. also displays similar types
  85. items, but in yet another format.</P>
  86. <P>In these examples, the display items in different widgets are only
  87. different in how they are arranged by the <STRONG>host widget</STRONG>. In Tix,
  88. display items are clearly separated from the host widgets. The
  89. advantage is two-fold: first, the creation and configuration of
  90. display items become uniform across different host widgets. Second,
  91. new display item types can be added without the need to modify the
  92. existing host widgets.</P>
  93. <P>In a way, Tix display items are similar to the items inside Tk
  94. the canvas widget. However, unlike the Tix display items, the canvas
  95. items are not independent of the canvas widget; this makes it
  96. impossible to use the canvas items inside other types of TK widgets.</P>
  97. <P>The appearance of a display item is controlled by a set of
  98. <EM>attributes</EM>. It is observed that each the attributes usually fall
  99. into one of two categroies: ``<EM>individual</EM>'' or
  100. ``<EM>collective</EM>''. For example, the text items inside a HList widget
  101. may all display a different text string; however, in most cases, the
  102. text items share the same color, font and spacing. Instead of keeping
  103. a duplicated version of the same attributes inside each display item,
  104. it will be advantageous to put the collective attributes in a
  105. special object called a <STRONG>display style</STRONG>. First, there is the space
  106. concern: a host widget may have many thousands of items; keeping
  107. dupilcated attributes will be very wasteful. Second, when it becomes
  108. necessary to change a collective attribute, such as changing all the
  109. text items' foreground color to red, it will be more efficient to
  110. change only the display style object than to modify all the text
  111. items one by one.</P>
  112. <P>The attributes of the a display item are thus stored in two places: it
  113. has a set of <STRONG>item options</STRONG> to store its individual attributes. Each
  114. display item is also associated with a <EM>display style</EM>, which specifies
  115. the collective attributes of all items associated with itself.</P>
  116. <P>The division between the individual and collective attributes are
  117. fixed and cannot be changed. Thus, when it becomes necessary for some
  118. items to differ in their collective attributes, two or more <STRONG>display styles</STRONG>
  119. can be used. For example, suppose you want to display two
  120. columns of text items inside an HList widget, one column in red and
  121. the other in blue. You can create a TextStyle object called ``$red''
  122. which defines a red foreground, and another called ``$blue'', which
  123. defines a blue foreground. You can then associate all text items of
  124. the first column to ``$red'' and the second column to ``$blue''</P>
  125. <P>
  126. <HR>
  127. <H1><A NAME="display item types and options">DISPLAY ITEM TYPES AND OPTIONS</A></H1>
  128. <P>Currently there are three types of display items: <STRONG>text</STRONG>,
  129. <STRONG>imagetext</STRONG> and <EM>window</EM>.</P>
  130. <P>
  131. <HR>
  132. <H1><A NAME="imagetext items">IMAGETEXT ITEMS</A></H1>
  133. <P>Display items of the type <STRONG>imagetext</STRONG> are used to display an image
  134. together with a text string. Imagetext items support the following options:</P>
  135. <P>
  136. <H2><A NAME="imagetext item options">Imagetext Item Options</A></H2>
  137. <DL>
  138. <DT><STRONG><A NAME="item_Name%3A_bitmap">Name:    <STRONG>bitmap</STRONG></A></STRONG><BR>
  139. <DD>
  140. <DT><STRONG><A NAME="item_Class%3A_Bitmap">Class:    <STRONG>Bitmap</STRONG></A></STRONG><BR>
  141. <DD>
  142. <DT><STRONG><A NAME="item_Switch%3A_%2Dbitmap">Switch:    <STRONG>-bitmap</STRONG></A></STRONG><BR>
  143. <DD>
  144. Specifies the bitmap to display in the item.
  145. <P></P>
  146. <DT><STRONG><A NAME="item_Name%3A_image">Name:    <STRONG>image</STRONG></A></STRONG><BR>
  147. <DD>
  148. <DT><STRONG><A NAME="item_Class%3A_Image">Class:    <STRONG>Image</STRONG></A></STRONG><BR>
  149. <DD>
  150. <DT><STRONG><A NAME="item_Switch%3A_%2Dimage">Switch:    <STRONG>-image</STRONG></A></STRONG><BR>
  151. <DD>
  152. Specifies the image to display in the item. When both the
  153. <STRONG>-bitmap</STRONG> and <STRONG>-image</STRONG> options are specified, only the image
  154. will be displayed.
  155. <P></P>
  156. <DT><STRONG><A NAME="item_Name%3A_imageTextStyle">Name:    <STRONG>imageTextStyle</STRONG></A></STRONG><BR>
  157. <DD>
  158. <DT><STRONG><A NAME="item_Class%3A_ImageTextStyle">Class:    <STRONG>ImageTextStyle</STRONG></A></STRONG><BR>
  159. <DD>
  160. <DT><STRONG><A NAME="item_Switch%3A_%2Dstyle">Switch:    <STRONG>-style</STRONG></A></STRONG><BR>
  161. <DD>
  162. Specifies the display style to use for this item. Must be the
  163. name of a <STRONG>imagetext</STRONG> display style that has already be created with
  164. <STRONG>ItemStyle</STRONG>.
  165. <P></P>
  166. <DT><STRONG><A NAME="item_Name%3A_showImage">Name:    <STRONG>showImage</STRONG></A></STRONG><BR>
  167. <DD>
  168. <DT><STRONG><A NAME="item_Class%3A_ShowImage">Class:    <STRONG>ShowImage</STRONG></A></STRONG><BR>
  169. <DD>
  170. <DT><STRONG><A NAME="item_Switch%3A_%2Dshowimage">Switch:    <STRONG>-showimage</STRONG></A></STRONG><BR>
  171. <DD>
  172. A Boolean value that specifies whether the image/bitmap should be
  173. displayed.
  174. <P></P>
  175. <DT><STRONG><A NAME="item_Name%3A_showText">Name:    <STRONG>showText</STRONG></A></STRONG><BR>
  176. <DD>
  177. <DT><STRONG><A NAME="item_Class%3A_ShowText">Class:    <STRONG>ShowText</STRONG></A></STRONG><BR>
  178. <DD>
  179. <DT><STRONG><A NAME="item_Switch%3A_%2Dshowtext">Switch:    <STRONG>-showtext</STRONG></A></STRONG><BR>
  180. <DD>
  181. A Boolean value that specifies whether the text string should be
  182. displayed.
  183. <P></P>
  184. <DT><STRONG><A NAME="item_Name%3A_text">Name:    <STRONG>text</STRONG></A></STRONG><BR>
  185. <DD>
  186. <DT><STRONG><A NAME="item_Class%3A_Text">Class:    <STRONG>Text</STRONG></A></STRONG><BR>
  187. <DD>
  188. <DT><STRONG><A NAME="item_Switch%3A_%2Dtext">Switch:    <STRONG>-text</STRONG></A></STRONG><BR>
  189. <DD>
  190. Specifies the text string to display in the item.
  191. <P></P>
  192. <DT><STRONG><A NAME="item_Name%3A_underline">Name:    <STRONG>underline</STRONG></A></STRONG><BR>
  193. <DD>
  194. <DT><STRONG><A NAME="item_Class%3A_Underline">Class:    <STRONG>Underline</STRONG></A></STRONG><BR>
  195. <DD>
  196. <DT><STRONG><A NAME="item_Switch%3A_%2Dunderline">Switch:    <STRONG>-underline</STRONG></A></STRONG><BR>
  197. <DD>
  198. Specifies the integer index of a character to underline in the text
  199. string in the item.  0 corresponds to the first character of the text
  200. displayed in the widget, 1 to the next character, and so on.
  201. <P></P></DL>
  202. <P>
  203. <H2><A NAME="imagetext style options">Imagetext Style Options</A></H2>
  204. <P>The style information of <STRONG>imagetext</STRONG> items are stored in the
  205. <STRONG>imagetext</STRONG> display style. The following options are supported:</P>
  206. <P><STRONG>STANDARD OPTIONS</STRONG></P>
  207. <P><TABLE CELLSPACING=0 CELLPADDING=0><TR><TD><STRONG>-activebackground</STRONG><TD><STRONG>-activeforeground</STRONG>
  208. <TR><TD><STRONG>-anchor</STRONG><TD><STRONG>-background</STRONG>
  209. <TR><TD><STRONG>-disabledbackground</STRONG><TD><STRONG>-disabledforeground</STRONG>
  210. <TR><TD><STRONG>-foreground</STRONG><TD><STRONG>-font</STRONG>
  211. <TR><TD><STRONG>-justify</STRONG><TD><STRONG>-padx</STRONG>
  212. <TR><TD><STRONG>-pady</STRONG><TD><STRONG>-selectbackground</STRONG>
  213. <TR><TD><STRONG>-selectforeground</STRONG><TD><STRONG>-wraplength</STRONG></TABLE></P>
  214. <P>See <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> for details of the standard options.</P>
  215. <P><STRONG>STYLE-SPECIFIC OPTIONS</STRONG></P>
  216. <DL>
  217. <DT><STRONG><A NAME="item_Name%3A_gap">Name:    <STRONG>gap</STRONG></A></STRONG><BR>
  218. <DD>
  219. <DT><STRONG><A NAME="item_Class%3A_Gap">Class:    <STRONG>Gap</STRONG></A></STRONG><BR>
  220. <DD>
  221. <DT><STRONG><A NAME="item_Switch%3A_%2Dgap">Switch:    <STRONG>-gap</STRONG></A></STRONG><BR>
  222. <DD>
  223. Specifies the distance between the bitmap/image and the text string,
  224. in number of pixels.
  225. <P></P>
  226. <DT><STRONG><A NAME="item_Name%3A_textAnchor">Name:    <STRONG>textAnchor</STRONG></A></STRONG><BR>
  227. <DD>
  228. <DT><STRONG><A NAME="item_Class%3A_TextAnchor">Class:    <STRONG>TextAnchor</STRONG></A></STRONG><BR>
  229. <DD>
  230. <DT><STRONG><A NAME="item_Switch%3A_%2Dtextanchor">Switch:    <STRONG>-textanchor</STRONG></A></STRONG><BR>
  231. <DD>
  232. The anchor position on the image to which text part is attached.
  233. This is a perl/Tk addition. Defaults to <STRONG>e</STRONG> for compatibility with standard
  234. Tix. The interesting cases are
  235. <DL>
  236. <DT><STRONG><A NAME="item_n"><STRONG>n</STRONG></A></STRONG><BR>
  237. <DD>
  238. Text is centred above the image.
  239. <P></P>
  240. <DT><STRONG><A NAME="item_s"><STRONG>s</STRONG></A></STRONG><BR>
  241. <DD>
  242. Text is centred below the image
  243. <P></P>
  244. <DT><STRONG><A NAME="item_e"><STRONG>e</STRONG></A></STRONG><BR>
  245. <DD>
  246. Text is centred to right of the image.
  247. <P></P>
  248. <DT><STRONG><A NAME="item_w"><STRONG>w</STRONG></A></STRONG><BR>
  249. <DD>
  250. Text is centred to left of the image.
  251. <P></P>
  252. <DT><STRONG><A NAME="item_c"><STRONG>c</STRONG></A></STRONG><BR>
  253. <DD>
  254. Text is centred over the image.
  255. <P></P></DL>
  256. <P>The <STRONG>sw</STRONG>, <STRONG>se</STRONG>, <STRONG>ne</STRONG>, and b<nw> cases look rather odd.</P>
  257. <P>To get items to line up correctly it will usually be necessary
  258. to specify <STRONG>-anchor</STRONG> as well. e.g. with default <STRONG>e</STRONG> then anchoring
  259. item as a whole <STRONG>w</STRONG> lines images up down left with text stuck to right side.</P>
  260. </DL>
  261. <P>
  262. <HR>
  263. <H1><A NAME="text items">TEXT ITEMS</A></H1>
  264. <P>Display items of the type <STRONG>text</STRONG> are used to display a text string
  265. in a widget. Text items support the following options:</P>
  266. <P>
  267. <H2><A NAME="text item options">Text Item Options</A></H2>
  268. <DL>
  269. <DT><STRONG><A NAME="item_Name%3A_textStyle">Name:    <STRONG>textStyle</STRONG></A></STRONG><BR>
  270. <DD>
  271. <DT><STRONG><A NAME="item_Class%3A_TextStyle">Class:    <STRONG>TextStyle</STRONG></A></STRONG><BR>
  272. <DD>
  273. <DT><STRONG>Switch:    <STRONG>-style</STRONG></STRONG><BR>
  274. <DD>
  275. Specifies the display style to use for this text item. Must be the
  276. name of a <STRONG>text</STRONG> display style that has already be created with
  277. <STRONG>ItemStyle</STRONG>.
  278. <P></P>
  279. <DT><STRONG>Name:    <STRONG>text</STRONG></STRONG><BR>
  280. <DD>
  281. <DT><STRONG>Class:    <STRONG>Text</STRONG></STRONG><BR>
  282. <DD>
  283. <DT><STRONG>Switch:    <STRONG>-text</STRONG></STRONG><BR>
  284. <DD>
  285. Specifies the text string to display in the item.
  286. <P></P>
  287. <DT><STRONG>Name:    <STRONG>underline</STRONG></STRONG><BR>
  288. <DD>
  289. <DT><STRONG>Class:    <STRONG>Underline</STRONG></STRONG><BR>
  290. <DD>
  291. <DT><STRONG>Switch:    <STRONG>-underline</STRONG></STRONG><BR>
  292. <DD>
  293. Specifies the integer index of a character to underline in the item.
  294. 0 corresponds to the first character of the text displayed in the
  295. widget, 1 to the next character, and so on.
  296. <P></P></DL>
  297. <P>
  298. <H2><A NAME="text style options">Text Style Options</A></H2>
  299. <P><STRONG>STANDARD OPTIONS</STRONG></P>
  300. <P><TABLE CELLSPACING=0 CELLPADDING=0><TR><TD><STRONG>-activebackground</STRONG><TD><STRONG>-activeforeground</STRONG>
  301. <TR><TD><STRONG>-anchor</STRONG><TD><STRONG>-background</STRONG>
  302. <TR><TD><STRONG>-disabledbackground</STRONG><TD><STRONG>-disabledforeground</STRONG>
  303. <TR><TD><STRONG>-foreground</STRONG><TD><STRONG>-font</STRONG>
  304. <TR><TD><STRONG>-justify</STRONG><TD><STRONG>-padx</STRONG>
  305. <TR><TD><STRONG>-pady</STRONG><TD><STRONG>-selectbackground</STRONG>
  306. <TR><TD><STRONG>-selectforeground</STRONG><TD><STRONG>-wraplength</STRONG></TABLE></P>
  307. <P>See <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> for details of the standard options.</P>
  308. <P>
  309. <HR>
  310. <H1><A NAME="window items">WINDOW ITEMS</A></H1>
  311. <P>Display items of the type <EM>window</EM> are used to display a
  312. sub-window in a widget. <STRONG>Window</STRONG> items support the following
  313. options:</P>
  314. <P>
  315. <H2><A NAME="window item options">Window Item Options</A></H2>
  316. <DL>
  317. <DT><STRONG><A NAME="item_Name%3A_windowStyle">Name:    <STRONG>windowStyle</STRONG></A></STRONG><BR>
  318. <DD>
  319. <DT><STRONG><A NAME="item_Class%3A_WindowStyle">Class:    <STRONG>WindowStyle</STRONG></A></STRONG><BR>
  320. <DD>
  321. <DT><STRONG>Switch:    <STRONG>-style</STRONG></STRONG><BR>
  322. <DD>
  323. Specifies the display style to use for this window item. Must be the
  324. name of a <EM>window</EM> display style that has already be created with
  325. the <STRONG>ItemStyle</STRONG> method.
  326. <P></P>
  327. <DT><STRONG><A NAME="item_Name%3A_window">Name:    <STRONG>window</STRONG></A></STRONG><BR>
  328. <DD>
  329. <DT><STRONG><A NAME="item_Class%3A_Window">Class:    <STRONG>Window</STRONG></A></STRONG><BR>
  330. <DD>
  331. <DT><STRONG><A NAME="item_Switch%3A_%2Dwindow">Switch:    <STRONG>-window</STRONG></A></STRONG><BR>
  332. <DD>
  333. <DT><STRONG><A NAME="item_Alias%3A_%2Dwidget">Alias:    <STRONG>-widget</STRONG></A></STRONG><BR>
  334. <DD>
  335. Specifies the sub-window to display in the item.
  336. <P></P></DL>
  337. <P>
  338. <H2><A NAME="window style options">Window Style Options</A></H2>
  339. <P><STRONG>STYLE STANDARD OPTIONS</STRONG></P>
  340. <P><STRONG>-anchor</STRONG>    <STRONG>-padx</STRONG>    <STRONG>-pady</STRONG></P>
  341. <P>See <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> for details of the standard options.</P>
  342. <P>
  343. <HR>
  344. <H1><A NAME="creating display items">CREATING DISPLAY ITEMS</A></H1>
  345. <P>Display items do not exist on their and thus they cannot be created
  346. independently of the widgets they reside in. As a rule, display items
  347. are created by special methods of their ``host'' widgets. For
  348. example, the HList widgets has a method <STRONG>item</STRONG> which can be used
  349. to create new display items. The following code creates a new text
  350. item at the third column of the entry foo inside an HList widget:</P>
  351. <PRE>
  352.  my $hlist = $parent->HList(-columns=>3);
  353.  $hlist->add('foo');
  354.  $hlist->itemCreate('foo', 2, -itemtype=>'text', -text=>'Hello');</PRE>
  355. <P>The <STRONG>itemCreate</STRONG> method of the HList widget accepts a variable
  356. number of arguments. The special argument <STRONG>-itemtype</STRONG> specifies
  357. which type of display item to create. Options that are valid for this
  358. type of display items can then be specified by one or more
  359. <EM>option-value</EM> pairs.</P>
  360. <P>After the display item is created, they can then be configured or
  361. destroyed using the methods provided by the host widget. For example,
  362. the HList widget has the methods <STRONG>itemConfigure</STRONG>, <STRONG>itemCget</STRONG>
  363. and <STRONG>itemDelete</STRONG> for accessing the display items.</P>
  364. <P>
  365. <HR>
  366. <H1><A NAME="creating and manipulating item styles">CREATING AND MANIPULATING ITEM STYLES</A></H1>
  367. <P>Item styles are created with <STRONG>ItemStyle</STRONG>:</P>
  368. <P>
  369. <HR>
  370. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  371. <P>   <EM>$widget</EM>-><STRONG>ItemStyle</STRONG>(<EM>itemType</EM> ?,<STRONG>-stylename</STRONG>=><EM>name</EM>? ?,<STRONG>-refwindow</STRONG>=><EM>pathName</EM>? ?,<EM>option</EM>=><EM>value</EM>, ...>?);</P>
  372. <P><EM>itemType</EM> must be one of the existing display items types such as
  373. <STRONG>text</STRONG>, <STRONG>imagetext</STRONG>, <STRONG>window</STRONG> or any new types added by
  374. the user. Additional arguments can be given in one or more
  375. <EM>option-value</EM> pairs. <EM>option</EM> can be any of the valid option
  376. for this display style or any of the following:</P>
  377. <DL>
  378. <DT><STRONG><A NAME="item_%2Dstylename_%3D%3E_name"><STRONG>-stylename</STRONG> => <EM>name</EM></A></STRONG><BR>
  379. <DD>
  380. Specifies a name for this style. If unspecified, then a default name
  381. will be chosen for this style.
  382. <P></P>
  383. <DT><STRONG><A NAME="item_%2Drefwindow_%3D%3E_%24otherwidget"><STRONG>-refwindow</STRONG> => <EM>$otherwidget</EM></A></STRONG><BR>
  384. <DD>
  385. Specifies a window to use for determine the default values of the
  386. display type. If unspecified, the <EM>$widget</EM> will be used. Default
  387. values for the display types can be set via the options database. The
  388. following example sets the <STRONG>-disablebackground</STRONG> and
  389. <STRONG>-disabledforeground</STRONG> options of a <STRONG>text</STRONG> display style via
  390. the option database:
  391. <PRE>
  392.   $widget->optionAdd('*table.list*disabledForeground' => 'blue');
  393.   $widget->optionAdd('*table.list*disabledBackground' => 'darkgray');
  394.   $widget->ItemStyle('text', -refwindow => $table_list, -fg => 'red');</PRE>
  395. <P>By using the option database to set the options of the display styles,
  396. we can advoid hard-coding the option values and give the user more
  397. flexibility in customization. See <A HREF="../../../site/lib/Tk/option.html">the Tk::option manpage</A> for a detailed description
  398. of the option database.</P>
  399. <P></P></DL>
  400. <P>
  401. <HR>
  402. <H1><A NAME="style methods">STYLE METHODS</A></H1>
  403. <P>The <STRONG>ItemStyle</STRONG> method creates an object.
  404. This object supports the <STRONG>configure</STRONG> and <STRONG>cget</STRONG> methods
  405. described in <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> which can be used to enquire and
  406. modify the options described above.</P>
  407. <P>The following additional methods are available for item styles:</P>
  408. <DL>
  409. <DT><STRONG><A NAME="item_delete"><EM>$style</EM>-><STRONG>delete</STRONG></A></STRONG><BR>
  410. <DD>
  411. Destroy this display style object.
  412. <P></P></DL>
  413. <P>
  414. <HR>
  415. <H1><A NAME="example">EXAMPLE</A></H1>
  416. <P>The following example creates two columns of data in a HList
  417. widget. The first column is in red and the second column in blue. The
  418. colors of the columns are controlled by two different <STRONG>text</STRONG>
  419. styles. Also, the anchor and font of the second column is chosen so
  420. that the income data is aligned properly.</P>
  421. <PRE>
  422.    use strict;
  423.    use Tk;
  424.    use Tk::HList;
  425.    use Tk::ItemStyle;</PRE>
  426. <PRE>
  427.    my $mw = MainWindow->new();</PRE>
  428. <PRE>
  429.    my $hlist = $mw->HList(-columns=>2)->pack;</PRE>
  430. <PRE>
  431.    my $red  = $hlist->ItemStyle('text', -foreground=>'#800000');
  432.    my $blue = $hlist->ItemStyle('text', -foreground=>'#000080', -anchor=>'e');</PRE>
  433. <PRE>
  434.    my $e;
  435.    foreach ([Joe => '$10,000'], [Peter => '$20,000'],
  436.             [Raj => '$90,000'],  [Zinh => '$0']) {
  437.        $e = $hlist->addchild("");
  438.        $hlist->itemCreate($e, 0, -itemtype=>'text',
  439.                 -text=>$_->[0], -style=>$red );
  440.        $hlist->itemCreate($e, 1, -itemtype=>'text',
  441.                 -text=>$_->[1], -style=>$blue);
  442.    }</PRE>
  443. <PRE>
  444.    Tk::MainLoop;</PRE>
  445. <P>
  446. <HR>
  447. <H1><A NAME="see also">SEE ALSO</A></H1>
  448. <P><A HREF="../../../site/lib/Tk/HList.html">Tk::HList</A>
  449. <A HREF="../../../site/lib/Tk/TixGrid.html">Tk::TixGrid</A>
  450. <A HREF="../../../site/lib/Tk/TList.html">Tk::TList</A></P>
  451. <P>
  452. <HR>
  453. <H1><A NAME="keywords">KEYWORDS</A></H1>
  454. <P>display item, display style, item style</P>
  455. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  456. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  457. <STRONG><P CLASS=block> Tk::DItem - Tix Display Items</P></STRONG>
  458. </TD></TR>
  459. </TABLE>
  460.  
  461. </BODY>
  462.  
  463. </HTML>
  464.