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

Comparing CV/bin/cv (file contents):
Revision 1.24 by root, Wed Nov 12 18:10:47 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;
15my $mainwin; 18my $mainwin;
16my $viewer; 19my $viewer;
17my $schnauzer; 20my $schnauzer;
18my $info; 21my $info;
19my $help; 22my $help;
23
24my $schnauzer_idx = 0;
20 25
21sub new_schnauzer { 26sub new_schnauzer {
22 my $s = new Gtk2::CV::Schnauzer; 27 my $s = new Gtk2::CV::Schnauzer;
23 28
24 $s->signal_connect_after (key_press_event => \&std_keys); 29 $s->signal_connect_after (key_press_event => \&std_keys);
27 (File::Spec->splitpath ($_[1]))[2], 32 (File::Spec->splitpath ($_[1]))[2],
28 -s $_[1]; 33 -s $_[1];
29 $info->set_label ($label); 34 $info->set_label ($label);
30 $viewer->load_image ($_[1]); 35 $viewer->load_image ($_[1]);
31 }); 36 });
37 $s->signal_connect (chdir => sub {
38 my ($self, $dir) = @_;
39
40 my $path = Cwd::abs_path $dir;
41
42 $self->realize;
43 $self->window->property_change (
44 Gtk2::Gdk::Atom->intern ("_X_CWD", 0),
45 Gtk2::Gdk::Atom->intern ("UTF8_STRING", 0),
46 Gtk2::Gdk::CHARS, 'replace',
47 Encode::encode_utf8 $path,
48 );
49 });
32 50
33 $s; 51 $s;
34} 52}
35 53
36sub std_keys { 54sub std_keys {
41 59
42 if ($key == $Gtk2::Gdk::Keysyms{q}) { 60 if ($key == $Gtk2::Gdk::Keysyms{q}) {
43 main_quit Gtk2; 61 main_quit Gtk2;
44 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{v}) { 62 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{v}) {
45 my $w = new Gtk2::Window; 63 my $w = new Gtk2::Window;
64
65 $w->set_title ("CV: Schnauzer");
46 $w->add (my $s = new_schnauzer); 66 $w->add (my $s = new_schnauzer);
47 $s->set_dir (File::Spec->curdir); 67 $s->set_dir (File::Spec->curdir);
68 $s->set_geometry_hints;
48 $w->show_all; 69 $w->show_all;
70
49 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{h}) { 71 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{h}) {
50 unless ($help) { 72 unless ($help) {
51 require Gtk2::PodViewer; 73 require Gtk2::PodViewer;
52 74
53 $help = new Gtk2::Window; 75 $help = new Gtk2::Window;
54 $help->set_title ("CV Help"); 76 $help->set_title ("CV: Help");
55 $help->set_default_size (500, 300); 77 $help->set_default_size (500, 300);
56 $help->signal_connect (delete_event => sub { $help->hide; 1 }); 78 $help->signal_connect (delete_event => sub { $help->hide; 1 });
57 79
58 $help->add (my $sw = new Gtk2::ScrolledWindow); 80 $help->add (my $sw = new Gtk2::ScrolledWindow);
59 $sw->add (my $h = new Gtk2::PodViewer); 81 $sw->add (my $h = new Gtk2::PodViewer);
96 $vbox->add ($schnauzer); 118 $vbox->add ($schnauzer);
97 $vbox->pack_end (my $frame = new Gtk2::Frame, 0, 0, 0); 119 $vbox->pack_end (my $frame = new Gtk2::Frame, 0, 0, 0);
98 $frame->add (my $hbox = new Gtk2::HBox 0, 0); 120 $frame->add (my $hbox = new Gtk2::HBox 0, 0);
99 $hbox->pack_start ((new Gtk2::Label "Info"), 0, 0, 0); 121 $hbox->pack_start ((new Gtk2::Label "Info"), 0, 0, 0);
100 $hbox->pack_start (($info = new Gtk2::Label), 1, 1, 0); 122 $hbox->pack_start (($info = new Gtk2::Label), 1, 1, 0);
123 $info->set (wrap => 1);
124
125 $schnauzer->set_geometry_hints;
101} 126}
102 127
103if (@ARGV) { 128if (@ARGV) {
104 $schnauzer->set_paths (\@ARGV); 129 $schnauzer->set_paths ([map Glib::filename_to_unicode $_, @ARGV]);
130 $schnauzer->show_all;
105 $schnauzer->handle_key ($Gtk2::Gdk::Keysyms{space}, []); 131 $schnauzer->handle_key ($Gtk2::Gdk::Keysyms{space}, []);
106} else { 132} else {
107 $schnauzer->set_dir (File::Spec->curdir); 133 $schnauzer->set_dir (File::Spec->curdir);
108 $mainwin->show_all; 134 $mainwin->show_all;
135 $viewer->show_all;
109} 136}
110 137
111$viewer->show_all; 138$viewer->show_all;
112 139
113main Gtk2; 140main Gtk2;
136 , shrink the image by 10% 163 , shrink the image by 10%
137 . enlarge the image by 10% 164 . enlarge the image by 10%
138 n reset to normal size 165 n reset to normal size
139 m maximize to screensize 166 m maximize to screensize
140 M maxime to screensize, respecting image aspect 167 M maxime to screensize, respecting image aspect
168 ctrl-m toggle maxpect-always mode
141 u uncrop 169 u uncrop
142 r set scaling mode to 'nearest' (fastest) 170 r set scaling mode to 'nearest' (fastest)
143 s set scaling mode to 'bilinear' (default) 171 s set scaling mode to 'bilinear' (default)
144 S set scaling mode to 'hyper' (slowest) 172 S set scaling mode to 'hyper' (slowest)
145 t rotate clockwise 90° 173 t rotate clockwise 90°
146 T rotate counterclockwise° 174 T rotate counterclockwise°
147 ctrl-v open a new visual schnauzer window for the current dir 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
148 192
149The following keys are redirected to the default visual schnauzer window: 193The following keys are redirected to the default visual schnauzer window:
150 194
151 space next image 195 space next image
152 backspace last image 196 backspace last image
166 end move to last file 210 end move to last file
167 211
168 ctrl-d delete selected files WITHOUT ASKING AGAIN 212 ctrl-d delete selected files WITHOUT ASKING AGAIN
169 ctrl-g generate icons for the selected files 213 ctrl-g generate icons for the selected files
170 ctrl-u update selected (or all) icons if neccessary 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
171 236
172=head1 SECURITY CONSIDERATIONS 237=head1 SECURITY CONSIDERATIONS
173 238
174CV uses Pixbuf to load images. Pixbuf is not considered safe for this 239CV uses Pixbuf to load images. Pixbuf is not considered safe for this
175purpose, though (from the gtk-2.2 release notes): 240purpose, though (from the gtk-2.2 release notes):

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines