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

Comparing CV/bin/cv (file contents):
Revision 1.3 by root, Mon Nov 3 01:30:58 2003 UTC vs.
Revision 1.32 by root, Sun Oct 31 21:01:40 2004 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines