elementary - revert ddc3cf80ce0a50a9161fcb212d3414f5d7b5898c

We have a plan to add more proper API.
This commit is contained in:
ChunEon Park 2013-09-12 14:13:59 +09:00
parent 4a4ff6eb9f
commit 9f34119498
6 changed files with 0 additions and 40 deletions

View File

@ -1582,10 +1582,6 @@
* Bg: Add bg reset feature.
2013-09-02 ChunEon Park (Hermet)
* Widget: Introduce elm_object_item_object_get() API.
2013-09-04 Ryuan Choi (ryuan)
* elm_config : profile may be broken when clicked reset button in profiles tab

View File

@ -85,7 +85,6 @@ Additions:
* Add elm_win_focus_highlight_animate_set/get().
* Add selectraise feature to gengrid.
* Add bg reset feature.
* Add elm_object_item_object_get().
* Add support for more than one progress status in a progressbar.
* Add elm_table_child_get().
* Add support for flip focus direction.

View File

@ -1899,9 +1899,3 @@ elm_object_item_cursor_engine_only_get(const Elm_Object_Item *it)
{
return elm_widget_item_cursor_engine_only_get(it);
}
EAPI const Evas_Object *
elm_object_item_object_get(const Elm_Object_Item *it)
{
return _elm_widget_item_object_get((Elm_Widget_Item*)it);
}

View File

@ -33,27 +33,6 @@ typedef void (*Elm_Object_Item_Signal_Cb)(void *data, Elm_Objec
*/
EAPI Evas_Object *elm_object_item_widget_get(const Elm_Object_Item *it);
/**
* Get the object item's internal object handle.
*
* @param it The Elementary object item
* @return The Internal object of the object item.
*
* @note This function should only be used if you really need to refer the
* internal object's properties (i.e geometry). Since the object items are
* managed/controlled by the widget, the object could be deleted, resized, moved
* and so on by the widget. So you should not modify the object directly nor you
* should not treat the object without validation, we don't guarantee the result
* of any of these behavior.
*
* Some widget items may return @c NULL for this API if the items @p are not
* based on the evas object.
*
* @since 1.8
* @ingroup General
*/
EAPI const Evas_Object *elm_object_item_object_get(const Elm_Object_Item *it);
/**
* Set a content of an object item
*

View File

@ -5787,13 +5787,6 @@ _elm_widget_item_translate(Elm_Widget_Item *item)
#endif
}
EAPI const Evas_Object *
_elm_widget_item_object_get(const Elm_Widget_Item *item)
{
ELM_WIDGET_ITEM_CHECK_OR_RETURN(item, NULL);
return item->view;
}
/* happy debug functions */
#ifdef ELM_DEBUG
static void

View File

@ -771,7 +771,6 @@ EAPI void _elm_widget_item_domain_translatable_part_text_set(Elm_Wid
EAPI const char * _elm_widget_item_translatable_part_text_get(const Elm_Widget_Item *item, const char *part);
EAPI void _elm_widget_item_translate(Elm_Widget_Item *item);
EAPI void _elm_widget_item_domain_part_text_translatable_set(Elm_Widget_Item *item, const char *part, const char *domain, Eina_Bool translatable);
EAPI const Evas_Object *_elm_widget_item_object_get(const Elm_Widget_Item *item);
/**
* Function to operate on a given widget's scrollabe children when necessary.