|
|
|
@ -258,7 +258,7 @@ _ui_select(void) |
|
|
|
|
static Eina_Bool |
|
|
|
|
_ui_key(void *data EINA_UNUSED, const Eo_Event *event) |
|
|
|
|
{ |
|
|
|
|
Evas_Event_Key_Down *ev = event->event_info; |
|
|
|
|
Evas_Event_Key_Down *ev = event->info; |
|
|
|
|
|
|
|
|
|
if (key_func) |
|
|
|
|
{ |
|
|
|
@ -297,7 +297,7 @@ static int down_menu_sel = 0; |
|
|
|
|
static Eina_Bool |
|
|
|
|
_ui_mouse_down(void *data EINA_UNUSED, const Eo_Event *event) |
|
|
|
|
{ |
|
|
|
|
Evas_Event_Mouse_Down *ev = event->event_info; |
|
|
|
|
Evas_Event_Mouse_Down *ev = event->info; |
|
|
|
|
|
|
|
|
|
if (ev->button != 1) return EINA_TRUE; |
|
|
|
|
if (menu_active) |
|
|
|
@ -313,7 +313,7 @@ _ui_mouse_down(void *data EINA_UNUSED, const Eo_Event *event) |
|
|
|
|
static Eina_Bool |
|
|
|
|
_ui_mouse_up(void *data EINA_UNUSED, const Eo_Event *event) |
|
|
|
|
{ |
|
|
|
|
Evas_Event_Mouse_Up *ev = event->event_info; |
|
|
|
|
Evas_Event_Mouse_Up *ev = event->info; |
|
|
|
|
|
|
|
|
|
if (ev->button != 1) return EINA_TRUE; |
|
|
|
|
if (menu_active) |
|
|
|
@ -338,7 +338,7 @@ _ui_mouse_up(void *data EINA_UNUSED, const Eo_Event *event) |
|
|
|
|
static Eina_Bool |
|
|
|
|
_ui_mouse_move(void *data EINA_UNUSED, const Eo_Event *event) |
|
|
|
|
{ |
|
|
|
|
Evas_Event_Mouse_Move *ev = event->event_info; |
|
|
|
|
Evas_Event_Mouse_Move *ev = event->info; |
|
|
|
|
|
|
|
|
|
if (ev->buttons != 1) return EINA_TRUE; |
|
|
|
|
if (menu_active) |
|
|
|
|