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

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines