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-2006 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
27 require 'booh/libadds'
31 bindtextdomain("booh")
33 require 'rexml/document'
36 require 'booh/booh-lib'
38 require 'booh/UndoHandler'
43 [ '--help', '-h', GetoptLong::NO_ARGUMENT, _("Get help message") ],
45 [ '--verbose-level', '-v', GetoptLong::REQUIRED_ARGUMENT, _("Set max verbosity level (0: errors, 1: warnings, 2: important messages, 3: other messages)") ],
46 [ '--sort-by-exif-date', '-s', GetoptLong::NO_ARGUMENT, _("Sort entries by EXIF date") ],
50 puts _("Usage: %s [OPTION]...") % File.basename($0)
52 printf " %3s, %-15s %s\n", ary[1], ary[0], ary[3]
57 parser = GetoptLong.new
58 parser.set_options(*$options.collect { |ary| ary[0..2] })
60 parser.each_option do |name, arg|
66 when '--verbose-level'
67 $verbose_level = arg.to_i
69 when '--sort-by-exif-date'
70 $sort_by_exif_date = true
82 if $startup_memfree.nil?
83 meminfo = IO.readlines('/proc/meminfo').join
84 meminfo =~ /MemFree:.*?(\d+)/ or return -1
86 meminfo =~ /Buffers:.*?(\d+)/ and buffers = $1
87 meminfo =~ /Cached:.*?(\d+)/ and cached = $1
88 $startup_memfree = memfree.to_i + buffers.to_i + cached.to_i
90 return $startup_memfree
93 def set_cache_memory_use_figure
95 if $config['cache-memory-use'] =~ /memfree_(\d+)/
96 $config['cache-memory-use-figure'] = startup_memfree*$1.to_f/100
98 $config['cache-memory-use-figure'] = $config['cache-memory-use'].to_i
100 msg 2, _("Cache memory used: %s kB") % $config['cache-memory-use-figure']
105 $config_file = File.expand_path('~/.booh-classifier-rc')
106 if File.readable?($config_file)
107 $xmldoc = REXML::Document.new(File.new($config_file))
108 $xmldoc.root.elements.each { |element|
109 txt = element.get_text
111 if txt.value =~ /~~~/
112 $config[element.name] = txt.value.split(/~~~/)
114 $config[element.name] = txt.value
116 elsif element.elements.size == 0
117 $config[element.name] = ''
119 $config[element.name] = {}
120 element.each { |chld|
122 $config[element.name][chld.name] = txt ? txt.value : nil
127 $config['video-viewer'] ||= '/usr/bin/mplayer %f'
128 $config['browser'] ||= "/usr/bin/mozilla-firefox -remote 'openURL(%f,new-window)' || /usr/bin/mozilla-firefox %f"
129 $config['preload-distance'] ||= '5'
130 $config['cache-memory-use'] ||= 'memfree_80%'
131 $config['rotate-set-exif'] ||= 'true'
132 set_cache_memory_use_figure
136 missing = %w(mplayer).delete_if { |prg| system("which #{prg} >/dev/null 2>/dev/null") }
138 show_popup($main_window, utf8(_("The following program(s) are needed to handle videos: '%s'. Videos will be ignored.") % missing.join(', ')), { :pos_centered => true })
141 viewer_binary = $config['video-viewer'].split.first
142 if viewer_binary && ! File.executable?(viewer_binary)
143 show_popup($main_window, utf8(_("The configured video viewer seems to be unavailable.
144 You should fix this in Edit/Preferences so that you can view videos.
146 Problem was: '%s' is not an executable file.
147 Hint: don't forget to specify the full path to the executable,
148 e.g. '/usr/bin/mplayer' is correct but 'mplayer' only is not.") % viewer_binary), { :pos_centered => true, :not_transient => true })
150 browser_binary = $config['browser'].split.first
151 if browser_binary && ! File.executable?(browser_binary)
152 show_popup($main_window, utf8(_("The configured browser seems to be unavailable.
153 You should fix this in Edit/Preferences so that you can open URLs.
155 Problem was: '%s' is not an executable file.") % browser_binary), { :pos_centered => true, :not_transient => true })
160 ios = File.open($config_file, "w")
161 $xmldoc = Document.new "<booh-classifier-rc version='#{$VERSION}'/>"
162 $xmldoc << XMLDecl.new(XMLDecl::DEFAULT_VERSION, $CURRENT_CHARSET)
163 $config.each_pair { |key, value|
164 elem = $xmldoc.root.add_element key
166 $config[key].each_pair { |subkey, subvalue|
167 subelem = elem.add_element subkey
168 subelem.add_text subvalue.to_s
170 elsif value.is_a? Array
171 elem.add_text value.join('~~~')
176 elem.add_text value.to_s
180 $xmldoc.write(ios, 0)
184 def save_undo(name, closure, *params)
185 UndoHandler.save_undo(name, closure, [ *params ])
186 $undo_mb.sensitive = true
187 $redo_mb.sensitive = false
191 IO.readlines('/proc/self/status').join =~ /VmRSS.*?(\d+)\s*kB/
197 txt.length > 0 and print txt[0]
198 msg 2, "RSS: #{get_mem}"
204 color.red = [ color.red - 10000, 0 ].max
205 color.green = [ color.green - 10000, 0 ].max
206 color.blue = [ color.blue - 10000, 0 ].max
211 color.red = [ color.red + 10000, 65535 ].min
212 color.green = [ color.green + 10000, 65535 ].min
213 color.blue = [ color.blue + 10000, 65535 ].min
218 $color_red = Gdk::Color.new(65535, 0, 0)
219 $colors = [ Gdk::Color.new(0, 65535, 0),
220 Gdk::Color.new(0, 0, 65535),
221 Gdk::Color.new(65535, 65535, 0),
222 Gdk::Color.new(0, 65535, 65535),
223 Gdk::Color.new(65535, 0, 65535) ]
226 attr_accessor :color, :name, :button
233 @@thumbnails_height = 64
235 def Entry.thumbnails_height
236 return @@thumbnails_height
239 attr_accessor :path, :type, :angle, :button, :image, :alignment, :removed, :labeled
241 def initialize(path, type)
245 @@max_width = $main_window.root_window.size[0] - $labels_vbox.allocation.width - ( $videoborder_pixbuf.width + MainView.borders_thickness) * 2
248 @protect_cleanup = Mutex.new
252 @protect_cleanup.synchronize {
254 msg 3, ">>> pixbuf_full #{path}"
255 load_into_pixbuf_full
261 @protect_cleanup.synchronize {
265 msg 3, ">>> free_pixbuf_full #{path}"
271 def pixbuf_main(width, height)
272 @protect_cleanup.synchronize {
273 if @pixbuf_main.nil? || width != @width || height != @height
274 msg 3, ">>> pixbuf_main #{path}"
277 load_into_pixbuf_full #- make sure it is loaded
278 if @pixbuf_full.width.to_f / @pixbuf_full.height > width.to_f / height
279 resized_height = @pixbuf_full.height * (width.to_f/@pixbuf_full.width)
280 if @pixbuf_full.width > width || @pixbuf_full.height > resized_height
281 @pixbuf_main = @pixbuf_full.scale(width, resized_height, Gdk::Pixbuf::INTERP_BILINEAR)
283 @pixbuf_main = @pixbuf_full
286 resized_width = @pixbuf_full.width * (height.to_f/@pixbuf_full.height)
287 if @pixbuf_full.width > resized_width || @pixbuf_full.height > height
288 @pixbuf_main = @pixbuf_full.scale(resized_width, height, Gdk::Pixbuf::INTERP_BILINEAR)
290 @pixbuf_main = @pixbuf_full
298 @protect_cleanup.synchronize {
302 msg 3, ">>> free_pixbuf_main #{path}"
309 return @protect_cleanup.synchronize {
310 if @pixbuf_thumbnail.nil?
311 msg 3, ">>> pixbuf_thumbnail #{path}"
312 load_into_pixbuf_full #- make sure it is loaded
313 @pixbuf_thumbnail = @pixbuf_full.scale(@pixbuf_full.width * (@@thumbnails_height.to_f/@pixbuf_full.height), @@thumbnails_height, Gdk::Pixbuf::INTERP_BILINEAR)
315 return @pixbuf_thumbnail
318 def free_pixbuf_thumbnail
319 @protect_cleanup.synchronize {
320 if @pixbuf_thumbnail.nil?
323 msg 3, ">>> free_pixbuf_thumbnail #{path}"
324 @pixbuf_thumbnail = nil
341 if outline_color.nil?
342 button.modify_bg(Gtk::StateType::NORMAL, nil)
343 button.modify_bg(Gtk::StateType::PRELIGHT, nil)
344 button.modify_bg(Gtk::StateType::ACTIVE, nil)
346 button.modify_bg(Gtk::StateType::NORMAL, outline_color)
347 button.modify_bg(Gtk::StateType::PRELIGHT, outline_color.lighter)
348 button.modify_bg(Gtk::StateType::ACTIVE, outline_color)
352 def get_beautified_name
354 size = get_image_size(path)
355 return _("%s (%sx%s, %s KB)") % [File.basename(@path).gsub(/\.[^.]+$/, ''),
358 commify(file_size(path)/1024)]
360 return _("%s (video - %s KB)") % [File.basename(@path).gsub(/\.[^.]+$/, ''),
361 commify(file_size(path)/1024)]
367 Dir.entries(dir).each { |file| file != '.' && file != '..' and File.delete(File.join(dir, file)) }
371 def load_into_pixbuf_full
373 msg 3, ">>> load_into_pixbuf_full #{path}"
375 tmp = Tempfile.new("boohclassifiertemp")
377 Dir.mkdir(dest_dir = tmp.path)
378 orig_base = File.basename(path)
379 tmpdir = gen_video_thumbnail(path, false, 0)
383 image_path = "#{tmpdir}/00000001.jpg"
388 #- use a pixbuf loader to allow the loading thread to be interrupted by the main thread more often, to keep the UI responsive even
389 #- if loaded pictures are several MBs large
390 loader = Gdk::PixbufLoader.new
391 loader.signal_connect('size-prepared') { |l,w,h|
392 maxdim = w > h ? w : h
393 if maxdim > @@max_width
394 #- save memory and speedup (+35%) loading
395 loader.set_size(w * (factor = @@max_width.to_f/maxdim), h * factor)
398 loader.signal_connect('area-prepared') { @pixbuf_full = loader.pixbuf }
399 file = File.new(image_path)
400 while (chunk = file.read(65536)) != nil
406 raise "Loaded pixbuf nil - #{path} #{image_path}"
408 rescue Gdk::PixbufError
409 msg 0, "Cannot load #{image_path}: #{$!}"
413 File.delete(image_path)
420 @angle = guess_rotate(image_path)
426 msg 3, ">>> load_into_pixbuf_full #{image_path} => rotate #{@angle}"
427 @pixbuf_full = rotate_pixbuf(@pixbuf_full, @angle)
431 cleanup_dir(dest_dir)
443 class MainView < Gtk::DrawingArea
445 @@borders_thickness = 5
446 @@borders_length = 25
448 def MainView.borders_thickness
449 return @@borders_thickness
452 def MainView.get_usable_width(available_width)
453 return available_width - ($videoborder_pixbuf.width + @@borders_thickness) * 2
456 def MainView.get_usable_height(available_height)
457 return available_height - @@borders_thickness * 2
462 signal_connect('expose-event') { draw }
463 signal_connect('configure-event') { update_shown; GC.start }
464 signal_connect('realize') {
465 @preloader = Thread.new {
466 #- background preloading
468 msg 3, "*** >> background main preloading triggered..."
470 index = $allentries.index(@entry)
472 w = MainView.get_usable_width(w)
473 h = MainView.get_usable_height(h)
474 for j in 1 .. $config['preload-distance'].to_i
476 if i < $allentries.size
477 $allentries[i].pixbuf_main(w, h)
481 $allentries[i].pixbuf_main(w, h)
485 if mem > $config['cache-memory-use-figure']
486 msg 3, "too much RSS, stopping main preloading"
490 check_memory_free_cache_if_needed
492 msg 3, "*** << background main preloading stopping"
496 @preloader.priority = -2
500 def set_shown_entry(entry)
501 if ! entry.nil? && entry == @entry
509 entry.button.grab_focus
521 def show_next_entry(entry)
522 index = $allentries.index(entry) + 1
523 if index < $allentries.size
524 set_shown_entry($allentries[index])
531 window.begin_paint(Gdk::Rectangle.new(0, 0, w, h))
539 width, height = window.size
540 usable_width = MainView.get_usable_width(width)
541 usable_height = MainView.get_usable_height(height)
542 @pixbuf = @entry.pixbuf_main(usable_width, usable_height)
543 @xpos = (width - @pixbuf.width)/2
544 @ypos = (height - @pixbuf.height)/2
553 window.draw_pixbuf(nil, @pixbuf, 0, 0, @xpos, @ypos, -1, -1, Gdk::RGB::DITHER_NONE, -1, -1)
554 if @entry && @entry.type == 'video'
555 window.draw_borders($videoborder_pixbuf, @xpos - $videoborder_pixbuf.width, @xpos + @pixbuf.width, @ypos, @ypos + @pixbuf.height)
557 if ! @entry.outline_color.nil?
558 gc = Gdk::GC.new(window)
559 colormap.alloc_color(@entry.outline_color, false, true)
560 gc.set_foreground(@entry.outline_color)
561 if @entry && @entry.type == 'video'
562 xleft = @xpos - $videoborder_pixbuf.width
563 xright = @xpos + @pixbuf.width + $videoborder_pixbuf.width
566 xright = @xpos + @pixbuf.width
568 window.draw_polygon(gc, true, [[xleft - @@borders_thickness, @ypos - @@borders_thickness],
569 [xright + @@borders_thickness, @ypos - @@borders_thickness],
570 [xright + @@borders_thickness, @ypos + @pixbuf.height + @@borders_thickness],
571 [xleft - @@borders_thickness, @ypos + @pixbuf.height + @@borders_thickness],
572 [xleft - @@borders_thickness, @ypos - 1],
573 [xleft - 1, @ypos - 1],
574 [xleft - 1, @ypos + @pixbuf.height + 1],
575 [xright + 1, @ypos + @pixbuf.height + 1],
576 [xright + 1, @ypos - 1],
577 [xleft - @@borders_thickness, @ypos - 1]])
583 def check_memory_free_cache_if_needed
586 i = $allentries.index($mainview.get_shown_entry)
587 msg 3, "mem: #{mem} index: #{i}"
589 ($allentries.size - 1).downto(1) { |j|
590 if mem < $config['cache-memory-use-figure'] * 2 / 3
594 msg 3, "too much RSS, freeing full size of #{i+j} and #{i-j}..."
595 freedsomething = false
596 if i + j < $allentries.size
597 freedsomething |= $allentries[i+j].free_pixbuf_full
600 freedsomething |= $allentries[i-j].free_pixbuf_full
605 msg 3, "\tmem now: #{mem}"
610 def autoscroll_if_needed(button)
611 xpos_left = button.allocation.x
612 xpos_right = button.allocation.x + button.allocation.width
613 hadj = $imagesline_sw.hadjustment
614 current_minx_visible = hadj.value
615 current_maxx_visible = hadj.value + hadj.page_size
616 if xpos_left < current_minx_visible
618 newval = hadj.value - (current_minx_visible - xpos_left)
620 button.queue_draw #- TOREMOVE: the visual focus is displayed incorrectly
621 elsif xpos_right > current_maxx_visible
623 newval = hadj.value + (xpos_right - current_maxx_visible)
624 if newval > hadj.upper - hadj.page_size
625 newval = hadj.upper - hadj.page_size
628 button.queue_draw #- TOREMOVE: the visual focus is displayed incorrectly
632 def show_popup(parent, msg, *options)
633 dialog = Gtk::Dialog.new
640 dialog.title = options[:title]
642 dialog.title = utf8(_("Booh message"))
645 if options[:nomarkup]
650 if options[:centered]
651 lbl.set_justify(Gtk::Justification::CENTER)
653 if options[:selectable]
654 lbl.selectable = true
656 if options[:topwidget]
657 dialog.vbox.add(options[0][:topwidget])
659 if options[:scrolled]
660 sw = Gtk::ScrolledWindow.new(nil, nil)
661 sw.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC)
662 sw.add_with_viewport(lbl)
664 dialog.set_default_size(500, 600)
667 dialog.set_default_size(200, 120)
669 if options[:bottomwidget]
670 dialog.vbox.add(options[:bottomwidget])
672 if options[:okcancel]
673 dialog.add_button(Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL)
675 dialog.add_button(Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK)
677 if options[:pos_centered]
678 dialog.window_position = Gtk::Window::POS_CENTER
680 dialog.window_position = Gtk::Window::POS_MOUSE
684 linkbut = Gtk::Button.new('')
685 linkbut.child.markup = "<span foreground=\"#00000000FFFF\" underline=\"single\">#{options[0][:linkurl]}</span>"
686 linkbut.signal_connect('clicked') {
687 open_url(options[0][:linkurl] + '/index.html')
688 dialog.response(Gtk::Dialog::RESPONSE_OK)
689 set_mousecursor_normal
691 linkbut.relief = Gtk::RELIEF_NONE
692 linkbut.signal_connect('enter-notify-event') { set_mousecursor(Gdk::Cursor::HAND2, linkbut); false }
693 linkbut.signal_connect('leave-notify-event') { set_mousecursor(nil, linkbut); false }
694 dialog.vbox.add(Gtk::Alignment.new(0.5, 0.5, 0, 0).add(linkbut))
699 if options[:stuff_connector]
700 options[:stuff_connector].call({ :dialog => dialog })
703 if !options[:not_transient]
704 dialog.transient_for = parent
705 dialog.run { |response|
706 if options[:data_getter]
707 options[:data_getter].call
710 if options[:okcancel]
711 return response == Gtk::Dialog::RESPONSE_OK
715 dialog.signal_connect('response') { dialog.destroy }
719 def video_view(entry)
720 cmd = from_utf8($config['video-viewer']).gsub('%f', "'#{entry.path}'") + ' &'
725 def thumbnail_keypressed(entry, event)
726 if event.state & Gdk::Window::MOD1_MASK != 0
727 #- ALT pressed: Alt-Left and Alft-Right rotate
728 if event.keyval == Gdk::Keyval::GDK_Left || event.keyval == Gdk::Keyval::GDK_Right
729 if event.keyval == Gdk::Keyval::GDK_Left
730 entry.angle = (entry.angle - 90) % 360
732 entry.angle = (entry.angle + 90) % 360
734 entry.free_pixbuf_full
735 entry.free_pixbuf_main
736 entry.free_pixbuf_thumbnail
738 entry.image.pixbuf = entry.pixbuf_thumbnail
739 if $config['rotate-set-exif'] == 'true'
740 Exif.set_orientation(entry.path, angle_to_exif_orientation(entry.angle))
744 elsif event.state & Gdk::Window::CONTROL_MASK != 0
745 #- CONTROL pressed: Ctrl-z and Ctrl-r for undo/redo
746 if event.keyval == Gdk::Keyval::GDK_z
749 if event.keyval == Gdk::Keyval::GDK_r
754 removed_before = entry.removed
755 label_before = entry.labeled
757 if event.keyval == Gdk::Keyval::GDK_Delete
761 $mainview.show_next_entry(entry)
762 update_visibility(entry)
764 save_undo(_("set for removal"),
766 entry.removed = removed_before
767 entry.labeled = label_before
769 update_visibility(entry)
770 if entry.button.visible?
771 $mainview.set_shown_entry(entry)
777 update_visibility(entry)
778 if entry.button.visible?
779 $mainview.set_shown_entry(entry)
784 elsif event.keyval == Gdk::Keyval::GDK_space
786 msg = _("Cleared label")
788 msg = _("Cleared set for removal")
790 entry.removed = false
793 $mainview.show_next_entry(entry)
797 entry.removed = removed_before
798 entry.labeled = label_before
800 $mainview.set_shown_entry(entry)
802 entry.removed = false
805 $mainview.set_shown_entry(entry)
809 elsif event.keyval == Gdk::Keyval::GDK_Return && entry.type == 'video'
813 char = [ Gdk::Keyval.to_unicode(event.keyval) ].pack("C*")
814 if char =~ /^[a-zA-z0-9]$/
815 label = $labels[char]
818 vb = Gtk::VBox.new(false, 0)
819 vb.pack_start(entry = Gtk::Entry.new.set_text(char), false, false)
820 vb.pack_start(Gtk::Alignment.new(0.5, 0.5, 0, 0).add(bt = Gtk::ColorButton.new))
821 color = bt.color = Gdk::Color.new(16384 + rand(49151), 16384 + rand(49151), 16384 + rand(49151))
822 bt.signal_connect('color-set') { color = bt.color }
824 entry.signal_connect('changed') { #- cannot add a new label with first letter of an existing label
825 while $labels.has_key?(entry.text[0,1])
826 entry.text = entry.text.sub(/./, '')
829 if show_popup($main_window,
830 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,
831 { :okcancel => true, :bottomwidget => vb, :data_getter => proc { text = entry.text },
832 :stuff_connector => proc { |stuff| entry.select_region(0, 0)
834 entry.signal_connect('activate') { stuff[:dialog].response(Gtk::Dialog::RESPONSE_OK) } } } )
836 char = text[0,1] #- in case it changed
837 label = Label.new(text)
839 $labels[char] = label
840 lbl = Gtk::Label.new.set_markup('<b>(' + char + ')</b>' + text[1..-1]).set_justify(Gtk::Justification::CENTER)
841 $labels_vbox.pack_start(label.button = Gtk::CheckButton.new.add(evt = Gtk::EventBox.new.add(lbl)).show_all)
842 label.button.active = true
843 label.button.signal_connect('toggled') { update_all_visibilities }
844 evt.modify_bg(Gtk::StateType::NORMAL, label.color)
845 evt.modify_bg(Gtk::StateType::PRELIGHT, label.color.lighter.lighter)
846 evt.modify_bg(Gtk::StateType::ACTIVE, label.color.lighter)
851 entry.removed = false
852 entry.labeled = label
854 $mainview.show_next_entry(entry)
855 update_visibility(entry)
857 save_undo(_("set label"),
859 entry.removed = removed_before
860 entry.labeled = label_before
862 update_visibility(entry)
863 if entry.button.visible?
864 $mainview.set_shown_entry(entry)
867 entry.removed = false
868 entry.labeled = label
870 update_visibility(entry)
871 if entry.button.visible?
872 $mainview.set_shown_entry(entry)
885 $statusbar.push(0, utf8(msg))
889 def real_show_entry(entry, tooltips, grab_focus)
890 #- for scoping the actual reference to 'entry'
891 gtk_thread_protect(proc {
892 msg 3, "using entry #{entry}"
893 entry.image = Gtk::Image.new(entry.pixbuf_thumbnail)
894 if entry.type == 'video'
895 entry.button = Gtk::Button.new.add(Gtk::HBox.new.pack_start(da1 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false).
896 pack_start(entry.image).
897 pack_start(da2 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false))
898 da1.signal_connect('realize') { da1.window.set_back_pixmap($videoborder_pixmap, false) }
899 da2.signal_connect('realize') { da2.window.set_back_pixmap($videoborder_pixmap, false) }
901 entry.button = Gtk::Button.new.set_image(entry.image)
903 tooltips.set_tip(entry.button, entry.get_beautified_name, nil)
904 $imagesline.pack_start(entry.alignment = Gtk::Alignment.new(0.5, 1, 0, 0).add(entry.button).show_all, false, false)
905 entry.button.signal_connect('clicked') {
906 if (last_shown = $mainview.get_shown_entry) != entry
907 $mainview.set_shown_entry(entry)
908 entry.alignment.set(0.5, 0, 0, 0)
909 sb_msg(_("Selected %s") % entry.get_beautified_name)
910 last_shown.nil? or last_shown.alignment.set(0.5, 1, 0, 0)
913 entry.button.signal_connect('button-press-event') { |w, event|
914 if entry.type == 'video' && event.event_type == Gdk::Event::BUTTON2_PRESS
918 entry.button.signal_connect('focus-in-event') { entry.button.clicked; autoscroll_if_needed(entry.button) }
919 entry.button.signal_connect('key-press-event') { |w, e| thumbnail_keypressed(entry, e) }
921 entry.button.grab_focus
923 update_visibility(entry)
928 $images_loader = Thread.new {
930 sb_msg(_("Loading images..."))
931 tooltips = Gtk::Tooltips.new
937 while i < $allentries.size
938 entry = $allentries[i]
940 total_size += file_size(entry.path)
941 entry.pixbuf_thumbnail
942 real_show_entry(entry, tooltips, grab_focus)
945 check_memory_free_cache_if_needed
951 $allentries.delete_at(i)
954 check_memory_free_cache_if_needed
955 sb_msg(_("%d images of total %s kB loaded in %3.2f seconds.") % [ counter, commify(total_size / 1024), Time.now - t1 ])
957 $images_loader.priority = -1
961 $images_loader and $images_loader.kill
964 $mainview.set_shown_entry(nil)
969 #- remove visual stuff, so that user will see something is happening
971 sb_msg(_("Scanning source directory..."))
973 path = File.expand_path(path.sub(%r|/$|, ''))
974 examined_dirs = `find '#{path}' -type d -follow`.sort.collect { |v| v.chomp }
976 examined_dirs.each { |dir|
978 return utf8(_("Source directory or sub-directories can't contain a single-quote character, sorry: %s") % dir)
980 Dir.entries(dir).each { |file|
981 if file =~ /['"\[\]]/
982 return utf8(_("Files can't contain any of the characters ', \", [ or ], sorry: %s") % "#{dir}/#{file}")
987 #- scan for populate second
988 examined_dirs.each { |dir|
989 if File.basename(dir) =~ /^\./
990 msg 1, _("Ignoring directory %s, begins with a dot (indicating a hidden directory)") % dir
993 entries = Dir.entries(dir)
994 if $sort_by_exif_date
996 entries.each { |file|
997 date_time = Exif.datetimeoriginal(File.join(dir, file))
999 dates[file] = date_time
1002 entries = smartsort(entries, dates)
1006 entries.each { |file|
1007 type = entry2type(file)
1009 $allentries << Entry.new(File.join(dir, file), type)
1015 $execute.sensitive = true
1020 fc = Gtk::FileChooserDialog.new(utf8(_("Specify the directory to work with")),
1022 Gtk::FileChooser::ACTION_SELECT_FOLDER,
1024 [Gtk::Stock::OPEN, Gtk::Dialog::RESPONSE_ACCEPT], [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1025 fc.transient_for = $main_window
1027 fc.current_folder = $workingdir
1031 if fc.run == Gtk::Dialog::RESPONSE_ACCEPT
1032 msg = open_dir(fc.filename)
1046 def gtk_thread_protect(proc, *params)
1047 if Thread.current == Thread.main
1050 $protect_gtk_pending_calls.synchronize {
1051 $gtk_pending_calls << [ proc, params ]
1056 def gtk_thread_flush
1057 $protect_gtk_pending_calls.synchronize {
1058 if $gtk_pending_calls.size > 0
1059 elem = $gtk_pending_calls.shift
1060 elem[0].call(*elem[1])
1065 def try_quit(*options)
1070 dialog = Gtk::Dialog.new
1071 dialog.title = utf8(_("Booh message"))
1073 vb1 = Gtk::VBox.new(false, 5)
1074 label = Gtk::Label.new.set_markup(utf8(_("You're about to <b>execute</b> actions on the marked images.\nPlease confirm below the actions. This operation is not undoable!")))
1075 vb1.pack_start(label, false, false)
1077 table = Gtk::Table.new(0, 0, false)
1078 table.set_row_spacings(5)
1079 table.set_column_spacings(5)
1080 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)
1081 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)
1082 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)
1083 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)
1084 add_row = proc { |row, name, color, truthproc, normal|
1085 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)),
1086 0, 1, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1088 examples = Gtk::HBox.new(false, 5)
1089 $allentries.each { |entry|
1090 if truthproc.call(entry)
1093 thumbnail = Gtk::Image.new(entry.pixbuf_thumbnail)
1094 if entry.type == 'video'
1095 thumbnail = Gtk::HBox.new.pack_start(da1 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false).
1096 pack_start(thumbnail).
1097 pack_start(da2 = Gtk::DrawingArea.new.set_size_request($videoborder_pixbuf.width, -1), false, false)
1098 da1.signal_connect('realize') { da1.window.set_back_pixmap($videoborder_pixmap, false) }
1099 da2.signal_connect('realize') { da2.window.set_back_pixmap($videoborder_pixmap, false) }
1101 examples.pack_start(thumbnail, false, false)
1103 examples.pack_start(Gtk::Label.new.set_markup("<b>...</b>"), false, false)
1107 table.attach(Gtk::Label.new(counter.to_s).set_justify(Gtk::Justification::CENTER), 1, 2, row, row + 1, 0, 0, 5, 5)
1108 table.attach(examples, 2, 3, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1110 combostore = Gtk::ListStore.new(Gdk::Pixbuf, String)
1111 iter = combostore.append
1113 iter[0] = $main_window.render_icon(Gtk::Stock::GO_FORWARD, Gtk::IconSize::MENU)
1114 iter[1] = utf8(_("Move to:"))
1115 iter = combostore.append
1116 iter[0] = $main_window.render_icon(Gtk::Stock::PASTE, Gtk::IconSize::MENU)
1117 iter[1] = utf8(_("Copy to:"))
1119 iter[0] = $main_window.render_icon(Gtk::Stock::DELETE, Gtk::IconSize::MENU)
1120 iter[1] = utf8(_("Permanently remove"))
1122 iter = combostore.append
1123 iter[0] = $main_window.render_icon(Gtk::Stock::MEDIA_STOP, Gtk::IconSize::MENU)
1124 iter[1] = utf8(_("Do nothing"))
1125 combo = Gtk::ComboBox.new(combostore)
1127 renderer = Gtk::CellRendererPixbuf.new
1128 combo.pack_start(renderer, false)
1129 combo.set_attributes(renderer, :pixbuf => 0)
1130 renderer = Gtk::CellRendererText.new
1131 combo.pack_start(renderer, true)
1132 combo.set_attributes(renderer, :text => 1)
1135 pathbutton = Gtk::Button.new.add(pathlabel = Gtk::Label.new.set_markup(utf8(_("<i>(unset)</i>"))))
1136 lastpath = $workingdir
1137 pathbutton.signal_connect('clicked') {
1138 fc = Gtk::FileChooserDialog.new(utf8(_("Specify the directory where to move the pictures to")),
1140 Gtk::FileChooser::ACTION_SELECT_FOLDER,
1142 [Gtk::Stock::OPEN, Gtk::Dialog::RESPONSE_ACCEPT], [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1143 fc.transient_for = dialog
1144 fc.current_folder = lastpath
1145 if fc.run == Gtk::Dialog::RESPONSE_ACCEPT
1146 pathlabel.text = fc.filename
1148 lastpath = fc.filename
1151 combo.signal_connect('changed') {
1152 pathbutton.sensitive = combo.active <= 1
1154 vb = Gtk::VBox.new(false, 5)
1155 vb.pack_start(combo, false, false)
1156 vb.pack_start(pathbutton, false, false)
1157 table.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(vb), 3, 4, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1158 { :combo => combo, :pathlabel => pathlabel }
1160 table.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(combo), 3, 4, row, row + 1, Gtk::FILL, Gtk::FILL, 5, 5)
1165 stuff['toremove'] = add_row.call(1, utf8(_("<i>to remove</i>")), $color_red, proc { |entry| entry.removed }, false)
1166 $labels.values.each_with_index { |label, row| stuff[label] = add_row.call(row + 2, label.name, label.color, proc { |entry| entry.labeled == label }, true) }
1167 vb1.pack_start(sw = Gtk::ScrolledWindow.new(nil, nil).add_with_viewport(table).set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC), true, true)
1169 toremove_amount = $allentries.find_all { |entry| entry.removed }.size
1170 toremove_size = commify($allentries.find_all { |entry| entry.removed }.collect { |entry| file_size(entry.path) }.sum / 1024)
1171 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 ]))
1172 if toremove_amount > 0
1173 vb1.pack_start(check_removal, false, false)
1174 stuff['toremove'][:combo].signal_connect('changed') { |widget|
1175 check_removal.sensitive = widget.active == 0
1179 dialog.vbox.add(vb1)
1181 dialog.set_default_size(800, 600)
1182 dialog.add_button(Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL)
1183 dialog.add_button(Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK)
1184 dialog.window_position = Gtk::Window::POS_MOUSE
1185 dialog.transient_for = $main_window
1190 dialog.run { |response|
1191 if response == Gtk::Dialog::RESPONSE_OK
1192 if toremove_amount > 0 && ! check_removal.active? && stuff['toremove'][:combo].active == 0
1193 show_popup(dialog, utf8(_("You have not confirmed that you noticed the permanent removal of the pictures marked for deletion.")))
1198 $labels.values.each { |label| label2entries[label] = [] }
1199 $allentries.each { |entry| entry.labeled and label2entries[entry.labeled] << entry }
1200 stuff.keys.each { |key|
1201 if key.is_a?(Label) && stuff[key][:combo].active <= 1
1202 destination = stuff[key][:pathlabel].text
1203 if destination[0] != ?/
1204 show_popup(dialog, utf8(_("You have not selected a directory where to move/copy %s.") % key.name))
1209 Dir.mkdir(destination)
1210 rescue Errno::EEXIST
1213 st = File.stat(destination)
1215 show_popup(dialog, utf8(_("Directory %s, where to move/copy %s, is not valid or not createable.") % [destination, key.name]))
1219 if ! st.directory? || ! st.writable?
1220 show_popup(dialog, utf8(_("Directory %s, where to move/copy %s, is not valid or not writable.") % [destination, key.name]))
1224 label2entries[key].each { |entry|
1226 File.stat(File.join(destination, File.basename(entry.path)))
1227 show_popup(dialog, utf8(_("Sorry, a file '%s' already exists in directory '%s'.") % [ File.basename(entry.path), destination ]))
1242 stuff.keys.each { |key|
1243 if key.is_a?(Label) && stuff[key][:combo].active <= 1
1244 destination = stuff[key][:pathlabel].text
1245 label2entries[key].each { |entry|
1246 if stuff[key][:combo].active == 0
1247 File.rename(entry.path, File.join(destination, File.basename(entry.path)))
1249 elsif stuff[key][:combo].active == 1
1250 system("cp -dp '#{entry.path}' '#{destination}'")
1257 if stuff['toremove'][:combo].active == 0
1258 $allentries.each { |entry|
1260 File.delete(entry.path)
1266 msg 1, "woops: #{$!}"
1267 show_popup(dialog, utf8(_("Unexpected system call error: '%s'.") % $!))
1269 show_popup(dialog, utf8(_("Successfully moved %d files, copied %d file, and removed %d files.") % [ moved, copied, removed ]))
1283 def update_visibility(entry)
1289 if entry.labeled.button.active?
1295 if $toremove_button.active?
1301 if $unlabelled_button.active?
1309 def update_all_visibilities
1310 $allentries.each { |entry|
1311 update_visibility(entry)
1313 shown = $mainview.get_shown_entry
1317 while shown.button && ! shown.button.visible? && shown != $allentries.last
1318 shown = $allentries[$allentries.index(shown) + 1]
1320 if shown.button && shown.button.visible?
1321 shown.button.grab_focus
1324 $allentries.reverse.each { |entry|
1325 if entry.button && entry.button.visible?
1326 entry.button.grab_focus
1333 dialog = Gtk::Dialog.new(utf8(_("Edit preferences")),
1335 Gtk::Dialog::MODAL | Gtk::Dialog::DESTROY_WITH_PARENT,
1336 [Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK],
1337 [Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_CANCEL])
1339 tooltips = Gtk::Tooltips.new
1341 dialog.vbox.add(tbl = Gtk::Table.new(0, 0, false))
1342 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Command for watching videos: ")))),
1343 0, 1, 0, 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1344 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)),
1345 1, 2, 0, 1, Gtk::FILL, Gtk::SHRINK, 2, 2)
1346 tooltips.set_tip(video_viewer_entry, utf8(_("Use %f to specify the filename;\nfor example: /usr/bin/mplayer %f")), nil)
1348 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Browser's command: ")))),
1349 0, 1, 1, 2, Gtk::FILL, Gtk::SHRINK, 2, 2)
1350 tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(browser_entry = Gtk::Entry.new.set_text($config['browser'])),
1351 1, 2, 1, 2, Gtk::FILL, Gtk::SHRINK, 2, 2)
1352 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)
1354 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Preloading distance: ")))),
1355 0, 1, 2, 3, Gtk::FILL, Gtk::SHRINK, 2, 2)
1356 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)),
1357 1, 2, 2, 3, Gtk::FILL, Gtk::SHRINK, 2, 2)
1358 tooltips.set_tip(preload_distance, utf8(_("Amount of pictures preloaded left and right to the currently shown")), nil)
1360 tbl.attach(Gtk::Alignment.new(1, 0.5, 0, 0).add(Gtk::Label.new.set_markup(utf8(_("Cache memory use: ")))),
1361 0, 1, 3, 4, Gtk::FILL, Gtk::SHRINK, 2, 2)
1362 tbl.attach(Gtk::Alignment.new(0, 0.5, 1, 0).add(cache_vbox = Gtk::VBox.new(false, 0)),
1363 1, 2, 3, 4, Gtk::FILL, Gtk::SHRINK, 2, 2)
1364 cache_vbox.pack_start(Gtk::HBox.new(false, 0).pack_start(cache_memfree_radio = Gtk::RadioButton.new(''), false, false).
1365 pack_start(cache_memfree_spin = Gtk::SpinButton.new(0, 100, 10), false, false).
1366 pack_start(cache_memfree_label = Gtk::Label.new(utf8(_("% of free memory"))), false, false), false, false)
1367 cache_memfree_spin.signal_connect('value-changed') { cache_memfree_radio.active = true }
1368 tooltips.set_tip(cache_memfree_spin, utf8(_("Percentage of free memory (+ buffers/cache) measured at startup")), nil)
1369 cache_vbox.pack_start(Gtk::HBox.new(false, 0).pack_start(cache_specify_radio = Gtk::RadioButton.new(cache_memfree_radio, ''), false, false).
1370 pack_start(cache_specify_spin = Gtk::SpinButton.new(0, 4000, 50), false, false).
1371 pack_start(cache_specify_label = Gtk::Label.new(utf8(_("MB"))).set_sensitive(false), false, false), false, false)
1372 cache_specify_spin.signal_connect('value-changed') { cache_specify_radio.active = true }
1373 cache_memfree_radio.signal_connect('toggled') {
1374 if cache_memfree_radio.active?
1375 cache_memfree_label.sensitive = true
1376 cache_specify_label.sensitive = false
1378 cache_specify_label.sensitive = true
1379 cache_memfree_label.sensitive = false
1382 tooltips.set_tip(cache_specify_spin, utf8(_("Amount of memory in megabytes")), nil)
1383 if $config['cache-memory-use'] =~ /memfree_(\d+)/
1384 cache_memfree_spin.value = $1.to_i
1386 cache_specify_spin.value = $config['cache-memory-use'].to_i
1389 tbl.attach(update_exif_orientation_check = Gtk::CheckButton.new(utf8(_("Update file's EXIF orientation when rotating a picture"))),
1390 0, 2, 4, 5, Gtk::FILL, Gtk::SHRINK, 2, 2)
1391 tooltips.set_tip(update_exif_orientation_check, utf8(_("When rotating a picture (Alt-Right/Left), also update EXIF orientation in the file itself")), nil)
1392 update_exif_orientation_check.active = $config['rotate-set-exif'] == 'true'
1394 dialog.vbox.show_all
1395 dialog.run { |response|
1396 if response == Gtk::Dialog::RESPONSE_OK
1397 $config['video-viewer'] = from_utf8(video_viewer_entry.text)
1398 $config['browser'] = from_utf8(browser_entry.text)
1399 $config['preload-distance'] = preload_distance.value
1400 $config['rotate-set-exif'] = update_exif_orientation_check.active?.to_s
1401 if cache_memfree_radio.active?
1402 $config['cache-memory-use'] = "memfree_#{cache_memfree_spin.value}%"
1404 $config['cache-memory-use'] = cache_specify_spin.value
1406 set_cache_memory_use_figure
1413 if $undo_mb.sensitive?
1414 $redo_mb.sensitive = true
1415 if not more_undoes = UndoHandler.undo($statusbar)
1416 $undo_mb.sensitive = false
1422 if $redo_mb.sensitive?
1423 $undo_mb.sensitive = true
1424 if not more_redoes = UndoHandler.redo($statusbar)
1425 $redo_mb.sensitive = false
1432 mb = Gtk::MenuBar.new
1434 filemenu = Gtk::MenuItem.new(utf8(_("_File")))
1435 filesubmenu = Gtk::Menu.new
1436 filesubmenu.append(open = Gtk::ImageMenuItem.new(Gtk::Stock::OPEN))
1437 filesubmenu.append( Gtk::SeparatorMenuItem.new)
1438 filesubmenu.append($execute = Gtk::ImageMenuItem.new(Gtk::Stock::EXECUTE).set_sensitive(false))
1439 filesubmenu.append( Gtk::SeparatorMenuItem.new)
1440 filesubmenu.append(quit = Gtk::ImageMenuItem.new(Gtk::Stock::QUIT))
1441 filemenu.set_submenu(filesubmenu)
1444 open.signal_connect('activate') { open_dir_popup }
1445 $execute.signal_connect('activate') { execute }
1446 quit.signal_connect('activate') { try_quit }
1448 editmenu = Gtk::MenuItem.new(utf8(_("_Edit")))
1449 editsubmenu = Gtk::Menu.new
1450 editsubmenu.append($undo_mb = Gtk::ImageMenuItem.new(Gtk::Stock::UNDO).set_sensitive(false))
1451 editsubmenu.append($redo_mb = Gtk::ImageMenuItem.new(Gtk::Stock::REDO).set_sensitive(false))
1452 editsubmenu.append( Gtk::SeparatorMenuItem.new)
1453 editsubmenu.append(prefs = Gtk::ImageMenuItem.new(Gtk::Stock::PREFERENCES))
1454 editmenu.set_submenu(editsubmenu)
1457 $undo_mb.signal_connect('activate') { perform_undo }
1458 $redo_mb.signal_connect('activate') { perform_redo }
1459 prefs.signal_connect('activate') { preferences }
1461 helpmenu = Gtk::MenuItem.new(utf8(_("_Help")))
1462 helpsubmenu = Gtk::Menu.new
1463 helpsubmenu.append(tutos = Gtk::ImageMenuItem.new(utf8(_("Online tutorials (opens a web-browser)"))))
1464 tutos.image = Gtk::Image.new("#{$FPATH}/images/stock-web-16.png")
1465 helpsubmenu.append(Gtk::SeparatorMenuItem.new)
1466 helpsubmenu.append(about = Gtk::ImageMenuItem.new(Gtk::Stock::ABOUT))
1467 helpmenu.set_submenu(helpsubmenu)
1470 tutos.signal_connect('activate') { open_url('http://booh.org/tutorial.html') }
1471 about.signal_connect('activate') { call_about }
1474 #- no toolbar, to save height
1480 for child in $labels_vbox.children
1481 $labels_vbox.remove(child)
1483 $labels_vbox.pack_start(Gtk::Label.new(utf8(_("Labels list:"))).set_justify(Gtk::Justification::CENTER), false, false).show_all
1485 lbl = Gtk::Label.new.set_markup(utf8(_("<i>unlabelled</i>")))
1486 $labels_vbox.pack_start($unlabelled_button = Gtk::CheckButton.new.add(Gtk::EventBox.new.add(lbl)).show_all)
1487 $unlabelled_button.active = true
1488 $unlabelled_button.signal_connect('toggled') { update_all_visibilities }
1489 lbl = Gtk::Label.new.set_markup(utf8(_("<i>to remove</i>")))
1490 $labels_vbox.pack_start($toremove_button = Gtk::CheckButton.new.add(evt = Gtk::EventBox.new.add(lbl)).show_all)
1491 $toremove_button.active = true
1492 $toremove_button.signal_connect('toggled') { update_all_visibilities }
1493 evt.modify_bg(Gtk::StateType::NORMAL, $color_red)
1494 evt.modify_bg(Gtk::StateType::PRELIGHT, $color_red.lighter.lighter)
1495 evt.modify_bg(Gtk::StateType::ACTIVE, $color_red.lighter)
1498 def reset_thumbnails
1500 for child in $imagesline.children
1501 $imagesline.remove(child)
1505 def create_main_window
1507 $videoborder_pixbuf = Gdk::Pixbuf.new("#{$FPATH}/images/video_border.png")
1508 $videoborder_pixmap, = $videoborder_pixbuf.render_pixmap_and_mask(0)
1512 main_vbox = Gtk::VBox.new(false, 0)
1513 main_vbox.pack_start(mb, false, false)
1514 mainview_hbox = Gtk::HBox.new
1515 mainview_hbox.pack_start(Gtk::Alignment.new(0.5, 0, 0, 0).add($labels_vbox = Gtk::VBox.new(false, 5)), false, true)
1517 mainview_hbox.pack_start($mainview = MainView.new, true, true)
1518 main_vbox.pack_start(mainview_hbox, true, true)
1519 $imagesline_sw = Gtk::ScrolledWindow.new(nil, nil)
1520 $imagesline_sw.set_policy(Gtk::POLICY_ALWAYS, Gtk::POLICY_NEVER)
1521 $imagesline_sw.add_with_viewport($imagesline = Gtk::HBox.new(false, 0).show)
1522 main_vbox.pack_start($imagesline_sw, false, false)
1523 main_vbox.pack_end($statusbar = Gtk::Statusbar.new, false, false)
1525 $imagesline.set_size_request(-1, Gtk::Button.new.size_request[1] + Entry.thumbnails_height + 15)
1527 $main_window = Gtk::Window.new
1528 $main_window.add(main_vbox)
1529 $main_window.signal_connect('delete-event') {
1530 try_quit({ :disallow_cancel => true })
1533 #- read/save size and position of window
1534 if $config['pos-x'] && $config['pos-y']
1535 $main_window.move($config['pos-x'].to_i, $config['pos-y'].to_i)
1537 $main_window.window_position = Gtk::Window::POS_CENTER
1539 msg 3, "size: #{$config['width']}x#{$config['height']}"
1540 $main_window.set_default_size(($config['width'] || 700).to_i, ($config['height'] || 600).to_i)
1541 $main_window.signal_connect('configure-event') {
1542 msg 3, "configure: pos: #{$main_window.window.root_origin.inspect} size: #{$main_window.window.size.inspect}"
1543 x, y = $main_window.window.root_origin
1544 width, height = $main_window.window.size
1545 $config['pos-x'] = x
1546 $config['pos-y'] = y
1547 $config['width'] = width
1548 $config['height'] = height
1552 $protect_gtk_pending_calls = Mutex.new
1553 $gtk_pending_calls = []
1554 Gtk.timeout_add(50) {
1559 $main_window.show_all
1564 Thread.abort_on_exception = true