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

Comparing CV/bin/cv (file contents):
Revision 1.25 by root, Wed Nov 12 19:36:06 2003 UTC vs.
Revision 1.37 by root, Fri Mar 18 03:45:29 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;
29 (File::Spec->splitpath ($_[1]))[2], 32 (File::Spec->splitpath ($_[1]))[2],
30 -s $_[1]; 33 -s $_[1];
31 $info->set_label ($label); 34 $info->set_label ($label);
32 $viewer->load_image ($_[1]); 35 $viewer->load_image ($_[1]);
33 }); 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 });
34 50
35 $s; 51 $s;
36} 52}
37 53
38sub std_keys { 54sub std_keys {
43 59
44 if ($key == $Gtk2::Gdk::Keysyms{q}) { 60 if ($key == $Gtk2::Gdk::Keysyms{q}) {
45 main_quit Gtk2; 61 main_quit Gtk2;
46 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{v}) { 62 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{v}) {
47 my $w = new Gtk2::Window; 63 my $w = new Gtk2::Window;
64
65 $w->set_title ("CV: Schnauzer");
48 $w->add (my $s = new_schnauzer); 66 $w->add (my $s = new_schnauzer);
49 $s->set_dir (File::Spec->curdir); 67 $s->set_dir (File::Spec->curdir);
50 $s->set_geometry_hints; 68 $s->set_geometry_hints;
51 $w->show_all; 69 $w->show_all;
52 70
53 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{h}) { 71 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{h}) {
54 unless ($help) { 72 unless ($help) {
55 require Gtk2::PodViewer; 73 require Gtk2::PodViewer;
56 74
57 $help = new Gtk2::Window; 75 $help = new Gtk2::Window;
58 $help->set_title ("CV Help"); 76 $help->set_title ("CV: Help");
59 $help->set_default_size (500, 300); 77 $help->set_default_size (500, 300);
60 $help->signal_connect (delete_event => sub { $help->hide; 1 }); 78 $help->signal_connect (delete_event => sub { $help->hide; 1 });
61 79
62 $help->add (my $sw = new Gtk2::ScrolledWindow); 80 $help->add (my $sw = new Gtk2::ScrolledWindow);
63 $sw->add (my $h = new Gtk2::PodViewer); 81 $sw->add (my $h = new Gtk2::PodViewer);
105 123
106 $schnauzer->set_geometry_hints; 124 $schnauzer->set_geometry_hints;
107} 125}
108 126
109if (@ARGV) { 127if (@ARGV) {
110 $schnauzer->set_paths (\@ARGV); 128 $schnauzer->set_paths ([map Glib::filename_to_unicode $_, @ARGV]);
129 $schnauzer->show_all;
111 $schnauzer->handle_key ($Gtk2::Gdk::Keysyms{space}, []); 130 $schnauzer->handle_key ($Gtk2::Gdk::Keysyms{space}, []);
112} else { 131} else {
113 $schnauzer->set_dir (File::Spec->curdir); 132 $schnauzer->set_dir (File::Spec->curdir);
114 $mainwin->show_all; 133 $mainwin->show_all;
134 $viewer->show_all;
115} 135}
116 136
117$viewer->show_all; 137$viewer->show_all;
118 138
119main Gtk2; 139main Gtk2;
142 , shrink the image by 10% 162 , shrink the image by 10%
143 . enlarge the image by 10% 163 . enlarge the image by 10%
144 n reset to normal size 164 n reset to normal size
145 m maximize to screensize 165 m maximize to screensize
146 M maxime to screensize, respecting image aspect 166 M maxime to screensize, respecting image aspect
167 ctrl-m toggle maxpect-always mode
147 u uncrop 168 u uncrop
148 r set scaling mode to 'nearest' (fastest) 169 r set scaling mode to 'nearest' (fastest)
149 s set scaling mode to 'bilinear' (default) 170 s set scaling mode to 'bilinear' (default)
150 S set scaling mode to 'hyper' (slowest) 171 S set scaling mode to 'hyper' (slowest)
151 t rotate clockwise 90° 172 t rotate clockwise 90°
152 T rotate counterclockwise° 173 T rotate counterclockwise°
153 ctrl-v open a new visual schnauzer window for the current dir 174 ctrl-v open a new visual schnauzer window for the current dir
175 ctrl-s rescan visual schnauzer files for updates/deletes etc.
176 ctrl-e run an editor ($CV_EDITOR or "gimp") on the current image.
177
178And when playing movies, these additional keys are active:
179
180 left rewind by 10 seconds
181 right forward by 10 seconds
182 down rewind by 60 seconds
183 up forward by 60 seconds
184 pg_up rewind by 600 seconds
185 pg_down forward by 600 seconds
186 o toggle on-screen display
187 p pause/unpause
188 escape stop playing
189 9 turn volume down
190 0 turn volume up
154 191
155The following keys are redirected to the default visual schnauzer window: 192The following keys are redirected to the default visual schnauzer window:
156 193
157 space next image 194 space next image
158 backspace last image 195 backspace last image
172 end move to last file 209 end move to last file
173 210
174 ctrl-d delete selected files WITHOUT ASKING AGAIN 211 ctrl-d delete selected files WITHOUT ASKING AGAIN
175 ctrl-g generate icons for the selected files 212 ctrl-g generate icons for the selected files
176 ctrl-u update selected (or all) icons if neccessary 213 ctrl-u update selected (or all) icons if neccessary
214 ctrl-a select all files
215
216=head1 ENVIRONMENT
217
218=over 4
219
220=item CV_PRINT_DESTINATION
221
222The default (perl-style) destination to use in the print dialog.
223
224=back
177 225
178=head1 SECURITY CONSIDERATIONS 226=head1 SECURITY CONSIDERATIONS
179 227
180CV uses Pixbuf to load images. Pixbuf is not considered safe for this 228CV uses Pixbuf to load images. Pixbuf is not considered safe for this
181purpose, though (from the gtk-2.2 release notes): 229purpose, though (from the gtk-2.2 release notes):

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines