From: Tilman Sauerbeck Date: Sun, 24 Sep 2006 09:23:56 +0000 (+0200) Subject: Reworked how the alpha value of the MailboxIcon is set. X-Git-Tag: embrace-0.1.0~14 X-Git-Url: http://git.code-monkey.de/?p=embrace.git;a=commitdiff_plain;h=8a27016f8a87a13b22cda3f405d28684917dc3f3 Reworked how the alpha value of the MailboxIcon is set. --- diff --git a/bin/embrace b/bin/embrace index 6433d04..eae0994 100755 --- a/bin/embrace +++ b/bin/embrace @@ -121,6 +121,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) @@ -137,7 +138,7 @@ module Embrace def smart_show @objects.each { |o| o.show } - @alpha_anim ||= AlphaAnimator.new(2, @img, @label) + @alpha_anim ||= AlphaAnimator.new(2, self) @alpha_anim.on_finished { @alpha_anim = nil } end @@ -166,6 +167,10 @@ module Embrace def smart_resize(w, h) @img.resize(w, h) end + + def smart_color_set(r, g, b, a) + @objects.each { |o| o.alpha = a } + end end class Container < Evas::Smart