Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/modules/ibox


Modified Files:
        e_mod_main.c 


Log Message:

****** MAJOR THEME REWORKING -- BREAKAGE *********

Almost every signal and required part name has changed. This means that ALL 
themes other than the default one are now broken. Sorry, but this had to happen.

I have a list of mappings from old to new at 
http://rephorm.com/files/dump/e_theme_map.txt

There will probably be a little more cleanup on this in the coming days. Then 
I'll write it all up in a nice theme spec.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/modules/ibox/e_mod_main.c,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -3 -r1.62 -r1.63
--- e_mod_main.c        9 Aug 2006 06:38:34 -0000       1.62
+++ e_mod_main.c        22 Aug 2006 07:39:11 -0000      1.63
@@ -533,11 +533,11 @@
    char *label;
    
    ic->o_icon = e_border_icon_add(ic->border, 
evas_object_evas_get(ic->ibox->o_box));
-   edje_object_part_swallow(ic->o_holder, "item", ic->o_icon);
+   edje_object_part_swallow(ic->o_holder, "e.swallow.content", ic->o_icon);
    evas_object_pass_events_set(ic->o_icon, 1);
    evas_object_show(ic->o_icon);
    ic->o_icon2 = e_border_icon_add(ic->border, 
evas_object_evas_get(ic->ibox->o_box));
-   edje_object_part_swallow(ic->o_holder2, "item", ic->o_icon2);
+   edje_object_part_swallow(ic->o_holder2, "e.swallow.content", ic->o_icon2);
    evas_object_pass_events_set(ic->o_icon2, 1);
    evas_object_show(ic->o_icon2);
    
@@ -559,8 +559,8 @@
      }
    
    if (!label) label = "?";
-   edje_object_part_text_set(ic->o_holder, "label", label);
-   edje_object_part_text_set(ic->o_holder2, "label", label);
+   edje_object_part_text_set(ic->o_holder, "e.text.label", label);
+   edje_object_part_text_set(ic->o_holder2, "e.text.label", label);
 }
 
 static void
@@ -646,9 +646,9 @@
    
    ev = event_info;
    ic = data;
-   _ibox_icon_signal_emit(ic, "active", "");
+   _ibox_icon_signal_emit(ic, "e,state,focused", "e");
    if (ic->ibox->show_label)
-     _ibox_icon_signal_emit(ic, "label_active", "");
+     _ibox_icon_signal_emit(ic, "e,action,show,label", "e");
 }
 
 static void
@@ -659,9 +659,9 @@
    
    ev = event_info;
    ic = data;
-   _ibox_icon_signal_emit(ic, "passive", "");
+   _ibox_icon_signal_emit(ic, "e,state,unfocused", "e");
    if (ic->ibox->show_label)
-     _ibox_icon_signal_emit(ic, "label_passive", "");
+     _ibox_icon_signal_emit(ic, "e,action,hide,label", "e");
 }
 
 static void



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to