/usr/lib/perl5/Tk/Tree.pm is in perl-tk 1:804.031-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | package Tk::Tree;
# Tree -- TixTree widget
#
# Derived from Tree.tcl in Tix 4.1
#
# Chris Dean <ctdean@cogit.com>
# Changes: Renee Baecker <module@renee-baecker.de>
use vars qw($VERSION);
$VERSION = '4.72'; # $Id: Tree.pm,v 1.4 2007/11/04 09:11:31 eserte Exp $
use Tk ();
use Tk::Derived;
use Tk::HList;
use base qw(Tk::Derived Tk::HList);
use strict;
Construct Tk::Widget 'Tree';
sub Tk::Widget::ScrlTree { shift->Scrolled('Tree' => @_) }
sub Populate
{
my( $w, $args ) = @_;
$w->SUPER::Populate( $args );
$w->ConfigSpecs(
-ignoreinvoke => ['PASSIVE', 'ignoreInvoke', 'IgnoreInvoke', 0],
-opencmd => ['CALLBACK', 'openCmd', 'OpenCmd', 'OpenCmd' ],
-indicatorcmd => ['CALLBACK', 'indicatorCmd', 'IndicatorCmd', 'IndicatorCmd'],
-closecmd => ['CALLBACK', 'closeCmd', 'CloseCmd', 'CloseCmd'],
-indicator => ['SELF', 'indicator', 'Indicator', 1],
-indent => ['SELF', 'indent', 'Indent', 20],
-width => ['SELF', 'width', 'Width', 20],
-itemtype => ['SELF', 'itemtype', 'Itemtype', 'imagetext'],
-foreground => ['SELF'],
);
}
sub autosetmode
{
my( $w ) = @_;
$w->setmode();
}
sub add_pathimage
{
my ($w,$path,$imgopen,$imgclose) = @_;
$imgopen ||= "minusarm";
$imgclose ||= "plusarm";
my $separator = $w->cget(-separator);
$path =~ s/([\.?()|])/\\$1/g;
$path =~ s/\$/\\\$/g;
$path =~ s/\\\$$/\$/;
$path =~ s/\*/[^$separator]+/g;
push(@{$w->{Images}},[$path,$imgopen,$imgclose]);
}
sub child_entries
{
my ($w,$path,$depth) = @_;
my $level = 1;
$depth ||= 1;
$path ||= '';
my @children = $w->_get_childinfos($depth,$level,$path);
return wantarray ? @children : scalar(@children);
}
sub _get_childinfos
{
my ($w,$maxdepth,$level,$path) = @_;
my @children = $w->infoChildren($path);
my @tmp;
if($level < $maxdepth)
{
for my $child(@children)
{
push(@tmp,$w->_get_childinfos($maxdepth,$level +1,$child));
}
}
push(@children,@tmp);
return @children;
}
sub IndicatorCmd
{
my( $w, $ent, $event ) = @_;
my $mode = $w->getmode( $ent );
if ( $event eq '<Arm>' )
{
if ($mode eq 'open' )
{
#$w->_indicator_image( $ent, 'plusarm' );
$w->_open($ent);
}
else
{
#$w->_indicator_image( $ent, 'minusarm' );
$w->_close($ent);
}
}
elsif ( $event eq '<Disarm>' )
{
if ($mode eq 'open' )
{
#$w->_indicator_image( $ent, 'plus' );
$w->_open($ent);
}
else
{
#$w->_indicator_image( $ent, 'minus' );
$w->_close($ent);
}
}
elsif( $event eq '<Activate>' )
{
$w->Activate( $ent, $mode );
$w->Callback( -browsecmd => $ent );
}
}
sub close
{
my( $w, $ent ) = @_;
my $mode = $w->getmode( $ent );
$w->Activate( $ent, $mode ) if( $mode eq 'close' );
}
sub open
{
my( $w, $ent ) = @_;
my $mode = $w->getmode( $ent );
$w->Activate( $ent, $mode ) if( $mode eq 'open' );
}
sub getmode
{
my( $w, $ent ) = @_;
return( 'none' ) unless $w->indicatorExists( $ent );
my $img = $w->_indicator_image( $ent );
if ($img eq "plus" || $img eq "plusarm" || grep{$img eq $_->[2]}@{$w->{Images}})
{
return( 'open' );
}
return( 'close' );
}
sub setmode
{
my ($w,$ent,$mode) = @_;
unless (defined $mode)
{
$mode = 'none';
my @args;
push(@args,$ent) if defined $ent;
my @children = $w->infoChildren( @args );
if ( @children )
{
$mode = 'close';
foreach my $c (@children)
{
$mode = 'open' if $w->infoHidden( $c );
$w->setmode( $c );
}
}
}
if (defined $ent)
{
if ( $mode eq 'open' )
{
#$w->_indicator_image( $ent, 'plus' );
$w->_open($ent);
}
elsif ( $mode eq 'close' )
{
#$w->_indicator_image( $ent, 'minus' );
$w->_close($ent);
}
elsif( $mode eq 'none' )
{
$w->_indicator_image( $ent, undef );
}
}
}
sub _open
{
my ($w,$ent) = @_;
$w->_indicator_image( $ent, "plus" );
for my $entry (@{$w->{Images}})
{
if($ent =~ $entry->[0])
{
$w->_indicator_image( $ent, $entry->[2] );
}
}
}
sub _close
{
my ($w,$ent) = @_;
$w->_indicator_image( $ent, "minus" );
for my $entry (@{$w->{Images}})
{
if($ent =~ $entry->[0])
{
$w->_indicator_image( $ent, $entry->[1] );
}
}
}
sub Activate
{
my( $w, $ent, $mode ) = @_;
if ( $mode eq 'open' )
{
$w->Callback( -opencmd => $ent );
#$w->_indicator_image( $ent, 'minus' );
$w->_close($ent);
}
elsif ( $mode eq 'close' )
{
$w->Callback( -closecmd => $ent );
#$w->_indicator_image( $ent, 'plus' );
$w->_open($ent);
}
else
{
}
}
sub OpenCmd
{
my( $w, $ent ) = @_;
# The default action
foreach my $kid ($w->infoChildren( $ent ))
{
$w->show( -entry => $kid );
}
}
sub CloseCmd
{
my( $w, $ent ) = @_;
# The default action
foreach my $kid ($w->infoChildren( $ent ))
{
$w->hide( -entry => $kid );
}
}
sub Command
{
my( $w, $ent ) = @_;
return if $w->{Configure}{-ignoreInvoke};
$w->Activate( $ent, $w->getmode( $ent ) ) if $w->indicatorExists( $ent );
}
sub _indicator_image
{
my( $w, $ent, $image ) = @_;
my $data = $w->privateData();
if (@_ > 2)
{
if (defined $image)
{
$w->indicatorCreate( $ent, -itemtype => 'image' )
unless $w->indicatorExists($ent);
$data->{$ent} = $image;
$w->indicatorConfigure( $ent, -image => $w->Getimage( $image ) );
}
else
{
$w->indicatorDelete( $ent ) if $w->indicatorExists( $ent );
delete $data->{$ent};
}
}
return $data->{$ent};
}
1;
__END__
# Copyright (c) 1996, Expert Interface Technologies
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# The file man.macros and some of the macros used by this file are
# copyrighted: (c) 1990 The Regents of the University of California.
# (c) 1994-1995 Sun Microsystems, Inc.
# The license terms of the Tcl/Tk distrobution are in the file
# license.tcl.
|