ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/bin/cv
(Generate patch)

Comparing CV/bin/cv (file contents):
Revision 1.2 by root, Mon Nov 3 00:04:22 2003 UTC vs.
Revision 1.41 by root, Mon Jun 27 19:42:53 2005 UTC

1#!/opt/bin/perl 1#!/opt/bin/perl
2
3use Cwd ();
4use Encode ();
2 5
3use Gtk2 -init; 6use Gtk2 -init;
4use Gtk2::Gdk::Keysyms; 7use Gtk2::Gdk::Keysyms;
5 8
6use Gtk2::CV::ImageWindow; 9use Gtk2::CV::ImageWindow;
7use Gtk2::CV::Schnauzer; 10use Gtk2::CV::Schnauzer;
8 11
9$VERSION = 0.1; 12use Gtk2::CV;
10 13
14Gtk2::Rc->parse (Gtk2::CV::find_rcfile "gtkrc");
15
16use File::Spec;
17
18require Gtk2::CV::Plugin;
19require "$ENV{HOME}/.cvrc" if -r "$ENV{HOME}/.cvrc";
20
21my $mainwin;
11my $viewer; 22my $viewer;
23my $schnauzer;
24my $info;
25my $help;
12 26
13package cluster; 27my $schnauzer_idx = 0;
14
15use Glib::Object::Subclass Gtk2::Window;
16
17use Gtk2::SimpleList;
18
19sub INIT_INSTANCE {
20 my ($self) = @_;
21
22 $self->set_default_size (600, 400);
23
24 my $vbox = new Gtk2::VBox;
25 $self->add ($vbox);
26
27 my $box = new Gtk2::HBox;
28 $vbox->add ($box);
29 $box->add (my $sw = new Gtk2::ScrolledWindow);
30 $sw->add (
31 $self->{list} = new Gtk2::SimpleList
32 "#" => "int",
33 "Name" => "text",
34 );
35
36 $box->add ($self->{schnauzer} = new Gtk2::CV::Schnauzer);
37
38 $self->{list}->get_column(0)->set_sort_column_id(0);
39 $self->{list}->get_column(1)->set_sort_column_id(1);
40
41 $self->{list}->signal_connect (cursor_changed => sub {
42 my $row = scalar +($_[0]->get_selection->get_selected_rows)[0]->get_indices;
43
44 my $k = $_[0]{data}[$row][1];
45 $k = $self->{cluster}{$k};
46
47 $self->{schnauzer}->set_files (
48 [sort map "$self->{path}/$_", @{$k->[1]}],
49 );
50
51 1;
52
53 });
54}
55
56sub analyse {
57 my ($self, $path) = @_;
58
59 opendir my $dir, $path
60 or die "$path: $!";
61
62 $self->{path} = $path;
63
64 my @files = map {
65 my $str = $_;
66 $str =~ s/[\-_ ]+/ /g;
67 $str =~ s/\.[^\.]+//g;
68 [$str, $_]
69 }
70 grep !/\.(sfv|crc|par|par2)$/, readdir $dir;
71
72 my %cluster;
73
74 my @regexps = (
75 [qr<\d+$>, qr<^(.+?)\ *(\d+)$>],
76 [qr<\ \d+$>, qr<^(.+?)(\d+)\ +(\d+)$>],
77 );
78
79 for my $info (@regexps) {
80 my $re = $info->[0];
81 for (@files) {
82 if ($_->[0] =~ $re && $_->[0] =~ $info->[1]) {
83 push @{ ($cluster{$1} ||= [ $info, []])->[1] }, $_->[1];
84 }
85 }
86 }
87
88 $self->{cluster} = \%cluster;
89
90 while (my ($k, $v) = each %cluster) {
91 my $n = scalar @{$v->[1]};
92 push @{$self->{list}{data}}, [$n, $k] if $n > 2;
93 }
94}
95
96package main;
97 28
98sub new_schnauzer { 29sub new_schnauzer {
99 my $w = new Gtk2::Window;
100 $w->add (my $s = new Gtk2::CV::Schnauzer); 30 my $s = new Gtk2::CV::Schnauzer;
101 31
32 $s->signal_connect_after (key_press_event => \&std_keys);
102 $s->signal_connect (activate => sub { 33 $s->signal_connect (activate => sub {
34 my $label = sprintf "%s (%d)",
35 (File::Spec->splitpath ($_[1]))[2],
36 -s $_[1];
37 $info->set_label ($label);
103 $viewer->load_image ($_[1]); 38 $viewer->load_image ($_[1]);
104 }); 39 });
105 $s->set_dir ("/root/pix"); 40 $s->signal_connect (chdir => sub {
41 my ($self, $dir) = @_;
42
43 my $path = Cwd::abs_path $dir;
44
45 $self->realize;
46 $self->window->property_change (
47 Gtk2::Gdk::Atom->intern ("_X_CWD", 0),
48 Gtk2::Gdk::Atom->intern ("UTF8_STRING", 0),
49 Gtk2::Gdk::CHARS, 'replace',
50 Encode::encode_utf8 $path,
51 );
52 });
53
54 Gtk2::CV::Plugin->call (new_schnauzer => $s);
55
56 $s;
57}
58
59sub std_keys {
60 my $key = $_[1]->keyval;
61 my $state = $_[1]->state;
62
63 my $ctrl = $state * "control-mask";
64
65 if ($key == $Gtk2::Gdk::Keysyms{q}) {
66 main_quit Gtk2;
67 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{v}) {
68 my $w = new Gtk2::Window;
69
70 $w->set_title ("CV: Schnauzer");
71 $w->add (my $s = new_schnauzer);
72 $s->set_dir (File::Spec->curdir);
73 $s->set_geometry_hints;
106 $w->show_all; 74 $w->show_all;
107 75
108 $w; 76 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{h}) {
109} 77 unless ($help) {
78 require Gtk2::PodViewer;
110 79
80 $help = new Gtk2::Window;
81 $help->set_title ("CV: Help");
82 $help->set_default_size (500, 300);
83 $help->signal_connect (delete_event => sub { $help->hide; 1 });
84
85 $help->add (my $sw = new Gtk2::ScrolledWindow);
86 $sw->add (my $h = new Gtk2::PodViewer);
87
88 #binmode DATA, ":utf8";
89 $h->load_string (do { local $/; <DATA> });
90 }
91
92 $help->show_all;
93 } else {
94 #$mainwin->show_all;
95 return $self->{schnauzer}->signal_emit (key_press_event => $_[1]);
96 }
97
98 1;
99}
100
101{
111$viewer = new Gtk2::CV::ImageWindow; 102 $viewer = new Gtk2::CV::ImageWindow;
103
104 $viewer->set_title ("CV: Image");
105
106 $viewer->signal_connect (key_press_event => \&std_keys);
107 $viewer->signal_connect (delete_event => sub { main_quit Gtk2 });
108
109 $viewer->signal_connect (button3_press_event => sub {
110 $mainwin->visible
111 ? $mainwin->hide
112 : $mainwin->show_all;
113 1;
114 });
115
116 Gtk2::CV::Plugin->call (new_imagewindow => $viewer);
117
118 $schnauzer = new_schnauzer;
119
120 $mainwin = new Gtk2::Window;
121 $mainwin->set_title ("CV");
122 $mainwin->add (my $vbox = new Gtk2::VBox);
123 $mainwin->signal_connect (delete_event => sub { $mainwin->hide; 1; });
124
125 $vbox->add ($schnauzer);
126 $vbox->pack_end (my $frame = new Gtk2::Frame, 0, 0, 0);
127 $frame->add (my $hbox = new Gtk2::HBox 0, 0);
128 $hbox->pack_start ((new Gtk2::Label "Info"), 0, 0, 0);
129 $hbox->pack_start (($info = new Gtk2::Label), 1, 1, 0);
130 $info->set (wrap => 1);
131
132 $schnauzer->set_geometry_hints;
133}
134
135if (@ARGV) {
136 $schnauzer->set_paths ([map Glib::filename_to_unicode $_, @ARGV]);
137 $schnauzer->show_all;
138 $schnauzer->handle_key ($Gtk2::Gdk::Keysyms{space}, []);
139} else {
140 $schnauzer->set_dir (File::Spec->curdir);
141 $mainwin->show_all;
142 $viewer->show_all;
143}
112 144
113$viewer->show_all; 145$viewer->show_all;
114 146
115my $cluster = new cluster;
116
117new_schnauzer;
118
119#$cluster->analyse ("/fs/samsung/store-anime-done");
120#$cluster->show_all;
121
122#$viewer->set (path => "/fs/samsung/store-anime-done/yuumi_kazuaki_-_love_to_hajieki_to_sayonara_to_-_150.jpg");
123#$viewer->set (path => "/root/pix/kvvz.jpg");
124
125main Gtk2; 147main Gtk2;
126 148
149__DATA__
127 150
151=head1 NAME
152
153cv - a fast gtk+ image viewer modeled after xv
154
155=head1 SYNOPSIS
156
157 cv [file...]
158
159=head1 DESCRIPTION
160
161None yet.
162
163=head2 THE IMAGE WINDOW
164
165You can use the following keys in the image window:
166
167 q quit the program
168 < half the image size
169 > double the image size
170 , shrink the image by 10%
171 . enlarge the image by 10%
172 n reset to normal size
173 m maximize to screensize
174 M maxime to screensize, respecting image aspect
175 ctrl-m toggle maxpect-always mode
176 u uncrop
177 r set scaling mode to 'nearest' (fastest)
178 s set scaling mode to 'bilinear' (default)
179 S set scaling mode to 'hyper' (slowest)
180 t rotate clockwise 90°
181 T rotate counterclockwise°
182 ctrl-v open a new visual schnauzer window for the current dir
183 ctrl-s rescan visual schnauzer files for updates/deletes etc.
184 ctrl-e run an editor ($CV_EDITOR or "gimp") on the current image.
185
186And when playing movies, these additional keys are active:
187
188 left rewind by 10 seconds
189 right forward by 10 seconds
190 down rewind by 60 seconds
191 up forward by 60 seconds
192 pg_up rewind by 600 seconds
193 pg_down forward by 600 seconds
194 o toggle on-screen display
195 p pause/unpause
196 escape stop playing
197 9 turn volume down
198 0 turn volume up
199
200The following keys are redirected to the default visual schnauzer window:
201
202 space next image
203 backspace last image
204
205=head2 THE VISUAL SCHNAUZER
206
207You can use the following keys in the schnauzer window:
208
209 space move to and display next image
210 backspace move to and display previous image
211 return display selected picture
212
213 cursor keys move selection
214 page-up move one page up
215 page-down move one page down
216 home move to first file
217 end move to last file
218
219 ctrl-d delete selected files WITHOUT ASKING AGAIN
220 ctrl-g generate icons for the selected files
221 ctrl-u update selected (or all) icons if neccessary
222 ctrl-a select all files
223
224=head1 ENVIRONMENT
225
226=over 4
227
228=item CV_EDITOR
229
230The program that gets executed when the user presses C<CTRL-e> in the
231Schnauzer or image window. The default is C<gimp>.
232
233=item CV_PRINT_DESTINATION
234
235The default (perl-style) destination to use in the print dialog.
236
237=item CV_TRASHCAN
238
239When set, must point to a directory where all files that are deleted are
240moved to. If unset, files that are deleted are really being deleted.
241
242=back
243
244=head1 SECURITY CONSIDERATIONS
245
246CV uses Pixbuf to load images. Pixbuf is not considered safe for this
247purpose, though (from the gtk-2.2 release notes):
248
249"While efforts have been made to make gdk-pixbuf robust against invalid
250images, using gdk-pixbuf to load untrusted data is not recommended, due to
251the likelyhood that there are additional problems where an invalid image
252could cause gdk-pixbuf to crash or worse."
253
254=head1 BUGS/TODO
255
256 Pixbuf doesn't honor G_BROKEN_FILENAMES, so accessing files with names
257 incompatible with utf-8 fails.
258
259 rotate on disk
260 print
261 lots of ui issues
262 save(?)
263 preferences
264 ctrl-u in schnauzer
265 shift-cursor in schnauzer
266
267=head1 AUTHOR
268
269Marc Lehmann <cv@plan9.de>.
270
271=cut
272

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines