evas - proper coding convention.

SVN revision: 66364
This commit is contained in:
ChunEon Park 2011-12-20 07:06:53 +00:00
parent aaff9a4280
commit 9674e97ef5
1 changed files with 13 additions and 8 deletions

View File

@ -21,6 +21,8 @@ _evas_event_object_list_in_get(Evas *e, Eina_List *in,
int x, int y, int *no_rep) int x, int y, int *no_rep)
{ {
Evas_Object *obj; Evas_Object *obj;
int inside;
if (!list) return in; if (!list) return in;
EINA_INLIST_REVERSE_FOREACH(list, obj) EINA_INLIST_REVERSE_FOREACH(list, obj)
{ {
@ -37,9 +39,9 @@ _evas_event_object_list_in_get(Evas *e, Eina_List *in,
if (obj->smart.smart) if (obj->smart.smart)
{ {
int norep = 0; int norep = 0;
int inside;
if (((obj->cur.usemap) && (obj->cur.map) && (obj->cur.map->count == 4))) if ((obj->cur.usemap) && (obj->cur.map) &&
(obj->cur.map->count == 4))
{ {
inside = evas_object_is_in_output_rect(obj, x, y, 1, 1); inside = evas_object_is_in_output_rect(obj, x, y, 1, 1);
if (inside) if (inside)
@ -57,7 +59,8 @@ _evas_event_object_list_in_get(Evas *e, Eina_List *in,
evas_object_smart_members_get_direct(obj), evas_object_smart_members_get_direct(obj),
stop, stop,
obj->cur.geometry.x + obj->cur.map->mx, obj->cur.geometry.x + obj->cur.map->mx,
obj->cur.geometry.y + obj->cur.map->my, &norep); obj->cur.geometry.y + obj->cur.map->my,
&norep);
} }
} }
} }
@ -75,13 +78,15 @@ _evas_event_object_list_in_get(Evas *e, Eina_List *in,
} }
else else
{ {
int inside = evas_object_is_in_output_rect(obj, x, y, 1, 1); inside = evas_object_is_in_output_rect(obj, x, y, 1, 1);
if (((obj->cur.usemap) && (obj->cur.map) && (obj->cur.map->count == 4))) if ((obj->cur.usemap) && (obj->cur.map) &&
(obj->cur.map->count == 4))
{ {
if ((inside) && (!evas_map_coords_get(obj->cur.map, x, y, if ((inside) &&
&(obj->cur.map->mx), (!evas_map_coords_get(obj->cur.map, x, y,
&(obj->cur.map->my), 0))) &(obj->cur.map->mx),
&(obj->cur.map->my), 0)))
{ {
inside = 0; inside = 0;
} }