elm_index_priority_get() api has been changed to elm_index_standard_priority_get().
keep the previous api with deprecated for compatibility.
Change-Id: I20e3fd996a65f8a55e8e68206c95eafba28c369d
* @ingroup Elm_Index
*/
EINA_DEPRECATED EAPI void elm_index_priority_set(Evas_Object *obj, int priority);
+
+/**
+ * @brief Control standard_priority group of index. Priority group will be
+ * shown as many items as it can, and other group will be shown one character
+ * only.
+ *
+ * @return @c priority target priority value in index
+ *
+ * @see Use elm_index_standard_priority_get()
+ *
+ * @since 1.16
+ *
+ * @ingroup Elm_Index
+ */
+EINA_DEPRECATED EAPI int elm_index_priority_get(const Evas_Object *obj);
it->priority = priority;
}
+EINA_DEPRECATED EAPI int
+elm_index_priority_get(const Eo *obj)
+{
+ int ret = 0;
+ eo_do(obj, ret = elm_obj_index_standard_priority_get());
+ return ret;
+}
+
EINA_DEPRECATED EAPI void
elm_index_priority_set(Eo *obj, int priority)
{