if (!e->pointer.button)
{
Eina_List *ins;
- Eina_List *l;
+ Eina_List *ll;
{
Evas_Event_Mouse_Out ev;
Evas_Object *obj;
ins = evas_event_objects_event_list(e, NULL, e->pointer.x, e->pointer.y);
/* go thru old list of in objects */
copy = evas_event_list_copy(e->pointer.object.in);
- EINA_LIST_FOREACH(copy, l, obj)
+ EINA_LIST_FOREACH(copy, ll, obj)
{
ev.canvas.x = e->pointer.x;
ev.canvas.y = e->pointer.y;
{
while (e->delete_grabs > 0)
{
- Eina_List *l, *l_next;
- Evas_Key_Grab *g;
+ Eina_List *ll, *l_next;
+ Evas_Key_Grab *gr;
e->delete_grabs--;
- EINA_LIST_FOREACH_SAFE(e->grabs, l, l_next, g)
+ EINA_LIST_FOREACH_SAFE(e->grabs, ll, l_next, gr)
{
- if (g->delete_me)
- evas_key_grab_free(g->object, g->keyname, g->modifiers, g->not_modifiers);
+ if (gr->delete_me)
+ evas_key_grab_free(gr->object, gr->keyname, gr->modifiers, gr->not_modifiers);
}
}
}
font = evas->engine.func->font_load(evas->engine.data.output, (char *)nm, size, wanted_rend);
else /* search font path */
{
- Eina_List *l;
+ Eina_List *ll;
char *dir;
- EINA_LIST_FOREACH(evas->font_path, l, dir)
+ EINA_LIST_FOREACH(evas->font_path, ll, dir)
{
const char *f_file;
evas->engine.func->font_add(evas->engine.data.output, font, (char *)nm, size, wanted_rend);
else
{
- Eina_List *l;
+ Eina_List *ll;
char *dir;
- EINA_LIST_FOREACH(evas->font_path, l, dir)
+ EINA_LIST_FOREACH(evas->font_path, ll, dir)
{
const char *f_file;
int *row_max_h;
int *row_break;
int *row_width;
- int off_y;
+ int offset_y;
n_children = eina_list_count(priv->children);
if (!n_children)
evas_object_geometry_get(o, &x, &y, &w, &h);
_evas_object_box_layout_flow_horizontal_row_info_collect
- (priv, w, &row_count, row_max_h, row_break, row_width, &off_y, &max_h);
+ (priv, w, &row_count, row_max_h, row_break, row_width, &offset_y, &max_h);
inc_y = 0;
v_justify = 0;
- remain_y = h - (off_y + max_h);
+ remain_y = h - (offset_y + max_h);
if (remain_y > 0)
{
int *col_max_w;
int *col_break;
int *col_height;
- int off_x;
+ int offset_x;
n_children = eina_list_count(priv->children);
if (!n_children)
evas_object_geometry_get(o, &x, &y, &w, &h);
_evas_object_box_layout_flow_vertical_col_info_collect
- (priv, h, &col_count, col_max_w, col_break, col_height, &off_x, &max_w);
+ (priv, h, &col_count, col_max_w, col_break, col_height, &offset_x, &max_w);
inc_x = 0;
- remain_x = w - (off_x + max_w);
+ remain_x = w - (offset_x + max_w);
if (remain_x > 0)
{
}
else
{
- int x1[4], y1[4], i, j;
+ int pt_x[4], pt_y[4], i, j;
if (x < xx)
{
- x1[0] = x;
- x1[1] = xx;
+ pt_x[0] = x;
+ pt_x[1] = xx;
}
else
{
- x1[0] = xx;
- x1[1] = x;
+ pt_x[0] = xx;
+ pt_x[1] = x;
}
if ((x + w) < (xx + ww))
{
- x1[2] = x + w;
- x1[3] = xx + ww;
+ pt_x[2] = x + w;
+ pt_x[3] = xx + ww;
}
else
{
- x1[2] = xx + ww;
- x1[3] = x + w;
+ pt_x[2] = xx + ww;
+ pt_x[3] = x + w;
}
if (y < yy)
{
- y1[0] = y;
- y1[1] = yy;
+ pt_y[0] = y;
+ pt_y[1] = yy;
}
else
{
- y1[0] = yy;
- y1[1] = y;
+ pt_y[0] = yy;
+ pt_y[1] = y;
}
if ((y + h) < (yy + hh))
{
- y1[2] = y + h;
- y1[3] = yy + hh;
+ pt_y[2] = y + h;
+ pt_y[3] = yy + hh;
}
else
{
- y1[2] = yy + hh;
- y1[3] = y + h;
+ pt_y[2] = yy + hh;
+ pt_y[3] = y + h;
}
for (j = 0; j < 3; j++)
{
int intsec1, intsec2;
int tx, ty, tw, th;
- tx = x1[i];
- ty = y1[j];
- tw = x1[i + 1] - x1[i];
- th = y1[j + 1] - y1[j];
+ tx = pt_x[i];
+ ty = pt_y[j];
+ tw = pt_x[i + 1] - pt_x[i];
+ th = pt_y[j + 1] - pt_y[j];
intsec1 = (RECTS_INTERSECT(tx, ty, tw, th, x, y, w, h));
intsec2 = (RECTS_INTERSECT(tx, ty, tw, th, xx, yy, ww, hh));
}
if (obj->smart.smart)
{
- Evas_Object *obj2;
+ Evas_Object *o2;
- EINA_INLIST_FOREACH(evas_object_smart_members_get_direct(obj), obj2)
+ EINA_INLIST_FOREACH(evas_object_smart_members_get_direct(obj), o2)
{
- if (!evas_object_is_visible(obj2) &&
- !evas_object_was_visible(obj2))
+ if (!evas_object_is_visible(o2) &&
+ !evas_object_was_visible(o2))
{
- obj2->changed = 0;
- obj2->changed_move_only = 0;
- obj2->changed_nomove = 0;
- obj2->changed_move = 0;
+ o2->changed = 0;
+ o2->changed_move_only = 0;
+ o2->changed_nomove = 0;
+ o2->changed_move = 0;
continue;
}
- if (obj2->changed)
+ if (o2->changed)
{
-// chlist(obj2, 0);
+// chlist(o2, 0);
changed = 1;
- obj2->changed = 0;
- obj2->changed_move_only = 0;
- obj2->changed_nomove = 0;
- obj2->changed_move = 0;
+ o2->changed = 0;
+ o2->changed_move_only = 0;
+ o2->changed_nomove = 0;
+ o2->changed_move = 0;
break;
}
}