code cleanup
[embrace.git] / bin / embrace
index c657e7d6e3fc24166a654b592505e88bba3d8eb3..5673f88c9a701cd72204b8cf822134d70c967e8a 100755 (executable)
@@ -117,9 +117,9 @@ module Embrace
                        @label = Evas::Text.new(evas)
 
                        @objects = [@img, @label]
+                       @objects.each { |o| add_member(o) }
 
                        @img.set_color(255, 255, 255, 0)
-                       @label.set_color(255, 255, 255, 0)
                        @label.set_color(255, 0, 0, 0)
 
                        @img.set_file(ICON_FILE)
@@ -159,18 +159,6 @@ module Embrace
                        @img = @label = @alpha_anim = nil
                end
 
-               def on_layer_set(layer)
-                       @objects.each { |o| o.layer = layer }
-               end
-
-               def on_stack_above(other)
-                       @objects.each { |o| o.stack_above = other }
-               end
-
-               def on_stack_below(other)
-                       @objects.each { |o| o.stack_below = other }
-               end
-
                def on_move(x, y)
                        @objects.each { |o| o.move(x, y) }
 
@@ -217,6 +205,8 @@ module Embrace
                        @bg = Evas::Rectangle.new(evas)
                        @bg.set_color(0, 0, 0, 255)
 
+                       add_member(@bg)
+
                        @icons = FixedSizeArray.new(MAX_ICONS)
                        @about_to_add = []
                        @animators = []
@@ -285,10 +275,6 @@ module Embrace
                        end
                end
 
-               def length
-                       @icons.nitems
-               end
-
                # smart callbacks
                def on_show
                        @bg.show
@@ -303,18 +289,6 @@ module Embrace
                        @bg = nil
                end
 
-               def on_layer_set(layer)
-                       @bg.layer = layer
-               end
-
-               def on_stack_above(other)
-                       @bg.stack_above = other
-               end
-
-               def on_stack_below(other)
-                       @bg.stack_below = other
-               end
-
                def on_move(x, y)
                        @bg.move(x, y)
                end
@@ -341,12 +315,12 @@ module Embrace
                def initialize
                        super
 
-                       self.title = "blah"
+                       self.title = "Embrace"
                        self.borderless = true
 
                        @icon_dim = IO.read(ICON_FILE, 8, 16).unpack("NN")
 
-                       self.on_resize { @container.resize(*geometry[2, 3]) }
+                       on_resize { @container.resize(*geometry[2, 3]) }
 
                        @container = Container.new(evas)
                        @container.move(0, 0)