X-Git-Url: http://git.code-monkey.de/?p=embrace.git;a=blobdiff_plain;f=bin%2Fembrace;h=79d57c892ae374d3498066c19d2e5072e936c11e;hp=eae0994566e2b54c2ca6a499816c95c77b4bcd0b;hb=c0b425d6a1cd0e286d58eca4c1ed415315bd48d2;hpb=8a27016f8a87a13b22cda3f405d28684917dc3f3 diff --git a/bin/embrace b/bin/embrace index eae0994..79d57c8 100755 --- a/bin/embrace +++ b/bin/embrace @@ -27,29 +27,9 @@ require "embrace/imap" PKG_NAME = "embrace" DATADIR = "/usr/local/share/#{PKG_NAME}/" -class Evas::EvasObject - def move_relative(obj, x, y) - # FIXME investigate whether there's an easier way - move(*obj.geometry[0..1].zip([x, y]).map { |(a, b)| a + b }) - end - - def center(obj) - a = geometry - b = obj.geometry - - move_relative(obj, (b[2] / 2) - (a[2] / 2), - (b[3] / 2) - (a[3] / 2)) - end - - def alpha=(alpha) - set_color(*(get_color[0..-2] << alpha)) - end -end - module Embrace VERSION = "0.0.1" ICON_FILE = DATADIR + "l33t_MAI_envelope.png" - MAX_ICONS = 11 class ZeroToOneAnimator < Ecore::Animator def initialize(duration) @@ -81,11 +61,22 @@ module Embrace # an animator that runs for the specified number of seconds, # and yields values between 0 and 255 class AlphaAnimator < ZeroToOneAnimator - def initialize(duration, *objects) + def initialize(duration, object) super(duration) do |v| - objects.each { |o| o.alpha = (255 * v).to_i } + a = compute_alpha(v) + object.set_color(a, a, a, a) end end + + def compute_alpha(v) + (255 * v).to_i + end + end + + class InverseAlphaAnimator < AlphaAnimator + def compute_alpha(v) + super((1.0 - v).abs) + end end class MoveAnimator < ZeroToOneAnimator @@ -105,6 +96,16 @@ module Embrace end class MailboxIcon < Evas::Smart + class FadeOutFinishedEvent < Ecore::Event + attr_reader :icon + + def initialize(icon) + super() + + @icon = icon + end + end + attr_accessor :slot def initialize(evas, label) @@ -121,9 +122,7 @@ module Embrace @objects = [@img, @label] @objects.each { |o| add_member(o) } - set_color(255, 255, 255, 0) - @img.set_color(255, 255, 255, 0) - @label.set_color(255, 0, 0, 0) + set_color(0, 0, 0, 0) @img.set_file(ICON_FILE) @img.set_fill(0, 0, *@img.get_size) @@ -131,17 +130,35 @@ module Embrace @label.text = name @label.set_font("VeraBd", 10) + a = @label.geometry + b = *@img.get_size + + @label_offset_x = (b[0] / 2) - (a[2] / 2) + @label_offset_y = (b[1] / 2) - (a[3] / 2) + resize(*@img.get_size) end - # smart callbacks - def smart_show - @objects.each { |o| o.show } + def fade_in + show @alpha_anim ||= AlphaAnimator.new(2, self) @alpha_anim.on_finished { @alpha_anim = nil } end + def fade_out + @alpha_anim ||= InverseAlphaAnimator.new(2, self) + @alpha_anim.on_finished do + @alpha_anim = nil + FadeOutFinishedEvent.raise(self) + end + end + + # smart callbacks + def smart_show + @objects.each { |o| o.show } + end + def smart_hide @objects.each { |o| o.hide } @@ -159,9 +176,11 @@ module Embrace end def smart_move(x, y) - @objects.each { |o| o.move(x, y) } + @img.move(x, y) - @label.center(self) + # center the label on the image + @label.move(x + @label_offset_x, + y + @label_offset_y) end def smart_resize(w, h) @@ -169,7 +188,8 @@ module Embrace end def smart_color_set(r, g, b, a) - @objects.each { |o| o.alpha = a } + @img.set_color(r, g, b, a) + @label.set_color(r, 0, 0, a) end end @@ -191,6 +211,11 @@ module Embrace @about_to_add = 0 @add_lock_count = 0 + + @handlers = [ + Ecore::EventHandler.new(MailboxIcon::FadeOutFinishedEvent, + &method(:on_icon_fade_out_finished)) + ] end def can_add? @@ -205,10 +230,14 @@ module Embrace Kernel.raise(ContainerFullError) if slots_left.zero? Kernel.raise(ContainerLockedError) unless @add_lock_count.zero? - i.move_relative(self, 0, 0) + geo = geometry + + i.move(geo[0], + geo[1] + geo[3] % Main.instance.icon_height) + i.slot = next_slot i.clip = self - i.show + i.fade_in # check whether we need to need to move this icon if slots_left == 1 @@ -242,16 +271,23 @@ module Embrace Kernel.raise(ContainerLockedError) unless @about_to_add.zero? Kernel.raise(ContainerLockedError) unless @add_lock_count.zero? - # icons that are placed above the one that's deleted need - # to be moved - ar = @icons[(i + 1)..-1] + @add_lock_count += 1 + @icons[i].fade_out + end - @icons[i].delete + def on_icon_fade_out_finished(ev) + i = @icons.index(ev.icon) + ev.icon.delete @icons.delete_at(i) - return if ar.empty? + # icons that are placed above the one that's deleted need + # to be moved. check whether are there any first + if i == @icons.length + @add_lock_count -= 1 + return + end - @add_lock_count += 1 + ar = @icons[i..-1] @animators << MoveAnimator.new(2, Main.instance.icon_height, *ar) @animators.last.on_finished do |ani| @@ -283,8 +319,12 @@ module Embrace end private + def max_icons + geometry.pop / Main.instance.icon_height + end + def slots_left - MAX_ICONS - @icons.nitems - @about_to_add + max_icons - @icons.nitems - @about_to_add end def next_slot @@ -313,7 +353,15 @@ module Embrace @container.layer = -1 @container.show - size = [@icon_dim.first, icon_height * MAX_ICONS] + size = [@icon_dim.first] + + arg = ARGV.shift + if arg.nil? + size << icon_height * 11 + else + size << arg.to_i + end + resize(*size) set_size_min(*size) set_size_max(*size)