Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_apps.c e_border.c e_intl.c e_ipc_handlers.h e_utils.c 
        e_zone.c e_zone.h 


Log Message:


damn - um... patches from mailing list - fix patch with layer number. da.po -
waiting for da.po i can use.. etc :)

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_apps.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -3 -r1.55 -r1.56
--- e_apps.c    1 Jul 2005 04:41:34 -0000       1.55
+++ e_apps.c    12 Jul 2005 03:53:44 -0000      1.56
@@ -263,8 +263,7 @@
    if (!exe)
      {
        e_error_dialog_show(_("Run Error"),
-                           _("Enlightenment was unable fork a child process\n"
-                             "to run the execute line:\n"
+                           _("Enlightenment was unable fork a child process:\n"
                              "\n"
                              "%s\n"
                              "\n"),
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.327
retrieving revision 1.328
diff -u -3 -r1.327 -r1.328
--- e_border.c  11 Jul 2005 12:31:44 -0000      1.327
+++ e_border.c  12 Jul 2005 03:53:44 -0000      1.328
@@ -5736,7 +5736,7 @@
        mi = e_menu_item_new(m);
        e_menu_item_label_set(mi, _("Always Below"));
        e_menu_item_check_set(mi, 1);
-       e_menu_item_toggle_set(mi, (bd->layer == 0 ? 1 : 0));
+       e_menu_item_toggle_set(mi, (bd->layer == 50 ? 1 : 0));
        e_menu_item_callback_set(mi, _e_border_menu_cb_below, bd);
        e_menu_item_icon_edje_set(mi,
                                  (char 
*)e_theme_edje_file_get("base/theme/borders",
@@ -5991,14 +5991,14 @@
    E_Border *bd;
 
    bd = data;
-   if (bd->layer == 0)
+   if (bd->layer == 50)
      {
        bd->layer = 100;
        e_hints_window_stacking_set(bd, E_STACKING_NONE);
      }
    else
      {
-       bd->layer = 0;
+       bd->layer = 50;
        e_hints_window_stacking_set(bd, E_STACKING_BELOW);
      }
    e_container_border_raise(bd);
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_intl.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- e_intl.c    27 Jun 2005 13:24:56 -0000      1.34
+++ e_intl.c    12 Jul 2005 03:53:55 -0000      1.35
@@ -63,6 +63,7 @@
    ADD_LANG("sl_SI.UTF-8");
    ADD_LANG("it_IT.UTF-8");
    ADD_LANG("cs_CS.UTF-8");
+   ADD_LANG("da_DK.UTF-8");
 
    if ((s = getenv("LC_MESSAGES"))) _e_intl_orig_lc_messages = strdup(s);
    if ((s = getenv("LANGUAGE"))) _e_intl_orig_language = strdup(s);
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_ipc_handlers.h,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -3 -r1.53 -r1.54
--- e_ipc_handlers.h    11 Jul 2005 12:43:27 -0000      1.53
+++ e_ipc_handlers.h    12 Jul 2005 03:53:55 -0000      1.54
@@ -1492,6 +1492,7 @@
    START_INT(value, HDL);
    e_config->use_edge_flip = value;
    E_CONFIG_LIMIT(e_config->use_edge_flip, 0, 1);
+   e_zone_update_flip_all();
    SAVE;
    END_INT;
 #elif (TYPE == E_REMOTE_IN)
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_utils.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- e_utils.c   8 Jul 2005 08:49:34 -0000       1.16
+++ e_utils.c   12 Jul 2005 03:53:55 -0000      1.17
@@ -198,8 +198,7 @@
    if (!exe)
      {
        e_error_dialog_show(_("Run Error"),
-                           _("Enlightenment was unable fork a child process\n"
-                             "to run the execute line:\n"
+                           _("Enlightenment was unable fork a child process:\n"
                              "\n"
                              "%s\n"
                              "\n"),
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_zone.c,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -3 -r1.66 -r1.67
--- e_zone.c    7 Jul 2005 09:27:04 -0000       1.66
+++ e_zone.c    12 Jul 2005 03:53:55 -0000      1.67
@@ -385,6 +385,27 @@
 }
 
 void
+e_zone_update_flip_all(void)
+{
+   Evas_List *l, *ll;
+   E_Manager *man;
+   E_Container *con;
+   E_Zone *zone;
+   
+   for (l = e_manager_list(); l; l = l->next)
+     {
+       man = l->data;
+       for (ll = man->containers; ll; ll = ll->next)
+         {
+            con = ll->data;
+            zone = e_zone_current_get(con);
+            e_zone_update_flip(zone);
+         }
+     }
+}
+
+
+void
 e_zone_desk_flip_by(E_Zone *zone, int dx, int dy)
 {
    dx = zone->desk_x_current + dx;
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_zone.h,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- e_zone.h    1 Jul 2005 08:20:05 -0000       1.29
+++ e_zone.h    12 Jul 2005 03:53:55 -0000      1.30
@@ -75,6 +75,7 @@
 EAPI void       e_zone_desk_count_set(E_Zone *zone, int x_count, int y_count);
 EAPI void       e_zone_desk_count_get(E_Zone *zone, int *x_count, int 
*y_count);
 EAPI void       e_zone_update_flip(E_Zone *zone);
+EAPI void       e_zone_update_flip_all(void);
 EAPI void       e_zone_desk_flip_by(E_Zone *zone, int dx, int dy);
 EAPI void       e_zone_desk_flip_to(E_Zone *zone, int x, int y);
 EAPI void       e_zone_desk_linear_flip_by(E_Zone *zone, int dx);




-------------------------------------------------------
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to