There are some additional images that are part of the Tix package: act_fold, file folder, info, minus, minusarm, no_entry, openfold, plus, plusarm, srcfile, textfile, and warning. You can use them just like any other images (See Chapter 17, "Images and Animations" for more details). They are shown in Figure 18-9.
Here's the code that created Figure 18-9:
use Tk; require Tk::TList; my $mw = Tk::MainWindow->new(-title => 'Tix Images'); my $tlist = $mw->TList->pack(-expand => 1, -fill => 'both'); foreach (qw/act_fold file folder info minus minusarm no_entry openfold plus plusarm srcfile textfile warning/) { $tlist->insert('end', -itemtype => 'imagetext', -text => $_, -image => $mw->Getimage($_)); } MainLoop;
Copyright © 2002 O'Reilly & Associates. All rights reserved.