return ecore_event_evas_mouse_movep(data, type, event);
}
-
-
-/*
-void evas_event_feed_mouse_down(Evas *e, int b, Evas_Button_Flags flags,
- unsigned int timestamp, const void *data)
-{
- static void (*evas_event_feed_mouse_downp)(Evas *e, int b, Evas_Button_Flags flags, unsigned int timestamp, const void *data);
-
- probeInfo_t probeInfo;
-
- GET_REAL_FUNC(evas_event_feed_mouse_down, LIBEVAS);
-
- PRE_UNCONDITIONAL_BLOCK_BEGIN();
- HW_EVENT_LOG(_EVENT_TOUCH, _TOUCH_PRESSED, )
- PRE_UNCONDITIONAL_BLOCK_END();
-
-
- DECLARE_VARIABLE_EVENT;
- int x, y;
-
- PRE_PROBEBLOCK_BEGIN_EVENT(evas_event_feed_mouse_down, LIBEVAS, EVENT_TYPE_DOWN);
- evas_pointer_output_xy_get(e, &x, &y);
- PRE_PROBEBLOCK_END_EVENT();
-
- evas_event_feed_mouse_downp(e, b, flags, timestamp, data);
-
- AFTER_ORIGINAL_EVENT(EVENT_TYPE_DOWN, "%d", b);
-}
-
-void evas_event_feed_mouse_up(Evas *e, int b, Evas_Button_Flags flags,
- unsigned int timestamp, const void *data)
-{
- static void (*evas_event_feed_mouse_upp)(Evas *e, int b, Evas_Button_Flags flags, unsigned int timestamp, const void *data);
-
- DECLARE_VARIABLE_EVENT;
- int x, y;
-
- PRE_PROBEBLOCK_BEGIN_EVENT(evas_event_feed_mouse_up, LIBEVAS, EVENT_TYPE_UP);
- evas_pointer_output_xy_get(e, &x, &y);
- PRE_PROBEBLOCK_END_EVENT();
-
- evas_event_feed_mouse_upp(e, b, flags, timestamp, data);
-
- AFTER_ORIGINAL_EVENT(EVENT_TYPE_UP, "%d", b);
-}
-
-void evas_event_feed_mouse_move(Evas *e, int x, int y,
- unsigned int timestamp, const void *data)
-{
- static void (*evas_event_feed_mouse_movep)(Evas *e, int x, int y, unsigned int timestamp, const void *data);
-
- BEFORE_ORIGINAL_EVENT(evas_event_feed_mouse_move, LIBEVAS, EVENT_TYPE_MOVE);
-
- evas_event_feed_mouse_movep(e, x, y, timestamp, data);
-
- AFTER_ORIGINAL_EVENT(EVENT_TYPE_MOVE, "%u", timestamp);
-}
-
-void evas_event_feed_multi_down(Evas *e, int d, int x, int y,
- double rad, double radx, double rady,
- double pres, double ang, double fx, double fy,
- Evas_Button_Flags flags, unsigned int timestamp, const void *data)
-{
- static void (*evas_event_feed_multi_downp)(Evas *e, int d, int x, int y, double rad, double radx, double rady, double pres, double ang, double fx, double fy, Evas_Button_Flags flags, unsigned int timestamp, const void *data);
-
- BEFORE_ORIGINAL_EVENT(evas_event_feed_multi_down, LIBEVAS, EVENT_TYPE_DOWN);
-
- evas_event_feed_multi_downp(e, d, x, y, rad, radx,
- rady, pres, ang, fx, fy, flags, timestamp, data);
-
- AFTER_ORIGINAL_EVENT(EVENT_TYPE_DOWN, "%d", d);
-}
-
-void evas_event_feed_multi_up(Evas *e, int d, int x, int y, double rad, double radx,
- double rady, double pres, double ang, double fx, double fy,
- Evas_Button_Flags flags, unsigned int timestamp, const void *data)
-{
- static void (*evas_event_feed_multi_upp)(Evas *e, int d, int x, int y, double rad, double radx, double rady, double pres, double ang, double fx, double fy, Evas_Button_Flags flags, unsigned int timestamp, const void *data);
-
- BEFORE_ORIGINAL_EVENT(evas_event_feed_multi_up, LIBEVAS, EVENT_TYPE_UP);
-
- evas_event_feed_multi_upp(e, d, x, y, rad, radx, rady,
- pres, ang, fx, fy, flags, timestamp, data);
-
- AFTER_ORIGINAL_EVENT(EVENT_TYPE_UP, "%d", d);
-}
-
-void evas_event_feed_multi_move (Evas *e, int d, int x, int y, double rad, double radx,
- double rady, double pres, double ang, double fx, double fy,
- unsigned int timestamp, const void *data)
-{
- static void (*evas_event_feed_multi_movep)(Evas *e, int d, int x, int y, double rad, double radx, double rady, double pres, double ang, double fx, double fy, unsigned int timestamp, const void *data);
-
- BEFORE_ORIGINAL_EVENT(evas_event_feed_multi_move, LIBEVAS, EVENT_TYPE_MOVE);
-
- evas_event_feed_multi_movep(e, d, x, y, rad, radx, rady,
- pres, ang, fx, fy, timestamp, data);
-
- AFTER_ORIGINAL_EVENT(EVENT_TYPE_MOVE, "%d", d);
-}
-*/