98265113a129beeb7924d547fe190ecd5e47008c
[booh] / bin / booh-classifier
1 #! /usr/bin/ruby
2 #
3 #                         *  BOOH  *
4 #
5 # A.k.a 'Best web-album Of the world, Or your money back, Humerus'.
6 #
7 # The acronyn sucks, however this is a tribute to Dragon Ball by
8 # Akira Toriyama, where the last enemy beaten by heroes of Dragon
9 # Ball is named "Boo". But there was already a free software project
10 # called Boo, so this one will be it "Booh". Or whatever.
11 #
12 #
13 # Copyright (c) 2004-2006 Guillaume Cottenceau <http://zarb.org/~gc/resource/gc_mail.png>
14 #
15 # This software may be freely redistributed under the terms of the GNU
16 # public license version 2.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21
22 require 'getoptlong'
23 require 'tempfile'
24
25 require 'gtk2'
26 require 'booh/libadds'
27
28 require 'gettext'
29 include GetText
30 bindtextdomain("booh")
31
32 require 'rexml/document'
33 include REXML
34
35 require 'booh/booh-lib'
36 include Booh
37 require 'booh/UndoHandler'
38
39
40 #- options
41 $options = [
42     [ '--help',          '-h', GetoptLong::NO_ARGUMENT,       _("Get help message") ],
43
44     [ '--verbose-level', '-v', GetoptLong::REQUIRED_ARGUMENT, _("Set max verbosity level (0: errors, 1: warnings, 2: important messages, 3: other messages)") ],
45     [ '--sort-by-exif-date', '-s', GetoptLong::NO_ARGUMENT, _("Sort entries by EXIF date") ],
46 ]
47
48 $preloader_allowed = false
49
50 def usage
51     puts _("Usage: %s [OPTION]...") % File.basename($0)
52     $options.each { |ary|
53         printf " %3s, %-15s %s\n", ary[1], ary[0], ary[3]
54     }
55 end
56
57 def handle_options
58     parser = GetoptLong.new
59     parser.set_options(*$options.collect { |ary| ary[0..2] })
60     begin
61         parser.each_option do |name, arg|
62             case name
63             when '--help'
64                 usage
65                 exit(0)
66
67             when '--verbose-level'
68                 $verbose_level = arg.to_i
69
70             when '--sort-by-exif-date'
71                 $sort_by_exif_date = true
72
73             end
74         end
75     rescue
76         puts $!
77         usage
78         exit(1)
79     end
80 end
81
82 def startup_memfree
83     if $startup_memfree.nil?
84         meminfo = IO.readlines('/proc/meminfo').join
85         meminfo =~ /MemFree:.*?(\d+)/ or return -1
86         memfree = $1
87         meminfo =~ /Buffers:.*?(\d+)/ and buffers = $1
88         meminfo =~ /Cached:.*?(\d+)/ and cached = $1
89         $startup_memfree = memfree.to_i + buffers.to_i + cached.to_i
90     end
91     return $startup_memfree
92 end
93
94 def set_cache_memory_use_figure
95     
96     if $config['cache-memory-use'] =~ /memfree_(\d+)/
97         $config['cache-memory-use-figure'] = startup_memfree*$1.to_f/100
98     else
99         $config['cache-memory-use-figure'] = $config['cache-memory-use'].to_i
100     end
101     msg 2, _("Cache memory used: %s kB") % $config['cache-memory-use-figure']
102 end
103
104 def read_config
105     $config = {}
106     $config_file = File.expand_path('~/.booh-classifier-rc')
107     if File.readable?($config_file)
108         $xmldoc = REXML::Document.new(File.new($config_file))
109         $xmldoc.root.elements.each { |element|
110             txt = element.get_text
111             if txt
112                 if txt.value =~ /~~~/
113                     $config[element.name] = txt.value.split(/~~~/)
114                 else
115                     $config[element.name] = txt.value
116                 end
117             elsif element.elements.size == 0
118                 $config[element.name] = ''
119             else
120                 $config[element.name] = {}
121                 element.each { |chld|
122                     txt = chld.get_text
123                     $config[element.name][chld.name] = txt ? txt.value : nil
124                 }
125             end
126         }
127     end
128     $config['video-viewer'] ||= '/usr/bin/mplayer %f'
129     $config['browser'] ||= "/usr/bin/mozilla-firefox -remote 'openURL(%f,new-window)' || /usr/bin/mozilla-firefox %f"
130     $config['preload-distance'] ||= '5'
131     $config['cache-memory-use'] ||= 'memfree_80%'
132     $config['rotate-set-exif'] ||= 'true'
133     set_cache_memory_use_figure
134 end
135
136 def check_config
137     missing = %w(mplayer).delete_if { |prg| system("which #{prg} >/dev/null 2>/dev/null") }
138     if missing != []
139         show_popup($main_window, utf8(_("The following program(s) are needed to handle videos: '%s'. Videos will be ignored.") % missing.join(', ')), { :pos_centered => true })
140     end
141
142     if !system("which exif >/dev/null 2>/dev/null")
143         show_popup($main_window, utf8(_("The program 'exif' is needed to view EXIF data. Please install it.")), { :pos_centered => true })
144     end
145     viewer_binary = $config['video-viewer'].split.first
146     if viewer_binary && ! File.executable?(viewer_binary)
147         show_popup($main_window, utf8(_("The configured video viewer seems to be unavailable.
148 You should fix this in Edit/Preferences so that you can view videos.
149
150 Problem was: '%s' is not an executable file.
151 Hint: don't forget to specify the full path to the executable,
152 e.g. '/usr/bin/mplayer' is correct but 'mplayer' only is not.") % viewer_binary), { :pos_centered => true, :not_transient => true })
153     end
154     browser_binary = $config['browser'].split.first
155     if browser_binary && ! File.executable?(browser_binary)
156         show_popup($main_window, utf8(_("The configured browser seems to be unavailable.
157 You should fix this in Edit/Preferences so that you can open URLs.
158
159 Problem was: '%s' is not an executable file.") % browser_binary), { :pos_centered => true, :not_transient => true })
160     end
161 end
162
163 def write_config
164     ios = File.open($config_file, "w")
165     $xmldoc = Document.new "<booh-classifier-rc version='#{$VERSION}'/>"
166     $xmldoc << XMLDecl.new(XMLDecl::DEFAULT_VERSION, $CURRENT_CHARSET)
167     $config.each_pair { |key, value|
168         elem = $xmldoc.root.add_element key
169         if value.is_a? Hash
170             $config[key].each_pair { |subkey, subvalue|
171                 subelem = elem.add_element subkey
172                 subelem.add_text subvalue.to_s
173             }
174         elsif value.is_a? Array
175             elem.add_text value.join('~~~')
176         else
177             if !value
178                 elem.remove
179             else
180                 elem.add_text value.to_s
181             end
182         end
183     }
184     $xmldoc.write(ios, 0)
185     ios.close
186 end
187
188 def save_undo(name, closure, *params)
189     UndoHandler.save_undo(name, closure, [ *params ])
190     $undo_mb.sensitive = true
191     $redo_mb.sensitive = false
192 end
193
194 def get_mem
195     IO.readlines('/proc/self/status').join =~ /VmRSS.*?(\d+)\s*kB/
196     msg 3, "RSS: #{$1}"
197     return $1.to_i
198 end
199
200 def show_mem(*txt)
201     txt.length > 0 and print txt[0]
202     msg 2, "RSS: #{get_mem}"
203 end
204
205 class Gdk::Color
206     def darker
207         color = dup
208         color.red = [ color.red - 10000, 0 ].max
209         color.green = [ color.green - 10000, 0 ].max
210         color.blue = [ color.blue - 10000, 0 ].max
211         return color
212     end
213     def lighter
214         color = dup
215         color.red = [ color.red + 10000, 65535 ].min
216         color.green = [ color.green + 10000, 65535 ].min
217         color.blue = [ color.blue + 10000, 65535 ].min
218         return color
219     end
220 end
221
222 $color_red = Gdk::Color.new(65535, 0, 0)
223 $colors = [ Gdk::Color.new(0, 65535, 0),
224             Gdk::Color.new(0, 0, 65535),
225             Gdk::Color.new(65535, 65535, 0),
226             Gdk::Color.new(0, 65535, 65535),
227             Gdk::Color.new(65535, 0, 65535) ]
228
229 class Label
230     attr_accessor :color, :name, :button
231     def initialize(name)
232         @name = name
233     end
234 end
235
236 class Entry
237     @@thumbnails_height = 64
238     @@max_width = nil
239     def Entry.thumbnails_height
240         return @@thumbnails_height
241     end
242
243     attr_accessor :path, :type, :angle, :button, :image, :alignment, :removed, :labeled
244
245     def initialize(path, type)
246         @path = path
247         @type = type
248         if @@max_width.nil?
249             @@max_width = $main_window.root_window.size[0] - $labels_vbox.allocation.width - ( $videoborder_pixbuf.width + MainView.borders_thickness) * 2
250         end
251     end
252
253     def pixbuf_full
254         if @pixbuf_full.nil?
255             msg 3, ">>> pixbuf_full #{path}"
256             load_into_pixbuf_full
257         end
258         return @pixbuf_full
259     end
260     def free_pixbuf_full
261         if @pixbuf_full.nil?
262             return false
263         else
264             msg 3, ">>> free_pixbuf_full #{path}"
265             @pixbuf_full = nil
266             return true
267         end
268     end
269     def pixbuf_main
270         width, height = $mainview.window.size 
271         width = MainView.get_usable_width(width)
272         height = MainView.get_usable_height(height)
273         if @pixbuf_main.nil? || width != @width || height != @height
274             msg 3, ">>> pixbuf_main #{path}"
275             @width = width
276             @height = height
277             load_into_pixbuf_full  #- make sure it is loaded
278             if @pixbuf_full.nil?
279                 return
280             end
281             if @pixbuf_full.width.to_f / @pixbuf_full.height > width.to_f / height
282                 resized_height = @pixbuf_full.height * (width.to_f/@pixbuf_full.width)
283                 if @pixbuf_full.width > width || @pixbuf_full.height > resized_height
284                     @pixbuf_main = @pixbuf_full.scale(width, resized_height, Gdk::Pixbuf::INTERP_BILINEAR)
285                 else
286                     @pixbuf_main = @pixbuf_full
287                 end
288             else
289                 resized_width = @pixbuf_full.width * (height.to_f/@pixbuf_full.height)
290                 if @pixbuf_full.width > resized_width || @pixbuf_full.height > height
291                     @pixbuf_main = @pixbuf_full.scale(resized_width, height, Gdk::Pixbuf::INTERP_BILINEAR)
292                 else
293                     @pixbuf_main = @pixbuf_full
294                 end
295             end
296         end
297         return @pixbuf_main
298     end
299     def free_pixbuf_main
300         if @pixbuf_main.nil?
301             return false
302         else
303             msg 3, ">>> free_pixbuf_main #{path}"
304             @pixbuf_main = nil
305             return true
306         end
307     end
308     def pixbuf_thumbnail
309         if @pixbuf_thumbnail.nil?
310             if @pixbuf_main
311                 msg 3, ">>> pixbuf_thumbnail from main #{path}"
312                 @pixbuf_thumbnail = @pixbuf_main.scale(@pixbuf_main.width * (@@thumbnails_height.to_f/@pixbuf_main.height), @@thumbnails_height, Gdk::Pixbuf::INTERP_BILINEAR)
313             else
314                 msg 3, ">>> pixbuf_thumbnail from file #{path}"
315                 @pixbuf_thumbnail = load_into_pixbuf_at_size { |w, h|
316                     if @angle == 0
317                         if h > @@thumbnails_height
318                             [ w * @@thumbnails_height.to_f/h, @@thumbnails_height ]
319                         else
320                             [ w, h ]
321                         end
322                     else
323                         if w > @@thumbnails_height
324                             [ @@thumbnails_height, h * @@thumbnails_height.to_f/w ]
325                         else
326                             [ w, h ]
327                         end
328                     end
329                 }
330             end
331         end
332         return @pixbuf_thumbnail
333     end
334     def free_pixbuf_thumbnail
335         if @pixbuf_thumbnail.nil?
336             return false
337         else
338             msg 3, ">>> free_pixbuf_thumbnail #{path}"
339             @pixbuf_thumbnail = nil
340             return true
341         end
342     end
343
344     def outline_color
345         if removed
346             return $color_red
347         elsif labeled
348             return labeled.color
349         else
350             return nil
351         end
352     end
353
354     def show_bg
355         if outline_color.nil?
356             button.modify_bg(Gtk::StateType::NORMAL, nil)
357             button.modify_bg(Gtk::StateType::PRELIGHT, nil)
358             button.modify_bg(Gtk::StateType::ACTIVE, nil)
359         else
360             button.modify_bg(Gtk::StateType::NORMAL, outline_color)
361             button.modify_bg(Gtk::StateType::PRELIGHT, outline_color.lighter)
362             button.modify_bg(Gtk::StateType::ACTIVE, outline_color)
363         end
364     end
365
366     def get_beautified_name
367         if type == 'image'
368             size = get_image_size(path)
369             return _("%s (%sx%s, %s KB)") % [File.basename(@path).gsub(/\.[^.]+$/, ''),
370                                              size[:x],
371                                              size[:y],
372                                              commify(file_size(path)/1024)]
373         else
374             return _("%s (video - %s KB)") % [File.basename(@path).gsub(/\.[^.]+$/, ''),
375                                              commify(file_size(path)/1024)]
376         end
377     end
378
379     private
380     def cleanup_dir(dir)
381         Dir.entries(dir).each { |file| file != '.' && file != '..' and File.delete(File.join(dir, file)) }
382         Dir.delete(dir)
383     end
384
385     def load_into_pixbuf_full
386         if @pixbuf_full.nil?
387             msg 3, ">>> load_into_pixbuf_full #{path}"
388             @pixbuf_full = load_into_pixbuf_at_size { |w, h|
389                 if @angle == 0
390                     if w > @@max_width
391                         #- save memory and speedup (+35%) loading 
392                         [ w * (factor = @@max_width.to_f/w), h * factor ]
393                     else
394                         [ w, h ]
395                     end
396                 else
397                     if h > @@max_width
398                         [ w * (factor = @@max_width.to_f/h), h * factor ]
399                     else
400                         [ w, h ]
401                     end
402                 end
403             }
404         end
405     end
406
407     def load_into_pixbuf_at_size(&specify_size)
408         pixbuf = nil
409         if @type == 'video'
410             tmp = Tempfile.new("boohclassifiertemp")
411             tmp.close!
412             Dir.mkdir(dest_dir = tmp.path)
413             orig_base = File.basename(path)
414             tmpdir = gen_video_thumbnail(path, false, 0)
415             if tmpdir.nil?
416                 return
417             end
418             image_path = "#{tmpdir}/00000001.jpg"
419         else
420             image_path = @path
421         end
422         if @angle.nil?
423             if @type == 'image'
424                 @angle = guess_rotate(image_path)
425             else
426                 @angle = 0
427             end
428         end
429         begin
430             #- use a pixbuf loader and trigger Gtk.main_iteration on each chunk if needed, to keep the UI responsive even
431             #- if loaded pictures are several MBs large
432             loader = Gdk::PixbufLoader.new
433             loader.signal_connect('size-prepared') { |l, w, h|
434                 r = specify_size.call(w, h)
435                 msg 3, "specified sizes: #{r[0]} #{r[1]}"
436                 loader.set_size(*specify_size.call(w, h))
437             }
438             loader.signal_connect('area-prepared') { pixbuf = loader.pixbuf }
439             file = File.new(image_path)
440             while (chunk = file.read(4096)) != nil
441                 loader.write(chunk)
442                 Gtk.main_iteration while Gtk.events_pending?
443             end
444             file.close
445             loader.close
446             if pixbuf.nil?
447                 raise "Loaded pixbuf nil - #{path} #{image_path}"
448             end
449         rescue Gdk::PixbufError
450             msg 0, "Cannot load #{image_path}: #{$!}"
451             return
452         ensure
453             if @type == 'video'
454                 File.delete(image_path)
455                 Dir.rmdir(tmpdir)
456             end
457         end
458         if pixbuf
459             if @angle != 0
460                 msg 3, ">>> load_into_pixbuf_full #{image_path} => rotate #{@angle}"
461                 pixbuf = rotate_pixbuf(pixbuf, @angle)
462             end
463         end
464         if @type == 'video'
465             cleanup_dir(dest_dir)
466         end
467         return pixbuf
468     end
469
470     def to_s
471         @path
472     end
473 end
474
475 $allentries = []
476
477 def run_preloader_real
478     msg 3, "*** >> main preloading triggered..."
479     if $preloader_running
480         msg 3, "*** >>>>>> already running, return <<<<<<<<"
481         return
482     end
483     $preloader_running = true
484     if $mainview.get_shown_entry
485         mem = get_mem
486         if mem > $config['cache-memory-use-figure']
487             msg 3, "too much RSS, stopping preloading, triggering GC"
488             $preloader_running = false
489             GC.start
490             msg 3, "GC finished"
491             return
492         end
493         index = $allentries.index($mainview.get_shown_entry)
494         for j in 1 .. $config['preload-distance'].to_i
495             i = index + j
496             if i < $allentries.size
497                 $allentries[i].pixbuf_main
498             end
499             #- in case just loaded another directory
500             if $preloader_force_exit
501                 $preloader_running = false
502                 $preloader_force_exit = false
503                 return
504             end
505             i = index - j
506             if i >= 0
507                 $allentries[i].pixbuf_main
508             end
509             #- in case just loaded another directory
510             if $preloader_force_exit
511                 $preloader_running = false
512                 $preloader_force_exit = false
513                 return
514             end
515         end
516         check_memory_free_cache_if_needed
517     end
518     $preloader_running = false
519     msg 3, "*** << main preloading finished"
520     #- if we're already on a different image, rerun the preloader
521     if index != $allentries.index($mainview.get_shown_entry)
522         run_preloader_real
523     end
524 end
525
526 def run_preloader
527     if ! $preloader_allowed
528         msg 3, "*** preloader not yet allowed"
529         return
530     end
531     Gtk.timeout_add(10) {
532         run_preloader_real
533         false
534     }
535 end
536
537 class MainView < Gtk::DrawingArea
538
539     @@borders_thickness = 5
540     @@borders_length = 25
541
542     def MainView.borders_thickness
543         return @@borders_thickness
544     end
545
546     def MainView.get_usable_width(available_width)
547         return available_width - ($videoborder_pixbuf.width + @@borders_thickness) * 2
548     end
549
550     def MainView.get_usable_height(available_height)
551         return available_height - @@borders_thickness * 2
552     end
553     
554     def initialize
555         super()
556         signal_connect('expose-event') { draw }
557         signal_connect('configure-event') { update_shown }
558         @preloader_running = false
559     end
560
561     def set_shown_entry(entry)
562         t1 = Time.now
563         if ! entry.nil? && entry == @entry
564             return
565         end
566         if ! entry.nil?
567             if ! entry.button
568                 #- not loaded yet
569                 return
570             else
571                 entry.button.grab_focus
572             end
573         end
574         @entry = entry
575         redraw        
576         run_preloader
577         msg 3, "entry shown in: #{Time.now - t1} s"
578     end
579
580     def get_shown_entry
581         return @entry
582     end
583
584     def show_next_entry(entry)
585         index = $allentries.index(entry) + 1
586         if index < $allentries.size
587             set_shown_entry($allentries[index])
588         end
589     end
590
591     def redraw
592         update_shown
593         w, h = window.size
594         window.begin_paint(Gdk::Rectangle.new(0, 0, w, h))
595         window.clear
596         draw
597         window.end_paint
598     end
599
600     def update_shown
601         if @entry
602             @pixbuf = @entry.pixbuf_main
603             width, height = window.size 
604             @xpos = (width - @pixbuf.width)/2
605             @ypos = (height - @pixbuf.height)/2
606         else
607             @pixbuf = nil
608         end
609     end
610
611     def draw
612         if @pixbuf
613             window.draw_pixbuf(nil, @pixbuf, 0, 0, @xpos, @ypos, -1, -1, Gdk::RGB::DITHER_NONE, -1, -1)
614             if @entry && @entry.type == 'video'
615                 window.draw_borders($videoborder_pixbuf, @xpos - $videoborder_pixbuf.width, @xpos + @pixbuf.width, @ypos, @ypos + @pixbuf.height)
616             end
617             if ! @entry.outline_color.nil?
618                 gc = Gdk::GC.new(window)
619                 colormap.alloc_color(@entry.outline_color, false, true)
620                 gc.set_foreground(@entry.outline_color)
621                 if @entry && @entry.type == 'video'
622                     xleft = @xpos - $videoborder_pixbuf.width
623                     xright = @xpos + @pixbuf.width + $videoborder_pixbuf.width
624                 else
625                     xleft = @xpos
626                     xright = @xpos + @pixbuf.width
627                 end
628                 window.draw_polygon(gc, true, [[xleft - @@borders_thickness, @ypos - @@borders_thickness],
629                                                [xright + @@borders_thickness, @ypos - @@borders_thickness],
630                                                [xright + @@borders_thickness, @ypos + @pixbuf.height + @@borders_thickness],
631                                                [xleft - @@borders_thickness, @ypos + @pixbuf.height + @@borders_thickness],
632                                                [xleft - @@borders_thickness, @ypos - 1],
633                                                [xleft - 1, @ypos - 1],
634                                                [xleft - 1, @ypos + @pixbuf.height + 1],
635                                                [xright + 1, @ypos + @pixbuf.height + 1],
636                                                [xright + 1, @ypos - 1],
637                                                [xleft - @@borders_thickness, @ypos - 1]])
638             end
639         end
640     end
641 end
642
643 def check_memory_free_cache_if_needed
644     i = $allentries.index($mainview.get_shown_entry)
645     return if i.nil?
646     if get_mem < $config['cache-memory-use-figure'] * 2 / 3
647         return
648     end
649     msg 3, "too much RSS, triggering GC"
650     GC.start
651     msg 3, "GC finished"
652     ($allentries.size - 1).downto(1) { |j|
653         if get_mem < $config['cache-memory-use-figure'] / 2
654             break
655         end
656         index = i + j
657         msg 3, "too much RSS, freeing full size of #{i+j} and #{i-j}..."
658         if i + j < $allentries.size
659             $allentries[i+j].free_pixbuf_full
660         end
661         if i - j > 0
662             $allentries[i-j].free_pixbuf_full
663         end
664     }
665 end
666
667 def autoscroll_if_needed(button)
668     xpos_left = button.allocation.x
669     xpos_right = button.allocation.x + button.allocation.width
670     hadj = $imagesline_sw.hadjustment
671     current_minx_visible = hadj.value
672     current_maxx_visible = hadj.value + hadj.page_size
673     if xpos_left < current_minx_visible
674         #- autoscroll left
675         newval = hadj.value - (current_minx_visible - xpos_left)
676         hadj.value = newval
677         button.queue_draw  #- TOREMOVE: the visual focus is displayed incorrectly
678     elsif xpos_right > current_maxx_visible
679         #- autoscroll right
680         newval = hadj.value + (xpos_right - current_maxx_visible)
681         if newval > hadj.upper - hadj.page_size
682             newval = hadj.upper - hadj.page_size
683         end
684         hadj.value = newval
685         button.queue_draw  #- TOREMOVE: the visual focus is displayed incorrectly
686     end
687 end
688
689 def show_popup(parent, msg, *options)
690     dialog = Gtk::Dialog.new
691     if options[0]
692         options = options[0]
693     else
694         options = {}
695     end
696     if options[:title]
697         dialog.title = options[:title]
698     else
699         dialog.title = utf8(_("Booh message"))
700     end
701     lbl = Gtk::Label.new
702     if options[:nomarkup]
703         lbl.text = msg
704     else
705         lbl.markup = msg
706     end
707     if options[:centered]
708         lbl.set_justify(Gtk::Justification::CENTER)
709     end
710     if options[:selectable]
711         lbl.selectable = true
712     end
713     if options[:topwidget]
714         dialog.vbox.add(options[0][:topwidget])
715     end
716     if options[:scrolled]
717         sw = Gtk::ScrolledWindow.new(nil, nil)
718         sw.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC)
719         sw.add_with_viewport(lbl)
720         dialog.vbox.add(sw)
721         dialog.set_default_size(500, 600)
722     else
723         dialog.vbox.add(lbl)
724         dialog.set_default_size(200, 120)
725     end
726     if options[:bottomwidget]
727         dialog.vbox.add(options[:bottomwidget])
728     end
729     if options[:okcancel]
730         dialog.add_button(Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL)
731     end
732     dialog.add_button(Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK)
733
734     if options[:pos_centered]
735         dialog.window_position = Gtk::Window::POS_CENTER
736     else
737         dialog.window_position = Gtk::Window::POS_MOUSE
738     end
739
740     if options[:linkurl]
741         linkbut = Gtk::Button.new('')
742         linkbut.child.markup = "<span foreground=\"#00000000FFFF\" underline=\"single\">#{options[0][:linkurl]}</span>"
743         linkbut.signal_connect('clicked') {
744             open_url(options[0][:linkurl] + '/index.html')
745             dialog.response(Gtk::Dialog::RESPONSE_OK)
746             set_mousecursor_normal
747         }
748         linkbut.relief = Gtk::RELIEF_NONE
749         linkbut.signal_connect('enter-notify-event') { set_mousecursor(Gdk::Cursor::HAND2, linkbut); false }
750         linkbut.signal_connect('leave-notify-event') { set_mousecursor(nil, linkbut); false }
751         dialog.vbox.add(Gtk::Alignment.new(0.5, 0.5, 0, 0).add(linkbut))
752     end
753
754     dialog.show_all
755
756     if options[:stuff_connector]
757         options[:stuff_connector].call({ :dialog => dialog })
758     end
759                                         
760     if !options[:not_transient]
761         dialog.transient_for = parent
762         dialog.run { |response|
763             if options[:data_getter]
764                 options[:data_getter].call
765             end
766             dialog.destroy
767             if options[:okcancel]
768                 return response == Gtk::Dialog::RESPONSE_OK
769             end
770         }
771     else
772         dialog.signal_connect('response') { dialog.destroy }
773     end
774 end
775
776 def view_entry(entry)
777     if entry.type == 'image'
778         show_popup($main_window,
779                    utf8(`exif -m '#{entry.path}'`),
780                    { :title => utf8(_("EXIF data of %s") % File.basename(entry.path)), :nomarkup => true, :scrolled => true, :not_transient => true })
781     else
782         cmd = from_utf8($config['video-viewer']).gsub('%f', "'#{entry.path}'") + ' &'
783         msg 2, cmd
784         system(cmd)
785     end
786 end
787
788 def thumbnail_keypressed(entry, event)
789     if event.state & Gdk::Window::MOD1_MASK != 0
790         #- ALT pressed: Alt-Left and Alft-Right rotate
791         if event.keyval == Gdk::Keyval::GDK_Left || event.keyval == Gdk::Keyval::GDK_Right
792             if event.keyval == Gdk::Keyval::GDK_Left
793                 entry.angle = (entry.angle - 90) % 360
794             else
795                 entry.angle = (entry.angle + 90) % 360
796             end
797             entry.free_pixbuf_full
798             entry.free_pixbuf_main
799             entry.free_pixbuf_thumbnail
800             $mainview.redraw
801             entry.image.pixbuf = entry.pixbuf_thumbnail
802             if $config['rotate-set-exif'] == 'true' && entry.type == 'image'
803                 Exif.set_orientation(entry.path, angle_to_exif_orientation(entry.angle))
804             end
805         end
806
807     elsif event.state & Gdk::Window::CONTROL_MASK != 0
808         #- CONTROL pressed: Ctrl-z and Ctrl-r for undo/redo
809         if event.keyval == Gdk::Keyval::GDK_z
810             perform_undo
811         end
812         if event.keyval == Gdk::Keyval::GDK_r
813             perform_redo
814         end
815
816     else
817         removed_before = entry.removed
818         label_before = entry.labeled
819
820         if event.keyval == Gdk::Keyval::GDK_Delete
821             entry.removed = true
822             entry.labeled = nil
823             entry.show_bg
824             $mainview.show_next_entry(entry)
825             update_visibility(entry)
826
827             save_undo(_("set for removal"),
828                       proc {
829                           entry.removed = removed_before
830                           entry.labeled = label_before
831                           entry.show_bg
832                           update_visibility(entry)
833                           if entry.button.visible?
834                               $mainview.set_shown_entry(entry)
835                           end
836                           proc {
837                               entry.removed = true
838                               entry.labeled = nil
839                               entry.show_bg
840                               update_visibility(entry)
841                               if entry.button.visible?
842                                   $mainview.set_shown_entry(entry)
843                               end
844                           }
845                       })
846
847         elsif event.keyval == Gdk::Keyval::GDK_space
848             if entry.labeled
849                 msg = _("Cleared label")
850             elsif entry.removed
851                 msg = _("Cleared set for removal")
852             end
853             entry.removed = false
854             entry.labeled = nil
855             entry.show_bg
856             $mainview.show_next_entry(entry)
857
858             save_undo(msg,
859                       proc {
860                           entry.removed = removed_before
861                           entry.labeled = label_before
862                           entry.show_bg
863                           $mainview.set_shown_entry(entry)
864                           proc {
865                               entry.removed = false
866                               entry.labeled = nil
867                               entry.show_bg
868                               $mainview.set_shown_entry(entry)
869                           }
870                       })
871
872         elsif event.keyval == Gdk::Keyval::GDK_Return
873             view_entry(entry)
874
875         else
876             char = [ Gdk::Keyval.to_unicode(event.keyval) ].pack("C*")
877             if char =~ /^[a-zA-z0-9]$/
878                 label = $labels[char]
879                 
880                 if label.nil?
881                     vb = Gtk::VBox.new(false, 0)
882                     vb.pack_start(entry = Gtk::Entry.new.set_text(char), false, false)
883                     vb.pack_start(Gtk::Alignment.new(0.5, 0.5, 0, 0).add(bt = Gtk::ColorButton.new))
884                     color = bt.color = Gdk::Color.new(16384 + rand(49151), 16384 + rand(49151), 16384 + rand(49151))
885                     bt.signal_connect('color-set') { color = bt.color }
886                     text = nil
887                     entry.signal_connect('changed') {  #- cannot add a new label with first letter of an existing label
888                         while $labels.has_key?(entry.text[0,1])
889                             entry.text = entry.text.sub(/./, '')
890                         end
891                     }
892                     if show_popup($main_window,
893                                   utf8(_("You typed the text character '%s', which is not associated with a label.\nType in the full name of the label below to create a new one.")) % char,
894                                   { :okcancel => true, :bottomwidget => vb, :data_getter => proc { text = entry.text },
895                                     :stuff_connector => proc { |stuff| entry.select_region(0, 0)
896                                                                        entry.position = -1
897                                                                        entry.signal_connect('activate') { stuff[:dialog].response(Gtk::Dialog::RESPONSE_OK) } } } )
898                         if text.length > 0
899                             char = text[0,1]  #- in case it changed
900                             label = Label.new(text)
901                             label.color = color
902                             $labels[char] = label
903                             lbl = Gtk::Label.new.set_markup('<b>(' + char + ')</b>' + text[1..-1]).set_justify(Gtk::Justification::CENTER)
904                             $labels_vbox.pack_start(label.button = Gtk::CheckButton.new.add(evt = Gtk::EventBox.new.add(lbl)).show_all)
905                             label.button.active = true
906                             label.button.signal_connect('toggled') { update_all_visibilities }
907                             evt.modify_bg(Gtk::StateType::NORMAL, label.color)
908                             evt.modify_bg(Gtk::StateType::PRELIGHT, label.color.lighter.lighter)
909                             evt.modify_bg(Gtk::StateType::ACTIVE, label.color.lighter)
910                         end
911                     end
912
913                 else
914                     entry.removed = false
915                     entry.labeled = label
916                     entry.show_bg
917                     $mainview.show_next_entry(entry)
918                     update_visibility(entry)
919
920                     save_undo(_("set label"),
921                               proc {
922                                   entry.removed = removed_before
923                                   entry.labeled = label_before
924                                   entry.show_bg
925                                   update_visibility(entry)
926                                   if entry.button.visible?
927                                       $mainview.set_shown_entry(entry)
928                                   end
929                                   proc {
930                                       entry.removed = false
931                                       entry.labeled = label
932                                       entry.show_bg
933                                       update_visibility(entry)
934                                       if entry.button.visible?
935                                           $mainview.set_shown_entry(entry)
936                                       end
937                                   }
938                               })
939                 end
940             end
941         end
942     end
943 end
944
945 def sb_msg(msg)
946     $statusbar.pop(0)
947     if msg
948         $statusbar.push(0, utf8(msg))
949     end
950 end
951
952 def show_entry(entry, i)
953     #- scope entry
954     msg 3, "showing entry #{entry}"
955     entry.image = Gtk::Image.new(entry.pixbuf_thumbnail)
956     if entry.type == 'video'
957         entry.button = Gtk::Button.new.add(Gtk::HBox.new.pack_start(da1 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false).
958                                            pack_start(entry.image).
959                                            pack_start(da2 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false))
960         da1.signal_connect('realize') { da1.window.set_back_pixmap($videoborder_pixmap, false) }
961         da2.signal_connect('realize') { da2.window.set_back_pixmap($videoborder_pixmap, false) }
962     else
963         entry.button = Gtk::Button.new.add(entry.image)
964     end
965     Gtk::Tooltips.new.set_tip(entry.button, entry.get_beautified_name, nil)
966     $imagesline.pack_start(entry.alignment = Gtk::Alignment.new(0.5, 1, 0, 0).add(entry.button).show_all, false, false)
967     entry.button.signal_connect('clicked') {
968         if (last_shown = $mainview.get_shown_entry) != entry
969             entry.alignment.set(0.5, 0, 0, 0)
970             last_shown and last_shown.alignment.set(0.5, 1, 0, 0)
971             $mainview.set_shown_entry(entry)
972             sb_msg(_("Selected %s") % entry.get_beautified_name)
973         end
974     }
975     entry.button.signal_connect('button-press-event') { |w, event|
976         if entry.type == 'video' && event.event_type == Gdk::Event::BUTTON2_PRESS
977             video_view(entry)
978         end
979     }
980     entry.button.signal_connect('focus-in-event') { entry.button.clicked; autoscroll_if_needed(entry.button) }
981     entry.button.signal_connect('key-press-event') { |w, e| thumbnail_keypressed(entry, e) }
982     if i == 0
983         entry.button.grab_focus
984     end
985     update_visibility(entry)
986     Gtk.main_iteration while Gtk.events_pending?
987 end
988
989 def show_entries(allentries)
990     sb_msg(_("Loading images..."))
991     $loading_progressbar.fraction = 0
992     $loading_progressbar.text = utf8(_("Loading... %d%") % 0)
993     $loading_progressbar.show
994     t1 = Time.now
995     total_loaded_files = 0
996     total_loaded_size = 0
997     i = 0
998     while i < allentries.size
999 #        printf "%d %s\n", i, __LINE__
1000         entry = allentries[i]
1001         if i == 0
1002             loaded_pixbuf = entry.pixbuf_main
1003         else
1004             loaded_pixbuf = entry.pixbuf_thumbnail
1005         end
1006         if $allentries != allentries
1007             #- loaded another directory while this one was not yet finished
1008             msg 3, "allentries differ, stopping this deprecated load"
1009             return
1010         end
1011
1012         if loaded_pixbuf
1013             show_entry(entry, i)
1014             if $allentries != allentries
1015                 #- loaded another directory while this one was not yet finished
1016                 msg 3, "allentries differ, stopping this deprecated load"
1017                 return
1018             end
1019
1020             total_loaded_size += file_size(entry.path)
1021             if i % 4 == 0
1022                 check_memory_free_cache_if_needed
1023             end
1024             total_loaded_files += 1
1025             i += 1
1026             if i > $config['preload-distance'].to_i && i <= $config['preload-distance'].to_i * 2
1027                 #- when we're at preload distance, beging preloading to preload distance
1028                 allentries[i - $config['preload-distance'].to_i].pixbuf_main
1029             end
1030             if i == $config['preload-distance'].to_i * 2 + 1
1031                 #- when we're after double preload distance, activate normal preloading
1032                 $preloader_allowed = true
1033             end
1034             
1035         else
1036             allentries.delete_at(i)
1037         end
1038         $loading_progressbar.fraction = i.to_f / allentries.size
1039         $loading_progressbar.text = utf8(_("Loading... %d%") % (100 * $loading_progressbar.fraction))
1040     end
1041     if i <= $config['preload-distance'].to_i * 2
1042         #- not yet preloaded correctly
1043         $preloader_allowed = true
1044         run_preloader
1045     end
1046     sb_msg(_("%d images of total %s kB loaded in %3.2f seconds.") % [ total_loaded_files, commify(total_loaded_size / 1024), Time.now - t1 ])
1047     $loading_progressbar.hide
1048     $execute.sensitive = true
1049 end
1050
1051 def reset_all
1052     reset_labels
1053     reset_thumbnails
1054     $mainview.set_shown_entry(nil)
1055     sb_msg(nil)
1056     $preloader_allowed = false
1057 end
1058
1059 def open_dir(path)
1060     #- remove visual stuff, so that user will see something is happening
1061     reset_all
1062     sb_msg(_("Scanning source directory..."))
1063     Gtk.main_iteration while Gtk.events_pending?
1064
1065     path = File.expand_path(path.sub(%r|/$|, ''))
1066     examined_dirs = `find '#{path}' -type d -follow`.sort.collect { |v| v.chomp }
1067     #- validate first
1068     examined_dirs.each { |dir|
1069         if dir =~ /'/
1070             return utf8(_("Source directory or sub-directories can't contain a single-quote character, sorry: %s") % dir)
1071         end
1072         Dir.entries(dir).each { |file|
1073             if file =~ /'/ && type = entry2type(file) && type == 'video'
1074                 return utf8(_("Videos can't contain a single quote character ('), sorry: %s") % "#{dir}/#{file}")
1075             end
1076         }
1077     }
1078
1079     #- scan for populate second
1080     examined_dirs.each { |dir|
1081         if File.basename(dir) =~ /^\./
1082             msg 1, _("Ignoring directory %s, begins with a dot (indicating a hidden directory)") % dir
1083             next
1084         end
1085         entries = Dir.entries(dir)
1086         if $sort_by_exif_date
1087             dates = {}
1088             entries.each { |file|
1089                 date_time = Exif.datetimeoriginal(File.join(dir, file))
1090                 if ! date_time.nil?
1091                     dates[file] = date_time
1092                 end
1093             }
1094             entries = smartsort(entries, dates)
1095         else
1096             entries.sort!
1097         end
1098         entries.each { |file|
1099             type = entry2type(file)
1100             if type
1101                 $allentries << Entry.new(File.join(dir, file), type)
1102             end
1103         }
1104     }
1105     $workingdir = path
1106     return nil
1107 end
1108
1109 def open_dir_popup
1110     fc = Gtk::FileChooserDialog.new(utf8(_("Specify the directory to work with")),
1111                                     nil,
1112                                     Gtk::FileChooser::ACTION_SELECT_FOLDER,
1113                                     nil,
1114                                     [Gtk::Stock::OPEN, Gtk::Dialog::RESPONSE_ACCEPT], [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1115     fc.transient_for = $main_window
1116     if $workingdir
1117         fc.current_folder = $workingdir
1118     end
1119     ok = false
1120     load = false
1121     while !ok
1122         if fc.run == Gtk::Dialog::RESPONSE_ACCEPT
1123             msg = open_dir(fc.filename)
1124             if msg
1125                 show_popup(fc, msg)
1126                 ok = false
1127             else
1128                 ok = true
1129                 load = true
1130             end
1131         else
1132             ok = true
1133         end
1134     end
1135     fc.destroy
1136     if load
1137         show_entries($allentries)
1138     end
1139 end
1140
1141 def try_quit(*options)
1142     Gtk.main_quit
1143 end
1144
1145 def execute
1146     dialog = Gtk::Dialog.new
1147     dialog.title = utf8(_("Booh message"))
1148
1149     vb1 = Gtk::VBox.new(false, 5)
1150     label = Gtk::Label.new.set_markup(utf8(_("You're about to <b>execute</b> actions on the marked images.\nPlease confirm below the actions. You cannot undo this operation!")))
1151     vb1.pack_start(label, false, false)
1152
1153     table = Gtk::Table.new(0, 0, false)
1154     table.set_row_spacings(5)
1155     table.set_column_spacings(5)
1156     table.attach(Gtk::Label.new.set_markup(utf8(_("<b>Label name:</b>"))).set_justify(Gtk::Justification::CENTER), 0, 1, 0, 1, Gtk::FILL, Gtk::FILL, 5, 0)
1157     table.attach(Gtk::Label.new.set_markup(utf8(_("<b>Amount of pictures:</b>"))).set_justify(Gtk::Justification::CENTER), 1, 2, 0, 1, Gtk::FILL, Gtk::FILL, 5, 0)
1158     table.attach(Gtk::Label.new.set_markup(utf8(_("<b>Pictures examples:</b>"))).set_justify(Gtk::Justification::CENTER), 2, 3, 0, 1, Gtk::FILL, Gtk::FILL, 5, 0)
1159     table.attach(Gtk::Label.new.set_markup(utf8(_("<b>Action to perform:</b>"))).set_justify(Gtk::Justification::CENTER), 3, 4, 0, 1, Gtk::FILL, Gtk::FILL, 5, 0)
1160     add_row = proc { |row, name, color, truthproc, normal|
1161         table.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(Gtk::EventBox.new.add(Gtk::Label.new.set_markup(name)).modify_bg(Gtk::StateType::NORMAL, color)),
1162                      0, 1, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1163         counter = 0
1164         examples = Gtk::HBox.new(false, 5)
1165         $allentries.each { |entry|
1166             if truthproc.call(entry)
1167                 counter += 1
1168                 if counter < 4
1169                     thumbnail = Gtk::Image.new(entry.pixbuf_thumbnail)
1170                     if entry.type == 'video'
1171                         thumbnail = Gtk::HBox.new.pack_start(da1 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false).
1172                                                   pack_start(thumbnail).
1173                                                   pack_start(da2 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false)
1174                         da1.signal_connect('realize') { da1.window.set_back_pixmap($videoborder_pixmap, false) }
1175                         da2.signal_connect('realize') { da2.window.set_back_pixmap($videoborder_pixmap, false) }
1176                     end
1177                     examples.pack_start(thumbnail, false, false)
1178                 elsif counter == 4
1179                     examples.pack_start(Gtk::Label.new.set_markup("<b>...</b>"), false, false)
1180                 end
1181             end
1182         }
1183         table.attach(Gtk::Label.new(counter.to_s).set_justify(Gtk::Justification::CENTER), 1, 2, row, row + 1, 0, 0, 5, 5)
1184         table.attach(examples, 2, 3, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1185
1186         combostore = Gtk::ListStore.new(Gdk::Pixbuf, String)
1187         iter = combostore.append
1188         if normal
1189             iter[0] = $main_window.render_icon(Gtk::Stock::GO_FORWARD, Gtk::IconSize::MENU)
1190             iter[1] = utf8(_("Move to:"))
1191             iter = combostore.append
1192             iter[0] = $main_window.render_icon(Gtk::Stock::PASTE, Gtk::IconSize::MENU)
1193             iter[1] = utf8(_("Copy to:"))
1194         else
1195             iter[0] = $main_window.render_icon(Gtk::Stock::DELETE, Gtk::IconSize::MENU)
1196             iter[1] = utf8(_("Permanently remove"))
1197         end
1198         iter = combostore.append
1199         iter[0] = $main_window.render_icon(Gtk::Stock::MEDIA_STOP, Gtk::IconSize::MENU)
1200         iter[1] = utf8(_("Do nothing"))
1201         combo = Gtk::ComboBox.new(combostore)
1202         combo.active = 0
1203         renderer = Gtk::CellRendererPixbuf.new
1204         combo.pack_start(renderer, false)
1205         combo.set_attributes(renderer, :pixbuf => 0)
1206         renderer = Gtk::CellRendererText.new
1207         combo.pack_start(renderer, true)
1208         combo.set_attributes(renderer, :text => 1)
1209
1210         if normal
1211             pathbutton = Gtk::Button.new.add(pathlabel = Gtk::Label.new.set_markup(utf8(_("<i>(unset)</i>"))))
1212             lastpath = $workingdir
1213             pathbutton.signal_connect('clicked') {
1214                 fc = Gtk::FileChooserDialog.new(utf8(_("Specify the directory where to move the pictures to")),
1215                                                 nil,
1216                                                 Gtk::FileChooser::ACTION_SELECT_FOLDER,
1217                                                 nil,
1218                                                 [Gtk::Stock::OPEN, Gtk::Dialog::RESPONSE_ACCEPT], [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1219                 fc.transient_for = dialog
1220                 fc.current_folder = lastpath
1221                 if fc.run == Gtk::Dialog::RESPONSE_ACCEPT
1222                     pathlabel.text = fc.filename
1223                 end
1224                 lastpath = fc.filename
1225                 fc.destroy
1226             }
1227             combo.signal_connect('changed') {
1228                 pathbutton.sensitive = combo.active <= 1
1229             }
1230             vb = Gtk::VBox.new(false, 5)
1231             vb.pack_start(combo, false, false)
1232             vb.pack_start(pathbutton, false, false)
1233             table.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(vb), 3, 4, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1234             { :combo => combo, :pathlabel => pathlabel }
1235         else
1236             table.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(combo), 3, 4, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1237             { :combo => combo }
1238         end
1239     }
1240     stuff = {}
1241     stuff['toremove'] = add_row.call(1, utf8(_("<i>to remove</i>")), $color_red, proc { |entry| entry.removed }, false)
1242     $labels.values.each_with_index { |label, row| stuff[label] = add_row.call(row + 2, label.name, label.color, proc { |entry| entry.labeled == label }, true) }
1243     vb1.pack_start(sw = Gtk::ScrolledWindow.new(nil, nil).add_with_viewport(table).set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC), true, true)
1244
1245     toremove_amount = $allentries.find_all { |entry| entry.removed }.size
1246     toremove_size = commify($allentries.find_all { |entry| entry.removed }.collect { |entry| file_size(entry.path) }.sum / 1024)
1247     check_removal = Gtk::CheckButton.new(utf8(_("I have noticed I am about to permanently remove the %d above mentioned pictures (total %s kB).") % [ toremove_amount, toremove_size ]))
1248     if toremove_amount > 0
1249         vb1.pack_start(check_removal, false, false)
1250         stuff['toremove'][:combo].signal_connect('changed') { |widget|
1251             check_removal.sensitive = widget.active == 0
1252         }
1253     end
1254
1255     dialog.vbox.add(vb1)
1256
1257     dialog.set_default_size(800, 600)
1258     dialog.add_button(Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL)
1259     dialog.add_button(Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK)
1260     dialog.window_position = Gtk::Window::POS_MOUSE
1261     dialog.transient_for = $main_window
1262
1263     dialog.show_all
1264
1265     while true
1266         dialog.run { |response|        
1267             if response == Gtk::Dialog::RESPONSE_OK
1268                 if toremove_amount > 0 && ! check_removal.active? && stuff['toremove'][:combo].active == 0
1269                     show_popup(dialog, utf8(_("You have not confirmed that you noticed the permanent removal of the pictures marked for deletion.")))
1270                     break
1271                 end
1272                 problem = false
1273                 label2entries = {}
1274                 $labels.values.each { |label| label2entries[label] = [] }
1275                 $allentries.each { |entry| entry.labeled and label2entries[entry.labeled] << entry }
1276                 stuff.keys.each { |key|
1277                     if key.is_a?(Label) && stuff[key][:combo].active <= 1
1278                         destination = stuff[key][:pathlabel].text
1279                         if destination[0] != ?/
1280                             show_popup(dialog, utf8(_("You have not selected a directory where to move/copy %s.") % key.name))
1281                             problem = true
1282                             break
1283                         end
1284                         begin
1285                             Dir.mkdir(destination)
1286                         rescue Errno::EEXIST
1287                         end
1288                         begin
1289                             st = File.stat(destination)
1290                         rescue
1291                             show_popup(dialog, utf8(_("Directory %s, where to move/copy %s, is not valid or not createable.") % [destination, key.name]))
1292                             problem = true
1293                             break
1294                         end
1295                         if ! st.directory? || ! st.writable?
1296                             show_popup(dialog, utf8(_("Directory %s, where to move/copy %s, is not valid or not writable.") % [destination, key.name]))
1297                             problem = true
1298                             break
1299                         end
1300                         label2entries[key].each { |entry|
1301                             begin
1302                                 File.stat(File.join(destination, File.basename(entry.path)))
1303                                 show_popup(dialog, utf8(_("Sorry, a file '%s' already exists in directory '%s'.") % [ File.basename(entry.path), destination ]))
1304                                 problem = true
1305                                 break
1306                             rescue
1307                             end
1308                         }
1309                         if problem
1310                             break
1311                         end
1312                     end
1313                 }
1314                 if ! problem
1315                     begin
1316                         moved = 0
1317                         copied = 0
1318                         stuff.keys.each { |key|
1319                             if key.is_a?(Label) && stuff[key][:combo].active <= 1
1320                                 destination = stuff[key][:pathlabel].text
1321                                 label2entries[key].each { |entry|
1322                                     if stuff[key][:combo].active == 0
1323                                         File.rename(entry.path, File.join(destination, File.basename(entry.path)))
1324                                         moved += 1
1325                                     elsif stuff[key][:combo].active == 1
1326                                         system("cp -dp '#{entry.path}' '#{destination}'")
1327                                         copied += 1
1328                                     end
1329                                 }
1330                             end
1331                         }
1332                         removed = 0
1333                         if stuff['toremove'][:combo].active == 0
1334                             $allentries.each { |entry|
1335                                 if entry.removed
1336                                     File.delete(entry.path)
1337                                     removed += 1
1338                                 end
1339                             }
1340                         end
1341                     rescue
1342                         msg 1, "woops: #{$!}"
1343                         show_popup(dialog, utf8(_("Unexpected system call error: '%s'.") % $!))
1344                     end
1345                     show_popup(dialog, utf8(_("Successfully moved %d files, copied %d file, and removed %d files.") % [ moved, copied, removed ]))
1346                     dialog.destroy
1347                     reset_all
1348                     return
1349                 end
1350
1351             else
1352                 dialog.destroy
1353                 return
1354             end
1355         }
1356     end
1357 end
1358
1359 def update_visibility(entry)
1360     if ! entry.button
1361         #- not yet loaded
1362         return
1363     end
1364     if entry.labeled
1365         if entry.labeled.button.active?
1366             entry.button.show
1367         else
1368             entry.button.hide
1369         end
1370     elsif entry.removed
1371         if $toremove_button.active?
1372             entry.button.show
1373         else
1374             entry.button.hide
1375         end
1376     else
1377         if $unlabelled_button.active?
1378             entry.button.show
1379         else
1380             entry.button.hide
1381         end
1382     end
1383 end
1384         
1385 def update_all_visibilities
1386     $allentries.each { |entry|
1387         update_visibility(entry)
1388     }
1389     shown = $mainview.get_shown_entry
1390     if shown.nil?
1391         return
1392     end
1393     while shown.button && ! shown.button.visible? && shown != $allentries.last
1394         shown = $allentries[$allentries.index(shown) + 1]
1395     end 
1396     if shown.button && shown.button.visible?
1397         shown.button.grab_focus
1398         return
1399     end
1400     $allentries.reverse.each { |entry|
1401         if entry.button && entry.button.visible?
1402             entry.button.grab_focus
1403             return
1404         end
1405     }
1406 end
1407
1408 def preferences
1409     dialog = Gtk::Dialog.new(utf8(_("Edit preferences")),
1410                              $main_window,
1411                              Gtk::Dialog::MODAL | Gtk::Dialog::DESTROY_WITH_PARENT,
1412                              [Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK],
1413                              [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1414
1415     tooltips = Gtk::Tooltips.new
1416     
1417     dialog.vbox.add(tbl = Gtk::Table.new(0, 0, false))
1418     tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Command for watching videos: ")))),
1419                0, 1, 0, 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1420     tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(video_viewer_entry = Gtk::Entry.new.set_text($config['video-viewer']).set_size_request(250, -1)),
1421                1, 2, 0, 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1422     tooltips.set_tip(video_viewer_entry, utf8(_("Use %f to specify the filename;\nfor example: /usr/bin/mplayer %f")), nil)
1423
1424     tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Browser's command: ")))),
1425                0, 1, 1, 2, Gtk::FILL, Gtk::SHRINK, 2, 2)
1426     tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(browser_entry = Gtk::Entry.new.set_text($config['browser'])),
1427                1, 2, 1, 2, Gtk::FILL, Gtk::SHRINK, 2, 2)
1428     tooltips.set_tip(browser_entry, utf8(_("Use %f to specify the filename;\nfor example: /usr/bin/mozilla-firefox -remote 'openURL(%f,new-window)' || /usr/bin/mozilla-firefox %f")), nil)
1429
1430     tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Preloading distance: ")))),
1431                0, 1, 2, 3, Gtk::FILL, Gtk::SHRINK, 2, 2)
1432     tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(preload_distance = Gtk::SpinButton.new(0, 50, 1).set_value($config['preload-distance'].to_i)),
1433                1, 2, 2, 3, Gtk::FILL, Gtk::SHRINK, 2, 2)
1434     tooltips.set_tip(preload_distance, utf8(_("Amount of pictures preloaded left and right to the currently shown")), nil)
1435
1436     tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Cache memory use: ")))),
1437                0, 1, 3, 4, Gtk::FILL, Gtk::SHRINK, 2, 2)
1438     tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(cache_vbox = Gtk::VBox.new(false, 0)),
1439                1, 2, 3, 4, Gtk::FILL, Gtk::SHRINK, 2, 2)
1440     cache_vbox.pack_start(Gtk::HBox.new(false, 0).pack_start(cache_memfree_radio = Gtk::RadioButton.new(''), false, false).
1441                                                   pack_start(cache_memfree_spin = Gtk::SpinButton.new(0, 100, 10), false, false).
1442                                                   pack_start(cache_memfree_label = Gtk::Label.new(utf8(_("% of free memory"))), false, false), false, false)
1443     cache_memfree_spin.signal_connect('value-changed') { cache_memfree_radio.active = true }
1444     tooltips.set_tip(cache_memfree_spin, utf8(_("Percentage of free memory (+ buffers/cache) measured at startup")), nil)
1445     cache_vbox.pack_start(Gtk::HBox.new(false, 0).pack_start(cache_specify_radio = Gtk::RadioButton.new(cache_memfree_radio, ''), false, false).
1446                                                   pack_start(cache_specify_spin = Gtk::SpinButton.new(0, 4000, 50), false, false).
1447                                                   pack_start(cache_specify_label = Gtk::Label.new(utf8(_("MB"))).set_sensitive(false), false, false), false, false)
1448     cache_specify_spin.signal_connect('value-changed') { cache_specify_radio.active = true }
1449     cache_memfree_radio.signal_connect('toggled') {
1450         if cache_memfree_radio.active?
1451             cache_memfree_label.sensitive = true
1452             cache_specify_label.sensitive = false
1453         else
1454             cache_specify_label.sensitive = true
1455             cache_memfree_label.sensitive = false
1456         end
1457     }
1458     tooltips.set_tip(cache_specify_spin, utf8(_("Amount of memory in megabytes")), nil)
1459     if $config['cache-memory-use'] =~ /memfree_(\d+)/
1460         cache_memfree_spin.value = $1.to_i
1461     else
1462         cache_specify_spin.value = $config['cache-memory-use'].to_i
1463     end
1464
1465     tbl.attach(update_exif_orientation_check = Gtk::CheckButton.new(utf8(_("Update file's EXIF orientation when rotating a picture"))),
1466                0, 2, 4, 5, Gtk::FILL, Gtk::SHRINK, 2, 2)
1467     tooltips.set_tip(update_exif_orientation_check, utf8(_("When rotating a picture (Alt-Right/Left), also update EXIF orientation in the file itself")), nil)
1468     update_exif_orientation_check.active = $config['rotate-set-exif'] == 'true'
1469
1470     dialog.vbox.show_all
1471     dialog.run { |response|
1472         if response == Gtk::Dialog::RESPONSE_OK
1473             $config['video-viewer'] = from_utf8(video_viewer_entry.text)
1474             $config['browser'] = from_utf8(browser_entry.text)
1475             $config['preload-distance'] = preload_distance.value
1476             $config['rotate-set-exif'] = update_exif_orientation_check.active?.to_s
1477             if cache_memfree_radio.active?
1478                 $config['cache-memory-use'] = "memfree_#{cache_memfree_spin.value}%"
1479             else
1480                 $config['cache-memory-use'] = cache_specify_spin.value
1481             end
1482             set_cache_memory_use_figure
1483         end
1484     }
1485     dialog.destroy
1486 end
1487
1488 def perform_undo
1489     if $undo_mb.sensitive?
1490         $redo_mb.sensitive = true
1491         if not more_undoes = UndoHandler.undo($statusbar)
1492             $undo_mb.sensitive = false
1493         end
1494     end
1495 end
1496
1497 def perform_redo
1498     if $redo_mb.sensitive?
1499         $undo_mb.sensitive = true
1500         if not more_redoes = UndoHandler.redo($statusbar)
1501             $redo_mb.sensitive = false
1502         end
1503     end
1504 end
1505
1506 def create_menubar    
1507     #- menu
1508     mb = Gtk::MenuBar.new
1509
1510     filemenu = Gtk::MenuItem.new(utf8(_("_File")))
1511     filesubmenu = Gtk::Menu.new
1512     filesubmenu.append(open      = Gtk::ImageMenuItem.new(Gtk::Stock::OPEN))
1513     filesubmenu.append(            Gtk::SeparatorMenuItem.new)
1514     filesubmenu.append($execute  = Gtk::ImageMenuItem.new(Gtk::Stock::EXECUTE).set_sensitive(false))
1515     filesubmenu.append(            Gtk::SeparatorMenuItem.new)
1516     filesubmenu.append(quit      = Gtk::ImageMenuItem.new(Gtk::Stock::QUIT))
1517     filemenu.set_submenu(filesubmenu)
1518     mb.append(filemenu)
1519
1520     open.signal_connect('activate') { open_dir_popup }
1521     $execute.signal_connect('activate') { execute }
1522     quit.signal_connect('activate') { try_quit }
1523
1524     editmenu = Gtk::MenuItem.new(utf8(_("_Edit")))
1525     editsubmenu = Gtk::Menu.new
1526     editsubmenu.append($undo_mb    = Gtk::ImageMenuItem.new(Gtk::Stock::UNDO).set_sensitive(false))
1527     editsubmenu.append($redo_mb    = Gtk::ImageMenuItem.new(Gtk::Stock::REDO).set_sensitive(false))
1528     editsubmenu.append(              Gtk::SeparatorMenuItem.new)
1529     editsubmenu.append(prefs       = Gtk::ImageMenuItem.new(Gtk::Stock::PREFERENCES))
1530     editmenu.set_submenu(editsubmenu)
1531     mb.append(editmenu)
1532
1533     $undo_mb.signal_connect('activate') { perform_undo }
1534     $redo_mb.signal_connect('activate') { perform_redo }
1535     prefs.signal_connect('activate') { preferences }
1536     
1537     helpmenu = Gtk::MenuItem.new(utf8(_("_Help")))
1538     helpsubmenu = Gtk::Menu.new
1539     helpsubmenu.append(howto = Gtk::ImageMenuItem.new(Gtk::Stock::HELP))
1540     helpsubmenu.append(speed = Gtk::ImageMenuItem.new(utf8(_("Speedup: key shortcuts"))))
1541     speed.image = Gtk::Image.new("#{$FPATH}/images/stock-info-16.png")
1542     helpsubmenu.append(tutos = Gtk::ImageMenuItem.new(utf8(_("Online tutorials (opens a web-browser)"))))
1543     tutos.image = Gtk::Image.new("#{$FPATH}/images/stock-web-16.png")
1544     helpsubmenu.append(Gtk::SeparatorMenuItem.new)
1545     helpsubmenu.append(about = Gtk::ImageMenuItem.new(Gtk::Stock::ABOUT))
1546     helpmenu.set_submenu(helpsubmenu)
1547     mb.append(helpmenu)
1548
1549     howto.signal_connect('activate') {
1550         show_popup($main_window, utf8(_("<span size='large' weight='bold'>Help</span>
1551
1552 1. Open a directory with <span foreground='darkblue'>File/Open</span>; the classifier will scan it (including subdirectories) and
1553 show thumbnails for all images and videos at the bottom.
1554
1555 2. You can then navigate through images with the <span foreground='darkblue'>Left/Right</span> keyboard keys, or by <span foreground='darkblue'>clicking</span>
1556 on thumbnails.
1557
1558 3. You may associate a <span foreground='darkblue'>label</span> to each thumbnail. Either hit the <span foreground='darkblue'>Delete</span> key to associate
1559 the built-in <i>to remove</i> label, or hit any alphabetical key to associate a label you define.
1560 The first time you hit a key without any label associated, a popup will ask for the full
1561 name of this label, and what color you want. To clear the current label, hit the <span foreground='darkblue'>Space</span> key.
1562
1563 4. To help you better view what thumbnails are associated to your labels, you may <span foreground='darkblue'>hide</span>
1564 some of them by unchecking the labels checkboxes on the left.
1565
1566 5. Once you're finished reviewing all thumbnails, use <span foreground='darkblue'>File/Execute</span> to execute the desired
1567 actions according to associated labels. You can permanently remove (or not) images with
1568 the <i>to remove</i> label, and copy or move images with the labels you defined.
1569 ")), { :pos_centered => true, :not_transient => true })
1570     }
1571     speed.signal_connect('activate') {
1572         show_popup($main_window, utf8(_("<span size='large' weight='bold'>Key shortcuts</span>
1573
1574 <span foreground='darkblue'>Left/Right</span>: move left and right in images
1575 <span foreground='darkblue'>Enter</span>: 'view' current image: for images, display EXIF data; for videos, play it
1576 <span foreground='darkblue'>Alt-Left/Right</span>: rotate current image clockwise/counter-clockwise
1577 <span foreground='darkblue'>Delete</span>: assign the 'to remove' label on current image
1578 <span foreground='darkblue'>Space</span>: clear any label on current image
1579 <span foreground='darkblue'>Control-z</span>: undo
1580 <span foreground='darkblue'>Control-r</span>: redo
1581
1582 Any alphabetical key will assign (or popup for) the associated label on current image.
1583 ")), { :pos_centered => true, :not_transient => true })
1584     }
1585     tutos.signal_connect('activate') { open_url('http://booh.org/tutorial.html') }
1586     about.signal_connect('activate') { call_about }
1587
1588
1589     #- no toolbar, to save height
1590
1591     return mb
1592 end
1593
1594 def reset_labels
1595     for child in $labels_vbox.children
1596         $labels_vbox.remove(child)
1597     end
1598     $labels_vbox.pack_start(Gtk::Label.new(utf8(_("Labels list:"))).set_justify(Gtk::Justification::CENTER), false, false).show_all
1599     $labels = {}
1600     lbl = Gtk::Label.new.set_markup(utf8(_("<i>unlabelled</i>")))
1601     $labels_vbox.pack_start($unlabelled_button = Gtk::CheckButton.new.add(Gtk::EventBox.new.add(lbl)).show_all)
1602     $unlabelled_button.active = true
1603     $unlabelled_button.signal_connect('toggled') { update_all_visibilities }
1604     lbl = Gtk::Label.new.set_markup(utf8(_("<i>to remove</i>")))
1605     $labels_vbox.pack_start($toremove_button = Gtk::CheckButton.new.add(evt = Gtk::EventBox.new.add(lbl)).show_all)
1606     $toremove_button.active = true
1607     $toremove_button.signal_connect('toggled') { update_all_visibilities }
1608     evt.modify_bg(Gtk::StateType::NORMAL, $color_red)
1609     evt.modify_bg(Gtk::StateType::PRELIGHT, $color_red.lighter.lighter)
1610     evt.modify_bg(Gtk::StateType::ACTIVE, $color_red.lighter)
1611 end
1612
1613 def reset_thumbnails
1614     $allentries = []
1615     if $preloader_running
1616         $preloader_force_exit = true
1617     end
1618     for child in $imagesline.children
1619         $imagesline.remove(child)
1620     end
1621 end
1622
1623 def create_main_window
1624
1625     $videoborder_pixbuf = Gdk::Pixbuf.new("#{$FPATH}/images/video_border.png")
1626     $videoborder_pixmap, = $videoborder_pixbuf.render_pixmap_and_mask(0)
1627
1628     mb = create_menubar
1629
1630     main_vbox = Gtk::VBox.new(false, 0)
1631     main_vbox.pack_start(mb, false, false)
1632     mainview_hbox = Gtk::HBox.new
1633     mainview_hbox.pack_start(Gtk::Alignment.new(0.5, 0, 1, 1).add(left_vbox = Gtk::VBox.new(false, 5)), false, true)
1634     left_vbox.pack_start(($labels_vbox = Gtk::VBox.new(false, 5)), false, true)
1635     left_vbox.pack_end($loading_progressbar = Gtk::ProgressBar.new.set_text(utf8(_("Loading... %d%") % 0)), false, true)
1636     mainview_hbox.pack_start($mainview = MainView.new, true, true)
1637     main_vbox.pack_start(mainview_hbox, true, true)
1638     $imagesline_sw = Gtk::ScrolledWindow.new(nil, nil)
1639     $imagesline_sw.set_policy(Gtk::POLICY_ALWAYS, Gtk::POLICY_NEVER)
1640     $imagesline_sw.add_with_viewport($imagesline = Gtk::HBox.new(false, 0).show)
1641     main_vbox.pack_start($imagesline_sw, false, false)
1642     main_vbox.pack_end($statusbar = Gtk::Statusbar.new, false, false)
1643
1644     $imagesline.set_size_request(-1, Gtk::Button.new.size_request[1] + Entry.thumbnails_height + 15)
1645
1646     $main_window = Gtk::Window.new
1647     $main_window.add(main_vbox)
1648     $main_window.signal_connect('delete-event') {
1649         try_quit({ :disallow_cancel => true })
1650     }
1651
1652     #- read/save size and position of window
1653     if $config['pos-x'] && $config['pos-y']
1654         $main_window.move($config['pos-x'].to_i, $config['pos-y'].to_i)
1655     else
1656         $main_window.window_position = Gtk::Window::POS_CENTER
1657     end
1658     msg 3, "size: #{$config['width']}x#{$config['height']}"
1659     $main_window.set_default_size(($config['width'] || 700).to_i, ($config['height'] || 600).to_i)
1660     $main_window.signal_connect('configure-event') {
1661         msg 3, "configure: pos: #{$main_window.window.root_origin.inspect} size: #{$main_window.window.size.inspect}"
1662         x, y = $main_window.window.root_origin
1663         width, height = $main_window.window.size
1664         $config['pos-x'] = x
1665         $config['pos-y'] = y
1666         $config['width'] = width
1667         $config['height'] = height
1668         false
1669     }
1670
1671     $main_window.show_all
1672     $loading_progressbar.hide
1673 end
1674
1675
1676 handle_options
1677 read_config
1678 Gtk.init
1679
1680
1681 create_main_window
1682 check_config
1683
1684 if ARGV[0]
1685     if msg = open_dir(ARGV[0])
1686         puts msg
1687     else
1688         show_entries($allentries)
1689     end
1690 end
1691 Gtk.main
1692
1693 write_config