5 # A.k.a 'Best web-album Of the world, Or your money back, Humerus'.
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.
13 # Copyright (c) 2004-2010 Guillaume Cottenceau <http://zarb.org/~gc/resource/gc_mail.png>
15 # This software may be freely redistributed under the terms of the GNU
16 # public license version 2.
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
26 require 'booh/libadds'
30 bindtextdomain("booh")
32 require 'booh/rexml/document'
35 require 'booh/booh-lib'
37 require 'booh/UndoHandler'
42 [ '--help', '-h', GetoptLong::NO_ARGUMENT, _("Get help message") ],
43 [ '--sort-by-exif-date', '-s', GetoptLong::NO_ARGUMENT, _("Sort entries by EXIF date") ],
44 [ '--verbose-level', '-v', GetoptLong::REQUIRED_ARGUMENT, _("Set max verbosity level (0: errors, 1: warnings, 2: important messages, 3: other messages)") ],
45 [ '--version', '-V', GetoptLong::NO_ARGUMENT, _("Print version and exit") ],
48 $preloader_allowed = false
51 puts _("Usage: %s [OPTION]...") % File.basename($0)
53 printf " %3s, %-15s %s\n", ary[1], ary[0], ary[3]
58 parser = GetoptLong.new
59 parser.set_options(*$options.collect { |ary| ary[0..2] })
61 parser.each_option do |name, arg|
67 when '--sort-by-exif-date'
68 $sort_by_exif_date = true
70 when '--verbose-level'
71 $verbose_level = arg.to_i
74 puts _("Booh version %s
76 Copyright (c) 2005-2010 Guillaume Cottenceau.
77 This is free software; see the source for copying conditions. There is NO
78 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.") % $VERSION
92 meminfo = IO.readlines('/proc/meminfo').join
93 meminfo =~ /MemTotal:.*?(\d+)/ or return -1
95 meminfo =~ /SwapTotal:.*?(\d+)/ or return -1
96 return memory + $1.to_i
100 if $startup_memfree.nil?
101 meminfo = IO.readlines('/proc/meminfo').join
102 meminfo =~ /MemFree:.*?(\d+)/ or return -1
104 meminfo =~ /Buffers:.*?(\d+)/ and buffers = $1
105 meminfo =~ /Cached:.*?(\d+)/ and cached = $1
106 $startup_memfree = memfree.to_i + buffers.to_i + cached.to_i
108 return $startup_memfree
111 def set_cache_memory_use_figure
113 if $config['cache-memory-use'] =~ /memfree_(\d+)/
114 $config['cache-memory-use-figure'] = startup_memfree*$1.to_f/100
116 $config['cache-memory-use-figure'] = $config['cache-memory-use'].to_i
118 #- cannot fork if process is > 0.5 total memory
119 if $config['cache-memory-use-figure'] > total_memory * 0.4
120 $config['cache-memory-use-figure'] = total_memory * 0.4
121 msg 2, _("Cache memory used: %s kB (reduced because cannot exceed 50%% of total memory)") % $config['cache-memory-use-figure']
123 msg 2, _("Cache memory used: %s kB") % $config['cache-memory-use-figure']
129 $config_file = File.expand_path('~/.booh-classifier-rc')
130 if File.readable?($config_file)
131 $xmldoc = REXML::Document.new(File.new($config_file))
132 $xmldoc.root.elements.each { |element|
133 txt = element.get_text
135 if txt.value =~ /~~~/
136 $config[element.name] = txt.value.split(/~~~/)
138 $config[element.name] = txt.value
140 elsif element.elements.size == 0
141 $config[element.name] = ''
143 $config[element.name] = {}
144 element.each { |chld|
146 $config[element.name][chld.name] = txt ? txt.value : nil
151 $config['video-viewer'] ||= '/usr/bin/mplayer %f || /usr/bin/vlc %f'
152 $config['browser'] ||= "/usr/bin/mozilla-firefox -remote 'openURL(%f,new-window)' || /usr/bin/mozilla-firefox %f || /usr/bin/firefox -remote 'openURL(%f,new-window)' || /usr/bin/firefox %f"
153 $config['preload-distance'] ||= '5'
154 $config['cache-memory-use'] ||= 'memfree_80%'
155 $config['rotate-set-exif'] ||= 'true'
156 $config['thumbnails-height'] ||= '64'
157 set_cache_memory_use_figure
161 missing = %w(mplayer).delete_if { |prg| system("which #{prg} >/dev/null 2>/dev/null") }
163 show_popup($main_window, utf8(_("The following program(s) are needed to handle videos: '%s'. Videos will be ignored.") % missing.join(', ')), { :pos_centered => true })
166 if !system("which exif >/dev/null 2>/dev/null")
167 show_popup($main_window, utf8(_("The program 'exif' is needed to view EXIF data. Please install it.")), { :pos_centered => true })
169 viewer_binary = $config['video-viewer'].split.first
170 if viewer_binary && ! File.executable?(viewer_binary)
171 show_popup($main_window, utf8(_("The configured video viewer seems to be unavailable.
172 You should fix this in Edit/Preferences so that you can view videos.
174 Problem was: '%s' is not an executable file.
175 Hint: don't forget to specify the full path to the executable,
176 e.g. '/usr/bin/mplayer' is correct but 'mplayer' only is not.") % viewer_binary), { :pos_centered => true, :not_transient => true })
182 ios = File.open($config_file, "w")
183 $xmldoc = Document.new "<booh-classifier-rc version='#{$VERSION}'/>"
184 $xmldoc << XMLDecl.new(XMLDecl::DEFAULT_VERSION, $CURRENT_CHARSET)
185 $config.each_pair { |key, value|
186 elem = $xmldoc.root.add_element key
188 $config[key].each_pair { |subkey, subvalue|
189 subelem = elem.add_element subkey
190 subelem.add_text subvalue.to_s
192 elsif value.is_a? Array
193 elem.add_text value.join('~~~')
198 elem.add_text value.to_s
206 def save_undo(name, closure, *params)
207 UndoHandler.save_undo(name, closure, [ *params ])
208 $undo_mb.sensitive = true
209 $redo_mb.sensitive = false
213 IO.readlines('/proc/self/status').join =~ /VmSize.*?(\d+)\s*kB/
214 msg 3, "VmSize: #{$1}"
219 txt.length > 0 and print txt[0]
220 msg 2, "RSS: #{get_mem}"
226 color.red = [ color.red - 10000, 0 ].max
227 color.green = [ color.green - 10000, 0 ].max
228 color.blue = [ color.blue - 10000, 0 ].max
233 color.red = [ color.red + 10000, 65535 ].min
234 color.green = [ color.green + 10000, 65535 ].min
235 color.blue = [ color.blue + 10000, 65535 ].min
240 $color_red = Gdk::Color.new(65535, 0, 0)
241 $colors = [ Gdk::Color.new(0, 65535, 0),
242 Gdk::Color.new(0, 0, 65535),
243 Gdk::Color.new(65535, 65535, 0),
244 Gdk::Color.new(0, 65535, 65535),
245 Gdk::Color.new(65535, 0, 65535) ]
248 attr_accessor :color, :name, :button, :counter
254 class InterruptedLoading < Exception
255 #- not a StandardError, not catched by a simple rescue
258 def show_pixbufs_present
259 if 3 <= $verbose_level
260 out = 'Full pixbufs ['
261 for entry in $allentries
262 out += entry.pixbuf_full_present? ? 'F' : '.'
270 def Entry.thumbnails_height
271 return $config['thumbnails-height'].to_i
274 attr_accessor :path, :guipath, :type, :angle, :button, :image, :alignment, :removed, :labeled, :loader
276 def initialize(path, type, guipath)
281 @@max_width = $main_window.root_window.size[0] - $labels_vbox.allocation.width - ( $videoborder_pixbuf.width + MainView.borders_thickness) * 2
285 def pixbuf_full_present?
286 return ! @pixbuf_full.nil?
292 msg 3, ">>> free_pixbuf_full #{path}"
299 Gtk.main_iteration while Gtk.events_pending?
300 width, height = $mainview.window.size
301 width = MainView.get_usable_width(width)
302 height = MainView.get_usable_height(height)
303 if @pixbuf_main.nil? || width != @width || height != @height
306 load_into_pixbuf_full #- make sure it is loaded
310 if @pixbuf_full.width.to_f / @pixbuf_full.height > width.to_f / height
311 resized_height = @pixbuf_full.height * (width.to_f/@pixbuf_full.width)
312 if @pixbuf_full.width > width || @pixbuf_full.height > resized_height
313 @pixbuf_main = @pixbuf_full.scale(width, resized_height, Gdk::Pixbuf::INTERP_BILINEAR)
315 @pixbuf_main = @pixbuf_full
318 resized_width = @pixbuf_full.width * (height.to_f/@pixbuf_full.height)
319 if @pixbuf_full.width > resized_width || @pixbuf_full.height > height
320 @pixbuf_main = @pixbuf_full.scale(resized_width, height, Gdk::Pixbuf::INTERP_BILINEAR)
322 @pixbuf_main = @pixbuf_full
328 def pixbuf_main_present?
329 return ! @pixbuf_main.nil?
335 msg 3, ">>> free_pixbuf_main #{path}"
342 Gtk.main_iteration while Gtk.events_pending?
343 if @pixbuf_thumbnail.nil?
345 msg 3, ">>> pixbuf_thumbnail from main #{path}"
346 @pixbuf_thumbnail = @pixbuf_main.scale(@pixbuf_main.width * (Entry.thumbnails_height.to_f/@pixbuf_main.height), Entry.thumbnails_height, Gdk::Pixbuf::INTERP_BILINEAR)
348 msg 3, ">>> pixbuf_thumbnail from file #{path}"
349 @pixbuf_thumbnail = load_into_pixbuf_at_size { |w, h|
351 if h > Entry.thumbnails_height
352 [ w * Entry.thumbnails_height.to_f/h, Entry.thumbnails_height ]
357 if w > Entry.thumbnails_height
358 [ Entry.thumbnails_height, h * Entry.thumbnails_height.to_f/w ]
366 return @pixbuf_thumbnail
368 def free_pixbuf_thumbnail
369 if @pixbuf_thumbnail.nil?
372 msg 3, ">>> free_pixbuf_thumbnail #{path}"
373 @pixbuf_thumbnail = nil
389 if outline_color.nil?
390 button.modify_bg(Gtk::StateType::NORMAL, nil)
391 button.modify_bg(Gtk::StateType::PRELIGHT, nil)
392 button.modify_bg(Gtk::StateType::ACTIVE, nil)
394 button.modify_bg(Gtk::StateType::NORMAL, outline_color)
395 button.modify_bg(Gtk::StateType::PRELIGHT, outline_color.lighter)
396 button.modify_bg(Gtk::StateType::ACTIVE, outline_color)
400 def get_beautified_name
402 size = get_image_size(path)
403 return _("%s (%sx%s, %s KB)") % [@guipath.gsub(/\.[^.]+$/, ''),
406 commify(file_size(path)/1024)]
408 return _("%s (video - %s KB)") % [@guipath.gsub(/\.[^.]+$/, ''),
409 commify(file_size(path)/1024)]
415 #- avoid unneeded memory allocation
416 @loader.signal_handler_disconnect(@area_prepared_cb)
420 #- ignore loader errors, at that point they are fairly normal, we're canceling a partial load
427 def load_into_pixbuf_full
429 msg 3, ">>> load_into_pixbuf_full #{path}"
430 @pixbuf_full = load_into_pixbuf_at_size { |w, h|
433 #- save memory and speedup (+35%) loading
434 [ w * (factor = @@max_width.to_f/w), h * factor ]
440 [ w * (factor = @@max_width.to_f/h), h * factor ]
450 def load_into_pixbuf_at_size(&specify_size)
452 if @video_image_path.nil?
453 orig_base = File.basename(path)
454 tmpdir = gen_video_thumbnail(path, false, 0)
458 @video_image_path = "#{tmpdir}/00000001.jpg"
460 image_path = @video_image_path
466 @angle = guess_rotate(image_path)
472 #- use a pixbuf loader and check Gtk.events_pending? on each chunk, to keep the UI responsive even
473 #- if loaded pictures are several MBs large
475 @loader = Gdk::PixbufLoader.new
476 @loader.signal_connect('size-prepared') { |l, w, h|
477 @loader.set_size(*specify_size.call(w, h))
479 @area_prepared_cb = @loader.signal_connect('area-prepared') { @loaded_pixbuf = @loader.pixbuf }
482 msg 3, "calling load_not_freezing_ui on #{image_path}, offset #{@loader_offset}"
483 @loader_offset = @loader.load_not_freezing_ui(image_path, @loader_offset)
484 if @loader_offset > 0
486 raise InterruptedLoading
489 if @loaded_pixbuf.nil?
490 raise "Loaded pixbuf nil - #{path} #{image_path}"
493 msg 0, "Cannot load #{image_path}: #{$!}"
496 if @video_image_path && @loader.nil?
497 File.delete(@video_image_path)
498 Dir.rmdir(File.dirname(@video_image_path))
499 @video_image_path = nil
504 msg 3, ">>> load_into_pixbuf_full #{image_path} => rotate #{@angle}"
505 @loaded_pixbuf = rotate_pixbuf(@loaded_pixbuf, @angle)
508 retval = @loaded_pixbuf
523 msg 3, "GC in #{Time.now - start} s"
526 def free_cache_if_needed
527 i = $allentries.index($mainview.get_shown_entry)
529 if get_mem > $config['cache-memory-use-figure']
530 msg 3, "too much RSS, triggering GC"
533 if get_mem < $config['cache-memory-use-figure']
536 msg 3, "too much RSS, freeing some cache"
539 ($allentries.size - 1).downto($config['preload-distance'].to_i + 1) { |j|
541 if i + j < $allentries.size
542 $allentries[i + j].free_pixbuf_full
543 if $allentries[i + j].free_pixbuf_main
548 $allentries[i - j].free_pixbuf_full
549 if $allentries[i - j].free_pixbuf_main
555 if get_mem < $config['cache-memory-use-figure'] * 3 / 4
556 msg 3, "RSS down enough - freeing done in #{Time.now - start} s"
563 msg 3, "freeing done in #{Time.now - start} s"
567 def run_preloader_real
568 msg 3, "*** >> main preloading triggered..."
569 if $mainview.get_shown_entry
571 if $config['preload-distance'].to_i == 0
574 index = $allentries.index($mainview.get_shown_entry)
582 while ! right_done || ! left_done
585 while index_right < $allentries.size && ! visible($allentries[index_right])
588 if index_right == $allentries.size
591 if ! $allentries[index_right].pixbuf_main_present?
592 msg 3, "preloading #{$allentries[index_right].path}"
594 $allentries[index_right].pixbuf_main
595 rescue InterruptedLoading
596 msg 3, "*** >>>> interrupted, rerun"
600 loaded << index_right
602 if loaded_right == $config['preload-distance'].to_i
610 while index_left >= 0 && ! visible($allentries[index_left])
616 if ! $allentries[index_left].pixbuf_main_present?
617 msg 3, "preloading #{$allentries[index_left].path}"
619 $allentries[index_left].pixbuf_main
620 rescue InterruptedLoading
621 msg 3, "*** >>>> interrupted, rerun"
627 if loaded_left == $config['preload-distance'].to_i
633 #- in case just loaded another directory
634 if $preloader_force_exit
635 $preloader_force_exit = false
638 #- in case moved fast
639 if index != $allentries.index($mainview.get_shown_entry)
640 msg 3, "*** >>>> moved already, rerun"
645 msg 3, "*** << main preloading finished"
650 if ! $preloader_allowed
651 msg 3, "*** preloader not yet allowed"
655 if $preloader_running
656 msg 3, "preloader already running"
659 msg 3, "run preloader"
660 $preloader_running = true
662 msg 3, "begin preloader from timeout "
663 if run_preloader_real
664 $preloader_running = false
672 class MainView < Gtk::DrawingArea
674 @@borders_thickness = 5
675 @@borders_length = 25
676 @@redraw_pending = nil
678 def MainView.borders_thickness
679 return @@borders_thickness
682 def MainView.get_usable_width(available_width)
683 return available_width - ($videoborder_pixbuf.width + @@borders_thickness) * 2
686 def MainView.get_usable_height(available_height)
687 return available_height - @@borders_thickness * 2
692 signal_connect('expose-event') { draw }
693 signal_connect('configure-event') { update_shown }
696 def try_show_entry(entry)
697 if entry && entry.button
698 if entry.button.has_focus?
701 entry.button.grab_focus
706 def set_shown_entry(entry)
708 if entry && entry == @entry
711 if entry && ! entry.button
716 @entry and msg 3, "*** set entry to #{@entry.path}"
718 msg 3, "entry shown in: #{Time.now - t1} s"
725 def show_next_entry(entry)
726 index = $allentries.index(entry)
727 if index < $allentries.size - 1
730 while index < $allentries.size - 1 && $allentries[index] && $allentries[index].button && ! $allentries[index].button.visible?
733 while $allentries[index] && $allentries[index].button && ! $allentries[index].button.visible? && index > 0
736 if index < $allentries.size && $allentries[index] && $allentries[index].button && $allentries[index].button.visible?
737 try_show_entry($allentries[index])
740 #- find a fallback before
741 while index < $allentries.size && index > 0 && $allentries[index] && (! $allentries[index].button || ! $allentries[index].button.visible?)
744 if index < $allentries.size && index > 0 && $allentries[index] && $allentries[index].button && $allentries[index].button.visible?
745 try_show_entry($allentries[index])
751 msg 3, "redraw already pending"
755 @@redraw_pending = Gtk.idle_add {
756 msg 3, "begin redraw from timeout "
758 msg 3, "try redraw from timeout"
760 @@redraw_pending = nil
763 rescue InterruptedLoading
764 msg 3, "interrupted, will retry"
771 @entry and sb_msg(_("Selected %s") % @entry.get_beautified_name)
776 window.begin_paint(Gdk::Rectangle.new(0, 0, w, h))
784 msg 3, "################################################ trying to show #{@entry.path}"
785 pixbuf = @entry.pixbuf_main
788 width, height = window.size
789 @xpos = (width - @pixbuf.width)/2
790 @ypos = (height - @pixbuf.height)/2
803 window.draw_pixbuf(nil, @pixbuf, 0, 0, @xpos, @ypos, -1, -1, Gdk::RGB::DITHER_NONE, -1, -1)
804 if @entry && @entry.type == 'video'
805 window.draw_borders($videoborder_pixbuf, @xpos - $videoborder_pixbuf.width, @xpos + @pixbuf.width, @ypos, @ypos + @pixbuf.height)
807 if @entry && ! @entry.outline_color.nil?
808 gc = Gdk::GC.new(window)
809 colormap.alloc_color(@entry.outline_color, false, true)
810 gc.set_foreground(@entry.outline_color)
811 if @entry.type == 'video'
812 xleft = @xpos - $videoborder_pixbuf.width
813 xright = @xpos + @pixbuf.width + $videoborder_pixbuf.width
816 xright = @xpos + @pixbuf.width
818 window.draw_polygon(gc, true, [[xleft - @@borders_thickness, @ypos - @@borders_thickness],
819 [xright + @@borders_thickness, @ypos - @@borders_thickness],
820 [xright + @@borders_thickness, @ypos + @pixbuf.height + @@borders_thickness],
821 [xleft - @@borders_thickness, @ypos + @pixbuf.height + @@borders_thickness],
822 [xleft - @@borders_thickness, @ypos - 1],
823 [xleft - 1, @ypos - 1],
824 [xleft - 1, @ypos + @pixbuf.height + 1],
825 [xright + 1, @ypos + @pixbuf.height + 1],
826 [xright + 1, @ypos - 1],
827 [xleft - @@borders_thickness, @ypos - 1]])
833 def autoscroll_if_needed(button, center)
834 xpos_left = button.allocation.x
835 xpos_right = button.allocation.x + button.allocation.width
836 hadj = $imagesline_sw.hadjustment
837 current_minx_visible = hadj.value
838 current_maxx_visible = hadj.value + hadj.page_size
840 if xpos_left < current_minx_visible
842 newval = hadj.value - (current_minx_visible - xpos_left)
844 elsif xpos_right > current_maxx_visible
846 newval = hadj.value + (xpos_right - current_maxx_visible)
847 if newval > hadj.upper - hadj.page_size
848 newval = hadj.upper - hadj.page_size
853 hadj.value = clamp((xpos_left + xpos_right) / 2 - hadj.page_size / 2, 0, hadj.upper - hadj.page_size)
857 def show_popup(parent, msg, *options)
858 dialog = Gtk::Dialog.new
865 dialog.title = options[:title]
867 dialog.title = utf8(_("Booh message"))
870 if options[:nomarkup]
875 if options[:centered]
876 lbl.set_justify(Gtk::Justification::CENTER)
878 if options[:selectable]
879 lbl.selectable = true
881 if options[:scrolled]
882 sw = Gtk::ScrolledWindow.new(nil, nil)
883 sw.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC)
884 sw.add_with_viewport(lbl)
886 dialog.set_default_size(500, 600)
889 dialog.set_default_size(200, 120)
891 if options[:bottomwidget]
892 dialog.vbox.add(options[:bottomwidget])
894 if options[:okcancel]
895 cancel = dialog.add_button(Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL)
896 dialog.add_button(Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK)
897 elsif options[:yestoall]
898 cancel = dialog.add_button(Gtk::Stock::NO, Gtk::Dialog::RESPONSE_NO)
899 if ! options[:bottomwidget]
902 dialog.add_button(Gtk::Stock::YES, Gtk::Dialog::RESPONSE_YES)
903 dialog.add_button(utf8(_("Yes to all")), Gtk::Dialog::RESPONSE_ACCEPT)
905 ok = dialog.add_button(Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK).grab_focus
906 if ! options[:bottomwidget]
911 if options[:pos_centered]
912 dialog.window_position = Gtk::Window::POS_CENTER
914 dialog.window_position = Gtk::Window::POS_MOUSE
918 linkbut = Gtk::Button.new('')
919 linkbut.child.markup = "<span foreground=\"#00000000FFFF\" underline=\"single\">#{options[0][:linkurl]}</span>"
920 linkbut.signal_connect('clicked') {
921 open_url(options[0][:linkurl] + '/index.html')
922 dialog.response(Gtk::Dialog::RESPONSE_OK)
923 set_mousecursor_normal
925 linkbut.relief = Gtk::RELIEF_NONE
926 linkbut.signal_connect('enter-notify-event') { set_mousecursor(Gdk::Cursor::HAND2, linkbut); false }
927 linkbut.signal_connect('leave-notify-event') { set_mousecursor(nil, linkbut); false }
928 dialog.vbox.add(Gtk::Alignment.new(0.5, 0.5, 0, 0).add(linkbut))
933 if options[:stuff_connector]
934 options[:stuff_connector].call({ :dialog => dialog })
937 if !options[:not_transient]
938 dialog.transient_for = parent
939 dialog.run { |response|
940 if options[:data_getter]
941 options[:data_getter].call
944 if options[:okcancel]
945 return response == Gtk::Dialog::RESPONSE_OK
946 elsif options[:yestoall]
947 return response == Gtk::Dialog::RESPONSE_YES ? 'yes' : response == Gtk::Dialog::RESPONSE_ACCEPT ? 'yestoall' : 'no'
951 dialog.signal_connect('response') { dialog.destroy }
955 def view_entry(entry)
956 if entry.type == 'image'
957 show_popup($main_window,
958 utf8(`exif -m '#{entry.path}'`),
959 { :title => utf8(_("EXIF data of %s") % File.basename(entry.path)), :nomarkup => true, :scrolled => true, :not_transient => true })
961 cmd = from_utf8($config['video-viewer']).gsub('%f', "'#{entry.path}'") + ' &'
969 $allentries.each { |entry|
970 if ! entry.removed && entry.labeled.nil?
974 $unlabelled_counter.set_markup('<tt>' + value.to_s + '</tt>')
976 $allentries.each { |entry|
981 $toremove_counter.set_markup('<tt>' + value.to_s + '</tt>')
982 $labels.values.each { |label|
984 $allentries.each { |entry|
985 if entry.labeled == label
989 label.counter.set_markup('<tt>' + value.to_s + '</tt>')
993 def thumbnail_keypressed(entry, event)
994 if event.state & Gdk::Window::MOD1_MASK != 0
995 #- ALT pressed: Alt-Left and Alft-Right rotate
996 if event.keyval == Gdk::Keyval::GDK_Left || event.keyval == Gdk::Keyval::GDK_Right
997 if event.keyval == Gdk::Keyval::GDK_Left
998 entry.angle = (entry.angle - 90) % 360
1000 entry.angle = (entry.angle + 90) % 360
1002 entry.free_pixbuf_full
1003 entry.free_pixbuf_main
1004 entry.free_pixbuf_thumbnail
1005 show_pixbufs_present
1007 entry.image.pixbuf = entry.pixbuf_thumbnail
1008 if $config['rotate-set-exif'] == 'true' && entry.type == 'image'
1009 Exif.set_orientation(entry.path, angle_to_exif_orientation(entry.angle))
1013 elsif event.state & Gdk::Window::CONTROL_MASK != 0
1014 #- CONTROL pressed: Ctrl-z and Ctrl-r for undo/redo, Ctrl-space for recentre
1015 if event.keyval == Gdk::Keyval::GDK_z
1018 if event.keyval == Gdk::Keyval::GDK_r
1021 if event.keyval == Gdk::Keyval::GDK_space
1022 shown = $mainview.get_shown_entry
1023 shown and autoscroll_if_needed(shown.button, true)
1027 removed_before = entry.removed
1028 label_before = entry.labeled
1030 if event.keyval == Gdk::Keyval::GDK_Delete
1031 if ! FileTest.writable?(entry.path)
1032 show_popup($main_window, utf8(_("Notice: no write access to '%s', permission will be denied at execute step.") % entry.path))
1034 entry.removed = true
1037 update_visibility(entry)
1039 $mainview.show_next_entry(entry)
1041 save_undo(_("set for removal"),
1043 entry.removed = removed_before
1044 entry.labeled = label_before
1046 update_visibility(entry)
1048 if entry.button.visible?
1049 $mainview.try_show_entry(entry)
1052 entry.removed = true
1055 update_visibility(entry)
1057 if entry.button.visible?
1058 $mainview.try_show_entry(entry)
1063 elsif event.keyval == Gdk::Keyval::GDK_space
1065 msg = _("Cleared label")
1067 msg = _("Cleared set for removal")
1069 entry.removed = false
1073 $mainview.show_next_entry(entry)
1077 entry.removed = removed_before
1078 entry.labeled = label_before
1081 $mainview.try_show_entry(entry)
1083 entry.removed = false
1087 $mainview.try_show_entry(entry)
1091 elsif event.keyval == Gdk::Keyval::GDK_Return
1094 elsif event.keyval == Gdk::Keyval::GDK_Home
1096 while $allentries[index] && $allentries[index].button && !visible($allentries[index])
1099 if $allentries[index] && $allentries[index].button
1100 $allentries[index].button.grab_focus
1103 elsif event.keyval == Gdk::Keyval::GDK_End
1104 index = $allentries.size - 1
1105 while $allentries[index] && ! $allentries[index].button
1109 while $allentries[index] && $allentries[index].button && !visible($allentries[index])
1112 if $allentries[index] && $allentries[index].button
1113 $allentries[index].button.grab_focus
1117 char = [ Gdk::Keyval.to_unicode(event.keyval) ].pack("C*")
1118 if char =~ /^[a-zA-z0-9]$/
1119 label = $labels[char]
1122 vb = Gtk::VBox.new(false, 0)
1123 vb.pack_start(labelentry = Gtk::Entry.new.set_text(char), false, false)
1124 vb.pack_start(Gtk::Alignment.new(0.5, 0.5, 0, 0).add(bt = Gtk::ColorButton.new))
1125 color = bt.color = Gdk::Color.new(16384 + rand(49151), 16384 + rand(49151), 16384 + rand(49151))
1126 bt.signal_connect('color-set') { color = bt.color }
1128 labelentry.signal_connect('changed') { #- cannot add a new label with first letter of an existing label
1129 while $labels.has_key?(labelentry.text[0,1])
1130 labelentry.text = labelentry.text.sub(/./, '')
1133 if show_popup($main_window,
1134 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,
1135 { :okcancel => true, :bottomwidget => vb, :data_getter => proc { text = labelentry.text },
1136 :stuff_connector => proc { |stuff| labelentry.select_region(0, 0)
1137 labelentry.position = -1
1138 labelentry.signal_connect('activate') { stuff[:dialog].response(Gtk::Dialog::RESPONSE_OK) } } } )
1140 char = text[0,1] #- in case it changed
1141 label = Label.new(text)
1143 $labels[char] = label
1144 $ordered_labels << label
1145 lbl = Gtk::Label.new.set_markup('<b>(' + char + ')</b>' + text[1..-1]).set_justify(Gtk::Justification::CENTER)
1146 $labels_vbox.pack_start(Gtk::HBox.new(false, 5).pack_start(label.button = Gtk::CheckButton.new.add(evt = Gtk::EventBox.new.add(lbl))).
1147 pack_start(Gtk::Label.new, true, true).
1148 pack_start(label.counter = Gtk::Label.new.set_markup('<tt>0</tt>'), false, false).show_all)
1149 label.button.active = true
1150 label.button.signal_connect('toggled') { update_all_visibilities }
1151 evt.modify_bg(Gtk::StateType::NORMAL, label.color)
1152 evt.modify_bg(Gtk::StateType::PRELIGHT, label.color.lighter.lighter)
1153 evt.modify_bg(Gtk::StateType::ACTIVE, label.color.lighter)
1159 entry.removed = false
1160 entry.labeled = label
1162 update_visibility(entry)
1164 $mainview.show_next_entry(entry)
1166 save_undo(_("set label"),
1168 entry.removed = removed_before
1169 entry.labeled = label_before
1171 update_visibility(entry)
1173 if entry.button.visible?
1174 $mainview.try_show_entry(entry)
1177 entry.removed = false
1178 entry.labeled = label
1180 update_visibility(entry)
1182 if entry.button.visible?
1183 $mainview.try_show_entry(entry)
1196 $statusbar.push(0, utf8(msg))
1200 def show_entry(entry, i, tips)
1202 #msg 3, "showing entry #{entry}"
1203 entry.image = Gtk::Image.new(entry.pixbuf_thumbnail)
1204 if entry.type == 'video'
1205 entry.button = Gtk::Button.new.add(Gtk::HBox.new.pack_start(da1 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false).
1206 pack_start(entry.image).
1207 pack_start(da2 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false))
1208 da1.signal_connect('realize') { da1.window.set_back_pixmap($videoborder_pixmap, false) }
1209 da2.signal_connect('realize') { da2.window.set_back_pixmap($videoborder_pixmap, false) }
1211 entry.button = Gtk::Button.new.add(entry.image)
1213 tips.set_tip(entry.button, entry.get_beautified_name, nil)
1214 $imagesline.pack_start(entry.alignment = Gtk::Alignment.new(0.5, 1, 0, 0).add(entry.button).show_all, false, false)
1215 entry.button.signal_connect('clicked') {
1216 shown = $mainview.get_shown_entry
1218 shown and shown.alignment.set(0.5, 1, 0, 0)
1219 entry.alignment.set(0.5, 0, 0, 0)
1220 autoscroll_if_needed(entry.button, false)
1221 $mainview.set_shown_entry(entry)
1224 entry.button.signal_connect('button-press-event') { |w, event|
1225 if entry.type == 'video' && event.event_type == Gdk::Event::BUTTON2_PRESS
1229 entry.button.signal_connect('focus-in-event') { entry.button.clicked }
1230 entry.button.signal_connect('key-press-event') { |w, e| thumbnail_keypressed(entry, e) }
1232 entry.button.grab_focus
1234 update_visibility(entry)
1237 def show_entries(allentries)
1239 sb_msg(_("Loading images..."))
1240 $loading_progressbar.fraction = 0
1241 $loading_progressbar.text = utf8(_("Loading... %d%") % 0)
1242 $loading_progressbar.show
1244 total_loaded_files = 0
1245 total_loaded_size = 0
1247 tips = Gtk::Tooltips.new
1248 while i < allentries.size
1250 entry = allentries[i]
1252 loaded_pixbuf = entry.pixbuf_main
1254 loaded_pixbuf = entry.pixbuf_thumbnail
1256 rescue InterruptedLoading
1260 if $allentries != allentries
1261 #- loaded another directory while this one was not yet finished
1262 msg 3, "allentries differ, stopping this deprecated load"
1267 show_entry(entry, i, tips)
1268 if $allentries != allentries
1269 #- loaded another directory while this one was not yet finished
1270 msg 3, "allentries differ, stopping this deprecated load"
1274 total_loaded_size += file_size(entry.path)
1275 total_loaded_files += 1
1277 if i > $config['preload-distance'].to_i && i <= $config['preload-distance'].to_i * 2
1278 #- when we're at preload distance, begin preloading to preload distance
1280 allentries[i - $config['preload-distance'].to_i].pixbuf_main
1281 rescue InterruptedLoading
1284 if i == $config['preload-distance'].to_i * 2 + 1
1285 #- when we're after double preload distance, activate normal preloading
1286 $preloader_allowed = true
1290 allentries.delete_at(i)
1292 $loading_progressbar.fraction = i.to_f / allentries.size
1293 $loading_progressbar.text = utf8(_("Loading... %d%") % (100 * $loading_progressbar.fraction))
1301 $preloader_allowed = true
1302 if i <= $config['preload-distance'].to_i * 2
1303 #- not yet preloaded correctly
1306 sb_msg(_("%d images of total %s kB loaded in %3.2f seconds.") % [ total_loaded_files, commify(total_loaded_size / 1024), Time.now - t1 ])
1307 $loading_progressbar.hide
1308 $execute.sensitive = true
1314 $mainview.set_shown_entry(nil)
1316 $preloader_allowed = false
1317 $execute.sensitive = false
1320 def open_dir(*paths)
1321 #- remove visual stuff, so that user will see something is happening
1323 sb_msg(_("Scanning source directory... %s") % "")
1324 Gtk.main_iteration while Gtk.events_pending?
1327 path = File.expand_path(path.sub(%r|/$|, ''))
1330 if File.directory?(path)
1331 examined_dirs = `find '#{path}' -type d -follow`.split("\n").sort.collect { |v| v.chomp }
1333 examined_dirs.each { |dir|
1335 return utf8(_("Source directory or sub-directories can't contain a single-quote character, sorry: %s") % dir)
1338 Dir.entries(dir).each { |file|
1339 if file =~ /'/ && type = entry2type(file) && type == 'video'
1340 return utf8(_("Videos can't contain a single quote character ('), sorry: %s") % "#{dir}/#{file}")
1344 puts "Failed to open directory #{dir}: #{$!}"
1348 #- scan for populate second
1349 examined_dirs.each { |dir|
1350 if File.basename(dir) =~ /^\./
1351 msg 1, _("Ignoring directory %s, begins with a dot (indicating a hidden directory)") % dir
1355 entries += Dir.entries(dir).collect { |file| File.join(dir, file) }
1357 #- already puts'ed 10 lines upper
1359 sb_msg(_("Scanning source directory... %s") % (_("%d entries found") % entries.size))
1360 Gtk.main_iteration while Gtk.events_pending?
1367 if $sort_by_exif_date
1369 entries.each { |file|
1370 date_time = Exif.datetimeoriginal(file)
1372 dates[file] = date_time
1375 entries = smartsort(entries, dates)
1379 entries.each { |file|
1380 type = entry2type(file)
1382 if File.directory?(path)
1383 $allentries << Entry.new(file, type, file[path.length + 1 .. -1])
1385 $allentries << Entry.new(file, type, file)
1394 fc = Gtk::FileChooserDialog.new(utf8(_("Specify the directory to work with")),
1396 Gtk::FileChooser::ACTION_SELECT_FOLDER,
1398 [Gtk::Stock::OPEN, Gtk::Dialog::RESPONSE_ACCEPT], [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1399 fc.transient_for = $main_window
1401 fc.current_folder = $workingdir
1406 if fc.run == Gtk::Dialog::RESPONSE_ACCEPT
1407 msg = open_dir(fc.filename)
1421 show_entries($allentries)
1425 def try_quit(*options)
1426 if ! $allentries.detect { |e| e.removed || e.labeled } || show_popup($main_window,
1427 utf8(_("You have not executed the classification. Are you sure you want to quit?")),
1428 { :okcancel => true })
1438 dialog = Gtk::Dialog.new
1439 dialog.title = utf8(_("Booh message"))
1441 vb1 = Gtk::VBox.new(false, 5)
1442 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!")))
1443 vb1.pack_start(label, false, false)
1445 lastpath = $workingdir
1447 table = Gtk::Table.new(0, 0, false)
1448 table.set_row_spacings(5)
1449 table.set_column_spacings(5)
1450 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)
1451 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)
1452 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)
1453 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)
1454 add_row = proc { |row, name, color, truthproc, normal|
1455 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)),
1456 0, 1, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1458 examples = Gtk::HBox.new(false, 5)
1459 $allentries.each { |entry|
1460 if truthproc.call(entry)
1463 thumbnail = Gtk::Image.new(entry.pixbuf_thumbnail)
1464 if entry.type == 'video'
1465 thumbnail = Gtk::HBox.new.pack_start(da1 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false).
1466 pack_start(thumbnail).
1467 pack_start(da2 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false)
1468 da1.signal_connect('realize') { da1.window.set_back_pixmap($videoborder_pixmap, false) }
1469 da2.signal_connect('realize') { da2.window.set_back_pixmap($videoborder_pixmap, false) }
1471 examples.pack_start(thumbnail, false, false)
1473 examples.pack_start(Gtk::Label.new.set_markup("<b>...</b>"), false, false)
1477 table.attach(Gtk::Label.new(counter.to_s).set_justify(Gtk::Justification::CENTER), 1, 2, row, row + 1, 0, 0, 5, 5)
1478 table.attach(examples, 2, 3, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1484 combostore = Gtk::ListStore.new(Gdk::Pixbuf, String)
1485 iter = combostore.append
1487 iter[0] = $main_window.render_icon(Gtk::Stock::PASTE, Gtk::IconSize::MENU)
1488 iter[1] = utf8(_("Copy to:"))
1489 iter = combostore.append
1490 iter[0] = $main_window.render_icon(Gtk::Stock::GO_FORWARD, Gtk::IconSize::MENU)
1491 iter[1] = utf8(_("Move to:"))
1493 iter[0] = $main_window.render_icon(Gtk::Stock::DELETE, Gtk::IconSize::MENU)
1494 iter[1] = utf8(_("Permanently remove"))
1496 iter = combostore.append
1497 iter[0] = $main_window.render_icon(Gtk::Stock::MEDIA_STOP, Gtk::IconSize::MENU)
1498 iter[1] = utf8(_("Do nothing"))
1499 combo = Gtk::ComboBox.new(combostore)
1501 renderer = Gtk::CellRendererPixbuf.new
1502 combo.pack_start(renderer, false)
1503 combo.set_attributes(renderer, :pixbuf => 0)
1504 renderer = Gtk::CellRendererText.new
1505 combo.pack_start(renderer, true)
1506 combo.set_attributes(renderer, :text => 1)
1509 pathbutton = Gtk::Button.new.add(pathlabel = Gtk::Label.new.set_markup(utf8(_("<i>(unset)</i>"))))
1510 pathbutton.signal_connect('clicked') {
1511 fc = Gtk::FileChooserDialog.new(utf8(_("Specify the directory where to move the pictures to")),
1513 Gtk::FileChooser::ACTION_SELECT_FOLDER,
1515 [Gtk::Stock::OPEN, Gtk::Dialog::RESPONSE_ACCEPT], [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1516 fc.transient_for = dialog
1518 fc.current_folder = lastpath
1520 if fc.run == Gtk::Dialog::RESPONSE_ACCEPT
1521 pathlabel.text = fc.filename
1522 pathlabel.set_alignment(0, 0.5)
1524 lastpath = fc.filename
1527 combo.signal_connect('changed') {
1528 pathbutton.sensitive = combo.active <= 1
1530 vb = Gtk::VBox.new(false, 5)
1531 vb.pack_start(combo, false, false)
1532 vb.pack_start(pathbutton, false, false)
1533 table.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(vb), 3, 4, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1534 { :combo => combo, :pathlabel => pathlabel }
1536 table.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(combo), 3, 4, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1541 stuff['toremove'] = add_row.call(1, utf8(_("<i>to remove</i>")), $color_red, proc { |entry| entry.removed }, false)
1542 $ordered_labels.each_with_index { |label, row| stuff[label] = add_row.call(row + 2, label.name, label.color, proc { |entry| entry.labeled == label }, true) }
1543 vb1.pack_start(sw = Gtk::ScrolledWindow.new(nil, nil).add_with_viewport(table).set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC), true, true)
1545 toremove_amount = $allentries.find_all { |entry| entry.removed }.size
1546 toremove_size = commify($allentries.find_all { |entry| entry.removed }.collect { |entry| file_size(entry.path) }.sum / 1024)
1547 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 ]))
1548 if toremove_amount > 0
1549 vb1.pack_start(check_removal, false, false)
1550 stuff['toremove'][:combo].signal_connect('changed') { |widget|
1551 check_removal.sensitive = widget.active == 0
1555 dialog.vbox.add(vb1)
1557 dialog.set_default_size(800, 600)
1558 dialog.add_button(Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL)
1559 dialog.add_button(Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK)
1560 dialog.window_position = Gtk::Window::POS_MOUSE
1561 dialog.transient_for = $main_window
1566 dialog.run { |response|
1567 if response == Gtk::Dialog::RESPONSE_OK
1569 if toremove_amount > 0 && stuff['toremove'][:combo].active == 0
1570 if ! check_removal.active?
1571 show_popup(dialog, utf8(_("You have not confirmed that you noticed the permanent removal of the pictures marked for deletion.")))
1575 $allentries.each { |entry|
1577 if ! FileTest.writable?(entry.path)
1578 show_popup(dialog, utf8(_("Sorry, permission denied to remove '%s'.") % [ entry.path ]))
1586 $labels.values.each { |label| label2entries[label] = [] }
1587 $allentries.each { |entry| entry.labeled and label2entries[entry.labeled] << entry }
1588 stuff.keys.each { |key|
1589 if key.is_a?(Label) && stuff[key][:combo] && stuff[key][:combo].active <= 1
1590 destination = stuff[key][:pathlabel].text
1591 if destination[0] != ?/
1592 show_popup(dialog, utf8(_("You have not selected a directory where to move/copy %s.") % key.name))
1597 Dir.mkdir(destination)
1601 st = File.stat(destination)
1603 show_popup(dialog, utf8(_("Directory %s, where to move/copy %s, is not valid or not createable.") % [destination, key.name]))
1607 if ! st.directory? || ! writable(destination)
1608 show_popup(dialog, utf8(_("Directory %s, where to move/copy %s, is not valid or not writable.") % [destination, key.name]))
1612 label2entries[key].each { |entry|
1614 File.stat(File.join(destination, File.basename(entry.path)))
1615 show_popup(dialog, utf8(_("Sorry, a file '%s' already exists in directory '%s'.") % [ File.basename(entry.path), destination ]))
1621 if stuff[key][:combo].active == 1
1622 label2entries[key].each { |entry|
1623 if ! FileTest.writable?(entry.path)
1624 show_popup(dialog, utf8(_("Sorry, permission denied to move '%s'.") % [ entry.path ]))
1640 stuff.keys.each { |key|
1641 if key.is_a?(Label) && stuff[key][:combo] && stuff[key][:combo].active <= 1
1642 destination = stuff[key][:pathlabel].text
1643 label2entries[key].each { |entry|
1644 if stuff[key][:combo].active == 0
1645 result = `cp -dp '#{entry.path}' '#{destination}' 2>&1`
1646 elsif stuff[key][:combo].active == 1
1647 result = `mv '#{entry.path}' '#{destination}' 2>&1`
1649 if $?.exitstatus > 0
1650 simplified_error = result.sub(/#{Regexp.quote(destination + '/' + File.basename(entry.path))}/, ''). #'
1651 sub(/#{Regexp.quote(entry.path)}/, '').
1652 sub(/#{Regexp.quote(File.basename(entry.path))}/, '')
1653 if ! ignored_errors.include?(simplified_error)
1654 response = show_popup($main_window,
1655 utf8(_("Failure:\n\n%s\nDo you wish to continue?" % result)),
1656 { :yestoall => true })
1658 raise "failure on '#{entry.path}'"
1659 elsif response == 'yestoall'
1660 ignored_errors << simplified_error
1664 if stuff[key][:combo].active == 0
1674 if stuff['toremove'][:combo] && stuff['toremove'][:combo].active == 0
1675 $allentries.each { |entry|
1677 File.delete(entry.path)
1683 msg 1, "woops: #{$!}\n" + $@.join("\n")
1685 show_popup(dialog, utf8(_("Successfully moved %d files, copied %d file, and removed %d files.") % [ moved, copied, removed ]))
1709 if entry.labeled.button.active?
1715 if $toremove_button.active?
1721 if $unlabelled_button.active?
1729 def update_visibility(entry)
1741 def update_all_visibilities_aux
1742 $allentries.each { |entry|
1743 update_visibility(entry)
1745 shown = $mainview.get_shown_entry
1747 while shown.button && ! shown.button.visible? && shown != $allentries.last
1748 shown = $allentries[$allentries.index(shown) + 1]
1750 if shown.button && shown.button.visible?
1751 shown.button.grab_focus
1754 $allentries.reverse.each { |entry|
1755 if entry.button && entry.button.visible?
1756 entry.button.grab_focus
1762 def update_all_visibilities
1763 update_all_visibilities_aux
1764 Gtk.main_iteration while Gtk.events_pending?
1765 shown = $mainview.get_shown_entry
1766 shown and autoscroll_if_needed(shown.button, false)
1771 dialog = Gtk::Dialog.new(utf8(_("Edit preferences")),
1773 Gtk::Dialog::MODAL | Gtk::Dialog::DESTROY_WITH_PARENT,
1774 [Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK],
1775 [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1777 tooltips = Gtk::Tooltips.new
1781 dialog.vbox.add(tbl = Gtk::Table.new(0, 0, false))
1782 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Command for watching videos: ")))),
1783 0, 1, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1784 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)),
1785 1, 2, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1786 tooltips.set_tip(video_viewer_entry, utf8(_("Use %f to specify the filename;\nfor example: /usr/bin/mplayer %f")), nil)
1789 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Browser's command: ")))),
1790 0, 1, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1791 tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(browser_entry = Gtk::Entry.new.set_text($config['browser'])),
1792 1, 2, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1793 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)
1796 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Thumbnails height: ")))),
1797 0, 1, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1798 tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(thumbnails_height = Gtk::SpinButton.new(32, 256, 16).set_value($config['thumbnails-height'].to_i)),
1799 1, 2, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1800 tooltips.set_tip(thumbnails_height, utf8(_("The desired height of the thumbnails in the thumbnails line of the bottom")), nil)
1803 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Preloading distance: ")))),
1804 0, 1, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1805 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)),
1806 1, 2, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1807 tooltips.set_tip(preload_distance, utf8(_("Amount of pictures preloaded left and right to the currently shown")), nil)
1810 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Cache memory use: ")))),
1811 0, 1, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1812 tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(cache_vbox = Gtk::VBox.new(false, 0)),
1813 1, 2, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1814 cache_vbox.pack_start(Gtk::HBox.new(false, 0).pack_start(cache_memfree_radio = Gtk::RadioButton.new(''), false, false).
1815 pack_start(cache_memfree_spin = Gtk::SpinButton.new(0, 100, 10), false, false).
1816 pack_start(cache_memfree_label = Gtk::Label.new(utf8(_("% of free memory"))), false, false), false, false)
1817 cache_memfree_spin.signal_connect('value-changed') { cache_memfree_radio.active = true }
1818 tooltips.set_tip(cache_memfree_spin, utf8(_("Percentage of free memory (+ buffers/cache) measured at startup")), nil)
1819 cache_vbox.pack_start(Gtk::HBox.new(false, 0).pack_start(cache_specify_radio = Gtk::RadioButton.new(cache_memfree_radio, ''), false, false).
1820 pack_start(cache_specify_spin = Gtk::SpinButton.new(0, 4000, 50), false, false).
1821 pack_start(cache_specify_label = Gtk::Label.new(utf8(_("MB"))).set_sensitive(false), false, false), false, false)
1822 cache_specify_spin.signal_connect('value-changed') { cache_specify_radio.active = true }
1823 cache_memfree_radio.signal_connect('toggled') {
1824 if cache_memfree_radio.active?
1825 cache_memfree_label.sensitive = true
1826 cache_specify_label.sensitive = false
1828 cache_specify_label.sensitive = true
1829 cache_memfree_label.sensitive = false
1832 tooltips.set_tip(cache_specify_spin, utf8(_("Amount of memory in megabytes")), nil)
1833 if $config['cache-memory-use'] =~ /memfree_(\d+)/
1834 cache_memfree_spin.value = $1.to_i
1836 cache_specify_spin.value = $config['cache-memory-use'].to_i / 1024
1840 tbl.attach(update_exif_orientation_check = Gtk::CheckButton.new(utf8(_("Update file's EXIF orientation when rotating a picture"))),
1841 0, 2, table_y, table_y + 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1842 tooltips.set_tip(update_exif_orientation_check, utf8(_("When rotating a picture (Alt-Right/Left), also update EXIF orientation in the file itself")), nil)
1843 update_exif_orientation_check.active = $config['rotate-set-exif'] == 'true'
1845 dialog.vbox.show_all
1846 dialog.run { |response|
1847 if response == Gtk::Dialog::RESPONSE_OK
1848 $config['video-viewer'] = from_utf8(video_viewer_entry.text)
1849 $config['browser'] = from_utf8(browser_entry.text)
1850 $config['thumbnails-height'] = thumbnails_height.value
1851 $config['preload-distance'] = preload_distance.value
1852 $config['rotate-set-exif'] = update_exif_orientation_check.active?.to_s
1853 if cache_memfree_radio.active?
1854 $config['cache-memory-use'] = "memfree_#{cache_memfree_spin.value}%"
1856 $config['cache-memory-use'] = cache_specify_spin.value.to_i * 1024
1858 set_cache_memory_use_figure
1865 if $undo_mb.sensitive?
1866 $redo_mb.sensitive = true
1867 if not more_undoes = UndoHandler.undo($statusbar)
1868 $undo_mb.sensitive = false
1874 if $redo_mb.sensitive?
1875 $undo_mb.sensitive = true
1876 if not more_redoes = UndoHandler.redo($statusbar)
1877 $redo_mb.sensitive = false
1884 mb = Gtk::MenuBar.new
1886 filemenu = Gtk::MenuItem.new(utf8(_("_File")))
1887 filesubmenu = Gtk::Menu.new
1888 filesubmenu.append(open = Gtk::ImageMenuItem.new(Gtk::Stock::OPEN))
1889 filesubmenu.append( Gtk::SeparatorMenuItem.new)
1890 filesubmenu.append($execute = Gtk::ImageMenuItem.new(Gtk::Stock::EXECUTE).set_sensitive(false))
1891 filesubmenu.append( Gtk::SeparatorMenuItem.new)
1892 filesubmenu.append(quit = Gtk::ImageMenuItem.new(Gtk::Stock::QUIT))
1893 filemenu.set_submenu(filesubmenu)
1896 open.signal_connect('activate') { open_dir_popup }
1897 $execute.signal_connect('activate') { execute }
1898 quit.signal_connect('activate') { try_quit }
1900 editmenu = Gtk::MenuItem.new(utf8(_("_Edit")))
1901 editsubmenu = Gtk::Menu.new
1902 editsubmenu.append($undo_mb = Gtk::ImageMenuItem.new(Gtk::Stock::UNDO).set_sensitive(false))
1903 editsubmenu.append($redo_mb = Gtk::ImageMenuItem.new(Gtk::Stock::REDO).set_sensitive(false))
1904 editsubmenu.append( Gtk::SeparatorMenuItem.new)
1905 editsubmenu.append(prefs = Gtk::ImageMenuItem.new(Gtk::Stock::PREFERENCES))
1906 editmenu.set_submenu(editsubmenu)
1909 $undo_mb.signal_connect('activate') { perform_undo }
1910 $redo_mb.signal_connect('activate') { perform_redo }
1911 prefs.signal_connect('activate') { preferences }
1913 helpmenu = Gtk::MenuItem.new(utf8(_("_Help")))
1914 helpsubmenu = Gtk::Menu.new
1915 helpsubmenu.append(howto = Gtk::ImageMenuItem.new(Gtk::Stock::HELP))
1916 helpsubmenu.append(speed = Gtk::ImageMenuItem.new(utf8(_("Speedup: key shortcuts"))))
1917 speed.image = Gtk::Image.new("#{$FPATH}/images/stock-info-16.png")
1918 helpsubmenu.append(tutos = Gtk::ImageMenuItem.new(utf8(_("Online tutorials (opens a web-browser)"))))
1919 tutos.image = Gtk::Image.new("#{$FPATH}/images/stock-web-16.png")
1920 helpsubmenu.append(Gtk::SeparatorMenuItem.new)
1921 helpsubmenu.append(about = Gtk::ImageMenuItem.new(Gtk::Stock::ABOUT))
1922 helpmenu.set_submenu(helpsubmenu)
1925 howto.signal_connect('activate') {
1926 show_popup($main_window, utf8(_("<span size='large' weight='bold'>Help</span>
1928 1. Open a directory with <span foreground='darkblue'>File/Open</span>; the classifier will scan it (including subdirectories) and
1929 show thumbnails for all photos and videos at the bottom.
1931 2. You can then navigate through images with the <span foreground='darkblue'>Left/Right</span> keyboard keys, or by <span foreground='darkblue'>clicking</span>
1934 3. You may associate a <span foreground='darkblue'>label</span> to each thumbnail. Either hit the <span foreground='darkblue'>Delete</span> key to associate
1935 the built-in <i>to remove</i> label, or hit any alphabetical key to associate a label you define.
1936 The first time you hit a key without any label associated, a popup will ask for the full
1937 name of this label, and what color you want. To clear the current label, hit the <span foreground='darkblue'>Space</span> key.
1939 4. To help you better view what thumbnails are associated to your labels, you may <span foreground='darkblue'>hide</span>
1940 some of them by unchecking the labels checkboxes on the left.
1942 5. Once you're finished reviewing all thumbnails, use <span foreground='darkblue'>File/Execute</span> to execute the desired
1943 actions according to associated labels. You can permanently remove (or not) images with
1944 the <i>to remove</i> label, and copy or move images with the labels you defined.
1945 ")), { :pos_centered => true, :not_transient => true })
1947 speed.signal_connect('activate') {
1948 show_popup($main_window, utf8(_("<span size='large' weight='bold'>Key shortcuts</span>
1950 <span foreground='darkblue'>Left/Right</span>: move left and right in images
1951 <span foreground='darkblue'>Enter</span>: 'view' current image: for images, display EXIF data; for videos, play it
1952 <span foreground='darkblue'>Alt-Left/Right</span>: rotate current image clockwise/counter-clockwise
1953 <span foreground='darkblue'>Delete</span>: assign the 'to remove' label on current image
1954 <span foreground='darkblue'>Space</span>: clear any label on current image
1955 <span foreground='darkblue'>Control-z</span>: undo
1956 <span foreground='darkblue'>Control-r</span>: redo
1957 <span foreground='darkblue'>Control-Space</span>: recenter thumbnails on current item
1959 Any alphabetical key will assign (or popup for) the associated label on current image.
1960 ")), { :pos_centered => true, :not_transient => true })
1962 tutos.signal_connect('activate') { open_url('http://booh.org/tutorial') }
1963 about.signal_connect('activate') { call_about }
1966 #- no toolbar, to save height
1972 for child in $labels_vbox.children
1973 $labels_vbox.remove(child)
1975 $labels_vbox.pack_start(Gtk::Label.new(utf8(_("Labels list:"))).set_justify(Gtk::Justification::CENTER), false, false).show_all
1977 $ordered_labels = []
1978 lbl = Gtk::Label.new.set_markup(utf8(_("<i>unlabelled</i>")))
1979 $labels_vbox.pack_start(Gtk::HBox.new(false, 5).pack_start($unlabelled_button = Gtk::CheckButton.new.add(Gtk::EventBox.new.add(lbl)), false, false).
1980 pack_start(Gtk::Label.new, true, true). #- I suck
1981 pack_start($unlabelled_counter = Gtk::Label.new.set_markup('<tt>0</tt>'), false, false).show_all)
1982 $unlabelled_button.active = true
1983 $unlabelled_button.signal_connect('toggled') { update_all_visibilities }
1984 lbl = Gtk::Label.new.set_markup(utf8(_("<i>to remove</i>")))
1985 $labels_vbox.pack_start(Gtk::HBox.new(false, 5).pack_start($toremove_button = Gtk::CheckButton.new.add(evt = Gtk::EventBox.new.add(lbl)), false, false).
1986 pack_start(Gtk::Label.new, true, true).
1987 pack_start($toremove_counter = Gtk::Label.new.set_markup('<tt>0</tt>'), false, false).show_all)
1988 $toremove_button.active = true
1989 $toremove_button.signal_connect('toggled') { update_all_visibilities }
1990 evt.modify_bg(Gtk::StateType::NORMAL, $color_red)
1991 evt.modify_bg(Gtk::StateType::PRELIGHT, $color_red.lighter.lighter)
1992 evt.modify_bg(Gtk::StateType::ACTIVE, $color_red.lighter)
1996 $allentries.each { |e|
2001 def reset_thumbnails
2004 if $preloader_running
2005 $preloader_force_exit = true
2007 for child in $imagesline.children
2008 $imagesline.remove(child)
2010 set_imagesline_size_request
2013 def set_imagesline_size_request
2014 $imagesline.set_size_request(-1, Gtk::Button.new.size_request[1] + Entry.thumbnails_height + Entry.thumbnails_height/4)
2017 def create_main_window
2019 $videoborder_pixbuf = Gdk::Pixbuf.new("#{$FPATH}/images/video_border.png")
2020 $videoborder_pixmap, = $videoborder_pixbuf.render_pixmap_and_mask(0)
2024 main_vbox = Gtk::VBox.new(false, 0)
2025 main_vbox.pack_start(mb, false, false)
2026 mainview_hbox = Gtk::HBox.new
2027 mainview_hbox.pack_start(Gtk::Alignment.new(0.5, 0, 1, 1).add(left_vbox = Gtk::VBox.new(false, 5)), false, true)
2028 left_vbox.pack_start(($labels_vbox = Gtk::VBox.new(false, 5)), false, true)
2029 left_vbox.pack_end($loading_progressbar = Gtk::ProgressBar.new.set_text(utf8(_("Loading... %d%") % 0)), false, true)
2030 mainview_hbox.pack_start($mainview = MainView.new, true, true)
2031 main_vbox.pack_start(mainview_hbox, true, true)
2032 $imagesline_sw = Gtk::ScrolledWindow.new(nil, nil)
2033 $imagesline_sw.set_policy(Gtk::POLICY_ALWAYS, Gtk::POLICY_NEVER)
2034 $imagesline_sw.add_with_viewport($imagesline = Gtk::HBox.new(false, 0).show)
2035 main_vbox.pack_start($imagesline_sw, false, false)
2036 main_vbox.pack_end($statusbar = Gtk::Statusbar.new, false, false)
2038 set_imagesline_size_request
2040 $main_window = create_window
2041 $main_window.add(main_vbox)
2042 $main_window.signal_connect('delete-event') {
2046 #- read/save size and position of window
2047 if $config['pos-x'] && $config['pos-y']
2048 $main_window.move($config['pos-x'].to_i, $config['pos-y'].to_i)
2050 $main_window.window_position = Gtk::Window::POS_CENTER
2052 msg 3, "size: #{$config['width']}x#{$config['height']}"
2053 $main_window.set_default_size(($config['width'] || 800).to_i, ($config['height'] || 600).to_i)
2054 $main_window.signal_connect('configure-event') {
2055 msg 3, "configure: pos: #{$main_window.window.root_origin.inspect} size: #{$main_window.window.size.inspect}"
2056 x, y = $main_window.window.root_origin
2057 width, height = $main_window.window.size
2058 $config['pos-x'] = x
2059 $config['pos-y'] = y
2060 $config['width'] = width
2061 $config['height'] = height
2065 $main_window.show_all
2066 $loading_progressbar.hide
2079 if msg = open_dir(*ARGV)
2083 show_entries($allentries)