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

Comparing CV/bin/cv (file contents):
Revision 1.21 by root, Sat Nov 8 01:00:08 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
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;
9use Gtk2::CV; 12use Gtk2::CV;
10 13
11Gtk2::Rc->parse (Gtk2::CV::find_rcfile "gtkrc"); 14Gtk2::Rc->parse (Gtk2::CV::find_rcfile "gtkrc");
12 15
13use File::Spec; 16use File::Spec;
17
18require Gtk2::CV::Plugin;
19require "$ENV{HOME}/.cvrc" if -r "$ENV{HOME}/.cvrc";
14 20
15my $mainwin; 21my $mainwin;
16my $viewer; 22my $viewer;
17my $schnauzer; 23my $schnauzer;
18my $info; 24my $info;
19my $help; 25my $help;
26
27my $schnauzer_idx = 0;
20 28
21sub new_schnauzer { 29sub new_schnauzer {
22 my $s = new Gtk2::CV::Schnauzer; 30 my $s = new Gtk2::CV::Schnauzer;
23 31
24 $s->signal_connect_after (key_press_event => \&std_keys); 32 $s->signal_connect_after (key_press_event => \&std_keys);
27 (File::Spec->splitpath ($_[1]))[2], 35 (File::Spec->splitpath ($_[1]))[2],
28 -s $_[1]; 36 -s $_[1];
29 $info->set_label ($label); 37 $info->set_label ($label);
30 $viewer->load_image ($_[1]); 38 $viewer->load_image ($_[1]);
31 }); 39 });
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);
32 55
33 $s; 56 $s;
34} 57}
35 58
36sub std_keys { 59sub std_keys {
41 64
42 if ($key == $Gtk2::Gdk::Keysyms{q}) { 65 if ($key == $Gtk2::Gdk::Keysyms{q}) {
43 main_quit Gtk2; 66 main_quit Gtk2;
44 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{v}) { 67 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{v}) {
45 my $w = new Gtk2::Window; 68 my $w = new Gtk2::Window;
69
70 $w->set_title ("CV: Schnauzer");
46 $w->add (my $s = new_schnauzer); 71 $w->add (my $s = new_schnauzer);
47 $s->set_dir (File::Spec->curdir); 72 $s->set_dir (File::Spec->curdir);
73 $s->set_geometry_hints;
48 $w->show_all; 74 $w->show_all;
75
49 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{h}) { 76 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{h}) {
50 unless ($help) { 77 unless ($help) {
51 require Gtk2::PodViewer; 78 require Gtk2::PodViewer;
52 79
53 $help = new Gtk2::Window; 80 $help = new Gtk2::Window;
54 $help->set_title ("CV Help"); 81 $help->set_title ("CV: Help");
55 $help->set_default_size (500, 300); 82 $help->set_default_size (500, 300);
56 $help->signal_connect (delete_event => sub { $help->hide; 1 }); 83 $help->signal_connect (delete_event => sub { $help->hide; 1 });
57 84
58 $help->add (my $sw = new Gtk2::ScrolledWindow); 85 $help->add (my $sw = new Gtk2::ScrolledWindow);
59 $sw->add (my $h = new Gtk2::PodViewer); 86 $sw->add (my $h = new Gtk2::PodViewer);
62 $h->load_string (do { local $/; <DATA> }); 89 $h->load_string (do { local $/; <DATA> });
63 } 90 }
64 91
65 $help->show_all; 92 $help->show_all;
66 } else { 93 } else {
67 #$mainwin->show_all; 94 return 0;
68 $schnauzer->handle_key ($key, $state);
69 } 95 }
70 96
71 1; 97 1
72} 98}
73 99
74{ 100{
75 $viewer = new Gtk2::CV::ImageWindow; 101 $viewer = new Gtk2::CV::ImageWindow;
76 102
77 $viewer->set_title ("CV: Image"); 103 $viewer->set_title ("CV: Image");
78 104
79 $viewer->signal_connect (key_press_event => \&std_keys); 105 $viewer->signal_connect (key_press_event => sub {
106 &std_keys
107 or $schnauzer->signal_emit (key_press_event => $_[1])
108 });
80 $viewer->signal_connect (delete_event => sub { main_quit Gtk2 }); 109 $viewer->signal_connect (delete_event => sub { main_quit Gtk2 });
81 110
82 $viewer->signal_connect (button3_press_event => sub { 111 $viewer->signal_connect (button3_press_event => sub {
83 $mainwin->visible 112 $mainwin->visible
84 ? $mainwin->hide 113 ? $mainwin->hide
85 : $mainwin->show_all; 114 : $mainwin->show_all;
115 1;
86 }); 116 });
117
118 Gtk2::CV::Plugin->call (new_imagewindow => $viewer);
87 119
88 $schnauzer = new_schnauzer; 120 $schnauzer = new_schnauzer;
89 121
90 $mainwin = new Gtk2::Window; 122 $mainwin = new Gtk2::Window;
91 $mainwin->set_title ("CV"); 123 $mainwin->set_title ("CV");
92 $mainwin->add (my $vbox = new Gtk2::VBox); 124 $mainwin->add (my $vbox = new Gtk2::VBox);
125 $mainwin->signal_connect (delete_event => sub { $mainwin->hide; 1; });
93 126
94 $vbox->add ($schnauzer); 127 $vbox->add ($schnauzer);
95 $vbox->add (my $frame = new Gtk2::Frame); 128 $vbox->pack_end (my $frame = new Gtk2::Frame, 0, 0, 0);
96 $frame->add (my $hbox = new Gtk2::HBox 0, 0); 129 $frame->add (my $hbox = new Gtk2::HBox 0, 0);
97 $hbox->pack_start ((new Gtk2::Label "Info"), 0, 0, 0); 130 $hbox->pack_start ((new Gtk2::Label "Info"), 0, 0, 0);
98 $hbox->pack_start (($info = new Gtk2::Label), 1, 1, 0); 131 $hbox->pack_start (($info = new Gtk2::Label), 1, 1, 0);
132 $info->set (wrap => 1);
133
134 $schnauzer->set_geometry_hints;
99} 135}
100 136
101if (@ARGV) { 137if (@ARGV) {
102 $schnauzer->set_paths (\@ARGV); 138 $schnauzer->set_paths ([map Glib::filename_to_unicode $_, @ARGV]);
139 $schnauzer->show_all;
103 $schnauzer->handle_key ($Gtk2::Gdk::Keysyms{space}, []); 140 $schnauzer->handle_key ($Gtk2::Gdk::Keysyms{space}, []);
104} else { 141} else {
105 $schnauzer->set_dir (File::Spec->curdir); 142 $schnauzer->set_dir (File::Spec->curdir);
106 $mainwin->show_all; 143 $mainwin->show_all;
144 $viewer->show_all;
107} 145}
108 146
109$viewer->show_all; 147$viewer->show_all;
110 148
111main Gtk2; 149main Gtk2;
134 , shrink the image by 10% 172 , shrink the image by 10%
135 . enlarge the image by 10% 173 . enlarge the image by 10%
136 n reset to normal size 174 n reset to normal size
137 m maximize to screensize 175 m maximize to screensize
138 M maxime to screensize, respecting image aspect 176 M maxime to screensize, respecting image aspect
177 ctrl-m toggle maxpect-always mode
139 u uncrop 178 u uncrop
140 r set scaling mode to 'nearest' (fastest) 179 r set scaling mode to 'nearest' (fastest)
141 s set scaling mode to 'bilinear' (default) 180 s set scaling mode to 'bilinear' (default)
142 S set scaling mode to 'hyper' (slowest) 181 S set scaling mode to 'hyper' (slowest)
143 t rotate clockwise 90° 182 t rotate clockwise 90°
144 T rotate counterclockwise° 183 T rotate counterclockwise°
145 ctrl-v open a new visual schnauzer window for the current dir 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
146 201
147The following keys are redirected to the default visual schnauzer window: 202The following keys are redirected to the default visual schnauzer window:
148 203
149 space next image 204 space next image
150 backspace last image 205 backspace last image
161 page-up move one page up 216 page-up move one page up
162 page-down move one page down 217 page-down move one page down
163 home move to first file 218 home move to first file
164 end move to last file 219 end move to last file
165 220
221 ctrl-d delete selected files WITHOUT ASKING AGAIN
166 ctrl-g generate icons for the selected files 222 ctrl-g generate icons for the selected files
167 ctrl-d delete selected files WITHOUT ASKING AGAIN 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."
168 255
169=head1 BUGS/TODO 256=head1 BUGS/TODO
257
258 Pixbuf doesn't honor G_BROKEN_FILENAMES, so accessing files with names
259 incompatible with utf-8 fails.
170 260
171 rotate on disk 261 rotate on disk
172 print 262 print
173 lots of ui issues 263 lots of ui issues
174 save(?) 264 save(?)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines