filter more

SVN revision: 10801
This commit is contained in:
Carsten Haitzler 2004-07-13 04:01:31 +00:00
parent 1753eaa65f
commit 7ba861d97e
1 changed files with 2 additions and 0 deletions

View File

@ -211,6 +211,7 @@ _ecore_evas_event_mouse_in(void *data, int type, void *event)
ee = _ecore_evas_x_match(e->win);
if (!ee) return 1; /* pass on event */
if (e->event_win == ee->engine.x.win_container) return 0;
if (e->mode != ECORE_X_EVENT_MODE_NORMAL) return 0;
if (ee->func.fn_mouse_in) ee->func.fn_mouse_in(ee);
_ecore_evas_modifier_locks_update(ee, e->modifiers);
evas_event_feed_mouse_in(ee->evas);
@ -228,6 +229,7 @@ _ecore_evas_event_mouse_out(void *data, int type, void *event)
ee = _ecore_evas_x_match(e->win);
if (!ee) return 1; /* pass on event */
if (e->event_win == ee->engine.x.win_container) return 0;
if (e->mode != ECORE_X_EVENT_MODE_NORMAL) return 0;
_ecore_evas_modifier_locks_update(ee, e->modifiers);
_ecore_evas_mouse_move_process(ee, e->x, e->y);
evas_event_feed_mouse_out(ee->evas);