[elm_genlist, Elementary.h.in] add elm_genlist_edit_mode_get API
[framework/uifw/elementary.git] / src / lib / elm_genlist.c
index 0120cc2..4dfc86d 100644 (file)
@@ -294,6 +294,7 @@ typedef enum _Elm_Genlist_Item_Move_effect_Mode
    ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND       = (1 << 0),
    ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT     = (1 << 1),
    ELM_GENLIST_ITEM_MOVE_EFFECT_EDIT_MODE    = (1 << 2),
+   ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE       = (1 << 3),
 } Elm_Genlist_Item_Move_effect_Mode;
 
 struct _Widget_Data
@@ -311,22 +312,15 @@ struct _Widget_Data
    Elm_Genlist_Item *last_selected_item;
    Eina_Inlist      *item_cache;
    Elm_Genlist_Item *anchor_item;
-   Elm_Genlist_Item *reorder_it, *reorder_rel;
    Evas_Coord        anchor_y;
    Elm_List_Mode     mode;
    Ecore_Timer      *multi_timer;
    Evas_Coord        prev_x, prev_y, prev_mx, prev_my;
    Evas_Coord        cur_x, cur_y, cur_mx, cur_my;
-   Evas_Coord        reorder_start_y;
    Eina_Bool         mouse_down : 1;
    Eina_Bool         multi_down : 1;
    Eina_Bool         multi_timeout : 1;
    Eina_Bool         multitouched : 1;
-   Ecore_Animator   *item_moving_effect_timer;
-   Evas_Object      *alpha_bg;
-   Elm_Genlist_Item *expand_item;
-   Evas_Coord        expand_item_end;
-   Evas_Coord        expand_item_gap;
    Eina_Bool         on_hold : 1;
    Eina_Bool         multi : 1;
    Eina_Bool         always_select : 1;
@@ -339,7 +333,6 @@ struct _Widget_Data
    Eina_Bool         homogeneous : 1;
    Eina_Bool         clear_me : 1;
    Eina_Bool         swipe : 1;
-   Eina_Bool         auto_scrolled : 1;
    struct
    {
       Evas_Coord x, y;
@@ -352,15 +345,15 @@ struct _Widget_Data
    int               item_width;
    int               item_height;
    int               max_items_per_block;
-   int               move_effect_mode;
-   unsigned int      start_time;
    double            longpress_timeout;
 
    // TODO : refactoring
    Eina_Bool         reorder_mode : 1;
    Eina_Bool         reorder_pan_move : 1;
+   Eina_Bool         reorder_deleted : 1;
    Eina_Bool         effect_mode : 1;
    Eina_Bool         select_all_check : 1;
+   Eina_Bool         auto_scrolled : 1;
    int               edit_mode;
    Edit_Data        *ed;
    Eina_List        *edit_field;
@@ -370,6 +363,15 @@ struct _Widget_Data
    int               total_num;
    int               group_item_width;
    int               group_item_height;
+   Elm_Genlist_Item *reorder_it, *reorder_rel;
+   Evas_Coord        reorder_start_y;
+   Ecore_Animator   *item_moving_effect_timer;
+   Evas_Object      *alpha_bg;
+   Elm_Genlist_Item *expand_item;
+   Evas_Coord        expand_item_end;
+   Evas_Coord        expand_item_gap;
+   int               move_effect_mode;
+   unsigned int      start_time;
 };
 
 struct _Item_Block
@@ -377,7 +379,6 @@ struct _Item_Block
    EINA_INLIST;
    int          count;
    int          num;
-   int          reorder_offset;
    Widget_Data *wd;
    Eina_List   *items;
    Evas_Coord   x, y, w, h, minw, minh;
@@ -387,6 +388,7 @@ struct _Item_Block
    Eina_Bool    updateme : 1;
    Eina_Bool    showme : 1;
    Eina_Bool    must_recalc : 1;
+   int          reorder_offset;
 };
 
 struct _Elm_Genlist_Item
@@ -411,11 +413,8 @@ struct _Elm_Genlist_Item
    Eina_List        *labels, *icons, *states, *icon_objs;
    Ecore_Timer      *long_timer;
    Ecore_Timer      *swipe_timer;
-   Ecore_Animator   *item_moving_effect_timer;
    Evas_Coord        dx, dy;
    Evas_Coord        scrl_x, scrl_y;
-   Evas_Coord        old_scrl_x, old_scrl_y;
-   Evas_Coord        pad_left, pad_right;
 
    Elm_Genlist_Item *rel;
 
@@ -433,7 +432,6 @@ struct _Elm_Genlist_Item
    int         walking;
    int         expanded_depth;
    int         order_num_in;
-   int         list_expanded;
 
    Eina_Bool   before : 1;
 
@@ -457,16 +455,20 @@ struct _Elm_Genlist_Item
    // TODO: refactoring
    Eina_Bool   move_effect_me : 1;
    Eina_Bool   effect_done : 1; 
-   Eina_List *edit_icon_objs;   
+   Eina_Bool   reordering : 1;
+   Eina_Bool   edit_select_check: 1;
+   Eina_Bool   renamed : 1;   
+   Eina_Bool   effect_item_realized : 1;   
+   Eina_Bool   sweeped : 1;
+   Eina_Bool   wassweeped : 1;
+   Eina_List  *edit_icon_objs;   
    Evas_Object *edit_obj;
-   Eina_Bool reordering : 1;
-   Eina_Bool edit_select_check: 1;
-   Eina_Bool renamed : 1;   
-   Eina_Bool effect_item_realized : 1;   
-   Eina_Bool sweeped : 1;
-   Eina_Bool wassweeped : 1;
-   Eina_List *sweep_labels, *sweep_icons, *sweep_icon_objs;
-   int       num;
+   Eina_List  *sweep_labels, *sweep_icons, *sweep_icon_objs;
+   int         num;
+   Ecore_Animator *item_moving_effect_timer;
+   Evas_Coord  old_scrl_x, old_scrl_y;
+   Evas_Coord  pad_left, pad_right;
+   int         list_expanded;
 };
 
 struct _Item_Cache
@@ -508,7 +510,7 @@ static const char *widtype = NULL;
 static void      _item_cache_zero(Widget_Data *wd);
 static void      _del_hook(Evas_Object *obj);
 static void      _theme_hook(Evas_Object *obj);
-//static void _show_region_hook(void *data, Evas_Object *obj);
+static void      _show_region_hook(void *data, Evas_Object *obj);
 static void      _sizing_eval(Evas_Object *obj);
 static void      _item_unrealize(Elm_Genlist_Item *it);
 static void      _item_block_unrealize(Item_Block *itb);
@@ -525,15 +527,14 @@ static Eina_Bool _event_hook(Evas_Object       *obj,
                              void              *event_info);
 static Eina_Bool _deselect_all_items(Widget_Data *wd);
 static void      _pan_calculate(Evas_Object *obj);
+// TODO : refactoring
 static Evas_Object* _create_tray_alpha_bg(const Evas_Object *obj);
 static unsigned int current_time_get();
 static Eina_Bool _item_moving_effect_timer_cb(void *data);
 static int _item_flip_effect_show(Elm_Genlist_Item *it);
 static void _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity);
-static void _effect_item_realize(Elm_Genlist_Item *it);
+static void _effect_item_realize(Elm_Genlist_Item *it, Eina_Bool effect_on);
 static void _effect_item_unrealize(Elm_Genlist_Item *it);
-
-// TODO : refactoring
 static void _item_slide(Elm_Genlist_Item *it, Eina_Bool slide_to_right);
 static void _sweep_finish(void *data, Evas_Object *o, const char *emission, const char *source);
 static void _create_sweep_objs(Elm_Genlist_Item *it);
@@ -541,7 +542,7 @@ static void _delete_sweep_objs(Elm_Genlist_Item *it);
 static void _effect_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after);
 static void _effect_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before);
 static void _group_items_recalc(void *data);
-static void _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked);
+static void _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked, Eina_Bool update_items);
 static void _checkbox_item_select_process(Elm_Genlist_Item *it);
 static void _item_auto_scroll(void *data);
 
@@ -833,17 +834,17 @@ _theme_hook(Evas_Object *obj)
    _sizing_eval(obj);
 }
 
-/*
-   static void
-   _show_region_hook(void *data, Evas_Object *obj)
-   {
+static void
+_show_region_hook(void *data, Evas_Object *obj)
+{
    Widget_Data *wd = elm_widget_data_get(data);
    Evas_Coord x, y, w, h;
    if (!wd) return;
    elm_widget_show_region_get(obj, &x, &y, &w, &h);
-   elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
-   }
- */
+   x += wd->pan_x;
+   y += wd->pan_y;
+   if (y > 0) elm_smart_scroller_child_region_show(wd->scr, x, y, w, h);
+}
 
 static void
 _sizing_eval(Evas_Object *obj)
@@ -916,7 +917,6 @@ _item_hilight(Elm_Genlist_Item *it)
      }
    it->hilighted = EINA_TRUE;
    if (it->wd->select_all_item) evas_object_raise(it->wd->select_all_item->base.view);   
-
 }
 
 static void
@@ -928,8 +928,11 @@ _item_block_del(Elm_Genlist_Item *it)
    itb->items = eina_list_remove(itb->items, it);
    itb->count--;
    itb->changed = EINA_TRUE;
-   if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
-   it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
+   if (!it->wd->reorder_deleted)
+     {
+        if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
+        it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
+     }
    if (itb->count < 1)
      {
         il = EINA_INLIST_GET(itb);
@@ -1044,9 +1047,9 @@ _item_select(Elm_Genlist_Item *it)
    if (it == it->wd->select_all_item) 
      { 
         if(it->wd->select_all_check)
-          _select_all_down_process(it->wd->select_all_item, EINA_FALSE);
+          _select_all_down_process(it->wd->select_all_item, EINA_FALSE, EINA_TRUE);
         else
-          _select_all_down_process(it->wd->select_all_item, EINA_TRUE);                        
+          _select_all_down_process(it->wd->select_all_item, EINA_TRUE, EINA_TRUE);                     
         return;
      }
    if (it->selected)
@@ -1164,21 +1167,10 @@ _mouse_move(void        *data,
              evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
              if (it->wd->select_all_item)
                 sel_all_h = it->wd->select_all_item->h; 
-             if (it_y < oy + sel_all_h) 
-                {
-                  evas_object_move(it->base.view, it->scrl_x+it->pad_left,oy + sel_all_h);
-                  _effect_item_controls(it, it->scrl_x, oy + sel_all_h);
-                }
-             else if (it_y + it->wd->reorder_it->h > oy+oh)
-               {
-                  evas_object_move(it->base.view, it->scrl_x+it->pad_left, oy + oh - it->wd->reorder_it->h);
-                  _effect_item_controls(it, it->scrl_x, oy + oh - it->wd->reorder_it->h);
-               }
-             else
-                {
-                  evas_object_move(it->base.view, it->scrl_x+it->pad_left, it_y);
-                  _effect_item_controls(it, it->scrl_x, it_y);
-                }
+             if (it_y < oy + sel_all_h) _effect_item_controls(it, it->scrl_x, oy + sel_all_h);
+             else if (it_y + it->wd->reorder_it->h > oy+oh) _effect_item_controls(it, it->scrl_x, oy + oh - it->wd->reorder_it->h);
+             else _effect_item_controls(it, it->scrl_x, it_y);
+
              if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
              it->wd->calc_job = ecore_job_add(_calc_job, it->wd);
           }
@@ -1255,7 +1247,8 @@ _mouse_move(void        *data,
 static Eina_Bool
 _long_press(void *data)
 {
-   Elm_Genlist_Item *it = data , *it_tmp;
+   Elm_Genlist_Item *it = data;
+   Elm_Genlist_Item *it_tmp;
    static Eina_Bool done = EINA_FALSE;
    //static Eina_Bool contracted = EINA_FALSE;
    Eina_List *l;   
@@ -1270,6 +1263,7 @@ _long_press(void *data)
      {
         it->wd->reorder_it = it;
         it->wd->reorder_start_y = 0;
+        evas_object_raise(it->edit_obj);
         elm_smart_scroller_hold_set(it->wd->scr, EINA_TRUE);
         edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_start", "elm");
 
@@ -1608,14 +1602,12 @@ _mouse_up(void            *data,
                           _effect_item_move_after(it->wd->reorder_it, it->wd->reorder_rel);
                     }
                }
-         it->wd->reorder_it = it->wd->reorder_rel = NULL;
-         elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
-         edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_end", "elm");
-
-         if (it->wd->calc_job) ecore_job_del(it->wd->calc_job);
-         it->wd->calc_job = ecore_job_add(_calc_job, it->wd); 
-       }
-     }
+            it->wd->reorder_deleted = EINA_FALSE;
+            it->wd->reorder_it = it->wd->reorder_rel = NULL;
+            elm_smart_scroller_hold_set(it->wd->scr, EINA_FALSE);
+            edje_object_signal_emit(it->edit_obj, "elm,action,item,reorder_end", "elm");
+         }
+      }
    if (it->wd->longpressed)
      {
         it->wd->longpressed = EINA_FALSE;
@@ -1753,6 +1745,7 @@ _item_cache_add(Elm_Genlist_Item *it)
 
    it->wd->item_cache_count++;
    itc = calloc(1, sizeof(Item_Cache));
+   if (!itc) return;
    it->wd->item_cache = eina_inlist_prepend(it->wd->item_cache,
                                             EINA_INLIST_GET(itc));
    itc->spacer = it->spacer;
@@ -1842,8 +1835,6 @@ _item_realize(Elm_Genlist_Item *it,
               int               in,
               int               calc)
 {
-   if ((it->realized) || (it->delete_me)) return;
-
    Elm_Genlist_Item *it2;
    const char *stacking;
    const char *treesize;
@@ -1851,13 +1842,14 @@ _item_realize(Elm_Genlist_Item *it,
    int depth, tsize = 20;
    Item_Cache *itc = NULL;
 
+   if ((it->realized) || (it->delete_me)) return;
    it->order_num_in = in;
-
+   if (it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)        calc = EINA_FALSE;
    if (it->nocache)
       it->nocache = EINA_FALSE;
    else
       itc = _item_cache_find(it);
-   if (!it->wd->effect_mode && itc)
+   if ((!it->wd->effect_mode) && (itc))
      {
         it->base.view = itc->base_view;
         itc->base_view = NULL;
@@ -2051,9 +2043,7 @@ _item_realize(Elm_Genlist_Item *it,
                }
           }
         if (it->sweeped)
-          {
-             _create_sweep_objs(it);
-          }
+           _create_sweep_objs(it);
         if (!it->mincalcd)
           {
              Evas_Coord mw = -1, mh = -1;
@@ -2110,8 +2100,11 @@ _item_realize(Elm_Genlist_Item *it,
 
    if (itc) _item_cache_free(itc);
    evas_object_smart_callback_call(it->base.widget, "realized", it);
-   
-   if ((it->wd->edit_mode) && (it->flags != ELM_GENLIST_ITEM_GROUP) && (!calc)) _effect_item_realize(it);
+   if ((it->wd->edit_mode) && (it->flags != ELM_GENLIST_ITEM_GROUP) && ((!it->wd->select_all_item) || ((it->wd->select_all_item) && (it != it->wd->select_all_item))))
+     {
+         _effect_item_realize(it, EINA_FALSE);
+         edje_object_message_signal_process(it->edit_obj);
+     }
 }
 
 static void
@@ -2121,7 +2114,7 @@ _item_unrealize(Elm_Genlist_Item *it)
 
    if (!it->realized) return;
    if (it->wd->reorder_it && it->wd->reorder_it == it) return;
-
+   if (!it->wd->edit_mode && it->hilighted) return;
    evas_object_smart_callback_call(it->base.widget, "unrealized", it);
    if (it->long_timer)
      {
@@ -2139,7 +2132,7 @@ _item_unrealize(Elm_Genlist_Item *it)
         evas_object_del(it->spacer);
         it->spacer = NULL;
      }
-   else 
+   else
       _item_cache_add(it);
    elm_widget_stringlist_free(it->labels);
    it->labels = NULL;
@@ -2153,7 +2146,8 @@ _item_unrealize(Elm_Genlist_Item *it)
    it->states = NULL;
    it->realized = EINA_FALSE;
    it->want_unrealize = EINA_FALSE;
-
+   if (it->wd->edit_field && it->renamed)
+      elm_genlist_item_rename_mode_set(it, EINA_FALSE);
    if (it->wd->edit_mode != ELM_GENLIST_EDIT_MODE_NONE) _effect_item_unrealize(it);
 }
 
@@ -2321,25 +2315,23 @@ _reorder_item_moving_effect_timer_cb(void *data)
         down = EINA_FALSE;
         }
 
-   evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
-   evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->old_scrl_y);
-   evas_object_show(it->base.view);
-
    _effect_item_controls(it,  it->scrl_x, it->old_scrl_y);
 
    _group_items_recalc(it->wd);
    if (!it->wd->reorder_it || it->wd->reorder_pan_move)
      {
-           it->old_scrl_y = it->scrl_y;
-           it->move_effect_me = EINA_FALSE;
-           return ECORE_CALLBACK_CANCEL;
-       }     
+        it->old_scrl_y = it->scrl_y;
+        it->move_effect_me = EINA_FALSE;
+        it->wd->item_moving_effect_timer = NULL;
+        return ECORE_CALLBACK_CANCEL;
+     }
    if ((down && it->old_scrl_y >= it->scrl_y) || (!down && it->old_scrl_y <= it->scrl_y))
-        {
-           it->old_scrl_y = it->scrl_y;
-           it->move_effect_me = EINA_FALSE;
-           return ECORE_CALLBACK_CANCEL;
-        }
+     {
+        it->old_scrl_y = it->scrl_y;
+        it->move_effect_me = EINA_FALSE;
+        it->wd->item_moving_effect_timer = NULL;
+        return ECORE_CALLBACK_CANCEL;
+     }
    return ECORE_CALLBACK_RENEW;
 }
 
@@ -2351,7 +2343,8 @@ _item_block_position(Item_Block *itb,
    Elm_Genlist_Item *it;
    Elm_Genlist_Item *git;
    Evas_Coord y = 0, ox, oy, ow, oh, cvx, cvy, cvw, cvh;
-   int vis = 0, sel_all_h = 0;
+   int vis = 0;
+   int sel_all_h = 0;
    Elm_Genlist_Item *select_all_item = NULL;
 
    evas_object_geometry_get(itb->wd->pan_smart, &ox, &oy, &ow, &oh);
@@ -2361,10 +2354,10 @@ _item_block_position(Item_Block *itb,
    if (itb->wd->select_all_item && 
        (itb->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECT || itb->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECTALL)) 
      {
-         if (itb->wd->select_all_check)
-           edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,del_confirm", "elm");
-         else
-           edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,del,animated,enable", "elm");
+        if (itb->wd->select_all_check)
+           edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,sel_check", "elm");
+        else
+           edje_object_signal_emit(itb->wd->select_all_item->base.view, "elm,state,sel_uncheck", "elm");
 
         select_all_item = itb->wd->select_all_item;
 
@@ -2375,19 +2368,18 @@ _item_block_position(Item_Block *itb,
         y = select_all_item->h;
         sel_all_h = select_all_item->h;
      }
-   
+
    EINA_LIST_FOREACH(itb->items, l, it)
      {
         if (it->delete_me) continue;
         else if (it->wd->reorder_it && it->wd->reorder_it == it) continue;
-        
+
         it->x = 0;
         it->y = y;
         it->w = itb->w;
         it->scrl_x = itb->x + it->x - it->wd->pan_x + ox;
         it->scrl_y = itb->y + it->y - it->wd->pan_y + oy;
 
-        if (it->flags != ELM_GENLIST_ITEM_GROUP || (it->wd->reorder_it ))
         vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
                                    cvx, cvy, cvw, cvh));
         if (it->flags != ELM_GENLIST_ITEM_GROUP || (it->wd->reorder_it ))
@@ -2419,21 +2411,27 @@ _item_block_position(Item_Block *itb,
                                  it->move_effect_me = EINA_TRUE;
                                  it->item_moving_effect_timer = ecore_animator_add(_reorder_item_moving_effect_timer_cb, it);
                               }
-                        
+
                          }
-                      if (!it->move_effect_me )
-                         if (!it->wd->effect_mode || (it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_NONE) || (it->parent == it->wd->expand_item))
-                        {
-                           _effect_item_controls(it,  it->scrl_x, it->scrl_y);
-                           evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
-                           evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->scrl_y);
-                           if(!it->wd->effect_mode || (it->expanded_depth == 0) || (it->parent != it->wd->expand_item) || it->effect_done || (it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_NONE))
-                              evas_object_show(it->base.view);
-                           else
-                              evas_object_hide(it->base.view);
-                           it->old_scrl_x = it->scrl_x;
-                           it->old_scrl_y = it->scrl_y;
-                        }
+                       if (!it->move_effect_me )
+                            if (!it->wd->effect_mode || it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_NONE || ((it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE) && it->parent == it->wd->expand_item))
+                            {
+                              if (it->wd->edit_mode != ELM_GENLIST_EDIT_MODE_NONE)
+                                { 
+                                  _effect_item_controls(it,  it->scrl_x, it->scrl_y);
+                                }
+                              else
+                               {
+                                  evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
+                                  evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->scrl_y);
+                                  if((!it->wd->effect_mode || it->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_NONE) || ((it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_NONE) && (it->old_scrl_y == it->scrl_y)))
+                                     evas_object_show(it->base.view);
+                                  else
+                                     evas_object_hide(it->base.view);
+                               }
+                               it->old_scrl_x = it->scrl_x;
+                               it->old_scrl_y = it->scrl_y;
+                            }
                     }
                   else
                     {
@@ -2444,11 +2442,10 @@ _item_block_position(Item_Block *itb,
           }
         else
           {
-            if (vis) it->want_realize = EINA_TRUE;
+             if (vis) it->want_realize = EINA_TRUE;
           }
         y += it->h;
      }
-
 }
 
 static void
@@ -2549,7 +2546,7 @@ _calc_job(void *data)
       itb->h = itb->minh;
       y += itb->h;
       in += itb->count;
-      if ((showme) && (wd->show_item))
+      if ((showme) && (wd->show_item) && (!wd->show_item->queued))
         {
            wd->show_item->showme = EINA_FALSE;
            if (wd->bring_in)
@@ -2588,15 +2585,16 @@ _calc_job(void *data)
      }
    wd->realminw = minw;
    if (minw < wd->w) minw = wd->w;
-   if ((minw != wd->minw) || (minh != wd->minh)|| wd->select_all_item)
+   if ((minw != wd->minw) || (minh != wd->minh) || (wd->select_all_item))
      {
         wd->minw = minw;
         wd->minh = minh;
         if (wd->select_all_item)
            wd->minh += wd->select_all_item->h;        
-        evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
+        if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
+           evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
         _sizing_eval(wd->obj);
-#ifdef ANCHOR_ITEM        
+#ifdef ANCHOR_ITEM
         if ((wd->anchor_item) && (wd->anchor_item->block) && (!wd->auto_scrolled))
           {
              Elm_Genlist_Item *it;
@@ -2691,7 +2689,7 @@ _pan_set(Evas_Object *obj,
          Evas_Coord   y)
 {
    Pan *sd = evas_object_smart_data_get(obj);
-   Item_Block *itb;
+   //Item_Block *itb;
 
 //   Evas_Coord ow, oh;
 //   evas_object_geometry_get(obj, NULL, NULL, &ow, &oh);
@@ -2728,7 +2726,7 @@ _pan_set(Evas_Object *obj,
    }
 done:
 #endif      
-   evas_object_smart_changed(obj);
+   if(!sd->wd->item_moving_effect_timer) evas_object_smart_changed(obj);
 }
 
 static void
@@ -2877,18 +2875,26 @@ _pan_calculate(Evas_Object *obj)
      {
         if (sd->wd->pan_y != old_pan_y) sd->wd->reorder_pan_move = EINA_TRUE;
         else sd->wd->reorder_pan_move = EINA_FALSE;
-        evas_object_raise(sd->wd->reorder_it->base.view);
+        evas_object_raise(sd->wd->reorder_it->edit_obj);
         old_pan_y = sd->wd->pan_y;
      }
 
       if (sd->wd->effect_mode && 
-          (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND || sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT))
+          ((sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND) ||
+           (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT) ||
+           (sd->wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)))
         {
-           _item_flip_effect_show(sd->wd->expand_item);
-           evas_object_raise(sd->wd->alpha_bg);
-           evas_object_show(sd->wd->alpha_bg);
-           sd->wd->start_time = current_time_get();
-           sd->wd->item_moving_effect_timer = ecore_animator_add(_item_moving_effect_timer_cb, sd->wd);
+           if (!sd->wd->item_moving_effect_timer)
+             {
+                if (sd->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
+                   _item_flip_effect_show(sd->wd->expand_item);
+
+                evas_object_raise(sd->wd->alpha_bg);
+                evas_object_show(sd->wd->alpha_bg);
+                elm_smart_scroller_bounce_animator_disabled_set(sd->wd->scr, EINA_TRUE);
+                sd->wd->start_time = current_time_get();
+                sd->wd->item_moving_effect_timer = ecore_animator_add(_item_moving_effect_timer_cb, sd->wd);
+             }
         }
       else _item_auto_scroll(sd->wd);
    if (sd->wd->select_all_item) evas_object_raise(sd->wd->select_all_item->base.view);         
@@ -3029,6 +3035,7 @@ elm_genlist_add(Evas_Object *parent)
    elm_widget_theme_hook_set(obj, _theme_hook);
    elm_widget_can_focus_set(obj, EINA_TRUE);
    elm_widget_event_hook_set(obj, _event_hook);
+   elm_widget_on_show_region_hook_set(obj, _show_region_hook, obj);
 
    wd->scr = elm_smart_scroller_add(e);
    elm_smart_scroller_widget_set(wd->scr, obj);
@@ -3051,8 +3058,8 @@ elm_genlist_add(Evas_Object *parent)
    wd->item_cache_max = wd->max_items_per_block * 2;
    wd->longpress_timeout = _elm_config->longpress_timeout;
    //wd->effect_mode = _elm_config->effect_enable;
-   //wd->effect_mode = EINA_TRUE;
+//   wd->effect_mode = EINA_TRUE;
+
    evas_object_smart_callback_add(obj, "scroll-hold-on", _hold_on, obj);
    evas_object_smart_callback_add(obj, "scroll-hold-off", _hold_off, obj);
    evas_object_smart_callback_add(obj, "scroll-freeze-on", _freeze_on, obj);
@@ -3098,9 +3105,8 @@ _item_new(Widget_Data                  *wd,
    it->expanded_depth = 0;
    if ((it->parent) && (it->parent->edit_select_check)) it->edit_select_check = EINA_TRUE;   
    if ((!it->parent) && (it->wd->select_all_item))
-        _select_all_down_process(it->wd->select_all_item, EINA_FALSE); 
+        _select_all_down_process(it->wd->select_all_item, EINA_FALSE, EINA_FALSE); 
    it->num = ++wd->total_num;   // todo : remov
-
    return it;
 }
 
@@ -3572,23 +3578,25 @@ elm_genlist_clear(Evas_Object *obj)
    while (wd->items)
      {
         Elm_Genlist_Item *it = ELM_GENLIST_ITEM_FROM_INLIST(wd->items);
-
+        it->nocache = EINA_TRUE;
+        it->hilighted = EINA_FALSE;
 #ifdef ANCHOR_ITEM        
         if (wd->anchor_item == it)
           {
-             wd->anchor_item = (Elm_Genlist_Item *)(EINA_INLIST_GET(it)->next);
+             wd->anchor_item = ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next);
              if (!wd->anchor_item)
                wd->anchor_item =
-                 (Elm_Genlist_Item *)(EINA_INLIST_GET(it)->prev);
+                 ELM_GENLIST_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev);
           }
 #endif        
         wd->items = eina_inlist_remove(wd->items, wd->items);
         if (it->flags & ELM_GENLIST_ITEM_GROUP)
           it->wd->group_items = eina_list_remove(it->wd->group_items, it);
         elm_widget_item_pre_notify_del(it);
+        if (it->effect_item_realized) _effect_item_unrealize(it);        
         if (it->realized) _item_unrealize(it);
         if (it->itc->func.del)
-          it->itc->func.del((void *)it->base.data, it->base.widget);
+           it->itc->func.del((void *)it->base.data, it->base.widget);
         if (it->long_timer) ecore_timer_del(it->long_timer);
         if (it->swipe_timer) ecore_timer_del(it->swipe_timer);
         elm_widget_item_del(it);
@@ -3634,6 +3642,16 @@ elm_genlist_clear(Evas_Object *obj)
           evas_object_del(editfield);
         wd->edit_field = NULL;
      }   
+   if (wd->item_moving_effect_timer)
+     {
+        ecore_animator_del(wd->item_moving_effect_timer);
+        wd->item_moving_effect_timer = NULL;           
+     }
+   if (wd->edit_mode)
+     {
+        wd->edit_mode = ELM_GENLIST_EDIT_MODE_NONE;
+        elm_genlist_edit_mode_set(wd->obj, ELM_GENLIST_EDIT_MODE_NONE, NULL);
+     }
    wd->show_item = NULL;
    wd->pan_x = 0;
    wd->pan_y = 0;
@@ -3998,7 +4016,8 @@ elm_genlist_item_subitems_clear(Elm_Genlist_Item *it)
       _item_subitems_clear(it);
    else
      {
-        if((!it->wd->item_moving_effect_timer) && (it->flags != ELM_GENLIST_ITEM_GROUP))
+        if((!it->wd->item_moving_effect_timer) && (it->flags != ELM_GENLIST_ITEM_GROUP) &&
+        it->wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE        )
           {
              it->wd->expand_item = it;
              _item_flip_effect_show(it);
@@ -5432,10 +5451,11 @@ _effect_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after)
    if (!after) return;
 
    if (it->wd->ed->ec->move)
-      it->wd->ed->ec->move(it->base.widget, it, it->wd->ed->reorder_rel, EINA_TRUE);
+      it->wd->ed->ec->move(it->base.widget, it, after, EINA_TRUE);
 
 // printf("MOVE AFTER : %d  after = %d \n", (int)elm_genlist_item_data_get(it)+1, (int)elm_genlist_item_data_get(after)+1);
    it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
+   it->wd->reorder_deleted = EINA_TRUE;
    _item_block_del(it);
 
    it->wd->items = eina_inlist_append_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(after));
@@ -5452,10 +5472,11 @@ _effect_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before)
    if (!before) return;
 
    if (it->wd->ed->ec->move)
-      it->wd->ed->ec->move(it->base.widget, it, it->wd->ed->reorder_rel, EINA_TRUE);
+      it->wd->ed->ec->move(it->base.widget, it, before, EINA_FALSE);
 
 //   printf("MOVE BEFORE : %d  before = %d \n", (int)elm_genlist_item_data_get(it)+1, (int)elm_genlist_item_data_get(before)+1);
    it->wd->items = eina_inlist_remove(it->wd->items, EINA_INLIST_GET(it));
+   it->wd->reorder_deleted = EINA_TRUE;
    _item_block_del(it);
    it->wd->items = eina_inlist_prepend_relative(it->wd->items, EINA_INLIST_GET(it), EINA_INLIST_GET(before));
    it->rel = before;
@@ -5527,7 +5548,7 @@ _item_moving_effect_timer_cb(void *data)
 
    evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
    evas_output_viewport_get(evas_object_evas_get(wd->pan_smart), &cvx, &cvy, &cvw, &cvh);
-
+   if (t > time) end = EINA_TRUE;
    EINA_INLIST_FOREACH(wd->blocks, itb)
      {
         itb->w = wd->minw;
@@ -5538,16 +5559,16 @@ _item_moving_effect_timer_cb(void *data)
           {
              EINA_LIST_FOREACH(itb->items, l, it)
                {
-                  it2 = it;
-                  check = EINA_FALSE;
-                  do {
-                       if(it2->parent == wd->expand_item) check = EINA_TRUE;
-                       it2 = it2->parent;
-                  } while(it2);
-                  if(check) continue;
-
-                  //                  printf("item : %p - ", it);
-
+                  if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
+                    {
+                       it2 = it;
+                       check = EINA_FALSE;
+                       do {
+                            if(it2->parent == wd->expand_item) check = EINA_TRUE;
+                            it2 = it2->parent;
+                       } while(it2);
+                       if(check) continue;
+                    }
                   dy = 0;
                   //printf(" s: %d %d ", oy, oh);
                   if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
@@ -5558,7 +5579,11 @@ _item_moving_effect_timer_cb(void *data)
                        if(wd->expand_item_end < it->old_scrl_y)
                           dy = wd->expand_item_gap;
                     }
-                  //                  printf(" dy - %d -", dy);
+                  else if (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE)
+                    {
+                        if (wd->expand_item_end < it->old_scrl_y)
+                          dy = wd->expand_item_gap;
+                    }
                   if (t <= time)
                      y = (1 * sin((t / time) * (M_PI / 2)) * dy);
                   else
@@ -5566,34 +5591,34 @@ _item_moving_effect_timer_cb(void *data)
                        end = EINA_TRUE;
                        y = dy;
                     }
-                  //printf("s : %d   os : %d y : %d t : %2.2f  time : %2.2f dy : %d\n", it->scrl_y, it->old_scrl_y, y, t, time, dy);
 
                   if (!it->old_scrl_y)
                      it->old_scrl_y  = it->scrl_y;
 
 
-                  //printf(" %d | ", it->old_scrl_y + y);
                   if (it->old_scrl_y + y < oy + oh)
                     {
-                       //                       printf("%p in pan | ", it);
-                       //if (!it->realized) printf("%p is not realized %d :: \n", it, it->old_scrl_y + y);
-
                        if (!it->realized) _item_realize(it, in, 0);
                     }
-                  /*                  else if(first && wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
-                                      {
-                                      printf("1 . %p ::%d %d %d\n", it, it->old_scrl_y, (wd->expand_item_end + wd->expand_item_gap) , (oy + oh));
-                                      it->old_scrl_y = it->old_scrl_y - ((wd->expand_item_end - wd->expand_item_gap) - (oy + oh));
-                                      wd->expand_item_gap = wd->expand_item_gap + ((wd->expand_item_end - wd->expand_item_gap) - (oy + oh));
-                                      printf("2 . %p ::%d %d %d\n", it, it->old_scrl_y, (wd->expand_item_end + wd->expand_item_gap) , (oy + oh));
-                                      }*/
+                  if (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE && it->old_scrl_y + y < it->scrl_y)
+                     it->old_scrl_y = it->scrl_y - y;
                   in++;
 
-                  //                  printf("%p  :: %d\n", it, it->old_scrl_y + y);
-                  evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
-                  evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->old_scrl_y + y);
-                  evas_object_show(it->base.view);
-                  evas_object_raise(it->base.view);
+                 if (wd->move_effect_mode != ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE ||
+                       (wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE && it->old_scrl_y + y >= it->scrl_y))
+                   {
+                      if (wd->edit_mode) _effect_item_controls(it, it->scrl_x, it->old_scrl_y + y);
+                      else
+                       {
+                           evas_object_resize(it->base.view, it->w-(it->pad_left+it->pad_right), it->h);
+                           evas_object_move(it->base.view, it->scrl_x+it->pad_left, it->old_scrl_y + y);
+                           evas_object_show(it->base.view);
+                           evas_object_raise(it->base.view);
+                       }
+
+                      if(wd->select_all_item) evas_object_raise(wd->select_all_item->base.view);
+                      if (it->group_item) evas_object_raise(it->group_item->base.view);
+                   }
 
                   if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
                     {
@@ -5609,7 +5634,7 @@ _item_moving_effect_timer_cb(void *data)
                                       evas_object_show(it2->base.view);
                                       it2->effect_done = EINA_TRUE;
                                    }
-                                 break;
+                                // break;
                               }
                             it2 = elm_genlist_item_prev_get(it2);
                          }
@@ -5643,7 +5668,6 @@ _item_moving_effect_timer_cb(void *data)
           {
              if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_CONTRACT)
                 _item_subitems_clear(wd->expand_item);
-             wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_NONE;
              EINA_INLIST_FOREACH(wd->blocks, itb)
                {
                   EINA_LIST_FOREACH(itb->items, l, it)
@@ -5661,9 +5685,13 @@ _item_moving_effect_timer_cb(void *data)
         _item_auto_scroll(wd);
         evas_object_lower(wd->alpha_bg);
         evas_object_hide(wd->alpha_bg);
-
         if (wd->calc_job) ecore_job_del(wd->calc_job);
         wd->calc_job = ecore_job_add(_calc_job, wd);      
+        elm_smart_scroller_bounce_animator_disabled_set(wd->scr, EINA_FALSE);
+        wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_NONE;
+
+        evas_object_smart_callback_call(wd->pan_smart, "changed", NULL);
+        evas_object_smart_callback_call(wd->obj, "effect_done", NULL);
         return ECORE_CALLBACK_CANCEL;
      }
    return ECORE_CALLBACK_RENEW;
@@ -5705,7 +5733,6 @@ _item_flip_effect_show(Elm_Genlist_Item *it)
           {
              if(wd->move_effect_mode == ELM_GENLIST_ITEM_MOVE_EFFECT_EXPAND)
                {
-                  //                edje_object_signal_emit(it2->base.view, "elm,state,expand_flip", "");
                   edje_object_signal_emit(it2->base.view, "flip_item", "");
                   if(check)
                      evas_object_move(it2->base.view, -9999, -9999);
@@ -5774,13 +5801,11 @@ _effect_item_update(Elm_Genlist_Item *it)
 {
    if (it->edit_select_check) 
      {
-        edje_object_signal_emit(it->edit_obj, "elm,state,del_confirm", "elm");
-        edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
+        edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
      }
    else
      {
-        edje_object_signal_emit(it->edit_obj, "elm,state,del,enable", "elm");
-        edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
+        edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
      }
 }
 
@@ -5791,14 +5816,12 @@ _edit_item_checkbox_set(Elm_Genlist_Item  *it, Eina_Bool edit_select_check_state
    if (edit_select_check_state)
      {
         it->edit_select_check = EINA_TRUE;
-        edje_object_signal_emit(it->edit_obj, "elm,state,del_confirm", "elm");
-        edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
+        edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
      }
    else        
      {
         it->edit_select_check = EINA_FALSE;
-        edje_object_signal_emit(it->edit_obj, "elm,state,del,enable", "elm");
-        edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");     
+        edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
      }
    if (it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
       it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);   
@@ -5843,7 +5866,7 @@ _edit_parent_items_checkbox_set(Elm_Genlist_Item  *it)
 }
 
 static void
-_select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked)
+_select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked, Eina_Bool update_items)
 {
    if (!select_all_it || !select_all_it->wd) return;
 
@@ -5853,19 +5876,22 @@ _select_all_down_process(Elm_Genlist_Item *select_all_it, Eina_Bool checked)
    
    wd->select_all_check = checked;
    if (wd->select_all_check) 
-      edje_object_signal_emit(select_all_it->base.view, "elm,state,del_confirm", "elm");
+      edje_object_signal_emit(select_all_it->base.view, "elm,state,sel_check", "elm");
    else
-      edje_object_signal_emit(select_all_it->base.view, "elm,state,del,animated,enable", "elm");
+      edje_object_signal_emit(select_all_it->base.view, "elm,state,sel_uncheck", "elm");
 
-   EINA_INLIST_FOREACH(wd->items, it)
+   if (update_items)
      {
-        old_check_state = it->edit_select_check;
-        if (wd->select_all_check) it->edit_select_check = EINA_TRUE;
-        else it->edit_select_check = EINA_FALSE;
+        EINA_INLIST_FOREACH(wd->items, it)
+         {
+            old_check_state = it->edit_select_check;
+            if (wd->select_all_check) it->edit_select_check = EINA_TRUE;
+            else it->edit_select_check = EINA_FALSE;
 
         // TODO : check this
-//        if (old_check_state != it->edit_select_check && it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
-//           it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);   
+  //        if (old_check_state != it->edit_select_check && it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
+  //           it->wd->ed->ec->item_selected(it->base.data, it, it->edit_select_check);   
+         }
      }
 
    if (wd->ed->ec->item_selected)
@@ -5889,11 +5915,6 @@ _checkbox_item_select_process(Elm_Genlist_Item *it)
 
    if (it->wd->ed) it->wd->ed->del_item = it;
 
-   if (it->edit_select_check)
-      edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
-   else
-      edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
-   
    EINA_INLIST_FOREACH(it->wd->items, tmp_it)
      {
         if (tmp_it->edit_select_check) check_cnt++; 
@@ -5909,16 +5930,13 @@ _checkbox_item_select_process(Elm_Genlist_Item *it)
         if (check_cnt == total_cnt)
           { 
              it->wd->select_all_check = EINA_TRUE;
-             edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,del_confirm", "elm");
+             edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,sel_check", "elm");
           }
         else
           {
              it->wd->select_all_check = EINA_FALSE;
-             edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,del,animated,enable", "elm");
+             edje_object_signal_emit(it->wd->select_all_item->base.view, "elm,state,sel_uncheck", "elm");
           }
-
-        if (old_check_state != it->wd->select_all_check && it->wd->ed && it->wd->ed->ec && it->wd->ed->ec->item_selected)
-           it->wd->ed->ec->item_selected(it->wd->select_all_item->base.data, it->wd->select_all_item, it->wd->select_all_check);
      }
 }
 
@@ -5938,7 +5956,7 @@ _select_all_down(void *data, Evas_Object *obj __UNUSED__, const char *emission _
    Widget_Data *wd = select_all_it->wd;
    if (!wd) return;
 
-   _select_all_down_process(select_all_it, !wd->select_all_check);
+   _select_all_down_process(select_all_it, !wd->select_all_check, EINA_TRUE);
 }
 
 
@@ -5949,7 +5967,6 @@ _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity)
       return;
    evas_object_resize(it->edit_obj,it->w, it->h);
    evas_object_move(it->edit_obj, itx, ity);
-   evas_object_raise(it->edit_obj);
 
    if (it->wd->select_all_check)
       it->edit_select_check = EINA_TRUE;
@@ -5957,19 +5974,17 @@ _effect_item_controls(Elm_Genlist_Item *it, int itx, int ity)
      {
         if (it->edit_select_check)
           {
-             edje_object_signal_emit(it->base.view, "elm,state,disabled", "elm");
-             edje_object_signal_emit(it->edit_obj, "elm,state,del_confirm", "elm");
+             edje_object_signal_emit(it->edit_obj, "elm,state,sel_check", "elm");
           }
         else
           {
-             edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
-             edje_object_signal_emit(it->edit_obj, "elm,state,del,enable", "elm");
+             edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
           }
      }
 }
 
 static void
-_effect_item_realize(Elm_Genlist_Item *it)
+_effect_item_realize(Elm_Genlist_Item *it, Eina_Bool effect_on)
 {
    if ((it->effect_item_realized) || (it->delete_me)) return;
    int itmode = 0, pad = 0;
@@ -6011,22 +6026,33 @@ _effect_item_realize(Elm_Genlist_Item *it)
 
    if ((itmode & ELM_GENLIST_EDIT_MODE_DELETE) || (itmode & ELM_GENLIST_EDIT_MODE_SELECT))
      {
-        edje_object_signal_emit(it->edit_obj, "elm,state,del,enable", "elm");
-        edje_object_signal_callback_del(it->edit_obj, "elm,action,item,delete",
+        if (effect_on) edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable_effect", "elm");
+        else edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable", "elm");
+
+        edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
+        edje_object_signal_callback_del(it->edit_obj, "elm,action,item,select",
                                         "elm", _checkbox_item_select_cb);
 
-        edje_object_signal_callback_add(it->edit_obj, "elm,action,item,delete",
+        edje_object_signal_callback_add(it->edit_obj, "elm,action,item,select",
                                         "elm", _checkbox_item_select_cb, it);
         it->pad_left += pad * _elm_config->scale;
      }
    else
      {
-        edje_object_signal_emit(it->edit_obj, "elm,state,del,disable", "elm");
+        edje_object_signal_emit(it->edit_obj, "elm,state,sel,disable", "elm");
 
-        edje_object_signal_callback_del(it->edit_obj, "elm,action,item,delete",
+        edje_object_signal_callback_del(it->edit_obj, "elm,action,item,select",
                                         "elm", _checkbox_item_select_cb);
      }
 
+   if (effect_on && itmode & ELM_GENLIST_EDIT_MODE_REORDER)
+     {
+        edje_object_signal_emit(it->edit_obj, "elm,state,reorder_enable_effect", "elm");
+        edje_object_signal_emit(it->edit_obj, "elm,state,sel,enable", "elm");
+     }
+   else if (itmode & ELM_GENLIST_EDIT_MODE_REORDER)
+       edje_object_signal_emit(it->edit_obj, "elm,state,reorder_enable", "elm");
+
    if ((it->wd->edit_mode) || (!it->wd->edit_mode && it->renamed))
      {
         if (it->itc->func.icon_get)
@@ -6050,7 +6076,7 @@ _effect_item_realize(Elm_Genlist_Item *it)
                }
           }            
      }
-
+   edje_object_part_swallow(it->edit_obj, "original_edc", it->base.view);
    _effect_item_controls(it,it->scrl_x, it->scrl_y);
    evas_object_show(it->edit_obj);
 
@@ -6061,12 +6087,18 @@ _effect_item_realize(Elm_Genlist_Item *it)
 static void
 _effect_item_unrealize(Elm_Genlist_Item *it)
 {
-   Evas_Object *icon, *editfield;
+   Evas_Object *icon;
 
    if (!it->effect_item_realized) return;
    if (it->wd->reorder_it && it->wd->reorder_it == it) return;
 
    it->pad_left = it->pad_right = 0;
+   edje_object_signal_emit(it->edit_obj, "elm,state,reorder_disable_effect", "elm");
+   edje_object_signal_emit(it->edit_obj, "elm,state,sel,disable", "elm");
+   edje_object_message_signal_process(it->edit_obj);
+   edje_object_part_unswallow(it->edit_obj, it->base.view);
+   evas_object_smart_member_add(it->base.view, it->wd->pan_smart);
+   elm_widget_sub_object_add(it->base.widget, it->base.view);
    //   evas_object_smart_callback_call(it->edit_obj, "unrealized", it);
    //   _item_cache_add(it);
    evas_object_del(it->edit_obj);
@@ -6074,7 +6106,7 @@ _effect_item_unrealize(Elm_Genlist_Item *it)
    EINA_LIST_FREE(it->edit_icon_objs, icon)
       evas_object_del(icon);
 
-   edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,disable", "elm");
+//   edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,disable", "elm");
    it->effect_item_realized = EINA_FALSE;
 }
 
@@ -6090,6 +6122,26 @@ elm_genlist_set_edit_mode(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *e
 }
 
 /**
+ * Get Genlist edit mode
+ *
+ * @param obj The genlist object
+ * @return The edit mode status
+ * (EINA_TRUE = edit mode, EINA_FALSE = normal mode
+ *
+ * @ingroup Genlist
+ */
+EAPI Eina_Bool
+elm_genlist_edit_mode_get(const Evas_Object *obj)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+   Widget_Data *wd = elm_widget_data_get(obj);
+   if (!wd) return EINA_FALSE;
+
+   if (wd->edit_mode) return EINA_TRUE;
+   else return EINA_FALSE;
+}
+
+/**
  * Set Genlist edit mode
  *
  * This sets Genlist edit mode.
@@ -6133,8 +6185,7 @@ elm_genlist_edit_mode_set(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *e
                        if (it->flags != ELM_GENLIST_ITEM_GROUP && it->realized)  
                          {
                             it->pad_left = it->pad_right = 0;
-                            if (it->realized) _effect_item_unrealize(it);
-                                   edje_object_signal_emit(it->base.view, "elm,state,enabled", "elm");
+                            _effect_item_unrealize(it);
                          }
                     }
                }
@@ -6143,22 +6194,21 @@ elm_genlist_edit_mode_set(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *e
                   if (done) break;
                }
           }
+
+        EINA_INLIST_FOREACH(wd->items, it)
+         {
+            it->edit_select_check = EINA_FALSE;
+         }
         if (wd->ed) free (wd->ed);
         wd->ed = NULL;
         wd->reorder_mode = EINA_FALSE;
         if (wd->select_all_item)
           {
              wd->select_all_check = EINA_FALSE;
-             edje_object_signal_callback_del(wd->select_all_item->base.view, "elm,action,select,press", "elm", _select_all_down);
+             edje_object_signal_callback_del(wd->select_all_item->base.view, "elm,action,select,click", "elm", _select_all_down);
              elm_widget_item_pre_notify_del(wd->select_all_item);
              _item_unrealize(wd->select_all_item);
              elm_widget_item_del(wd->select_all_item);
-
-             EINA_INLIST_FOREACH(wd->items, it)
-               {
-                  if (wd->select_all_check) it->edit_select_check = EINA_TRUE;
-                  else it->edit_select_check = EINA_FALSE;
-               }
           }
         wd->select_all_item = NULL;
         if (wd->edit_field)
@@ -6168,6 +6218,7 @@ elm_genlist_edit_mode_set(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *e
                evas_object_del(editfield);
              wd->edit_field = NULL;
           }
+        _item_cache_zero(wd);
      }
    else
      {
@@ -6189,7 +6240,7 @@ elm_genlist_edit_mode_set(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *e
                        if (it->flags != ELM_GENLIST_ITEM_GROUP && it->realized)
                          {
                             if(it->selected) _item_unselect(it);
-                            _effect_item_realize(it);
+                            _effect_item_realize(it, EINA_TRUE);
                          }
                     }
                }
@@ -6215,7 +6266,7 @@ elm_genlist_edit_mode_set(Evas_Object *obj, int emode, Elm_Genlist_Edit_Class *e
              if (!wd->select_all_item) return;
 
              _item_realize(wd->select_all_item, 0, 0);
-//             edje_object_signal_callback_add(wd->select_all_item->base.view, "elm,action,select,press", "elm", _select_all_down, wd->select_all_item);
+             edje_object_signal_callback_add(wd->select_all_item->base.view, "elm,action,select,click", "elm", _select_all_down, wd->select_all_item);
 
              wd->select_all_item->rel = NULL;
              wd->select_all_item->block = NULL;
@@ -6243,15 +6294,43 @@ elm_genlist_edit_selected_items_del(Evas_Object *obj)
    Elm_Genlist_Item *it;
    Eina_List *edit_selected_list, *l;
    int cnt = 0;
+   Item_Block *itb;
+
+   Evas_Coord ox, oy, ow, oh, cvx, cvy, cvw, cvh;
+   int vis = 0;
 
+   if (wd->edit_field) return;
+   evas_object_geometry_get(wd->pan_smart, &ox, &oy, &ow, &oh);
+   evas_output_viewport_get(evas_object_evas_get(wd->obj), &cvx, &cvy,&cvw, &cvh);
+   EINA_INLIST_FOREACH(wd->blocks, itb)
+     {
+      if (ELM_RECTS_INTERSECT(itb->x - wd->pan_x + ox,
+                              itb->y - wd->pan_y + oy,
+                              itb->w, itb->h,
+                              cvx, cvy, cvw, cvh))
+         EINA_LIST_FOREACH(itb->items, l, it)
+           {
+              it->old_scrl_y  =itb->y + it->y - it->wd->pan_y + oy;
+           }
+     }
    edit_selected_list = elm_genlist_edit_selected_items_get(obj);
    cnt = eina_list_count(edit_selected_list);
    //   printf("elm_genlist_edit_selected_items_del items selected counts = %d \n",  cnt);
 
+   wd->expand_item_gap = wd->expand_item_end = 0;
    EINA_LIST_FOREACH(edit_selected_list, l, it)
      {
-        if (it->flags != ELM_GENLIST_ITEM_GROUP) elm_genlist_item_del(it);
+        if (it->flags != ELM_GENLIST_ITEM_GROUP) 
+          {
+             it->wd->expand_item_gap += it->h * -1;
+             vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h,
+                                        cvx, cvy, cvw, cvh));
+              if (!it->wd->expand_item_end && vis ) it->wd->expand_item_end = it->old_scrl_y;
+              it->wd->expand_item = elm_genlist_item_prev_get(it);
+              elm_genlist_item_del(it);
+           }
      }
+   wd->move_effect_mode = ELM_GENLIST_ITEM_MOVE_EFFECT_DELETE;
    eina_list_free(edit_selected_list);
 
    evas_render(evas_object_evas_get(wd->obj));
@@ -6311,11 +6390,8 @@ elm_genlist_edit_item_selected_set(Elm_Genlist_Item *it,
    selected = !!selected;
    if (it->edit_select_check == selected) return;
 
-   if (it->wd->edit_mode)
-     {
-        it->edit_select_check = selected;
-       _checkbox_item_select_process(it);
-     } 
+   it->edit_select_check = selected;
+   _checkbox_item_select_process(it);
 }
 
 // TODO : add comment                              
@@ -6339,7 +6415,8 @@ elm_genlist_edit_item_selected_get(const Elm_Genlist_Item *it)
 EAPI Evas_Object *
 elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
 {
-   if (!it) return;
+   if (!it) return NULL;
+   if (it->wd->queue_idler) return NULL;
 
    const Eina_List *l, *list, *l2;
    const char *label, *rename_swallow_part;
@@ -6381,7 +6458,7 @@ elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
                             edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,enable", "elm");
                             edje_object_signal_emit(it->edit_obj, "elm,state,rename,disable", "elm");  
                             if (it->wd->edit_mode & ELM_GENLIST_EDIT_MODE_SELECT)
-                               edje_object_signal_emit(it->edit_obj, "elm,state,del,enable", "elm");
+                               edje_object_signal_emit(it->edit_obj, "elm,state,sel_uncheck", "elm");
                          }
 
                        if(!it->wd->edit_mode) _effect_item_unrealize(it);
@@ -6401,17 +6478,13 @@ elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
         if (it->wd->edit_mode == ELM_GENLIST_EDIT_MODE_NONE)
           {
              it->wd->edit_mode = 0xF0;
-             _effect_item_realize(it);
+             _effect_item_realize(it, EINA_TRUE);
              it->wd->edit_mode = ELM_GENLIST_EDIT_MODE_NONE;
           }        
 
+        edje_object_signal_emit(it->edit_obj, "elm,state,rename,enable", "elm");
         EINA_LIST_FOREACH(it->labels, list, label)
           {
-             edje_object_signal_emit(it->edit_obj, "elm,state,rename,enable", "elm");
-             edje_object_signal_emit(it->edit_obj, "elm,state,ins,disable", "elm");
-             edje_object_signal_emit(it->edit_obj, "elm,state,del,disable", "elm");
-             edje_object_signal_emit(it->edit_obj, "elm,state,edit_end,disable", "elm");
-
              if (it->itc->func.label_get)
                {
                   swallow_part_cnt = 0;
@@ -6436,6 +6509,7 @@ elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
                               {
                                  entry = elm_editfield_entry_get(editfield);
                                  elm_entry_entry_set(entry,s);
+                                 elm_entry_cursor_end_set(entry);
                                  free(s);
                               }
                             else
@@ -6445,7 +6519,9 @@ elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, int emode)
                     }
                   label_cnt++;
                }
-          }                    
+          }
+        elm_widget_focused_object_clear(elm_widget_focused_object_get(it->wd->obj));
+        elm_widget_focus_set(editfield, EINA_TRUE);
      }
      
    return entry;
@@ -6597,5 +6673,4 @@ _item_auto_scroll(void *data)
               }
                 }
      }
-}
-
+}
\ No newline at end of file