else
evas_object_color_set(o, 0, 0, (color->b += COLOR_INCREMENT), 255);
evas_object_repeat_events_set(o, 1);
- evas_object_layer_set(o, E_LAYER_MENU - 1);
+ evas_object_layer_set(o, E_LAYER_EFFECT - 1);
evas_object_move(o, rect->x, rect->y);
evas_object_resize(o, rect->w, rect->h);
e_comp->debug_rects = eina_list_append(e_comp->debug_rects, o);
case E_LAYER_CLIENT_NOTIFICATION_TOP: strncpy(buff, "E_LAYER_CLIENT_NOTIFICATION_TOP", buff_size); break;
case E_LAYER_CLIENT_ALERT: strncpy(buff, "E_LAYER_CLIENT_ALERT", buff_size); break;
case E_LAYER_POPUP: strncpy(buff, "E_LAYER_POPUP", buff_size); break;
+ case E_LAYER_EFFECT: strncpy(buff, "E_LAYER_EFFECT", buff_size); break;
case E_LAYER_MENU: strncpy(buff, "E_LAYER_MENU", buff_size); break;
case E_LAYER_DESKLOCK: strncpy(buff, "E_LAYER_DESKLOCK", buff_size); break;
case E_LAYER_MAX: strncpy(buff, "E_LAYER_MAX", buff_size); break;
E_LAYER_CLIENT_NOTIFICATION_TOP = 800,
E_LAYER_CLIENT_ALERT = 850,
E_LAYER_POPUP = 999, // popups
+ E_LAYER_EFFECT = 1999,
E_LAYER_MENU = 5000, // menus
E_LAYER_DESKLOCK = 9999, // desklock
E_LAYER_MAX = 32767 // EVAS_LAYER_MAX
case 18: return E_LAYER_CLIENT_NOTIFICATION_TOP;
case 19: return E_LAYER_CLIENT_ALERT;
case 20: return E_LAYER_POPUP;
- case 21: return E_LAYER_MENU;
- case 22: return E_LAYER_DESKLOCK;
- case 23: return E_LAYER_MAX;
+ case 21: return E_LAYER_EFFECT;
+ case 22: return E_LAYER_MENU;
+ case 23: return E_LAYER_DESKLOCK;
+ case 24: return E_LAYER_MAX;
default: break;
}
return -INT_MAX;
case E_LAYER_CLIENT_NOTIFICATION_TOP: return 18;
case E_LAYER_CLIENT_ALERT: return 19;
case E_LAYER_POPUP: return 20;
- case E_LAYER_MENU: return 21;
- case E_LAYER_DESKLOCK: return 22;
- case E_LAYER_MAX: return 23;
+ case E_LAYER_EFFECT: return 21;
+ case E_LAYER_MENU: return 22;
+ case E_LAYER_DESKLOCK: return 23;
+ case E_LAYER_MAX: return 24;
default: break;
}
return 9999;