else if ((!strcmp(ev->keyname, "Home")) || (!strcmp(ev->keyname, "KP_Home")))
{
it = elm_genlist_first_item_get(obj);
- elm_genlist_item_bring_in(it);
+ elm_genlist_item_bring_in(it, ELM_GENLIST_ITEM_SCROLLTO_IN);
elm_genlist_item_selected_set(it, EINA_TRUE);
ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
return EINA_TRUE;
else if ((!strcmp(ev->keyname, "End")) || (!strcmp(ev->keyname, "KP_End")))
{
it = elm_genlist_last_item_get(obj);
- elm_genlist_item_bring_in(it);
+ elm_genlist_item_bring_in(it, ELM_GENLIST_ITEM_SCROLLTO_IN);
elm_genlist_item_selected_set(it, EINA_TRUE);
ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
return EINA_TRUE;
}
EAPI void
-elm_genlist_item_bring_in(Elm_Object_Item *it)
+elm_genlist_item_bring_in(Elm_Object_Item *it, Elm_Genlist_Item_Scrollto_Type type)
{
+
ELM_OBJ_ITEM_CHECK_OR_RETURN(it);
Elm_Gen_Item *_it = (Elm_Gen_Item *)it;
+ Evas_Coord x, y, w, h;
Evas_Coord gith = 0;
if (_it->generation < _it->wd->generation) return;
if ((_it->item->queued) || (!_it->item->mincalcd))
{
_it->wd->show_item = _it;
_it->wd->bring_in = EINA_TRUE;
- _it->wd->scrollto_type = ELM_GENLIST_ITEM_SCROLLTO_IN;
+ _it->wd->scrollto_type = type;
_it->item->showme = EINA_TRUE;
return;
}
_it->wd->show_item->item->showme = EINA_FALSE;
_it->wd->show_item = NULL;
}
- if ((_it->item->group_item) &&
- (_it->wd->pan_y > (_it->y + _it->item->block->y)))
- gith = _it->item->group_item->item->h;
- elm_smart_scroller_region_bring_in(_it->wd->scr,
- _it->x + _it->item->block->x,
- _it->y + _it->item->block->y - gith,
- _it->item->block->w, _it->item->h);
+
+ x = _it->x + _it->item->block->x;
+ if (type==ELM_GENLIST_ITEM_SCROLLTO_IN)
+ {
+ if ((_it->item->group_item) &&
+ (_it->wd->pan_y > (_it->y + _it->item->block->y)))
+ gith = _it->item->group_item->item->h;
+
+ w = _it->item->block->w;
+ h = _it->item->h;
+ y = _it->y + _it->item->block->y - gith;
+ }
+ else if (type==ELM_GENLIST_ITEM_SCROLLTO_TOP)
+ {
+ evas_object_geometry_get(_it->wd->pan_smart, NULL, NULL, &w, &h);
+ if (_it->item->group_item) gith = _it->item->group_item->item->h;
+ y = _it->y + _it->item->block->y - gith;
+ }
+ else if (type==ELM_GENLIST_ITEM_SCROLLTO_MIDDLE)
+ {
+ evas_object_geometry_get(_it->wd->pan_smart, NULL, NULL, &w, &h);
+ w = _it->item->block->w;
+ y = _it->y + _it->item->block->y - h / 2 + _it->item->h / 2;
+ }
+ else
+ return;
+
+ elm_smart_scroller_region_bring_in(_it->wd->scr,x, y, w, h);
}
EAPI void
EAPI void
elm_genlist_item_top_bring_in(Elm_Object_Item *it)
{
- ELM_OBJ_ITEM_CHECK_OR_RETURN(it);
- Elm_Gen_Item *_it = (Elm_Gen_Item *)it;
- Evas_Coord ow, oh;
- Evas_Coord gith = 0;
-
- if (_it->generation < _it->wd->generation) return;
- if ((_it->item->queued) || (!_it->item->mincalcd))
- {
- _it->wd->show_item = _it;
- _it->wd->bring_in = EINA_TRUE;
- _it->wd->scrollto_type = ELM_GENLIST_ITEM_SCROLLTO_TOP;
- _it->item->showme = EINA_TRUE;
- return;
- }
- if (_it->wd->show_item)
- {
- _it->wd->show_item->item->showme = EINA_FALSE;
- _it->wd->show_item = NULL;
- }
- evas_object_geometry_get(_it->wd->pan_smart, NULL, NULL, &ow, &oh);
- if (_it->item->group_item) gith = _it->item->group_item->item->h;
- elm_smart_scroller_region_bring_in(_it->wd->scr,
- _it->x + _it->item->block->x,
- _it->y + _it->item->block->y - gith,
- _it->item->block->w, oh);
+ elm_genlist_item_bring_in(it, ELM_GENLIST_ITEM_SCROLLTO_TOP);
}
EAPI void
EAPI void
elm_genlist_item_middle_bring_in(Elm_Object_Item *it)
{
- ELM_OBJ_ITEM_CHECK_OR_RETURN(it);
- Elm_Gen_Item *_it = (Elm_Gen_Item *)it;
- Evas_Coord ow, oh;
-
- if (_it->generation < _it->wd->generation) return;
- if ((_it->item->queued) || (!_it->item->mincalcd))
- {
- _it->wd->show_item = _it;
- _it->wd->bring_in = EINA_TRUE;
- _it->wd->scrollto_type = ELM_GENLIST_ITEM_SCROLLTO_MIDDLE;
- _it->item->showme = EINA_TRUE;
- return;
- }
- if (_it->wd->show_item)
- {
- _it->wd->show_item->item->showme = EINA_FALSE;
- _it->wd->show_item = NULL;
- }
- evas_object_geometry_get(_it->wd->pan_smart, NULL, NULL, &ow, &oh);
- elm_smart_scroller_region_bring_in(_it->wd->scr,
- _it->x + _it->item->block->x,
- _it->y + _it->item->block->y - oh / 2 +
- _it->item->h / 2, _it->item->block->w,
- oh);
+ elm_genlist_item_bring_in(it, ELM_GENLIST_ITEM_SCROLLTO_MIDDLE);
}
EINA_DEPRECATED EAPI void
*
* @ingroup Genlist
*/
- typedef enum
+typedef enum
{
ELM_GENLIST_ITEM_NONE = 0, /**< simple item */
//XXX: ELM_GENLIST_ITEM_TREE
ELM_GENLIST_ITEM_FIELD_STATE = (1 << 2)
} Elm_Genlist_Item_Field_Type;
+typedef enum
+{
+ ELM_GENLIST_ITEM_SCROLLTO_NONE = 0, /**< no scrollto */
+ ELM_GENLIST_ITEM_SCROLLTO_IN = (1 << 0), /**< show, bring in */
+ ELM_GENLIST_ITEM_SCROLLTO_TOP = (1 << 1), /**< top show, top bring in */
+ ELM_GENLIST_ITEM_SCROLLTO_MIDDLE = (1 << 2) /**< middle show, middle bring in */
+} Elm_Genlist_Item_Scrollto_Type;
+
/**
* @see Elm_Gen_Item_Class
*/
* item on it.
*
* @param it The item to display
+ * @param type The position to bring in, the given item to.
+ * @ref Elm_Genlist_Item_Scrollto_Type
*
* This causes genlist to jump to the given item @p it and show it (by
- * animatedly scrolling), if it is not fully visible. This may use animation
- * to do so and take a period of time
+ * animatedly scrolling), if it is not fully visible.
+ * This may use animation and take a some time to do so.
*
* @see elm_genlist_item_show()
- * @see elm_genlist_item_top_bring_in()
- * @see elm_genlist_item_middle_bring_in()
*
* @ingroup Genlist
*/
-//XXX: elm_genlist_item_bring_in(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - bring_in, top_bring_in ...
-EAPI void elm_genlist_item_bring_in(Elm_Object_Item *it);
+EAPI void elm_genlist_item_bring_in(Elm_Object_Item *it, Elm_Genlist_Item_Scrollto_Type type);
/**
* Show the portion of a genlist's internal list containing a given
* The item will be positioned at the top of the genlist viewport.
*
* @see elm_genlist_item_show()
- * @see elm_genlist_item_top_bring_in()
+ * @see elm_genlist_item_bring_in()
*
* @ingroup Genlist
*/
EAPI void elm_genlist_item_top_show(Elm_Object_Item *it);
/**
- * Animatedly bring in, to the visible are of a genlist, a given
- * item on it.
- *
- * @param it The item
- *
- * This causes genlist to jump to the given item @p it and show it (by
- * animatedly scrolling), if it is not fully visible. This may use animation
- * to do so and take a period of time
- *
- * The item will be positioned at the top of the genlist viewport.
- *
- * @see elm_genlist_item_bring_in()
- * @see elm_genlist_item_top_show()
- *
- * @ingroup Genlist
- */
-//XXX: elm_genlist_item_bring_in(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - bring_in, top_bring_in ...
-EAPI void elm_genlist_item_top_bring_in(Elm_Object_Item *it);
-
-/**
* Show the portion of a genlist's internal list containing a given
* item, immediately.
*
* The item will be positioned at the middle of the genlist viewport.
*
* @see elm_genlist_item_show()
- * @see elm_genlist_item_middle_bring_in()
+ * @see elm_genlist_item_bring_in()
*
* @ingroup Genlist
*/
EAPI void elm_genlist_item_middle_show(Elm_Object_Item *it);
/**
- * Animatedly bring in, to the visible are of a genlist, a given
- * item on it.
- *
- * @param it The item
- *
- * This causes genlist to jump to the given item @p it and show it (by
- * animatedly scrolling), if it is not fully visible. This may use animation
- * to do so and take a period of time
- *
- * The item will be positioned at the middle of the genlist viewport.
- *
- * @see elm_genlist_item_bring_in()
- * @see elm_genlist_item_middle_show()
- *
- * @ingroup Genlist
- */
-//XXX: elm_genlist_item_bring_in(it, TOP/MIDDLE/BOTTOM/...); this kind of API would cover all similar APIs - bring_in, top_bring_in ...
-EAPI void elm_genlist_item_middle_bring_in(Elm_Object_Item *it);
-
-/**
* Update the contents of an item
*
* @param it The item