Tk::DItem - Tix Display Items
For example, a hierarchical listbox widget (see Tk::HList) can display items of images, plain text and subwindows in the form of a hierarchy. Another widget, the tabular listbox widget (see Tk::TList) also displays items of the same types, although it arranges the items in a tabular form. Yet another widget, the spreadsheet widget (see Tk::TixGrid), also displays similar types items, but in yet another format.
In these examples, the display items in different widgets are only different in how they are arranged by the host widget. In Tix, display items are clearly separated from the host widgets. The advantage is two-fold: first, the creation and configuration of display items become uniform across different host widgets. Second, new display item types can be added without the need to modify the existing host widgets.
In a way, Tix display items are similar to the items inside Tk the canvas widget. However, unlike the Tix display items, the canvas items are not independent of the canvas widget; this makes it impossible to use the canvas items inside other types of TK widgets.
The appearance of a display item is controlled by a set of attributes. It is observed that each the attributes usually fall into one of two categroies: ``individual'' or ``collective''. For example, the text items inside a HList widget may all display a different text string; however, in most cases, the text items share the same color, font and spacing. Instead of keeping a duplicated version of the same attributes inside each display item, it will be advantageous to put the collective attributes in a special object called a display style. First, there is the space concern: a host widget may have many thousands of items; keeping dupilcated attributes will be very wasteful. Second, when it becomes necessary to change a collective attribute, such as changing all the text items' foreground color to red, it will be more efficient to change only the display style object than to modify all the text items one by one.
The attributes of the a display item are thus stored in two places: it has a set of item options to store its individual attributes. Each display item is also associated with a display style, which specifies the collective attributes of all items associated with itself.
The division between the individual and collective attributes are fixed and cannot be changed. Thus, when it becomes necessary for some items to differ in their collective attributes, two or more display styles can be used. For example, suppose you want to display two columns of text items inside an HList widget, one column in red and the other in blue. You can create a TextStyle object called ``$red'' which defines a red foreground, and another called ``$blue'', which defines a blue foreground. You can then associate all text items of the first column to ``$red'' and the second column to ``$blue''
STANDARD OPTIONS
-activebackground -activeforeground
-anchor -background
-disabledbackground -disabledforeground
-foreground -font
-justify -padx
-pady -selectbackground
-selectforeground -wraplength
See Tk::options for details of the standard options.
STYLE-SPECIFIC OPTIONS
The sw, se, ne, and b<nw> cases look rather odd.
To get items to line up correctly it will usually be necessary to specify -anchor as well. e.g. with default e then anchoring item as a whole w lines images up down left with text stuck to right side.
-activebackground -activeforeground
-anchor -background
-disabledbackground -disabledforeground
-foreground -font
-justify -padx
-pady -selectbackground
-selectforeground -wraplength
See Tk::options for details of the standard options.
-anchor -padx -pady
See Tk::options for details of the standard options.
my $hlist = $parent->HList(-columns=>3); $hlist->add('foo'); $hlist->itemCreate('foo', 2, -itemtype=>'text', -text=>'Hello');
The itemCreate method of the HList widget accepts a variable number of arguments. The special argument -itemtype specifies which type of display item to create. Options that are valid for this type of display items can then be specified by one or more option-value pairs.
After the display item is created, they can then be configured or destroyed using the methods provided by the host widget. For example, the HList widget has the methods itemConfigure, itemCget and itemDelete for accessing the display items.
itemType must be one of the existing display items types such as text, imagetext, window or any new types added by the user. Additional arguments can be given in one or more option-value pairs. option can be any of the valid option for this display style or any of the following:
$widget->optionAdd('*table.list*disabledForeground' => 'blue'); $widget->optionAdd('*table.list*disabledBackground' => 'darkgray'); $widget->ItemStyle('text', -refwindow => $table_list, -fg => 'red');
By using the option database to set the options of the display styles, we can advoid hard-coding the option values and give the user more flexibility in customization. See Tk::option for a detailed description of the option database.
The following additional methods are available for item styles:
use strict; use Tk; use Tk::HList; use Tk::ItemStyle;
my $mw = MainWindow->new();
my $hlist = $mw->HList(-columns=>2)->pack;
my $red = $hlist->ItemStyle('text', -foreground=>'#800000'); my $blue = $hlist->ItemStyle('text', -foreground=>'#000080', -anchor=>'e');
my $e; foreach ([Joe => '$10,000'], [Peter => '$20,000'], [Raj => '$90,000'], [Zinh => '$0']) { $e = $hlist->addchild(""); $hlist->itemCreate($e, 0, -itemtype=>'text', -text=>$_->[0], -style=>$red ); $hlist->itemCreate($e, 1, -itemtype=>'text', -text=>$_->[1], -style=>$blue); }
Tk::MainLoop;
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |