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

Comparing CV/bin/cv (file contents):
Revision 1.1 by root, Sun Nov 2 12:55:41 2003 UTC vs.
Revision 1.43 by root, Tue Jun 28 21:26:04 2005 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines