File: pfm

package info (click to toggle)
perl-tk 1%3A800.011-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 16,820 kB
  • ctags: 17,448
  • sloc: ansic: 189,575; perl: 31,426; makefile: 4,360; sh: 1,921; yacc: 762
file content (144 lines) | stat: -rwxr-xr-x 2,801 bytes parent folder | download | duplicates (4)
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
#!/usr/local/bin/perl -w
use POSIX qw(getcwd);

use Tk;
# use Tk::ErrorDialog;
use Tk::DragDrop qw(Sun);
require Tk::Tiler;

{package Dragable;
 require Tk::Label;
 use Tk qw(Ev);
use base  qw(Tk::Label);
 Construct Tk::Widget Dragable;

 sub ClassInit
 {
  my ($class,$mw) = @_;
  $mw->bind($class,'<FocusIn>','Bell');
  return $class;
 }

 sub LabelInfo
 {
  my $w = shift;
  my @config = ();
  my $option; 
  foreach $option ($w->configure())
   {
    next if (@$option == 2 || !defined $$option[4]);
    next if (defined $$option[3] && $$option[3] eq $$option[4]);
    push(@config,$$option[0],$$option[4]);
   }
  return (@config);
 }

 sub new
  {my $class  = shift;
   my $parent = shift;
   my $obj = $parent->Label(@_,-takefocus => 1);
   # $obj->bind('<B1-Motion>',['DragDrop',Ev(['LabelInfo'])]);
   return bless $obj,$class;
  }

}

$icon_dir = Tk->findINC("demos/images");

%icons = ();

sub Edit
{
 my $w = shift;
 my $path = shift;
 if (-T $path)
  {
   fork || exec("$ENV{EDITOR} $path");
  }
}

sub choose_icon
{
 my $w    = shift;
 my $name = shift;
 my $icon = (-d $name) ? "dir" : ($name =~ /\.([^\.]+)$/) ? $1 : "page";
 if (!defined $icons{$icon})
  {
   my $file = "$icon_dir/$icon.xpm";
   if (-f "$file")
    {
     $icons{$icon} = $w->Pixmap($icon,-file=>"$file");
    }
   else
    {
     my $file = "$icon_dir/$icon.icon";              
     my $mask = "$icon_dir/$icon.mask";              
     $file = "$icon_dir/page.icon" unless (-f $file);
     $mask = "$icon_dir/page.mask" unless (-f $mask);
     $icons{$icon} = $w->Bitmap($icon,-file=> $file,-maskfile=>$mask); 
    }
   if ($icons{$icon}->width != 32)
    {
     $icons{$icon} = choose_icon($w,"page");
    }
  }
 return $icons{$icon};
}



sub handle_string
{my ($string,$offset,$max) = @_;
 return $string;
}

sub do_dir
{
 my $w   = shift; 
 my $dir = shift;
 opendir(DIR,$dir);
 my @files = readdir(DIR);
 closedir(DIR);
 my @windows = ();
 my $width  = 0;
 my $height = 0;
 my @win    = ();
 foreach (sort @files)
  {
   next if (/^\.*$/);
   my $path = "$dir/$_";
   my $f = $w->Frame();
   my $i = $f->Dragable(-image=> choose_icon($w,$path));
   $i->DragDrop(-image => $i->cget('-image'),-handlers => [[-type =>'FILE_NAME',[\&handle_string,"$dir/$_"]]]);
   my $l = $f->Label(-text=> $_);
   $i->bind('<FocusIn>','break');
   $i->pack(-side=>'top');
   $l->pack(-side=>'bottom',-fill=> 'x');
   if (-d $path)
    {
     $w->Manage($f);
    }
   else
    {
     $i->bind('<Double-1>',[\&Edit,$path]);
     push(@win,$f);
    }
  }
 $w->Manage(@win);
}

$dir = (@ARGV) ? shift : getcwd();

$top = MainWindow->new();

$t   = $top->Tiler();
$t->pack(-side=>'right',-fill=>'both',-expand=>1);
$top->AddScrollbars($t);
$top->configure('-scrollbars' => 'w');
do_dir($t,$dir);

$t->update;

$t->focus;

MainLoop;