}
EINTERN void
-e_client_mouse_wheel(E_Client *ec, Evas_Point *output, E_Binding_Event_Wheel *ev)
+e_client_mouse_wheel(E_Client *ec, Evas_Point *output, E_Event_Mouse_Wheel *ev)
{
EINA_SAFETY_ON_NULL_RETURN(ec);
if (action_client) return;
Eina_Bool scroll : 1;
};
-struct E_Binding_Event_Wheel
+struct _E_Event_Mouse_Wheel
{
int direction;
int z;
EINTERN void e_client_mouse_in(E_Client *ec, int x, int y);
EINTERN void e_client_mouse_out(E_Client *ec, int x, int y);
-EINTERN void e_client_mouse_wheel(E_Client *ec, Evas_Point *output, E_Binding_Event_Wheel *ev);
+EINTERN void e_client_mouse_wheel(E_Client *ec, Evas_Point *output, E_Event_Mouse_Wheel *ev);
EINTERN void e_client_mouse_down(E_Client *ec, int button, Evas_Point *output, E_Event_Mouse_Button *ev);
EINTERN void e_client_mouse_up(E_Client *ec, int button, Evas_Point *output, E_Event_Mouse_Button* ev);
EINTERN void e_client_mouse_move(E_Client *ec, Evas_Point *output);
typedef struct _E_Client_Hook E_Client_Hook; // type of e_client.h
typedef struct _E_Event_Mouse_Button E_Event_Mouse_Button;
-typedef struct E_Binding_Event_Wheel E_Binding_Event_Wheel; // type of e_bindings_intern.h FIXME: remove it
+typedef struct _E_Event_Mouse_Wheel E_Event_Mouse_Wheel;
typedef void (*E_Object_Cleanup_Func) (void *obj); // type of e_object.h
{
void (*go)(E_Object *obj, const char *params);
void (*go_mouse)(E_Object *obj, const char *params, E_Event_Mouse_Button *ev);
- void (*go_wheel)(E_Object *obj, const char *params, E_Binding_Event_Wheel *ev);
+ void (*go_wheel)(E_Object *obj, const char *params, E_Event_Mouse_Wheel *ev);
void (*go_key)(E_Object *obj, const char *params, Ecore_Event_Key *ev);
void (*go_signal)(E_Object *obj, const char *params, const char *sig, const char *src);
void (*end)(E_Object *obj, const char *params);