Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore_evas


Modified Files:
        ecore_evas_x.c 


Log Message:


working on... keybindings for e17...

===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_evas/ecore_evas_x.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- ecore_evas_x.c      25 Apr 2005 08:28:27 -0000      1.35
+++ ecore_evas_x.c      29 Apr 2005 19:36:18 -0000      1.36
@@ -121,7 +121,7 @@
    if (!ee) return 1; /* pass on event */
    _ecore_evas_modifier_locks_update(ee, e->modifiers);
    evas_event_feed_key_down(ee->evas, e->keyname, e->keysymbol, 
e->key_compose, NULL, NULL);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -135,7 +135,7 @@
    if (!ee) return 1; /* pass on event */
    _ecore_evas_modifier_locks_update(ee, e->modifiers);
    evas_event_feed_key_up(ee->evas, e->keyname, e->keysymbol, e->key_compose, 
NULL, NULL);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -153,7 +153,7 @@
    if (e->double_click) flags |= EVAS_BUTTON_DOUBLE_CLICK;
    if (e->triple_click) flags |= EVAS_BUTTON_TRIPLE_CLICK;
    evas_event_feed_mouse_down(ee->evas, e->button, flags, NULL);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -168,7 +168,7 @@
    _ecore_evas_modifier_locks_update(ee, e->modifiers);   
    _ecore_evas_mouse_move_process(ee, e->x, e->y);
    evas_event_feed_mouse_up(ee->evas, e->button, EVAS_BUTTON_NONE, NULL);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -187,7 +187,7 @@
    _ecore_evas_mouse_move_process(ee, e->x, e->y);
    evas_event_feed_mouse_wheel(ee->evas, e->direction, e->z, NULL);
 
-   return 0; /* don't pass it on */
+   return 1;
 }
 
 static int
@@ -201,7 +201,7 @@
    if (!ee) return 1; /* pass on event */
    _ecore_evas_modifier_locks_update(ee, e->modifiers);
    _ecore_evas_mouse_move_process(ee, e->x, e->y);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -219,7 +219,7 @@
    _ecore_evas_modifier_locks_update(ee, e->modifiers);
    evas_event_feed_mouse_in(ee->evas, NULL);
    _ecore_evas_mouse_move_process(ee, e->x, e->y);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -238,7 +238,7 @@
    evas_event_feed_mouse_out(ee->evas, NULL);
    if (ee->func.fn_mouse_out) ee->func.fn_mouse_out(ee);
    if (ee->prop.cursor.object) evas_object_hide(ee->prop.cursor.object);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -252,7 +252,7 @@
    if (!ee) return 1; /* pass on event */
    ee->prop.focused = 1;
    if (ee->func.fn_focus_in) ee->func.fn_focus_in(ee);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -268,7 +268,7 @@
      ecore_x_window_focus(ee->engine.x.win);
    ee->prop.focused = 0;
    if (ee->func.fn_focus_out) ee->func.fn_focus_out(ee);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -318,7 +318,7 @@
                                    ee->w - e->x - e->w, 
                                    e->h, e->w);
      }
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -332,7 +332,7 @@
    if (!ee) return 1; /* pass on event */
    if (ee->func.fn_destroy) ee->func.fn_destroy(ee);
    ecore_evas_free(ee);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -393,7 +393,7 @@
          }
        if (ee->func.fn_resize) ee->func.fn_resize(ee); 
      }
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -406,7 +406,7 @@
    ee = _ecore_evas_x_match(e->win);
    if (!ee) return 1; /* pass on event */
    if (ee->func.fn_delete_request) ee->func.fn_delete_request(ee);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -421,7 +421,7 @@
    if (ee->visible) return 0; /* dont pass it on */
    ee->visible = 1;
    if (ee->func.fn_show) ee->func.fn_show(ee);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int
@@ -436,7 +436,7 @@
    if (!ee->visible) return 0; /* dont pass it on */
    ee->visible = 0;
    if (ee->func.fn_hide) ee->func.fn_hide(ee);
-   return 0; /* dont pass it on */
+   return 1;
 }
 
 static int




-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to