edje_edit: return lost API *_span_row/col_set declaration

I'm lost this declaration while add API for manager part items by
index and mark as deprecated old funcs
This commit is contained in:
Vyacheslav Reutskiy 2016-06-06 10:42:14 +03:00
parent f15ae07188
commit dabdebf026
1 changed files with 28 additions and 0 deletions

View File

@ -3931,6 +3931,34 @@ edje_edit_part_item_span_row_get(Evas_Object *obj, const char *part, const char
EINA_DEPRECATED
EAPI Eina_Bool edje_edit_part_item_span_set(Evas_Object *obj, const char *part, const char *item, unsigned char col, unsigned char row);
/** Set the count of columns which this item will spans for use.
*
* @param obj Object being edited.
* @param part Part that contain item.
* @param item The name of the item.
* @param col new count of the columns spans.
*
* @return @c EINA_TRUE if successful, @c EINA_FALSE otherwise.
* @since 1.16
*/
EINA_DEPRECATED
EAPI Eina_Bool
edje_edit_part_item_span_col_set(Evas_Object *obj, const char *part, const char *item, unsigned short col);
/** Set the count of rows which this item will spans for use.
*
* @param obj Object being edited.
* @param part Part that contain item.
* @param item The name of the item.
* @param row new count of the rows spans.
*
* @return @c EINA_TRUE if successful, @c EINA_FALSE otherwise.
* @since 1.16
*/
EINA_DEPRECATED
EAPI Eina_Bool
edje_edit_part_item_span_row_set(Evas_Object *obj, const char *part, const char *item, unsigned short row);
/** Set the count of columns which this item will spans for use.
*
* @param obj Object being edited.