ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/bin/cv
Revision: 1.29
Committed: Fri Nov 14 00:38:43 2003 UTC (20 years, 8 months ago) by root
Branch: MAIN
Changes since 1.28: +2 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #!/opt/bin/perl
2    
3 root 1.12 use Gtk2 -init;
4     use Gtk2::Gdk::Keysyms;
5    
6     use Gtk2::CV::ImageWindow;
7     use Gtk2::CV::Schnauzer;
8    
9 root 1.16 use Gtk2::CV;
10    
11     Gtk2::Rc->parse (Gtk2::CV::find_rcfile "gtkrc");
12    
13 root 1.20 use File::Spec;
14    
15     my $mainwin;
16 root 1.12 my $viewer;
17     my $schnauzer;
18 root 1.20 my $info;
19 root 1.21 my $help;
20 root 1.12
21 root 1.25 my $schnauzer_idx = 0;
22    
23 root 1.12 sub new_schnauzer {
24 root 1.20 my $s = new Gtk2::CV::Schnauzer;
25 root 1.12
26     $s->signal_connect_after (key_press_event => \&std_keys);
27 root 1.20 $s->signal_connect (activate => sub {
28     my $label = sprintf "%s (%d)",
29     (File::Spec->splitpath ($_[1]))[2],
30     -s $_[1];
31     $info->set_label ($label);
32     $viewer->load_image ($_[1]);
33     });
34 root 1.12
35     $s;
36     }
37    
38     sub std_keys {
39     my $key = $_[1]->keyval;
40     my $state = $_[1]->state;
41    
42 root 1.21 my $ctrl = $state * "control-mask";
43 root 1.12
44     if ($key == $Gtk2::Gdk::Keysyms{q}) {
45     main_quit Gtk2;
46     } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{v}) {
47 root 1.20 my $w = new Gtk2::Window;
48 root 1.26
49     $w->set_title ("CV: Schnauzer");
50 root 1.20 $w->add (my $s = new_schnauzer);
51     $s->set_dir (File::Spec->curdir);
52 root 1.25 $s->set_geometry_hints;
53 root 1.21 $w->show_all;
54 root 1.25
55 root 1.21 } elsif ($ctrl && $key == $Gtk2::Gdk::Keysyms{h}) {
56     unless ($help) {
57     require Gtk2::PodViewer;
58    
59     $help = new Gtk2::Window;
60 root 1.26 $help->set_title ("CV: Help");
61 root 1.21 $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;
72 root 1.12 } else {
73 root 1.19 #$mainwin->show_all;
74 root 1.12 $schnauzer->handle_key ($key, $state);
75     }
76    
77     1;
78     }
79    
80 root 1.20 {
81     $viewer = new Gtk2::CV::ImageWindow;
82 root 1.15
83 root 1.20 $viewer->set_title ("CV: Image");
84 root 1.15
85 root 1.20 $viewer->signal_connect (key_press_event => \&std_keys);
86     $viewer->signal_connect (delete_event => sub { main_quit Gtk2 });
87 root 1.13
88 root 1.20 $viewer->signal_connect (button3_press_event => sub {
89     $mainwin->visible
90     ? $mainwin->hide
91     : $mainwin->show_all;
92 root 1.23 1;
93 root 1.20 });
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 root 1.23 $mainwin->signal_connect (delete_event => sub { $mainwin->hide; 1; });
101 root 1.20
102     $vbox->add ($schnauzer);
103 root 1.22 $vbox->pack_end (my $frame = new Gtk2::Frame, 0, 0, 0);
104 root 1.20 $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 root 1.25
108     $schnauzer->set_geometry_hints;
109 root 1.20 }
110 root 1.12
111     if (@ARGV) {
112 root 1.18 $schnauzer->set_paths (\@ARGV);
113     $schnauzer->handle_key ($Gtk2::Gdk::Keysyms{space}, []);
114 root 1.29
115     $viewer->load_image ($ARGV[0]);
116 root 1.17 } else {
117 root 1.20 $schnauzer->set_dir (File::Spec->curdir);
118 root 1.19 $mainwin->show_all;
119 root 1.12 }
120    
121     $viewer->show_all;
122    
123     main Gtk2;
124 root 1.21
125     __DATA__
126 root 1.12
127 root 1.11 =head1 NAME
128    
129     cv - a fast gtk+ image viewer modeled after xv
130    
131     =head1 SYNOPSIS
132    
133     cv [file...]
134    
135     =head1 DESCRIPTION
136    
137     None yet.
138    
139     =head2 THE IMAGE WINDOW
140    
141     You 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 root 1.26 ctrl-m toggle maxpect-always mode
152 root 1.11 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 root 1.28 ctrl-s rescan visual schnauzer files for updates/deletes etc.
160 root 1.11
161     The following keys are redirected to the default visual schnauzer window:
162    
163     space next image
164     backspace last image
165    
166     =head2 THE VISUAL SCHNAUZER
167    
168     You can use the following keys in the schnauzer window:
169    
170     space move to and display next image
171     backspace move to and display previous image
172     return display selected picture
173    
174     cursor keys move selection
175     page-up move one page up
176     page-down move one page down
177     home move to first file
178     end move to last file
179    
180 root 1.24 ctrl-d delete selected files WITHOUT ASKING AGAIN
181 root 1.11 ctrl-g generate icons for the selected files
182 root 1.24 ctrl-u update selected (or all) icons if neccessary
183 root 1.11
184 root 1.27 =head1 ENVIRONMENT
185    
186     =over 4
187    
188     =item CV_PRINT_DESTINATION
189    
190     The default (perl-style) destination to use in the print dialog.
191    
192     =back
193    
194 root 1.23 =head1 SECURITY CONSIDERATIONS
195    
196     CV uses Pixbuf to load images. Pixbuf is not considered safe for this
197     purpose, though (from the gtk-2.2 release notes):
198    
199     "While efforts have been made to make gdk-pixbuf robust against invalid
200     images, using gdk-pixbuf to load untrusted data is not recommended, due to
201     the likelyhood that there are additional problems where an invalid image
202     could cause gdk-pixbuf to crash or worse."
203    
204 root 1.11 =head1 BUGS/TODO
205 root 1.23
206     Pixbuf doesn't honor G_BROKEN_FILENAMES, so accessing files with names
207     incompatible with utf-8 fails.
208 root 1.11
209     rotate on disk
210     print
211     lots of ui issues
212     save(?)
213     preferences
214 root 1.12 ctrl-u in schnauzer
215     shift-cursor in schnauzer
216 root 1.11
217     =head1 AUTHOR
218    
219     Marc Lehmann <cv@plan9.de>.
220    
221     =cut
222 root 1.1