elementary/genlist - deprecated elm_genlist_item_del()
[framework/uifw/elementary.git] / src / lib / elm_deprecated.h
1 EINA_DEPRECATED EAPI void          elm_gen_clear(Evas_Object *obj);
2 EINA_DEPRECATED EAPI void          elm_gen_item_selected_set(Elm_Gen_Item *it, Eina_Bool selected);
3 EINA_DEPRECATED EAPI Eina_Bool     elm_gen_item_selected_get(const Elm_Gen_Item *it);
4 EINA_DEPRECATED EAPI void          elm_gen_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
5 EINA_DEPRECATED EAPI Eina_Bool     elm_gen_always_select_mode_get(const Evas_Object *obj);
6 EINA_DEPRECATED EAPI void          elm_gen_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
7 EINA_DEPRECATED EAPI Eina_Bool     elm_gen_no_select_mode_get(const Evas_Object *obj);
8 EINA_DEPRECATED EAPI void          elm_gen_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
9 EINA_DEPRECATED EAPI void          elm_gen_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
10 EINA_DEPRECATED EAPI void          elm_gen_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel);
11 EINA_DEPRECATED EAPI void          elm_gen_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel);
12
13 EINA_DEPRECATED EAPI void          elm_gen_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize);
14 EINA_DEPRECATED EAPI void          elm_gen_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
15 EINA_DEPRECATED EAPI void          elm_gen_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
16 EINA_DEPRECATED EAPI void          elm_gen_page_show(const Evas_Object *obj, int h_pagenumber, int v_pagenumber);
17 EINA_DEPRECATED EAPI void          elm_gen_page_bring_in(const Evas_Object *obj, int h_pagenumber, int v_pagenumber);
18 EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_first_item_get(const Evas_Object *obj);
19 EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_last_item_get(const Evas_Object *obj);
20 EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_item_next_get(const Elm_Gen_Item *it);
21 EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_item_prev_get(const Elm_Gen_Item *it);
22 EINA_DEPRECATED EAPI Evas_Object  *elm_gen_item_widget_get(const Elm_Gen_Item *it);
23
24 /**
25  * Get the widget object's handle which contains a given item
26  *
27  * @param it The Elementary object item
28  * @return The widget object
29  *
30  * @note This returns the widget object itself that an item belongs to.
31  * @note Every elm_object_item supports this API
32  * @deprecated Use elm_object_item_widget_get() instead
33  * @ingroup General
34  */
35 EINA_DEPRECATED EAPI Evas_Object                 *elm_object_item_object_get(const Elm_Object_Item *it);
36
37 /**
38  * @defgroup Toggle Toggle
39  *
40  * @image html img/widget/toggle/preview-00.png
41  * @image latex img/widget/toggle/preview-00.eps
42  *
43  * @brief A toggle is a slider which can be used to toggle between
44  * two values.  It has two states: on and off.
45  *
46  * This widget is deprecated. Please use elm_check_add() instead using the
47  * toggle style like:
48  *
49  * @code
50  * obj = elm_check_add(parent);
51  * elm_object_style_set(obj, "toggle");
52  * elm_object_part_text_set(obj, "on", "ON");
53  * elm_object_part_text_set(obj, "off", "OFF");
54  * @endcode
55  *
56  * Signals that you can add callbacks for are:
57  * @li "changed" - Whenever the toggle value has been changed.  Is not called
58  *                 until the toggle is released by the cursor (assuming it
59  *                 has been triggered by the cursor in the first place).
60  *
61  * Default contents parts of the toggle widget that you can use for are:
62  * @li "icon" - An icon of the toggle
63  *
64  * Default text parts of the toggle widget that you can use for are:
65  * @li "elm.text" - Label of the toggle
66  *
67  * @ref tutorial_toggle show how to use a toggle.
68  * @{
69  */
70
71 /**
72  * @brief Add a toggle to @p parent.
73  *
74  * @param parent The parent object
75  *
76  * @return The toggle object
77  */
78 EINA_DEPRECATED EAPI Evas_Object *elm_toggle_add(Evas_Object *parent);
79
80 /**
81  * @brief Sets the label to be displayed with the toggle.
82  *
83  * @param obj The toggle object
84  * @param label The label to be displayed
85  *
86  * @deprecated use elm_object_text_set() instead.
87  */
88 EINA_DEPRECATED EAPI void         elm_toggle_label_set(Evas_Object *obj, const char *label);
89
90 /**
91  * @brief Gets the label of the toggle
92  *
93  * @param obj  toggle object
94  * @return The label of the toggle
95  *
96  * @deprecated use elm_object_text_get() instead.
97  */
98 EINA_DEPRECATED EAPI const char  *elm_toggle_label_get(const Evas_Object *obj);
99
100 /**
101  * @brief Set the icon used for the toggle
102  *
103  * @param obj The toggle object
104  * @param icon The icon object for the button
105  *
106  * Once the icon object is set, a previously set one will be deleted
107  * If you want to keep that old content object, use the
108  * elm_toggle_icon_unset() function.
109  *
110  * @deprecated use elm_object_part_content_set() instead.
111  */
112 EINA_DEPRECATED EAPI void         elm_toggle_icon_set(Evas_Object *obj, Evas_Object *icon);
113
114 /**
115  * @brief Get the icon used for the toggle
116  *
117  * @param obj The toggle object
118  * @return The icon object that is being used
119  *
120  * Return the icon object which is set for this widget.
121  *
122  * @see elm_toggle_icon_set()
123  *
124  * @deprecated use elm_object_part_content_get() instead.
125  */
126 EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_get(const Evas_Object *obj);
127
128 /**
129  * @brief Unset the icon used for the toggle
130  *
131  * @param obj The toggle object
132  * @return The icon object that was being used
133  *
134  * Unparent and return the icon object which was set for this widget.
135  *
136  * @see elm_toggle_icon_set()
137  *
138  * @deprecated use elm_object_part_content_unset() instead.
139  */
140 EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_unset(Evas_Object *obj);
141
142 /**
143  * @brief Sets the labels to be associated with the on and off states of the toggle.
144  *
145  * @param obj The toggle object
146  * @param onlabel The label displayed when the toggle is in the "on" state
147  * @param offlabel The label displayed when the toggle is in the "off" state
148  *
149  * @deprecated use elm_object_part_text_set() for "on" and "off" parts
150  * instead.
151  */
152 EINA_DEPRECATED EAPI void         elm_toggle_states_labels_set(Evas_Object *obj, const char *onlabel, const char *offlabel);
153
154 /**
155  * @brief Gets the labels associated with the on and off states of the
156  * toggle.
157  *
158  * @param obj The toggle object
159  * @param onlabel A char** to place the onlabel of @p obj into
160  * @param offlabel A char** to place the offlabel of @p obj into
161  *
162  * @deprecated use elm_object_part_text_get() for "on" and "off" parts
163  * instead.
164  */
165 EINA_DEPRECATED EAPI void         elm_toggle_states_labels_get(const Evas_Object *obj, const char **onlabel, const char **offlabel);
166
167 /**
168  * @brief Sets the state of the toggle to @p state.
169  *
170  * @param obj The toggle object
171  * @param state The state of @p obj
172  *
173  * @deprecated use elm_check_state_set() instead.
174  */
175 EINA_DEPRECATED EAPI void         elm_toggle_state_set(Evas_Object *obj, Eina_Bool state);
176
177 /**
178  * @brief Gets the state of the toggle to @p state.
179  *
180  * @param obj The toggle object
181  * @return The state of @p obj
182  *
183  * @deprecated use elm_check_state_get() instead.
184  */
185 EINA_DEPRECATED EAPI Eina_Bool    elm_toggle_state_get(const Evas_Object *obj);
186
187 /**
188  * @brief Sets the state pointer of the toggle to @p statep.
189  *
190  * @param obj The toggle object
191  * @param statep The state pointer of @p obj
192  *
193  * @deprecated use elm_check_state_pointer_set() instead.
194  */
195 EINA_DEPRECATED EAPI void         elm_toggle_state_pointer_set(Evas_Object *obj, Eina_Bool *statep);
196
197 /**
198  * @}
199  */
200
201 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_add(Evas_Object *parent);
202 EINA_DEPRECATED EAPI void         elm_scrolled_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line);
203 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_single_line_get(const Evas_Object *obj);
204 EINA_DEPRECATED EAPI void         elm_scrolled_entry_password_set(Evas_Object *obj, Eina_Bool password);
205 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_password_get(const Evas_Object *obj);
206 EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_set(Evas_Object *obj, const char *entry);
207 EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_entry_get(const Evas_Object *obj);
208 EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_append(Evas_Object *obj, const char *entry);
209 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_is_empty(const Evas_Object *obj);
210 EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_selection_get(const Evas_Object *obj);
211 EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_insert(Evas_Object *obj, const char *entry);
212 EINA_DEPRECATED EAPI void         elm_scrolled_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap);
213 EINA_DEPRECATED EAPI void         elm_scrolled_entry_editable_set(Evas_Object *obj, Eina_Bool editable);
214 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_editable_get(const Evas_Object *obj);
215 EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_none(Evas_Object *obj);
216 EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_all(Evas_Object *obj);
217 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_next(Evas_Object *obj);
218 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_prev(Evas_Object *obj);
219 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_up(Evas_Object *obj);
220 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_down(Evas_Object *obj);
221 EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_begin_set(Evas_Object *obj);
222 EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_end_set(Evas_Object *obj);
223 EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_begin_set(Evas_Object *obj);
224 EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_end_set(Evas_Object *obj);
225 EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_begin(Evas_Object *obj);
226 EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_end(Evas_Object *obj);
227 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_format_get(const Evas_Object *obj);
228 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_visible_format_get(const Evas_Object *obj);
229 EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_cursor_content_get(const Evas_Object *obj);
230 EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_pos_set(Evas_Object *obj, int pos);
231 EINA_DEPRECATED EAPI int          elm_scrolled_entry_cursor_pos_get(const Evas_Object *obj);
232 EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_cut(Evas_Object *obj);
233 EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_copy(Evas_Object *obj);
234 EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_paste(Evas_Object *obj);
235 EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_clear(Evas_Object *obj);
236 EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_item_add(Evas_Object *obj, const char *label, const char *icon_file, Elm_Icon_Type icon_type, Evas_Smart_Cb func, const void *data);
237 EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled);
238 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_context_menu_disabled_get(const Evas_Object *obj);
239 EINA_DEPRECATED EAPI void         elm_scrolled_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
240 EINA_DEPRECATED EAPI void         elm_scrolled_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
241 EINA_DEPRECATED EAPI void         elm_scrolled_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
242 EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
243 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_get(const Evas_Object *obj);
244 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_unset(Evas_Object *obj);
245 EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
246 EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_set(Evas_Object *obj, Evas_Object *end);
247 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_get(const Evas_Object *obj);
248 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_unset(Evas_Object *obj);
249 EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
250 EINA_DEPRECATED EAPI void         elm_scrolled_entry_item_provider_append(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
251 EINA_DEPRECATED EAPI void         elm_scrolled_entry_item_provider_prepend(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
252 EINA_DEPRECATED EAPI void         elm_scrolled_entry_item_provider_remove(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
253 EINA_DEPRECATED EAPI void         elm_scrolled_entry_text_filter_append(Evas_Object *obj, void (*func)(void *data, Evas_Object *entry, char **text), void *data);
254 EINA_DEPRECATED EAPI void         elm_scrolled_entry_text_filter_prepend(Evas_Object *obj, void (*func)(void *data, Evas_Object *entry, char **text), void *data);
255 EINA_DEPRECATED EAPI void         elm_scrolled_entry_text_filter_remove(Evas_Object *obj, void (*func)(void *data, Evas_Object *entry, char **text), void *data);
256 EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format);
257 EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format);
258 EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_save(Evas_Object *obj);
259 EINA_DEPRECATED EAPI void         elm_scrolled_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave);
260 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_autosave_get(const Evas_Object *obj);
261 EINA_DEPRECATED EAPI void         elm_scrolled_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly);
262 EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cnp_textonly_get(Evas_Object *obj);
263
264 /**
265  * Set the text to show in the anchorblock
266  *
267  * Sets the text of the anchorblock to @p text. This text can include markup
268  * format tags, including <c>\<a href=anchorname\></a></c> to begin a segment
269  * of text that will be specially styled and react to click events, ended
270  * with either of \</a\> or \</\>. When clicked, the anchor will emit an
271  * "anchor,clicked" signal that you can attach a callback to with
272  * evas_object_smart_callback_add(). The name of the anchor given in the
273  * event info struct will be the one set in the href attribute, in this
274  * case, anchorname.
275  *
276  * Other markup can be used to style the text in different ways, but it's
277  * up to the style defined in the theme which tags do what.
278  * @deprecated use elm_object_text_set() instead.
279  */
280 EINA_DEPRECATED EAPI void        elm_anchorblock_text_set(Evas_Object *obj, const char *text);
281
282 /**
283  * Get the markup text set for the anchorblock
284  *
285  * Retrieves the text set on the anchorblock, with markup tags included.
286  *
287  * @param obj The anchorblock object
288  * @return The markup text set or @c NULL if nothing was set or an error
289  * occurred
290  * @deprecated use elm_object_text_set() instead.
291  */
292 EINA_DEPRECATED EAPI const char *elm_anchorblock_text_get(const Evas_Object *obj);
293
294 /**
295  * Set the text to show in the anchorview
296  *
297  * Sets the text of the anchorview to @p text. This text can include markup
298  * format tags, including <c>\<a href=anchorname\></c> to begin a segment of
299  * text that will be specially styled and react to click events, ended with
300  * either of \</a\> or \</\>. When clicked, the anchor will emit an
301  * "anchor,clicked" signal that you can attach a callback to with
302  * evas_object_smart_callback_add(). The name of the anchor given in the
303  * event info struct will be the one set in the href attribute, in this
304  * case, anchorname.
305  *
306  * Other markup can be used to style the text in different ways, but it's
307  * up to the style defined in the theme which tags do what.
308  * @deprecated use elm_object_text_set() instead.
309  */
310 EINA_DEPRECATED EAPI void        elm_anchorview_text_set(Evas_Object *obj, const char *text);
311
312 /**
313  * Get the markup text set for the anchorview
314  *
315  * Retrieves the text set on the anchorview, with markup tags included.
316  *
317  * @param obj The anchorview object
318  * @return The markup text set or @c NULL if nothing was set or an error
319  * occurred
320  * @deprecated use elm_object_text_set() instead.
321  */
322 EINA_DEPRECATED EAPI const char *elm_anchorview_text_get(const Evas_Object *obj);
323
324 /**
325  * @brief Get the ctxpopup item's disabled/enabled state.
326  *
327  * @param it Ctxpopup item to be enabled/disabled
328  * @return disabled @c EINA_TRUE, if disabled, @c EINA_FALSE otherwise
329  *
330  * @see elm_ctxpopup_item_disabled_set()
331  * @deprecated use elm_object_item_disabled_get() instead
332  *
333  * @ingroup Ctxpopup
334  */
335 EINA_DEPRECATED EAPI Eina_Bool                    elm_ctxpopup_item_disabled_get(const Elm_Object_Item *it);
336
337 /**
338  * @brief Set the ctxpopup item's state as disabled or enabled.
339  *
340  * @param it Ctxpopup item to be enabled/disabled
341  * @param disabled @c EINA_TRUE to disable it, @c EINA_FALSE to enable it
342  *
343  * When disabled the item is greyed out to indicate it's state.
344  * @deprecated use elm_object_item_disabled_set() instead
345  *
346  * @ingroup Ctxpopup
347  */
348 EINA_DEPRECATED EAPI void         elm_ctxpopup_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
349
350 /**
351  * @brief Get the icon object for the given ctxpopup item.
352  *
353  * @param it Ctxpopup item
354  * @return icon object or @c NULL, if the item does not have icon or an error
355  * occurred
356  *
357  * @see elm_ctxpopup_item_append()
358  * @see elm_ctxpopup_item_icon_set()
359  *
360  * @deprecated use elm_object_item_part_content_get() instead
361  *
362  * @ingroup Ctxpopup
363  */
364 EINA_DEPRECATED EAPI Evas_Object *elm_ctxpopup_item_icon_get(const Elm_Object_Item *it);
365
366 /**
367  * @brief Sets the side icon associated with the ctxpopup item
368  *
369  * @param it Ctxpopup item
370  * @param icon Icon object to be set
371  *
372  * Once the icon object is set, a previously set one will be deleted.
373  * @warning Setting the same icon for two items will cause the icon to
374  * dissapear from the first item.
375  *
376  * @see elm_ctxpopup_item_append()
377  *
378  * @deprecated use elm_object_item_part_content_set() instead
379  *
380  * @ingroup Ctxpopup
381  */
382 EINA_DEPRECATED EAPI void         elm_ctxpopup_item_icon_set(Elm_Object_Item *it, Evas_Object *icon);
383
384 /**
385  * @brief Get the label for the given ctxpopup item.
386  *
387  * @param it Ctxpopup item
388  * @return label string or @c NULL, if the item does not have label or an
389  * error occured
390  *
391  * @see elm_ctxpopup_item_append()
392  * @see elm_ctxpopup_item_label_set()
393  *
394  * @deprecated use elm_object_item_text_get() instead
395  *
396  * @ingroup Ctxpopup
397  */
398 EINA_DEPRECATED EAPI const char  *elm_ctxpopup_item_label_get(const Elm_Object_Item *it);
399
400 /**
401  * @brief (Re)set the label on the given ctxpopup item.
402  *
403  * @param it Ctxpopup item
404  * @param label String to set as label
405  *
406  * @deprecated use elm_object_item_text_set() instead
407  *
408  * @ingroup Ctxpopup
409  */
410 EINA_DEPRECATED EAPI void         elm_ctxpopup_item_label_set(Elm_Object_Item *it, const char *label);
411
412 /**
413  * @brief Set an elm widget as the content of the ctxpopup.
414  *
415  * @param obj Ctxpopup object
416  * @param content Content to be swallowed
417  *
418  * If the content object is already set, a previous one will bedeleted. If
419  * you want to keep that old content object, use the
420  * elm_ctxpopup_content_unset() function.
421  *
422  * @warning Ctxpopup can't hold both a item list and a content at the same
423  * time. When a content is set, any previous items will be removed.
424  *
425  * @deprecated use elm_object_content_set() instead
426  *
427  * @ingroup Ctxpopup
428  */
429 EINA_DEPRECATED EAPI void         elm_ctxpopup_content_set(Evas_Object *obj, Evas_Object *content);
430
431 /**
432  * @brief Unset the ctxpopup content
433  *
434  * @param obj Ctxpopup object
435  * @return The content that was being used
436  *
437  * Unparent and return the content object which was set for this widget.
438  *
439  * @deprecated use elm_object_content_unset()
440  *
441  * @see elm_ctxpopup_content_set()
442  *
443  * @deprecated use elm_object_content_unset() instead
444  *
445  * @ingroup Ctxpopup
446  */
447 EINA_DEPRECATED EAPI Evas_Object *elm_ctxpopup_content_unset(Evas_Object *obj);
448
449 /**
450  * @brief Delete the given item in a ctxpopup object.
451  *
452  * @param it Ctxpopup item to be deleted
453  *
454  * @deprecated Use elm_object_item_del() instead
455  * @see elm_ctxpopup_item_append()
456  *
457  * @ingroup Ctxpopup
458  */
459 EINA_DEPRECATED EAPI void                         elm_ctxpopup_item_del(Elm_Object_Item *it);
460
461 /**
462  * Set the label for a given file selector button widget
463  *
464  * @param obj The file selector button widget
465  * @param label The text label to be displayed on @p obj
466  *
467  * @deprecated use elm_object_text_set() instead.
468  */
469 EINA_DEPRECATED EAPI void        elm_fileselector_button_label_set(Evas_Object *obj, const char *label);
470
471 /**
472  * Get the label set for a given file selector button widget
473  *
474  * @param obj The file selector button widget
475  * @return The button label
476  *
477  * @deprecated use elm_object_text_set() instead.
478  */
479 EINA_DEPRECATED EAPI const char *elm_fileselector_button_label_get(const Evas_Object *obj);
480
481 /**
482  * Set the icon on a given file selector button widget
483  *
484  * @param obj The file selector button widget
485  * @param icon The icon object for the button
486  *
487  * Once the icon object is set, a previously set one will be
488  * deleted. If you want to keep the latter, use the
489  * elm_fileselector_button_icon_unset() function.
490  *
491  * @deprecated Use elm_object_part_content_set() instead
492  * @see elm_fileselector_button_icon_get()
493  */
494 EINA_DEPRECATED EAPI void                        elm_fileselector_button_icon_set(Evas_Object *obj, Evas_Object *icon);
495
496 /**
497  * Get the icon set for a given file selector button widget
498  *
499  * @param obj The file selector button widget
500  * @return The icon object currently set on @p obj or @c NULL, if
501  * none is
502  *
503  * @deprecated Use elm_object_part_content_get() instead
504  * @see elm_fileselector_button_icon_set()
505  */
506 EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_button_icon_get(const Evas_Object *obj);
507
508 /**
509  * Unset the icon used in a given file selector button widget
510  *
511  * @param obj The file selector button widget
512  * @return The icon object that was being used on @p obj or @c
513  * NULL, on errors
514  *
515  * Unparent and return the icon object which was set for this
516  * widget.
517  *
518  * @deprecated Use elm_object_part_content_unset() instead
519  * @see elm_fileselector_button_icon_set()
520  */
521 EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_button_icon_unset(Evas_Object *obj);
522
523 /**
524  * Set the label for a given file selector entry widget's button
525  *
526  * @param obj The file selector entry widget
527  * @param label The text label to be displayed on @p obj widget's
528  * button
529  *
530  * @deprecated use elm_object_text_set() instead.
531  */
532 EINA_DEPRECATED EAPI void        elm_fileselector_entry_button_label_set(Evas_Object *obj, const char *label);
533
534 /**
535  * Get the label set for a given file selector entry widget's button
536  *
537  * @param obj The file selector entry widget
538  * @return The widget button's label
539  *
540  * @deprecated use elm_object_text_set() instead.
541  */
542 EINA_DEPRECATED EAPI const char *elm_fileselector_entry_button_label_get(const Evas_Object *obj);
543
544 /**
545  * Set the icon on a given file selector entry widget's button
546  *
547  * @param obj The file selector entry widget
548  * @param icon The icon object for the entry's button
549  *
550  * Once the icon object is set, a previously set one will be
551  * deleted. If you want to keep the latter, use the
552  * elm_fileselector_entry_button_icon_unset() function.
553  *
554  * @deprecated Use elm_object_part_content_set() instead
555  * @see elm_fileselector_entry_button_icon_get()
556  */
557 EINA_DEPRECATED EAPI void                        elm_fileselector_entry_button_icon_set(Evas_Object *obj, Evas_Object *icon);
558
559 /**
560  * Get the icon set for a given file selector entry widget's button
561  *
562  * @param obj The file selector entry widget
563  * @return The icon object currently set on @p obj widget's button
564  * or @c NULL, if none is
565  *
566  * @deprecated Use elm_object_part_content_get() instead
567  * @see elm_fileselector_entry_button_icon_set()
568  */
569 EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_entry_button_icon_get(const Evas_Object *obj);
570
571 /**
572  * Unset the icon used in a given file selector entry widget's
573  * button
574  *
575  * @param obj The file selector entry widget
576  * @return The icon object that was being used on @p obj widget's
577  * button or @c NULL, on errors
578  *
579  * Unparent and return the icon object which was set for this
580  * widget's button.
581  *
582  * @deprecated Use elm_object_part_content_unset() instead
583  * @see elm_fileselector_entry_button_icon_set()
584  */
585 EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_entry_button_icon_unset(Evas_Object *obj);
586
587 /**
588  * @brief Sets the content of the hover object and the direction in which it
589  * will pop out.
590  *
591  * @param obj The hover object
592  * @param swallow The direction that the object will be displayed
593  * at. Accepted values are "left", "top-left", "top", "top-right",
594  * "right", "bottom-right", "bottom", "bottom-left", "middle" and
595  * "smart".
596  * @param content The content to place at @p swallow
597  *
598  * Once the content object is set for a given direction, a previously
599  * set one (on the same direction) will be deleted. If you want to
600  * keep that old content object, use the elm_object_part_content_unset()
601  * function.
602  *
603  * All directions may have contents at the same time, except for
604  * "smart". This is a special placement hint and its use case
605  * independs of the calculations coming from
606  * elm_hover_best_content_location_get(). Its use is for cases when
607  * one desires only one hover content, but with a dynamic special
608  * placement within the hover area. The content's geometry, whenever
609  * it changes, will be used to decide on a best location, not
610  * extrapolating the hover's parent object view to show it in (still
611  * being the hover's target determinant of its medium part -- move and
612  * resize it to simulate finger sizes, for example). If one of the
613  * directions other than "smart" are used, a previously content set
614  * using it will be deleted, and vice-versa.
615  *
616  * @deprecated Use elm_object_part_content_set() instead
617  */
618 EINA_DEPRECATED EAPI void         elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content);
619
620 /**
621  * @brief Get the content of the hover object, in a given direction.
622  *
623  * Return the content object which was set for this widget in the
624  * @p swallow direction.
625  *
626  * @param obj The hover object
627  * @param swallow The direction that the object was display at.
628  * @return The content that was being used
629  *
630  * @deprecated Use elm_object_part_content_get() instead
631  * @see elm_object_part_content_set()
632  */
633 EINA_DEPRECATED EAPI Evas_Object *elm_hover_content_get(const Evas_Object *obj, const char *swallow);
634
635 /**
636  * @brief Unset the content of the hover object, in a given direction.
637  *
638  * Unparent and return the content object set at @p swallow direction.
639  *
640  * @param obj The hover object
641  * @param swallow The direction that the object was display at.
642  * @return The content that was being used.
643  *
644  * @deprecated Use elm_object_part_content_unset() instead
645  * @see elm_object_part_content_set()
646  */
647 EINA_DEPRECATED EAPI Evas_Object *elm_hover_content_unset(Evas_Object *obj, const char *swallow);
648
649 /**
650  * @brief Set the hoversel button label
651  *
652  * @param obj The hoversel object
653  * @param label The label text.
654  *
655  * This sets the label of the button that is always visible (before it is
656  * clicked and expanded).
657  *
658  * @deprecated elm_object_text_set()
659  */
660 EINA_DEPRECATED EAPI void         elm_hoversel_label_set(Evas_Object *obj, const char *label);
661
662 /**
663  * @brief Get the hoversel button label
664  *
665  * @param obj The hoversel object
666  * @return The label text.
667  *
668  * @deprecated elm_object_text_get()
669  */
670 EINA_DEPRECATED EAPI const char  *elm_hoversel_label_get(const Evas_Object *obj);
671
672 /**
673  * @brief Set the icon of the hoversel button
674  *
675  * @param obj The hoversel object
676  * @param icon The icon object
677  *
678  * Sets the icon of the button that is always visible (before it is clicked
679  * and expanded).  Once the icon object is set, a previously set one will be
680  * deleted, if you want to keep that old content object, use the
681  * elm_hoversel_icon_unset() function.
682  *
683  * @see elm_object_content_set() for the button widget
684  * @deprecated Use elm_object_item_part_content_set() instead
685  */
686 EINA_DEPRECATED EAPI void         elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon);
687
688 /**
689  * @brief Get the icon of the hoversel button
690  *
691  * @param obj The hoversel object
692  * @return The icon object
693  *
694  * Get the icon of the button that is always visible (before it is clicked
695  * and expanded). Also see elm_object_content_get() for the button widget.
696  *
697  * @see elm_hoversel_icon_set()
698  * @deprecated Use elm_object_item_part_content_get() instead
699  */
700 EINA_DEPRECATED EAPI Evas_Object *elm_hoversel_icon_get(const Evas_Object *obj);
701
702 /**
703  * @brief Get and unparent the icon of the hoversel button
704  *
705  * @param obj The hoversel object
706  * @return The icon object that was being used
707  *
708  * Unparent and return the icon of the button that is always visible
709  * (before it is clicked and expanded).
710  *
711  * @see elm_hoversel_icon_set()
712  * @see elm_object_content_unset() for the button widget
713  * @deprecated Use elm_object_item_part_content_unset() instead
714  */
715 EINA_DEPRECATED EAPI Evas_Object *elm_hoversel_icon_unset(Evas_Object *obj);
716
717 /**
718  * @brief This returns the data pointer supplied with elm_hoversel_item_add()
719  * that will be passed to associated function callbacks.
720  *
721  * @param it The item to get the data from
722  * @return The data pointer set with elm_hoversel_item_add()
723  *
724  * @see elm_hoversel_item_add()
725  * @deprecated Use elm_object_item_data_get() instead
726  */
727 EINA_DEPRECATED EAPI void        *elm_hoversel_item_data_get(const Elm_Object_Item *it);
728
729 /**
730  * @brief This returns the label text of the given hoversel item.
731  *
732  * @param it The item to get the label
733  * @return The label text of the hoversel item
734  *
735  * @see elm_hoversel_item_add()
736  * @deprecated Use elm_object_item_text_get() instead
737  */
738 EINA_DEPRECATED EAPI const char  *elm_hoversel_item_label_get(const Elm_Object_Item *it);
739
740 /**
741  * @brief Set the function to be called when an item from the hoversel is
742  * freed.
743  *
744  * @param it The item to set the callback on
745  * @param func The function called
746  *
747  * That function will receive these parameters:
748  * @li void * item data
749  * @li Evas_Object * hoversel object
750  * @li Elm_Object_Item * hoversel item
751  *
752  * @see elm_hoversel_item_add()
753  * @deprecated Use elm_object_item_del_cb_set() instead
754  */
755 EINA_DEPRECATED EAPI void                         elm_hoversel_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
756
757 /**
758  * @brief Delete an item from the hoversel
759  *
760  * @param it The item to delete
761  *
762  * This deletes the item from the hoversel (should not be called while the
763  * hoversel is active; use elm_hoversel_expanded_get() to check first).
764  *
765  * @deprecated Use elm_object_item_del() instead
766  * @see elm_hoversel_item_add()
767  */
768 EINA_DEPRECATED EAPI void                         elm_hoversel_item_del(Elm_Object_Item *it);
769
770 /**
771  * Set actionslider labels.
772  *
773  * @param obj The actionslider object
774  * @param left_label The label to be set on the left.
775  * @param center_label The label to be set on the center.
776  * @param right_label The label to be set on the right.
777  * @deprecated use elm_object_text_set() instead.
778  */
779 EINA_DEPRECATED EAPI void        elm_actionslider_labels_set(Evas_Object *obj, const char *left_label, const char *center_label, const char *right_label);
780
781 /**
782  * Get actionslider labels.
783  *
784  * @param obj The actionslider object
785  * @param left_label A char** to place the left_label of @p obj into.
786  * @param center_label A char** to place the center_label of @p obj into.
787  * @param right_label A char** to place the right_label of @p obj into.
788  * @deprecated use elm_object_text_set() instead.
789  */
790 EINA_DEPRECATED EAPI void        elm_actionslider_labels_get(const Evas_Object *obj, const char **left_label, const char **center_label, const char **right_label);
791
792 /**
793  * Set the label used on the indicator.
794  *
795  * @param obj The actionslider object
796  * @param label The label to be set on the indicator.
797  * @deprecated use elm_object_text_set() instead.
798  */
799 EINA_DEPRECATED EAPI void        elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label);
800
801 /**
802  * Get the label used on the indicator object.
803  *
804  * @param obj The actionslider object
805  * @return The indicator label
806  * @deprecated use elm_object_text_get() instead.
807  */
808 EINA_DEPRECATED EAPI const char *elm_actionslider_indicator_label_get(Evas_Object *obj);
809
810 /**
811  * Set the overlay object used for the background object.
812  *
813  * @param obj The bg object
814  * @param overlay The overlay object
815  *
816  * This provides a way for elm_bg to have an 'overlay' that will be on top
817  * of the bg. Once the over object is set, a previously set one will be
818  * deleted, even if you set the new one to NULL. If you want to keep that
819  * old content object, use the elm_bg_overlay_unset() function.
820  *
821  * @deprecated use elm_object_part_content_set() instead
822  *
823  * @ingroup Bg
824  */
825
826 EINA_DEPRECATED EAPI void         elm_bg_overlay_set(Evas_Object *obj, Evas_Object *overlay);
827
828 /**
829  * Get the overlay object used for the background object.
830  *
831  * @param obj The bg object
832  * @return The content that is being used
833  *
834  * Return the content object which is set for this widget
835  *
836  * @deprecated use elm_object_part_content_get() instead
837  *
838  * @ingroup Bg
839  */
840 EINA_DEPRECATED EAPI Evas_Object *elm_bg_overlay_get(const Evas_Object *obj);
841
842 /**
843  * Get the overlay object used for the background object.
844  *
845  * @param obj The bg object
846  * @return The content that was being used
847  *
848  * Unparent and return the overlay object which was set for this widget
849  *
850  * @deprecated use elm_object_part_content_unset() instead
851  *
852  * @ingroup Bg
853  */
854 EINA_DEPRECATED EAPI Evas_Object *elm_bg_overlay_unset(Evas_Object *obj);
855
856
857 /**
858  * Set the label of the bubble
859  *
860  * @param obj The bubble object
861  * @param label The string to set in the label
862  *
863  * This function sets the title of the bubble. Where this appears depends on
864  * the selected corner.
865  * @deprecated use elm_object_text_set() instead.
866  */
867 EINA_DEPRECATED EAPI void         elm_bubble_label_set(Evas_Object *obj, const char *label);
868
869 /**
870  * Get the label of the bubble
871  *
872  * @param obj The bubble object
873  * @return The string of set in the label
874  *
875  * This function gets the title of the bubble.
876  * @deprecated use elm_object_text_get() instead.
877  */
878 EINA_DEPRECATED EAPI const char  *elm_bubble_label_get(const Evas_Object *obj);
879
880 /**
881  * Set the info of the bubble
882  *
883  * @param obj The bubble object
884  * @param info The given info about the bubble
885  *
886  * This function sets the info of the bubble. Where this appears depends on
887  * the selected corner.
888  * @deprecated use elm_object_part_text_set() instead. (with "info" as the parameter).
889  */
890 EINA_DEPRECATED EAPI void         elm_bubble_info_set(Evas_Object *obj, const char *info);
891
892 /**
893  * Get the info of the bubble
894  *
895  * @param obj The bubble object
896  *
897  * @return The "info" string of the bubble
898  *
899  * This function gets the info text.
900  * @deprecated use elm_object_part_text_get() instead. (with "info" as the parameter).
901  */
902 EINA_DEPRECATED EAPI const char  *elm_bubble_info_get(const Evas_Object *obj);
903
904 /**
905  * Set the content to be shown in the bubble
906  *
907  * Once the content object is set, a previously set one will be deleted.
908  * If you want to keep the old content object, use the
909  * elm_bubble_content_unset() function.
910  *
911  * @param obj The bubble object
912  * @param content The given content of the bubble
913  *
914  * This function sets the content shown on the middle of the bubble.
915  *
916  * @deprecated use elm_object_content_set() instead
917  *
918  */
919 EINA_DEPRECATED EAPI void         elm_bubble_content_set(Evas_Object *obj, Evas_Object *content);
920
921 /**
922  * Get the content shown in the bubble
923  *
924  * Return the content object which is set for this widget.
925  *
926  * @param obj The bubble object
927  * @return The content that is being used
928  *
929  * @deprecated use elm_object_content_get() instead
930  *
931  */
932 EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_get(const Evas_Object *obj);
933
934 /**
935  * Unset the content shown in the bubble
936  *
937  * Unparent and return the content object which was set for this widget.
938  *
939  * @param obj The bubble object
940  * @return The content that was being used
941  *
942  * @deprecated use elm_object_content_unset() instead
943  *
944  */
945 EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_unset(Evas_Object *obj);
946
947 /**
948  * Set the icon of the bubble
949  *
950  * Once the icon object is set, a previously set one will be deleted.
951  * If you want to keep the old content object, use the
952  * elm_icon_content_unset() function.
953  *
954  * @param obj The bubble object
955  * @param icon The given icon for the bubble
956  *
957  * @deprecated use elm_object_part_content_set() instead
958  *
959  */
960 EINA_DEPRECATED EAPI void         elm_bubble_icon_set(Evas_Object *obj, Evas_Object *icon);
961
962 /**
963  * Get the icon of the bubble
964  *
965  * @param obj The bubble object
966  * @return The icon for the bubble
967  *
968  * This function gets the icon shown on the top left of bubble.
969  *
970  * @deprecated use elm_object_part_content_get() instead
971  *
972  */
973 EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_get(const Evas_Object *obj);
974
975 /**
976  * Unset the icon of the bubble
977  *
978  * Unparent and return the icon object which was set for this widget.
979  *
980  * @param obj The bubble object
981  * @return The icon that was being used
982  *
983  * @deprecated use elm_object_part_content_unset() instead
984  *
985  */
986 EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_unset(Evas_Object *obj);
987
988
989 /**
990  * Set the label used in the button
991  *
992  * The passed @p label can be NULL to clean any existing text in it and
993  * leave the button as an icon only object.
994  *
995  * @param obj The button object
996  * @param label The text will be written on the button
997  * @deprecated use elm_object_text_set() instead.
998  */
999 EINA_DEPRECATED EAPI void         elm_button_label_set(Evas_Object *obj, const char *label);
1000
1001 /**
1002  * Get the label set for the button
1003  *
1004  * The string returned is an internal pointer and should not be freed or
1005  * altered. It will also become invalid when the button is destroyed.
1006  * The string returned, if not NULL, is a stringshare, so if you need to
1007  * keep it around even after the button is destroyed, you can use
1008  * eina_stringshare_ref().
1009  *
1010  * @param obj The button object
1011  * @return The text set to the label, or NULL if nothing is set
1012  * @deprecated use elm_object_text_set() instead.
1013  */
1014 EINA_DEPRECATED EAPI const char  *elm_button_label_get(const Evas_Object *obj);
1015
1016 /**
1017  * Set the icon used for the button
1018  *
1019  * Setting a new icon will delete any other that was previously set, making
1020  * any reference to them invalid. If you need to maintain the previous
1021  * object alive, unset it first with elm_button_icon_unset().
1022  *
1023  * @param obj The button object
1024  * @param icon The icon object for the button
1025  * @deprecated use elm_object_part_content_set() instead.
1026  */
1027 EINA_DEPRECATED EAPI void         elm_button_icon_set(Evas_Object *obj, Evas_Object *icon);
1028
1029 /**
1030  * Get the icon used for the button
1031  *
1032  * Return the icon object which is set for this widget. If the button is
1033  * destroyed or another icon is set, the returned object will be deleted
1034  * and any reference to it will be invalid.
1035  *
1036  * @param obj The button object
1037  * @return The icon object that is being used
1038  *
1039  * @deprecated use elm_object_part_content_get() instead
1040  */
1041 EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj);
1042
1043 /**
1044  * Remove the icon set without deleting it and return the object
1045  *
1046  * This function drops the reference the button holds of the icon object
1047  * and returns this last object. It is used in case you want to remove any
1048  * icon, or set another one, without deleting the actual object. The button
1049  * will be left without an icon set.
1050  *
1051  * @param obj The button object
1052  * @return The icon object that was being used
1053  * @deprecated use elm_object_part_content_unset() instead.
1054  */
1055 EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj);
1056
1057 /**
1058  * Set a day text color to the same that represents Saturdays.
1059  *
1060  * @param obj The calendar object.
1061  * @param pos The text position. Position is the cell counter, from left
1062  * to right, up to down. It starts on 0 and ends on 41.
1063  *
1064  * @deprecated use elm_calendar_mark_add() instead like:
1065  *
1066  * @code
1067  * struct tm t = { 0, 0, 12, 6, 0, 0, 6, 6, -1 };
1068  * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
1069  * @endcode
1070  *
1071  * @see elm_calendar_mark_add()
1072  *
1073  * @ingroup Calendar
1074  */
1075 EINA_DEPRECATED EAPI void elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos);
1076
1077 /**
1078  * Set a day text color to the same that represents Sundays.
1079  *
1080  * @param obj The calendar object.
1081  * @param pos The text position. Position is the cell counter, from left
1082  * to right, up to down. It starts on 0 and ends on 41.
1083
1084  * @deprecated use elm_calendar_mark_add() instead like:
1085  *
1086  * @code
1087  * struct tm t = { 0, 0, 12, 7, 0, 0, 0, 0, -1 };
1088  * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
1089  * @endcode
1090  *
1091  * @see elm_calendar_mark_add()
1092  *
1093  * @ingroup Calendar
1094  */
1095 EINA_DEPRECATED EAPI void elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos);
1096
1097 /**
1098  * Set a day text color to the same that represents Weekdays.
1099  *
1100  * @param obj The calendar object
1101  * @param pos The text position. Position is the cell counter, from left
1102  * to right, up to down. It starts on 0 and ends on 41.
1103  *
1104  * @deprecated use elm_calendar_mark_add() instead like:
1105  *
1106  * @code
1107  * struct tm t = { 0, 0, 12, 1, 0, 0, 0, 0, -1 };
1108  *
1109  * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // monday
1110  * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
1111  * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // tuesday
1112  * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
1113  * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // wednesday
1114  * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
1115  * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // thursday
1116  * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
1117  * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // friday
1118  * @endcode
1119  *
1120  * @see elm_calendar_mark_add()
1121  *
1122  * @ingroup Calendar
1123  */
1124 EINA_DEPRECATED EAPI void elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos);
1125
1126
1127 /**
1128  * @brief Set the text label of the check object
1129  *
1130  * @param obj The check object
1131  * @param label The text label string in UTF-8
1132  *
1133  * @deprecated use elm_object_text_set() instead.
1134  */
1135 EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const char *label);
1136
1137 /**
1138  * @brief Get the text label of the check object
1139  *
1140  * @param obj The check object
1141  * @return The text label string in UTF-8
1142  *
1143  * @deprecated use elm_object_text_get() instead.
1144  */
1145 EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj);
1146
1147 /**
1148  * @brief Set the icon object of the check object
1149  *
1150  * @param obj The check object
1151  * @param icon The icon object
1152  *
1153  * Once the icon object is set, a previously set one will be deleted.
1154  * If you want to keep that old content object, use the
1155  * elm_object_content_unset() function.
1156  *
1157  * @deprecated use elm_object_part_content_set() instead.
1158  *
1159  */
1160 EINA_DEPRECATED EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Object *icon);
1161
1162 /**
1163  * @brief Get the icon object of the check object
1164  *
1165  * @param obj The check object
1166  * @return The icon object
1167  *
1168  * @deprecated use elm_object_part_content_get() instead.
1169  *
1170  */
1171 EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj);
1172
1173 /**
1174  * @brief Unset the icon used for the check object
1175  *
1176  * @param obj The check object
1177  * @return The icon object that was being used
1178  *
1179  * Unparent and return the icon object which was set for this widget.
1180  *
1181  * @deprecated use elm_object_part_content_unset() instead.
1182  *
1183  */
1184 EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj);
1185
1186 /**
1187  * @brief Set the text label of the check object
1188  *
1189  * @param obj The check object
1190  * @param label The text label string in UTF-8
1191  *
1192  * @deprecated use elm_object_text_set() instead.
1193  */
1194 EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const char *label);
1195
1196 /**
1197  * @brief Get the text label of the check object
1198  *
1199  * @param obj The check object
1200  * @return The text label string in UTF-8
1201  *
1202  * @deprecated use elm_object_text_get() instead.
1203  */
1204 EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj);
1205
1206 /**
1207  * @brief Set the icon object of the check object
1208  *
1209  * @param obj The check object
1210  * @param icon The icon object
1211  *
1212  * Once the icon object is set, a previously set one will be deleted.
1213  * If you want to keep that old content object, use the
1214  * elm_object_content_unset() function.
1215  *
1216  * @deprecated use elm_object_part_content_set() instead.
1217  *
1218  */
1219 EINA_DEPRECATED EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Object *icon);
1220
1221 /**
1222  * @brief Get the icon object of the check object
1223  *
1224  * @param obj The check object
1225  * @return The icon object
1226  *
1227  * @deprecated use elm_object_part_content_get() instead.
1228  *
1229  */
1230 EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj);
1231
1232 /**
1233  * @brief Unset the icon used for the check object
1234  *
1235  * @param obj The check object
1236  * @return The icon object that was being used
1237  *
1238  * Unparent and return the icon object which was set for this widget.
1239  *
1240  * @deprecated use elm_object_part_content_unset() instead.
1241  *
1242  */
1243 EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj);
1244
1245 EINA_DEPRECATED EAPI void         elm_check_states_labels_set(Evas_Object *obj, const char *ontext, const char *offtext);
1246 EINA_DEPRECATED EAPI void         elm_check_states_labels_get(const Evas_Object *obj, const char **ontext, const char **offtext);
1247
1248
1249 /**
1250  * Set the content of the conformant widget.
1251  *
1252  * @param obj The conformant object.
1253  * @param content The content to be displayed by the conformant.
1254  *
1255  * Content will be sized and positioned considering the space required
1256  * to display a virtual keyboard. So it won't fill all the conformant
1257  * size. This way is possible to be sure that content won't resize
1258  * or be re-positioned after the keyboard is displayed.
1259  *
1260  * Once the content object is set, a previously set one will be deleted.
1261  * If you want to keep that old content object, use the
1262  * elm_object_content_unset() function.
1263  *
1264  * @see elm_object_content_unset()
1265  * @see elm_object_content_get()
1266  *
1267  * @deprecated use elm_object_content_set() instead
1268  *
1269  * @ingroup Conformant
1270  */
1271 EINA_DEPRECATED EAPI void         elm_conformant_content_set(Evas_Object *obj, Evas_Object *content);
1272
1273 /**
1274  * Get the content of the conformant widget.
1275  *
1276  * @param obj The conformant object.
1277  * @return The content that is being used.
1278  *
1279  * Return the content object which is set for this widget.
1280  * It won't be unparent from conformant. For that, use
1281  * elm_object_content_unset().
1282  *
1283  * @see elm_object_content_set().
1284  * @see elm_object_content_unset()
1285  *
1286  * @deprecated use elm_object_content_get() instead
1287  *
1288  * @ingroup Conformant
1289  */
1290 EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *obj);
1291
1292 /**
1293  * Unset the content of the conformant widget.
1294  *
1295  * @param obj The conformant object.
1296  * @return The content that was being used.
1297  *
1298  * Unparent and return the content object which was set for this widget.
1299  *
1300  * @see elm_object_content_set().
1301  *
1302  * @deprecated use elm_object_content_unset() instead
1303  *
1304  * @ingroup Conformant
1305  */
1306 EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj);
1307
1308 /**
1309  * Get the side labels max length.
1310  *
1311  * @deprecated use elm_diskselector_side_label_length_get() instead:
1312  *
1313  * @param obj The diskselector object.
1314  * @return The max length defined for side labels, or 0 if not a valid
1315  * diskselector.
1316  *
1317  * @ingroup Diskselector
1318  */
1319 EINA_DEPRECATED EAPI int    elm_diskselector_side_label_lenght_get(const Evas_Object *obj);
1320
1321 /**
1322  * Set the side labels max length.
1323  *
1324  * @deprecated use elm_diskselector_side_label_length_set() instead:
1325  *
1326  * @param obj The diskselector object.
1327  * @param len The max length defined for side labels.
1328  *
1329  * @ingroup Diskselector
1330  */
1331 EINA_DEPRECATED EAPI void   elm_diskselector_side_label_lenght_set(Evas_Object *obj, int len);
1332
1333 /**
1334  * Get the data associated to the item.
1335  *
1336  * @param it The diskselector item
1337  * @return The data associated to @p it
1338  *
1339  * The return value is a pointer to data associated to @p item when it was
1340  * created, with function elm_diskselector_item_append(). If no data
1341  * was passed as argument, it will return @c NULL.
1342  *
1343  * @see elm_diskselector_item_append()
1344  * @deprecated Use elm_object_item_data_get()
1345  *
1346  * @ingroup Diskselector
1347  */
1348 EINA_DEPRECATED EAPI void                  *elm_diskselector_item_data_get(const Elm_Object_Item *it);
1349
1350 /**
1351  * Set the icon associated to the item.
1352  *
1353  * @param it The diskselector item
1354  * @param icon The icon object to associate with @p it
1355  *
1356  * The icon object to use at left side of the item. An
1357  * icon can be any Evas object, but usually it is an icon created
1358  * with elm_icon_add().
1359  *
1360  * Once the icon object is set, a previously set one will be deleted.
1361  * @warning Setting the same icon for two items will cause the icon to
1362  * dissapear from the first item.
1363  *
1364  * If an icon was passed as argument on item creation, with function
1365  * elm_diskselector_item_append(), it will be already
1366  * associated to the item.
1367  *
1368  * @see elm_diskselector_item_append()
1369  * @see elm_diskselector_item_icon_get()
1370  *
1371  * @deprecated Use elm_object_item_part_content_set() instead
1372  * @ingroup Diskselector
1373  */
1374 EINA_DEPRECATED EAPI void                   elm_diskselector_item_icon_set(Elm_Object_Item *it, Evas_Object *icon);
1375
1376 /**
1377  * Get the icon associated to the item.
1378  *
1379  * @param item The diskselector item
1380  * @return The icon associated to @p it
1381  *
1382  * The return value is a pointer to the icon associated to @p item when it was
1383  * created, with function elm_diskselector_item_append(), or later
1384  * with function elm_diskselector_item_icon_set. If no icon
1385  * was passed as argument, it will return @c NULL.
1386  *
1387  * @see elm_diskselector_item_append()
1388  * @see elm_diskselector_item_icon_set()
1389  *
1390  * @deprecated Use elm_object_item_part_content_set() instead
1391  * @ingroup Diskselector
1392  */
1393 EAPI Evas_Object           *elm_diskselector_item_icon_get(const Elm_Object_Item *it);
1394
1395 /**
1396  * Set the label of item.
1397  *
1398  * @param it The item of diskselector.
1399  * @param label The label of item.
1400  *
1401  * The label to be displayed by the item.
1402  *
1403  * If no icon is set, label will be centered on item position, otherwise
1404  * the icon will be placed at left of the label, that will be shifted
1405  * to the right.
1406  *
1407  * An item with label "January" would be displayed on side position as
1408  * "Jan" if max length is set to 3 with function
1409  * elm_diskselector_side_label_lenght_set(), or "Janu", if this property
1410  * is set to 4.
1411  *
1412  * When this @p item is selected, the entire label will be displayed,
1413  * except for width restrictions.
1414  * In this case label will be cropped and "..." will be concatenated,
1415  * but only for display purposes. It will keep the entire string, so
1416  * if diskselector is resized the remaining characters will be displayed.
1417  *
1418  * If a label was passed as argument on item creation, with function
1419  * elm_diskselector_item_append(), it will be already
1420  * displayed by the item.
1421  *
1422  * @see elm_diskselector_side_label_lenght_set()
1423  * @see elm_diskselector_item_label_get()
1424  * @see elm_diskselector_item_append()
1425  *
1426  * @deprecated Use elm_object_item_text_set() instead
1427  * @ingroup Diskselector
1428  */
1429 EINA_DEPRECATED EAPI void                   elm_diskselector_item_label_set(Elm_Object_Item *it, const char *label);
1430
1431 /**
1432  * Get the label of item.
1433  *
1434  * @param it The item of diskselector.
1435  * @return The label of item.
1436  *
1437  * The return value is a pointer to the label associated to @p item when it was
1438  * created, with function elm_diskselector_item_append(), or later
1439  * with function elm_diskselector_item_label_set. If no label
1440  * was passed as argument, it will return @c NULL.
1441  *
1442  * @see elm_diskselector_item_label_set() for more details.
1443  * @see elm_diskselector_item_append()
1444  * @use elm_object_item_text_get()
1445  *
1446  * @ingroup Diskselector
1447  */
1448 EINA_DEPRECATED EAPI const char            *elm_diskselector_item_label_get(const Elm_Object_Item *it);
1449
1450 /**
1451  * Set the function called when a diskselector item is freed.
1452  *
1453  * @param it The item to set the callback on
1454  * @param func The function called
1455  *
1456  * If there is a @p func, then it will be called prior item's memory release.
1457  * That will be called with the following arguments:
1458  * @li item's data;
1459  * @li item's Evas object;
1460  * @li item itself;
1461  *
1462  * This way, a data associated to a diskselector item could be properly
1463  * freed.
1464  * @deprecated Use elm_object_item_del_cb_set() instead
1465  *
1466  * @ingroup Diskselector
1467  */
1468 EINA_DEPRECATED EAPI void                   elm_diskselector_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
1469
1470 /**
1471  * Delete them item from the diskselector.
1472  *
1473  * @param it The item of diskselector to be deleted.
1474  *
1475  * If deleting all diskselector items is required, elm_diskselector_clear()
1476  * should be used instead of getting items list and deleting each one.
1477  *
1478  * @deprecated Use elm_object_item_del() instead
1479  * @see elm_diskselector_clear()
1480  * @see elm_diskselector_item_append()
1481  *
1482  * @ingroup Diskselector
1483  */
1484 EINA_DEPRECATED EAPI void                   elm_diskselector_item_del(Elm_Object_Item *it);
1485
1486 /**
1487  * Set the text to be shown in the diskselector item.
1488  *
1489  * @param it Target item
1490  * @param text The text to set in the content
1491  *
1492  * Setup the text as tooltip to object. The item can have only one tooltip,
1493  * so any previous tooltip data is removed.
1494  *
1495  * @deprecated Use elm_object_item_tooltip_text_set() instead
1496  * @see elm_object_tooltip_text_set() for more details.
1497  *
1498  * @ingroup Diskselector
1499  */
1500 EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
1501
1502 /**
1503  * Set the content to be shown in the tooltip item.
1504  *
1505  * Setup the tooltip to item. The item can have only one tooltip,
1506  * so any previous tooltip data is removed. @p func(with @p data) will
1507  * be called every time that need show the tooltip and it should
1508  * return a valid Evas_Object. This object is then managed fully by
1509  * tooltip system and is deleted when the tooltip is gone.
1510  *
1511  * @param it the diskselector item being attached a tooltip.
1512  * @param func the function used to create the tooltip contents.
1513  * @param data what to provide to @a func as callback data/context.
1514  * @param del_cb called when data is not needed anymore, either when
1515  *        another callback replaces @p func, the tooltip is unset with
1516  *        elm_diskselector_item_tooltip_unset() or the owner @a item
1517  *        dies. This callback receives as the first parameter the
1518  *        given @a data, and @c event_info is the item.
1519  *
1520  * @deprecated Use elm_object_item_tooltip_content_cb_set() instead
1521  * @see elm_object_tooltip_content_cb_set() for more details.
1522  *
1523  * @ingroup Diskselector
1524  */
1525 EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_content_cb_set(Elm_Object_Item *it, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb);
1526
1527 /**
1528  * Unset tooltip from item.
1529  *
1530  * @param it diskselector item to remove previously set tooltip.
1531  *
1532  * Remove tooltip from item. The callback provided as del_cb to
1533  * elm_diskselector_item_tooltip_content_cb_set() will be called to notify
1534  * it is not used anymore.
1535  *
1536  * @deprecated Use elm_object_item_tooltip_unset() instead
1537  * @see elm_object_tooltip_unset() for more details.
1538  * @see elm_diskselector_item_tooltip_content_cb_set()
1539  *
1540  * @ingroup Diskselector
1541  */
1542 EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_unset(Elm_Object_Item *it);
1543
1544 /**
1545  * Sets a different style for this item tooltip.
1546  *
1547  * @note before you set a style you should define a tooltip with
1548  *       elm_diskselector_item_tooltip_content_cb_set() or
1549  *       elm_diskselector_item_tooltip_text_set()
1550  *
1551  * @param it diskselector item with tooltip already set.
1552  * @param style the theme style to use (default, transparent, ...)
1553  *
1554  * @deprecated Use elm_object_item_tooltip_style_set() instead
1555  * @see elm_object_tooltip_style_set() for more details.
1556  *
1557  * @ingroup Diskselector
1558  */
1559 EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_style_set(Elm_Object_Item *it, const char *style);
1560
1561 /**
1562  * Get the style for this item tooltip.
1563  *
1564  * @param it diskselector item with tooltip already set.
1565  * @return style the theme style in use, defaults to "default". If the
1566  *         object does not have a tooltip set, then NULL is returned.
1567  *
1568  * @deprecated Use elm_object_item_tooltip_style_get() instead
1569  * @see elm_object_tooltip_style_get() for more details.
1570  * @see elm_diskselector_item_tooltip_style_set()
1571  *
1572  * @ingroup Diskselector
1573  */
1574 EINA_DEPRECATED EAPI const char            *elm_diskselector_item_tooltip_style_get(const Elm_Object_Item *it);
1575
1576 EINA_DEPRECATED EAPI void         elm_factory_content_set(Evas_Object *obj, Evas_Object *content);
1577 EINA_DEPRECATED EAPI Evas_Object *elm_factory_content_get(const Evas_Object *obj);
1578
1579 /**
1580  * Get the label of a given flip selector widget's item.
1581  *
1582  * @param it The item to get label from
1583  * @return The text label of @p item or @c NULL, on errors
1584  *
1585  * @see elm_object_item_text_set()
1586  *
1587  * @deprecated see elm_object_item_text_get() instead
1588  * @ingroup Flipselector
1589  */
1590 EINA_DEPRECATED EAPI const char *elm_flipselector_item_label_get(const Elm_Object_Item *it);
1591
1592 /**
1593  * Set the label of a given flip selector widget's item.
1594  *
1595  * @param it The item to set label on
1596  * @param label The text label string, in UTF-8 encoding
1597  *
1598  * @see elm_object_item_text_get()
1599  *
1600  * @deprecated see elm_object_item_text_set() instead
1601  * @ingroup Flipselector
1602  */
1603 EINA_DEPRECATED EAPI void        elm_flipselector_item_label_set(Elm_Object_Item *it, const char *label);
1604
1605 /**
1606  * Delete a given item from a flip selector widget.
1607  *
1608  * @param it The item to delete
1609  *
1610  * @deprecated Use elm_object_item_del() instead
1611  * @ingroup Flipselector
1612  */
1613 EINA_DEPRECATED EAPI void       elm_flipselector_item_del(Elm_Object_Item *it);
1614
1615 /**
1616  * Make a given Elementary object the focused one.
1617  *
1618  * @param obj The Elementary object to make focused.
1619  *
1620  * @note This object, if it can handle focus, will take the focus
1621  * away from the one who had it previously and will, for now on, be
1622  * the one receiving input events.
1623  *
1624  * @see elm_object_focus_get()
1625  * @deprecated use elm_object_focus_set() instead.
1626  *
1627  * @ingroup Focus
1628  */
1629 EINA_DEPRECATED EAPI void elm_object_focus(Evas_Object *obj);
1630
1631 /**
1632  * Remove the focus from an Elementary object
1633  *
1634  * @param obj The Elementary to take focus from
1635  *
1636  * This removes the focus from @p obj, passing it back to the
1637  * previous element in the focus chain list.
1638  *
1639  * @see elm_object_focus() and elm_object_focus_custom_chain_get()
1640  * @deprecated use elm_object_focus_set() instead.
1641  *
1642  * @ingroup Focus
1643  */
1644 EINA_DEPRECATED EAPI void elm_object_unfocus(Evas_Object *obj);
1645
1646 /**
1647  * @brief Set the frame label
1648  *
1649  * @param obj The frame object
1650  * @param label The label of this frame object
1651  *
1652  * @deprecated use elm_object_text_set() instead.
1653  */
1654 EINA_DEPRECATED EAPI void         elm_frame_label_set(Evas_Object *obj, const char *label);
1655
1656 /**
1657  * @brief Get the frame label
1658  *
1659  * @param obj The frame object
1660  *
1661  * @return The label of this frame objet or NULL if unable to get frame
1662  *
1663  * @deprecated use elm_object_text_get() instead.
1664  */
1665 EINA_DEPRECATED EAPI const char  *elm_frame_label_get(const Evas_Object *obj);
1666
1667 /**
1668  * @brief Set the content of the frame widget
1669  *
1670  * Once the content object is set, a previously set one will be deleted.
1671  * If you want to keep that old content object, use the
1672  * elm_frame_content_unset() function.
1673  *
1674  * @param obj The frame object
1675  * @param content The content will be filled in this frame object
1676  *
1677  * @deprecated use elm_object_content_set() instead.
1678  */
1679 EINA_DEPRECATED EAPI void         elm_frame_content_set(Evas_Object *obj, Evas_Object *content);
1680
1681 /**
1682  * @brief Get the content of the frame widget
1683  *
1684  * Return the content object which is set for this widget
1685  *
1686  * @param obj The frame object
1687  * @return The content that is being used
1688  *
1689  * @deprecated use elm_object_content_get() instead.
1690  */
1691 EINA_DEPRECATED EAPI Evas_Object *elm_frame_content_get(const Evas_Object *obj);
1692
1693 /**
1694  * @brief Unset the content of the frame widget
1695  *
1696  * Unparent and return the content object which was set for this widget
1697  *
1698  * @param obj The frame object
1699  * @return The content that was being used
1700  *
1701  * @deprecated use elm_object_content_unset() instead.
1702  */
1703 EINA_DEPRECATED EAPI Evas_Object *elm_frame_content_unset(Evas_Object *obj);
1704
1705 EINA_DEPRECATED EAPI void          elm_genlist_horizontal_mode_set(Evas_Object *obj, Elm_List_Mode mode);
1706 EINA_DEPRECATED EAPI Elm_List_Mode elm_genlist_horizontal_mode_get(const Evas_Object *obj);
1707 EINA_DEPRECATED EAPI void          elm_genlist_item_icons_orphan(Elm_Object_Item *it);
1708 /**
1709  * This sets the horizontal stretching mode.
1710  *
1711  * @param obj The genlist object
1712  * @param mode The mode to use (one of #ELM_LIST_SCROLL or #ELM_LIST_LIMIT).
1713  *
1714  * This sets the mode used for sizing items horizontally. Valid modes
1715  * are #ELM_LIST_LIMIT and #ELM_LIST_SCROLL. The default is
1716  * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
1717  * the scroller will scroll horizontally. Otherwise items are expanded
1718  * to fill the width of the viewport of the scroller. If it is
1719  * ELM_LIST_LIMIT, items will be expanded to the viewport width and
1720  * limited to that size.
1721  *
1722  * @see elm_genlist_horizontal_get()
1723  *
1724  * @deprecated use elm_genlist_mode_set()
1725  * @ingroup Genlist
1726  */
1727 EINA_DEPRECATED EAPI void                          elm_genlist_horizontal_set(Evas_Object *obj, Elm_List_Mode mode);
1728
1729 /**
1730  * Gets the horizontal stretching mode.
1731  *
1732  * @param obj The genlist object
1733  * @return The mode to use
1734  * (#ELM_LIST_LIMIT, #ELM_LIST_SCROLL)
1735  *
1736  * @see elm_genlist_horizontal_set()
1737  *
1738  * @deprecated use elm_genlist_mode_get()
1739  * @ingroup Genlist
1740  */
1741 EINA_DEPRECATED EAPI Elm_List_Mode                 elm_genlist_horizontal_get(const Evas_Object *obj);
1742
1743 /**
1744  * Return the data associated to a given genlist item
1745  *
1746  * @param it The genlist item.
1747  * @return the data associated to this item.
1748  *
1749  * This returns the @c data value passed on the
1750  * elm_genlist_item_append() and related item addition calls.
1751  *
1752  * @see elm_genlist_item_append()
1753  * @see elm_genlist_item_data_set()
1754  *
1755  * @deprecated Use elm_object_item_data_get() instead
1756  * @ingroup Genlist
1757  */
1758 EINA_DEPRECATED EAPI void                         *elm_genlist_item_data_get(const Elm_Object_Item *it);
1759
1760 /**
1761  * Set the data associated to a given genlist item
1762  *
1763  * @param it The genlist item
1764  * @param data The new data pointer to set on it
1765  *
1766  * This @b overrides the @c data value passed on the
1767  * elm_genlist_item_append() and related item addition calls. This
1768  * function @b won't call elm_genlist_item_update() automatically,
1769  * so you'd issue it afterwards if you want to hove the item
1770  * updated to reflect the that new data.
1771  *
1772  * @see elm_genlist_item_data_get()
1773  *
1774  * @deprecated Use elm_object_item_data_set() instead
1775  * @ingroup Genlist
1776  */
1777 EINA_DEPRECATED EAPI void                          elm_genlist_item_data_set(Elm_Object_Item *it, const void *data);
1778
1779 /**
1780  * Set whether a given genlist item is disabled or not.
1781  *
1782  * @param it The item
1783  * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
1784  * to enable it back.
1785  *
1786  * A disabled item cannot be selected or unselected. It will also
1787  * change its appearance, to signal the user it's disabled.
1788  *
1789  * @see elm_genlist_item_disabled_get()
1790  * @deprecated Use elm_object_item_disabled_set() instead
1791  *
1792  * @ingroup Genlist
1793  */
1794 EINA_DEPRECATED EAPI void                          elm_genlist_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
1795
1796 /**
1797  * Get whether a given genlist item is disabled or not.
1798  *
1799  * @param it The item
1800  * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
1801  * (and on errors).
1802  *
1803  * @see elm_genlist_item_disabled_set() for more details
1804  * @deprecated Use elm_object_item_disabled_get() instead
1805  *
1806  * @ingroup Genlist
1807  */
1808 EINA_DEPRECATED EAPI Eina_Bool                     elm_genlist_item_disabled_get(const Elm_Object_Item *it);
1809
1810 /**
1811  * Remove a genlist item from the its parent, deleting it.
1812  *
1813  * @param it The item to be removed.
1814  * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
1815  *
1816  * @see elm_genlist_clear(), to remove all items in a genlist at
1817  * once.
1818  *
1819  * @deprecated Use elm_object_item_del() instead
1820  * @ingroup Genlist
1821  */
1822 EINA_DEPRECATED EAPI void                          elm_genlist_item_del(Elm_Object_Item *it);
1823
1824 #define ELM_IMAGE_ROTATE_90_CW 1
1825 #define ELM_IMAGE_ROTATE_180_CW 2
1826 #define ELM_IMAGE_ROTATE_90_CCW 3
1827
1828 /**
1829  * Return the data associated with a given index widget item
1830  *
1831  * @param it The index widget item handle
1832  * @return The data associated with @p it
1833  * @deprecated Use elm_object_item_data_get() instead
1834  *
1835  * @see elm_index_item_data_set()
1836  *
1837  * @ingroup Index
1838  */
1839 EINA_DEPRECATED EAPI void *elm_index_item_data_get(const Elm_Object_Item *item);
1840
1841 /**
1842  * Set the data associated with a given index widget item
1843  *
1844  * @param it The index widget item handle
1845  * @param data The new data pointer to set to @p it
1846  *
1847  * This sets new item data on @p it.
1848  *
1849  * @warning The old data pointer won't be touched by this function, so
1850  * the user had better to free that old data himself/herself.
1851  *
1852  * @deprecated Use elm_object_item_data_set() instead
1853  * @ingroup Index
1854  */
1855 EINA_DEPRECATED EAPI void  elm_index_item_data_set(Elm_Object_Item *it, const void *data);
1856
1857 /**
1858  * Set the function to be called when a given index widget item is freed.
1859  *
1860  * @param it The item to set the callback on
1861  * @param func The function to call on the item's deletion
1862  *
1863  * When called, @p func will have both @c data and @c event_info
1864  * arguments with the @p it item's data value and, naturally, the
1865  * @c obj argument with a handle to the parent index widget.
1866  *
1867  * @deprecated Use elm_object_item_del_cb_set() instead
1868  * @ingroup Index
1869  */
1870 EINA_DEPRECATED EAPI void                  elm_index_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
1871
1872 /**
1873  * Remove an item from a given index widget, <b>to be referenced by
1874  * it's data value</b>.
1875  *
1876  * @param obj The index object
1877  * @param item The item to be removed from @p obj
1878  *
1879  * If a deletion callback is set, via elm_object_item_del_cb_set(),
1880  * that callback function will be called by this one.
1881  *
1882  * @deprecated Use elm_object_item_del() instead
1883  * @ingroup Index
1884  */
1885 EINA_DEPRECATED EAPI void                  elm_index_item_del(Evas_Object *obj, Elm_Object_Item *item);
1886
1887 /**
1888 * @brief Set the label on the label object
1889  *
1890  * @param obj The label object
1891  * @param label The label will be used on the label object
1892  * @deprecated See elm_object_text_set()
1893  */
1894 EINA_DEPRECATED EAPI void        elm_label_label_set(Evas_Object *obj, const char *label);
1895
1896 /**
1897  * @brief Get the label used on the label object
1898  *
1899  * @param obj The label object
1900  * @return The string inside the label
1901  * @deprecated See elm_object_text_get()
1902  */
1903 EINA_DEPRECATED EAPI const char *elm_label_label_get(const Evas_Object *obj);
1904
1905
1906 /**
1907  * Set the layout content.
1908  *
1909  * @param obj The layout object
1910  * @param swallow The swallow part name in the edje file
1911  * @param content The child that will be added in this layout object
1912  *
1913  * Once the content object is set, a previously set one will be deleted.
1914  * If you want to keep that old content object, use the
1915  * elm_object_part_content_unset() function.
1916  *
1917  * @note In an Edje theme, the part used as a content container is called @c
1918  * SWALLOW. This is why the parameter name is called @p swallow, but it is
1919  * expected to be a part name just like the second parameter of
1920  * elm_layout_box_append().
1921  *
1922  * @see elm_layout_box_append()
1923  * @see elm_object_part_content_get()
1924  * @see elm_object_part_content_unset()
1925  * @see @ref secBox
1926  * @deprecated use elm_object_part_content_set() instead
1927  *
1928  * @ingroup Layout
1929  */
1930 EINA_DEPRECATED EAPI void         elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content);
1931
1932 /**
1933  * Get the child object in the given content part.
1934  *
1935  * @param obj The layout object
1936  * @param swallow The SWALLOW part to get its content
1937  *
1938  * @return The swallowed object or NULL if none or an error occurred
1939  *
1940  * @deprecated use elm_object_part_content_get() instead
1941  *
1942  * @ingroup Layout
1943  */
1944 EINA_DEPRECATED EAPI Evas_Object *elm_layout_content_get(const Evas_Object *obj, const char *swallow);
1945
1946 /**
1947  * Unset the layout content.
1948  *
1949  * @param obj The layout object
1950  * @param swallow The swallow part name in the edje file
1951  * @return The content that was being used
1952  *
1953  * Unparent and return the content object which was set for this part.
1954  *
1955  * @deprecated use elm_object_part_content_unset() instead
1956  *
1957  * @ingroup Layout
1958  */
1959 EINA_DEPRECATED EAPI Evas_Object *elm_layout_content_unset(Evas_Object *obj, const char *swallow);
1960
1961 /**
1962  * Set the text of the given part
1963  *
1964  * @param obj The layout object
1965  * @param part The TEXT part where to set the text
1966  * @param text The text to set
1967  *
1968  * @ingroup Layout
1969  * @deprecated use elm_object_part_text_set() instead.
1970  */
1971 EINA_DEPRECATED EAPI void         elm_layout_text_set(Evas_Object *obj, const char *part, const char *text);
1972
1973 /**
1974  * Get the text set in the given part
1975  *
1976  * @param obj The layout object
1977  * @param part The TEXT part to retrieve the text off
1978  *
1979  * @return The text set in @p part
1980  *
1981  * @ingroup Layout
1982  * @deprecated use elm_object_part_text_get() instead.
1983  */
1984 EINA_DEPRECATED EAPI const char  *elm_layout_text_get(const Evas_Object *obj, const char *part);
1985
1986 /**
1987  * @def elm_layout_label_set
1988  * Convienience macro to set the label in a layout that follows the
1989  * Elementary naming convention for its parts.
1990  *
1991  * @ingroup Layout
1992  * @deprecated use elm_object_text_set() instead.
1993  */
1994 #define elm_layout_label_set(_ly, _txt) \
1995   elm_layout_text_set((_ly), "elm.text", (_txt))
1996
1997 /**
1998  * @def elm_layout_label_get
1999  * Convenience macro to get the label in a layout that follows the
2000  * Elementary naming convention for its parts.
2001  *
2002  * @ingroup Layout
2003  * @deprecated use elm_object_text_set() instead.
2004  */
2005 #define elm_layout_label_get(_ly) \
2006   elm_layout_text_get((_ly), "elm.text")
2007
2008 EINA_DEPRECATED EAPI Evas_Object *elm_list_item_base_get(const Elm_Object_Item *it);
2009
2010
2011 /**
2012  * Set the content of the mapbuf.
2013  *
2014  * @param obj The mapbuf object.
2015  * @param content The content that will be filled in this mapbuf object.
2016  *
2017  * Once the content object is set, a previously set one will be deleted.
2018  * If you want to keep that old content object, use the
2019  * elm_mapbuf_content_unset() function.
2020  *
2021  * To enable map, elm_mapbuf_enabled_set() should be used.
2022  *
2023  * @deprecated use elm_object_content_set() instead
2024  *
2025  * @ingroup Mapbuf
2026  */
2027 EINA_DEPRECATED EAPI void         elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content);
2028
2029 /**
2030  * Get the content of the mapbuf.
2031  *
2032  * @param obj The mapbuf object.
2033  * @return The content that is being used.
2034  *
2035  * Return the content object which is set for this widget.
2036  *
2037  * @see elm_mapbuf_content_set() for details.
2038  *
2039  * @deprecated use elm_object_content_get() instead
2040  *
2041  * @ingroup Mapbuf
2042  */
2043 EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_get(const Evas_Object *obj);
2044
2045 /**
2046  * Unset the content of the mapbuf.
2047  *
2048  * @param obj The mapbuf object.
2049  * @return The content that was being used.
2050  *
2051  * Unparent and return the content object which was set for this widget.
2052  *
2053  * @see elm_mapbuf_content_set() for details.
2054  *
2055  * @deprecated use elm_object_content_unset() instead
2056  *
2057  * @ingroup Mapbuf
2058  */
2059 EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_unset(Evas_Object *obj);
2060
2061 /**
2062  * @brief Set the label of a menu item
2063  *
2064  * @param it The menu item object.
2065  * @param label The label to set for @p item
2066  *
2067  * @warning Don't use this funcion on items created with
2068  * elm_menu_item_add_object() or elm_menu_item_separator_add().
2069  *
2070  * @deprecated Use elm_object_item_text_set() instead
2071  */
2072 EINA_DEPRECATED EAPI void         elm_menu_item_label_set(Elm_Object_Item *it, const char *label);
2073
2074 /**
2075  * @brief Get the label of a menu item
2076  *
2077  * @param it The menu item object.
2078  * @return The label of @p item
2079  * @deprecated Use elm_object_item_text_get() instead
2080  */
2081 EINA_DEPRECATED EAPI const char  *elm_menu_item_label_get(const Elm_Object_Item *it);
2082
2083 /**
2084  * @brief Set the content object of a menu item
2085  *
2086  * @param it The menu item object
2087  * @param The content object or NULL
2088  * @return EINA_TRUE on success, else EINA_FALSE
2089  *
2090  * Use this function to change the object swallowed by a menu item, deleting
2091  * any previously swallowed object.
2092  *
2093  * @deprecated Use elm_object_item_content_set() instead
2094  */
2095 EINA_DEPRECATED EAPI Eina_Bool    elm_menu_item_object_content_set(Elm_Object_Item *it, Evas_Object *obj);
2096
2097 /**
2098  * @brief Get the content object of a menu item
2099  *
2100  * @param it The menu item object
2101  * @return The content object or NULL
2102  * @note If @p item was added with elm_menu_item_add_object, this
2103  * function will return the object passed, else it will return the
2104  * icon object.
2105  *
2106  * @see elm_menu_item_object_content_set()
2107  *
2108  * @deprecated Use elm_object_item_content_get() instead
2109  */
2110 EINA_DEPRECATED EAPI Evas_Object *elm_menu_item_object_content_get(const Elm_Object_Item *it);
2111
2112 /**
2113  * @brief Set the disabled state of @p item.
2114  *
2115  * @param it The menu item object.
2116  * @param disabled The enabled/disabled state of the item
2117  * @deprecated Use elm_object_item_disabled_set() instead
2118  */
2119 EINA_DEPRECATED EAPI void         elm_menu_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
2120
2121 /**
2122  * @brief Get the disabled state of @p item.
2123  *
2124  * @param it The menu item object.
2125  * @return The enabled/disabled state of the item
2126  *
2127  * @see elm_menu_item_disabled_set()
2128  * @deprecated Use elm_object_item_disabled_get() instead
2129  */
2130 EINA_DEPRECATED EAPI Eina_Bool    elm_menu_item_disabled_get(const Elm_Object_Item *it);
2131
2132 /**
2133  * @brief Returns the data associated with menu item @p item.
2134  *
2135  * @param it The item
2136  * @return The data associated with @p item or NULL if none was set.
2137  *
2138  * This is the data set with elm_menu_add() or elm_menu_item_data_set().
2139  *
2140  * @deprecated Use elm_object_item_data_get() instead
2141  */
2142 EINA_DEPRECATED EAPI void        *elm_menu_item_data_get(const Elm_Object_Item *it);
2143
2144 /**
2145  * @brief Set the function called when a menu item is deleted.
2146  *
2147  * @param it The item to set the callback on
2148  * @param func The function called
2149  *
2150  * @see elm_menu_item_add()
2151  * @see elm_menu_item_del()
2152  * @deprecated Use elm_object_item_del_cb_set() instead
2153  */
2154 EINA_DEPRECATED EAPI void                         elm_menu_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
2155
2156 /**
2157  * @brief Sets the data to be associated with menu item @p item.
2158  *
2159  * @param it The item
2160  * @param data The data to be associated with @p item
2161  *
2162  * @deprecated Use elm_object_item_data_set() instead
2163  */
2164 EINA_DEPRECATED EAPI void         elm_menu_item_data_set(Elm_Object_Item *it, const void *data);
2165
2166 /**
2167  * @brief Deletes an item from the menu.
2168  *
2169  * @param it The item to delete.
2170  *
2171  * @deprecated Use elm_object_item_del() instead
2172  * @see elm_menu_item_add()
2173  */
2174 EINA_DEPRECATED EAPI void                         elm_menu_item_del(Elm_Object_Item *it);
2175
2176 /**
2177  * @brief Set the content of the notify widget
2178  *
2179  * @param obj The notify object
2180  * @param content The content will be filled in this notify object
2181  *
2182  * Once the content object is set, a previously set one will be deleted. If
2183  * you want to keep that old content object, use the
2184  * elm_notify_content_unset() function.
2185  *
2186  * @deprecated use elm_object_content_set() instead
2187  *
2188  */
2189 EINA_DEPRECATED EAPI void         elm_notify_content_set(Evas_Object *obj, Evas_Object *content);
2190
2191 /**
2192  * @brief Unset the content of the notify widget
2193  *
2194  * @param obj The notify object
2195  * @return The content that was being used
2196  *
2197  * Unparent and return the content object which was set for this widget
2198  *
2199  * @see elm_notify_content_set()
2200  * @deprecated use elm_object_content_unset() instead
2201  *
2202  */
2203 EINA_DEPRECATED EAPI Evas_Object *elm_notify_content_unset(Evas_Object *obj);
2204
2205 /**
2206  * @brief Return the content of the notify widget
2207  *
2208  * @param obj The notify object
2209  * @return The content that is being used
2210  *
2211  * @see elm_notify_content_set()
2212  * @deprecated use elm_object_content_get() instead
2213  *
2214  */
2215 EINA_DEPRECATED EAPI Evas_Object *elm_notify_content_get(const Evas_Object *obj);
2216
2217 /**
2218  * Set a label of an object
2219  *
2220  * @param obj The Elementary object
2221  * @param part The text part name to set (NULL for the default label)
2222  * @param label The new text of the label
2223  *
2224  * @note Elementary objects may have many labels (e.g. Action Slider)
2225  * @deprecated Use elm_object_part_text_set() instead.
2226  * @ingroup General
2227  */
2228 EINA_DEPRECATED EAPI void         elm_object_text_part_set(Evas_Object *obj, const char *part, const char *label);
2229
2230 /**
2231  * Get a label of an object
2232  *
2233  * @param obj The Elementary object
2234  * @param part The text part name to get (NULL for the default label)
2235  * @return text of the label or NULL for any error
2236  *
2237  * @note Elementary objects may have many labels (e.g. Action Slider)
2238  * @deprecated Use elm_object_part_text_get() instead.
2239  * @ingroup General
2240  */
2241 EINA_DEPRECATED EAPI const char  *elm_object_text_part_get(const Evas_Object *obj, const char *part);
2242
2243 /**
2244  * Set a content of an object
2245  *
2246  * @param obj The Elementary object
2247  * @param part The content part name to set (NULL for the default content)
2248  * @param content The new content of the object
2249  *
2250  * @note Elementary objects may have many contents
2251  * @deprecated Use elm_object_part_content_set instead.
2252  * @ingroup General
2253  */
2254 EINA_DEPRECATED EAPI void         elm_object_content_part_set(Evas_Object *obj, const char *part, Evas_Object *content);
2255
2256 /**
2257  * Get a content of an object
2258  *
2259  * @param obj The Elementary object
2260  * @param part The content part name to get (NULL for the default content)
2261  * @return content of the object or NULL for any error
2262  *
2263  * @note Elementary objects may have many contents
2264  * @deprecated Use elm_object_part_content_get instead.
2265  * @ingroup General
2266  */
2267 EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_get(const Evas_Object *obj, const char *part);
2268
2269 /**
2270  * Unset a content of an object
2271  *
2272  * @param obj The Elementary object
2273  * @param part The content part name to unset (NULL for the default content)
2274  *
2275  * @note Elementary objects may have many contents
2276  * @deprecated Use elm_object_part_content_unset instead.
2277  * @ingroup General
2278  */
2279 EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_unset(Evas_Object *obj, const char *part);
2280
2281 /**
2282  * Set a content of an object item
2283  *
2284  * @param it The Elementary object item
2285  * @param part The content part name to set (NULL for the default content)
2286  * @param content The new content of the object item
2287  *
2288  * @note Elementary object items may have many contents
2289  * @deprecated Use elm_object_item_part_content_set instead.
2290  * @ingroup General
2291  */
2292 EINA_DEPRECATED EAPI void         elm_object_item_content_part_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
2293
2294 /**
2295  * Get a content of an object item
2296  *
2297  * @param it The Elementary object item
2298  * @param part The content part name to unset (NULL for the default content)
2299  * @return content of the object item or NULL for any error
2300  *
2301  * @note Elementary object items may have many contents
2302  * @deprecated Use elm_object_item_part_content_get instead.
2303  * @ingroup General
2304  */
2305 EINA_DEPRECATED EAPI Evas_Object                 *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *part);
2306
2307 /**
2308  * Unset a content of an object item
2309  *
2310  * @param it The Elementary object item
2311  * @param part The content part name to unset (NULL for the default content)
2312  *
2313  * @note Elementary object items may have many contents
2314  * @deprecated Use elm_object_item_part_content_unset instead.
2315  * @ingroup General
2316  */
2317 EINA_DEPRECATED EAPI Evas_Object *elm_object_item_content_part_unset(Elm_Object_Item *it, const char *part);
2318
2319 /**
2320  * Get a label of an object item
2321  *
2322  * @param it The Elementary object item
2323  * @param part The text part name to get (NULL for the default label)
2324  * @return text of the label or NULL for any error
2325  *
2326  * @note Elementary object items may have many labels
2327  * @deprecated Use elm_object_item_part_text_get instead.
2328  * @ingroup General
2329  */
2330 EINA_DEPRECATED EAPI const char  *elm_object_item_text_part_get(const Elm_Object_Item *it, const char *part);
2331
2332 /**
2333  * Set a label of an object item
2334  *
2335  * @param it The Elementary object item
2336  * @param part The text part name to set (NULL for the default label)
2337  * @param label The new text of the label
2338  *
2339  * @note Elementary object items may have many labels
2340  * @deprecated Use elm_object_item_part_text_set instead.
2341  * @ingroup General
2342  */
2343 EINA_DEPRECATED EAPI void         elm_object_item_text_part_set(Elm_Object_Item *it, const char *part, const char *label);
2344
2345 /**
2346  * @brief Set the content of the panel.
2347  *
2348  * @param obj The panel object
2349  * @param content The panel content
2350  *
2351  * Once the content object is set, a previously set one will be deleted.
2352  * If you want to keep that old content object, use the
2353  * elm_panel_content_unset() function.
2354  *
2355  * @deprecated use elm_object_content_set() instead
2356  *
2357  */
2358 EINA_DEPRECATED EAPI void         elm_panel_content_set(Evas_Object *obj, Evas_Object *content);
2359
2360 /**
2361  * @brief Get the content of the panel.
2362  *
2363  * @param obj The panel object
2364  * @return The content that is being used
2365  *
2366  * Return the content object which is set for this widget.
2367  *
2368  * @see elm_panel_content_set()
2369  *
2370  * @deprecated use elm_object_content_get() instead
2371  *
2372  */
2373 EINA_DEPRECATED EAPI Evas_Object *elm_panel_content_get(const Evas_Object *obj);
2374
2375 /**
2376  * @brief Unset the content of the panel.
2377  *
2378  * @param obj The panel object
2379  * @return The content that was being used
2380  *
2381  * Unparent and return the content object which was set for this widget.
2382  *
2383  * @see elm_panel_content_set()
2384  *
2385  * @deprecated use elm_object_content_unset() instead
2386  *
2387  */
2388 EINA_DEPRECATED EAPI Evas_Object *elm_panel_content_unset(Evas_Object *obj);
2389
2390 /**
2391  * Set the left content of the panes widget.
2392  *
2393  * @param obj The panes object.
2394  * @param content The new left content object.
2395  *
2396  * Once the content object is set, a previously set one will be deleted.
2397  * If you want to keep that old content object, use the
2398  * elm_panes_content_left_unset() function.
2399  *
2400  * If panes is displayed vertically, left content will be displayed at
2401  * top.
2402  *
2403  * @see elm_panes_content_left_get()
2404  * @see elm_panes_content_right_set() to set content on the other side.
2405  *
2406  * @deprecated use elm_object_part_content_set() instead
2407  *
2408  * @ingroup Panes
2409  */
2410 EINA_DEPRECATED EAPI void         elm_panes_content_left_set(Evas_Object *obj, Evas_Object *content);
2411
2412 /**
2413  * Set the right content of the panes widget.
2414  *
2415  * @param obj The panes object.
2416  * @param content The new right content object.
2417  *
2418  * Once the content object is set, a previously set one will be deleted.
2419  * If you want to keep that old content object, use the
2420  * elm_panes_content_right_unset() function.
2421  *
2422  * If panes is displayed vertically, left content will be displayed at
2423  * bottom.
2424  *
2425  * @see elm_panes_content_right_get()
2426  * @see elm_panes_content_left_set() to set content on the other side.
2427  *
2428  * @deprecated use elm_object_part_content_set() instead
2429  *
2430  * @ingroup Panes
2431  */
2432 EINA_DEPRECATED EAPI void         elm_panes_content_right_set(Evas_Object *obj, Evas_Object *content);
2433
2434 /**
2435  * Get the left content of the panes.
2436  *
2437  * @param obj The panes object.
2438  * @return The left content object that is being used.
2439  *
2440  * Return the left content object which is set for this widget.
2441  *
2442  * @see elm_panes_content_left_set() for details.
2443  *
2444  * @deprecated use elm_object_part_content_get() instead
2445  *
2446  * @ingroup Panes
2447  */
2448 EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_left_get(const Evas_Object *obj);
2449
2450 /**
2451  * Get the right content of the panes.
2452  *
2453  * @param obj The panes object
2454  * @return The right content object that is being used
2455  *
2456  * Return the right content object which is set for this widget.
2457  *
2458  * @see elm_panes_content_right_set() for details.
2459  *
2460  * @deprecated use elm_object_part_content_get() instead
2461  *
2462  * @ingroup Panes
2463  */
2464 EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_right_get(const Evas_Object *obj);
2465
2466 /**
2467  * Unset the left content used for the panes.
2468  *
2469  * @param obj The panes object.
2470  * @return The left content object that was being used.
2471  *
2472  * Unparent and return the left content object which was set for this widget.
2473  *
2474  * @see elm_panes_content_left_set() for details.
2475  * @see elm_panes_content_left_get().
2476  *
2477  * @deprecated use elm_object_part_content_unset() instead
2478  *
2479  * @ingroup Panes
2480  */
2481 EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_left_unset(Evas_Object *obj);
2482
2483 /**
2484  * Unset the right content used for the panes.
2485  *
2486  * @param obj The panes object.
2487  * @return The right content object that was being used.
2488  *
2489  * Unparent and return the right content object which was set for this
2490  * widget.
2491  *
2492  * @see elm_panes_content_right_set() for details.
2493  * @see elm_panes_content_right_get().
2494  *
2495  * @deprecated use elm_object_part_content_unset() instead
2496  *
2497  * @ingroup Panes
2498  */
2499 EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_right_unset(Evas_Object *obj);
2500 /**
2501  * Set the label of a given progress bar widget
2502  *
2503  * @param obj The progress bar object
2504  * @param label The text label string, in UTF-8
2505  *
2506  * @ingroup Progressbar
2507  * @deprecated use elm_object_text_set() instead.
2508  */
2509 EINA_DEPRECATED EAPI void         elm_progressbar_label_set(Evas_Object *obj, const char *label);
2510
2511 /**
2512  * Get the label of a given progress bar widget
2513  *
2514  * @param obj The progressbar object
2515  * @return The text label string, in UTF-8
2516  *
2517  * @ingroup Progressbar
2518  * @deprecated use elm_object_text_set() instead.
2519  */
2520 EINA_DEPRECATED EAPI const char  *elm_progressbar_label_get(const Evas_Object *obj);
2521
2522 /**
2523  * Set the icon object of a given progress bar widget
2524  *
2525  * @param obj The progress bar object
2526  * @param icon The icon object
2527  *
2528  * Use this call to decorate @p obj with an icon next to it.
2529  *
2530  * @note Once the icon object is set, a previously set one will be
2531  * deleted. If you want to keep that old content object, use the
2532  * elm_progressbar_icon_unset() function.
2533  *
2534  * @see elm_progressbar_icon_get()
2535  * @deprecated use elm_object_part_content_set() instead.
2536  *
2537  * @ingroup Progressbar
2538  */
2539 EINA_DEPRECATED EAPI void         elm_progressbar_icon_set(Evas_Object *obj, Evas_Object *icon);
2540
2541 /**
2542  * Retrieve the icon object set for a given progress bar widget
2543  *
2544  * @param obj The progress bar object
2545  * @return The icon object's handle, if @p obj had one set, or @c NULL,
2546  * otherwise (and on errors)
2547  *
2548  * @see elm_progressbar_icon_set() for more details
2549  * @deprecated use elm_object_part_content_get() instead.
2550  *
2551  * @ingroup Progressbar
2552  */
2553 EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_get(const Evas_Object *obj);
2554
2555 /**
2556  * Unset an icon set on a given progress bar widget
2557  *
2558  * @param obj The progress bar object
2559  * @return The icon object that was being used, if any was set, or
2560  * @c NULL, otherwise (and on errors)
2561  *
2562  * This call will unparent and return the icon object which was set
2563  * for this widget, previously, on success.
2564  *
2565  * @see elm_progressbar_icon_set() for more details
2566  * @deprecated use elm_object_part_content_unset() instead.
2567  *
2568  * @ingroup Progressbar
2569  */
2570 EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_unset(Evas_Object *obj);
2571
2572 /**
2573  * @brief Set the text label of the radio object
2574  *
2575  * @param obj The radio object
2576  * @param label The text label string in UTF-8
2577  *
2578  * @deprecated use elm_object_text_set() instead.
2579  */
2580 EINA_DEPRECATED EAPI void         elm_radio_label_set(Evas_Object *obj, const char *label);
2581
2582 /**
2583  * @brief Get the text label of the radio object
2584  *
2585  * @param obj The radio object
2586  * @return The text label string in UTF-8
2587  *
2588  * @deprecated use elm_object_text_set() instead.
2589  */
2590 EINA_DEPRECATED EAPI const char  *elm_radio_label_get(const Evas_Object *obj);
2591
2592 /**
2593  * @brief Set the icon object of the radio object
2594  *
2595  * @param obj The radio object
2596  * @param icon The icon object
2597  *
2598  * Once the icon object is set, a previously set one will be deleted. If you
2599  * want to keep that old content object, use the elm_radio_icon_unset()
2600  * function.
2601  *
2602  * @deprecated use elm_object_part_content_set() instead.
2603  *
2604  */
2605 EINA_DEPRECATED EAPI void         elm_radio_icon_set(Evas_Object *obj, Evas_Object *icon);
2606
2607 /**
2608  * @brief Get the icon object of the radio object
2609  *
2610  * @param obj The radio object
2611  * @return The icon object
2612  *
2613  * @see elm_radio_icon_set()
2614  *
2615  * @deprecated use elm_object_part_content_get() instead.
2616  *
2617  */
2618 EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_get(const Evas_Object *obj);
2619
2620 /**
2621  * @brief Unset the icon used for the radio object
2622  *
2623  * @param obj The radio object
2624  * @return The icon object that was being used
2625  *
2626  * Unparent and return the icon object which was set for this widget.
2627  *
2628  * @see elm_radio_icon_set()
2629  * @deprecated use elm_object_part_content_unset() instead.
2630  *
2631  */
2632 EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_unset(Evas_Object *obj);
2633
2634 /**
2635  * @brief Set the content of the scroller widget (the object to be scrolled around).
2636  *
2637  * @param obj The scroller object
2638  * @param content The new content object
2639  *
2640  * Once the content object is set, a previously set one will be deleted.
2641  * If you want to keep that old content object, use the
2642  * elm_scroller_content_unset() function.
2643  * @deprecated use elm_object_content_set() instead
2644  */
2645 EINA_DEPRECATED EAPI void         elm_scroller_content_set(Evas_Object *obj, Evas_Object *child);
2646
2647 /**
2648  * @brief Get the content of the scroller widget
2649  *
2650  * @param obj The slider object
2651  * @return The content that is being used
2652  *
2653  * Return the content object which is set for this widget
2654  *
2655  * @see elm_scroller_content_set()
2656  * @deprecated use elm_object_content_get() instead.
2657  */
2658 EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_get(const Evas_Object *obj);
2659
2660 /**
2661  * @brief Unset the content of the scroller widget
2662  *
2663  * @param obj The slider object
2664  * @return The content that was being used
2665  *
2666  * Unparent and return the content object which was set for this widget
2667  *
2668  * @see elm_scroller_content_set()
2669  * @deprecated use elm_object_content_unset() instead.
2670  */
2671 EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_unset(Evas_Object *obj);
2672
2673 /**
2674  * Set the label of a given slider widget
2675  *
2676  * @param obj The progress bar object
2677  * @param label The text label string, in UTF-8
2678  *
2679  * @ingroup Slider
2680  * @deprecated use elm_object_text_set() instead.
2681  */
2682 EINA_DEPRECATED EAPI void         elm_slider_label_set(Evas_Object *obj, const char *label);
2683
2684 /**
2685  * Get the label of a given slider widget
2686  *
2687  * @param obj The progressbar object
2688  * @return The text label string, in UTF-8
2689  *
2690  * @ingroup Slider
2691  * @deprecated use elm_object_text_get() instead.
2692  */
2693 EINA_DEPRECATED EAPI const char  *elm_slider_label_get(const Evas_Object *obj);
2694
2695 /**
2696  * Set the icon object of the slider object.
2697  *
2698  * @param obj The slider object.
2699  * @param icon The icon object.
2700  *
2701  * On horizontal mode, icon is placed at left, and on vertical mode,
2702  * placed at top.
2703  *
2704  * @note Once the icon object is set, a previously set one will be deleted.
2705  * If you want to keep that old content object, use the
2706  * elm_slider_icon_unset() function.
2707  *
2708  * @warning If the object being set does not have minimum size hints set,
2709  * it won't get properly displayed.
2710  *
2711  * @ingroup Slider
2712  * @deprecated use elm_object_part_content_set() instead.
2713  */
2714 EINA_DEPRECATED EAPI void         elm_slider_icon_set(Evas_Object *obj, Evas_Object *icon);
2715
2716 /**
2717  * Unset an icon set on a given slider widget.
2718  *
2719  * @param obj The slider object.
2720  * @return The icon object that was being used, if any was set, or
2721  * @c NULL, otherwise (and on errors).
2722  *
2723  * On horizontal mode, icon is placed at left, and on vertical mode,
2724  * placed at top.
2725  *
2726  * This call will unparent and return the icon object which was set
2727  * for this widget, previously, on success.
2728  *
2729  * @see elm_slider_icon_set() for more details
2730  * @see elm_slider_icon_get()
2731  * @deprecated use elm_object_part_content_unset() instead.
2732  *
2733  * @ingroup Slider
2734  */
2735 EINA_DEPRECATED EAPI Evas_Object *elm_slider_icon_unset(Evas_Object *obj);
2736
2737 /**
2738  * Retrieve the icon object set for a given slider widget.
2739  *
2740  * @param obj The slider object.
2741  * @return The icon object's handle, if @p obj had one set, or @c NULL,
2742  * otherwise (and on errors).
2743  *
2744  * On horizontal mode, icon is placed at left, and on vertical mode,
2745  * placed at top.
2746  *
2747  * @see elm_slider_icon_set() for more details
2748  * @see elm_slider_icon_unset()
2749  *
2750  * @deprecated use elm_object_part_content_get() instead.
2751  *
2752  * @ingroup Slider
2753  */
2754 EINA_DEPRECATED EAPI Evas_Object *elm_slider_icon_get(const Evas_Object *obj);
2755
2756 /**
2757  * Set the end object of the slider object.
2758  *
2759  * @param obj The slider object.
2760  * @param end The end object.
2761  *
2762  * On horizontal mode, end is placed at left, and on vertical mode,
2763  * placed at bottom.
2764  *
2765  * @note Once the icon object is set, a previously set one will be deleted.
2766  * If you want to keep that old content object, use the
2767  * elm_slider_end_unset() function.
2768  *
2769  * @warning If the object being set does not have minimum size hints set,
2770  * it won't get properly displayed.
2771  *
2772  * @deprecated use elm_object_part_content_set() instead.
2773  *
2774  * @ingroup Slider
2775  */
2776 EINA_DEPRECATED EAPI void         elm_slider_end_set(Evas_Object *obj, Evas_Object *end);
2777
2778 /**
2779  * Unset an end object set on a given slider widget.
2780  *
2781  * @param obj The slider object.
2782  * @return The end object that was being used, if any was set, or
2783  * @c NULL, otherwise (and on errors).
2784  *
2785  * On horizontal mode, end is placed at left, and on vertical mode,
2786  * placed at bottom.
2787  *
2788  * This call will unparent and return the icon object which was set
2789  * for this widget, previously, on success.
2790  *
2791  * @see elm_slider_end_set() for more details.
2792  * @see elm_slider_end_get()
2793  *
2794  * @deprecated use elm_object_part_content_unset() instead
2795  * instead.
2796  *
2797  * @ingroup Slider
2798  */
2799 EINA_DEPRECATED EAPI Evas_Object *elm_slider_end_unset(Evas_Object *obj);
2800
2801 /**
2802  * Retrieve the end object set for a given slider widget.
2803  *
2804  * @param obj The slider object.
2805  * @return The end object's handle, if @p obj had one set, or @c NULL,
2806  * otherwise (and on errors).
2807  *
2808  * On horizontal mode, icon is placed at right, and on vertical mode,
2809  * placed at bottom.
2810  *
2811  * @see elm_slider_end_set() for more details.
2812  * @see elm_slider_end_unset()
2813  *
2814  *
2815  * @deprecated use elm_object_part_content_get() instead
2816  * instead.
2817  *
2818  * @ingroup Slider
2819  */
2820 EINA_DEPRECATED EAPI Evas_Object *elm_slider_end_get(const Evas_Object *obj);
2821
2822 /**
2823  * Return the data associated with a given slideshow item
2824  *
2825  * @param it The slideshow item
2826  * @return Returns the data associated to this item
2827  *
2828  * @deprecated use elm_object_item_data_get() instead
2829  * @ingroup Slideshow
2830  */
2831 EINA_DEPRECATED EAPI void *elm_slideshow_item_data_get(const Elm_Object_Item *it);
2832
2833 /**
2834  * Delete a given item from a slideshow widget.
2835  *
2836  * @param it The slideshow item
2837  *
2838  * @deprecated Use elm_object_item_de() instead
2839  * @ingroup Slideshow
2840  */
2841 EINA_DEPRECATED EAPI void                  elm_slideshow_item_del(Elm_Object_Item *it);
2842
2843 /**
2844  * Get the toolbar object from an item.
2845  *
2846  * @param it The item.
2847  * @return The toolbar object.
2848  *
2849  * This returns the toolbar object itself that an item belongs to.
2850  *
2851  * @deprecated use elm_object_item_object_get() instead.
2852  * @ingroup Toolbar
2853  */
2854 EINA_DEPRECATED EAPI Evas_Object *elm_toolbar_item_toolbar_get(const Elm_Object_Item *it);
2855
2856 /**
2857  * Get the label of item.
2858  *
2859  * @param it The item of toolbar.
2860  * @return The label of item.
2861  *
2862  * The return value is a pointer to the label associated to @p item when
2863  * it was created, with function elm_toolbar_item_append() or similar,
2864  * or later,
2865  * with function elm_toolbar_item_label_set. If no label
2866  * was passed as argument, it will return @c NULL.
2867  *
2868  * @see elm_toolbar_item_label_set() for more details.
2869  * @see elm_toolbar_item_append()
2870  *
2871  * @deprecated use elm_object_item_text_get() instead.
2872  * @ingroup Toolbar
2873  */
2874 EINA_DEPRECATED EAPI const char  *elm_toolbar_item_label_get(const Elm_Object_Item *it);
2875
2876 /**
2877  * Set the label of item.
2878  *
2879  * @param it The item of toolbar.
2880  * @param text The label of item.
2881  *
2882  * The label to be displayed by the item.
2883  * Label will be placed at icons bottom (if set).
2884  *
2885  * If a label was passed as argument on item creation, with function
2886  * elm_toolbar_item_append() or similar, it will be already
2887  * displayed by the item.
2888  *
2889  * @see elm_toolbar_item_label_get()
2890  * @see elm_toolbar_item_append()
2891  *
2892  * @deprecated use elm_object_item_text_set() instead
2893  * @ingroup Toolbar
2894  */
2895 EINA_DEPRECATED EAPI void         elm_toolbar_item_label_set(Elm_Object_Item *it, const char *label);
2896
2897 /**
2898  * Return the data associated with a given toolbar widget item.
2899  *
2900  * @param it The toolbar widget item handle.
2901  * @return The data associated with @p item.
2902  *
2903  * @see elm_toolbar_item_data_set()
2904  *
2905  * @deprecated use elm_object_item_data_get() instead.
2906  * @ingroup Toolbar
2907  */
2908 EINA_DEPRECATED EAPI void        *elm_toolbar_item_data_get(const Elm_Object_Item *it);
2909
2910 /**
2911  * Set the data associated with a given toolbar widget item.
2912  *
2913  * @param it The toolbar widget item handle
2914  * @param data The new data pointer to set to @p item.
2915  *
2916  * This sets new item data on @p item.
2917  *
2918  * @warning The old data pointer won't be touched by this function, so
2919  * the user had better to free that old data himself/herself.
2920  *
2921  * @deprecated use elm_object_item_data_set() instead.
2922  * @ingroup Toolbar
2923  */
2924 EINA_DEPRECATED EAPI void         elm_toolbar_item_data_set(Elm_Object_Item *it, const void *data);
2925
2926 /**
2927  * Get a value whether toolbar item is disabled or not.
2928  *
2929  * @param it The item.
2930  * @return The disabled state.
2931  *
2932  * @see elm_toolbar_item_disabled_set() for more details.
2933  *
2934  * @deprecated use elm_object_item_disabled_get() instead.
2935  * @ingroup Toolbar
2936  */
2937 EINA_DEPRECATED EAPI Eina_Bool    elm_toolbar_item_disabled_get(const Elm_Object_Item *it);
2938
2939 /**
2940  * Sets the disabled/enabled state of a toolbar item.
2941  *
2942  * @param it The item.
2943  * @param disabled The disabled state.
2944  *
2945  * A disabled item cannot be selected or unselected. It will also
2946  * change its appearance (generally greyed out). This sets the
2947  * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
2948  * enabled).
2949  *
2950  * @deprecated use elm_object_item_disabled_set() instead.
2951  * @ingroup Toolbar
2952  */
2953 EINA_DEPRECATED EAPI void         elm_toolbar_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
2954
2955 /**
2956  * Change a toolbar's orientation
2957  * @param obj The toolbar object
2958  * @param vertical If @c EINA_TRUE, the toolbar is vertical
2959  * By default, a toolbar will be horizontal. Use this function to create a vertical toolbar.
2960  * @ingroup Toolbar
2961  * @deprecated use elm_toolbar_horizontal_set() instead.
2962  */
2963 EINA_DEPRECATED EAPI void         elm_toolbar_orientation_set(Evas_Object *obj, Eina_Bool vertical);
2964
2965 /**
2966  * Get a toolbar's orientation
2967  * @param obj The toolbar object
2968  * @return If @c EINA_TRUE, the toolbar is vertical
2969  * By default, a toolbar will be horizontal. Use this function to determine whether a toolbar is vertical.
2970  * @ingroup Toolbar
2971  * @deprecated use elm_toolbar_horizontal_get() instead.
2972  */
2973 EINA_DEPRECATED EAPI Eina_Bool    elm_toolbar_orientation_get(const Evas_Object *obj);
2974
2975 /**
2976  * Set the function called when a toolbar item is freed.
2977  *
2978  * @param it The item to set the callback on.
2979  * @param func The function called.
2980  *
2981  * If there is a @p func, then it will be called prior item's memory release.
2982  * That will be called with the following arguments:
2983  * @li item's data;
2984  * @li item's Evas object;
2985  * @li item itself;
2986  *
2987  * This way, a data associated to a toolbar item could be properly freed.
2988  *
2989  * @deprecated Use elm_object_item_del_cb_set() instead 
2990  * @ingroup Toolbar
2991  */
2992 EINA_DEPRECATED EAPI void                         elm_toolbar_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
2993
2994 /**
2995  * Delete them item from the toolbar.
2996  *
2997  * @param it The item of toolbar to be deleted.
2998  *
2999  * @deprecated Use elm_object_item_del() instead
3000  * @see elm_toolbar_item_append()
3001  *
3002  * @ingroup Toolbar
3003  */
3004 EINA_DEPRECATED EAPI void                         elm_toolbar_item_del(Elm_Object_Item *it);
3005
3006 /**
3007  * Set the text to be shown in a given toolbar item's tooltips.
3008  *
3009  * @param it toolbar item.
3010  * @param text The text to set in the content.
3011  *
3012  * Setup the text as tooltip to object. The item can have only one tooltip,
3013  * so any previous tooltip data - set with this function or
3014  * elm_toolbar_item_tooltip_content_cb_set() - is removed.
3015  *
3016  * @deprecated Use elm_object_item_tooltip_text_set() instead
3017  * @see elm_object_tooltip_text_set() for more details.
3018  *
3019  * @ingroup Toolbar
3020  */
3021 EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
3022
3023 /**
3024  * Set the content to be shown in the tooltip item.
3025  *
3026  * Setup the tooltip to item. The item can have only one tooltip,
3027  * so any previous tooltip data is removed. @p func(with @p data) will
3028  * be called every time that need show the tooltip and it should
3029  * return a valid Evas_Object. This object is then managed fully by
3030  * tooltip system and is deleted when the tooltip is gone.
3031  *
3032  * @param it the toolbar item being attached a tooltip.
3033  * @param func the function used to create the tooltip contents.
3034  * @param data what to provide to @a func as callback data/context.
3035  * @param del_cb called when data is not needed anymore, either when
3036  *        another callback replaces @a func, the tooltip is unset with
3037  *        elm_toolbar_item_tooltip_unset() or the owner @a item
3038  *        dies. This callback receives as the first parameter the
3039  *        given @a data, and @c event_info is the item.
3040  *
3041  * @deprecated Use elm_object_item_tooltip_content_cb_set() instead
3042  * @see elm_object_tooltip_content_cb_set() for more details.
3043  *
3044  * @ingroup Toolbar
3045  */
3046 EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_content_cb_set(Elm_Object_Item *it, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb);
3047
3048 /**
3049  * Unset tooltip from item.
3050  *
3051  * @param it toolbar item to remove previously set tooltip.
3052  *
3053  * Remove tooltip from item. The callback provided as del_cb to
3054  * elm_toolbar_item_tooltip_content_cb_set() will be called to notify
3055  * it is not used anymore.
3056  *
3057  * @deprecated Use elm_object_item_tooltip_unset() instead
3058  * @see elm_object_tooltip_unset() for more details.
3059  * @see elm_toolbar_item_tooltip_content_cb_set()
3060  *
3061  * @ingroup Toolbar
3062  */
3063 EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_unset(Elm_Object_Item *it);
3064
3065 /**
3066  * Sets a different style for this item tooltip.
3067  *
3068  * @note before you set a style you should define a tooltip with
3069  *       elm_toolbar_item_tooltip_content_cb_set() or
3070  *       elm_toolbar_item_tooltip_text_set()
3071  *
3072  * @param it toolbar item with tooltip already set.
3073  * @param style the theme style to use (default, transparent, ...)
3074  *
3075  * @deprecated Use elm_object_item_tooltip_style_set() instead
3076  * @see elm_object_tooltip_style_set() for more details.
3077  *
3078  * @ingroup Toolbar
3079  */
3080 EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_style_set(Elm_Object_Item *it, const char *style);
3081
3082 /**
3083  * Get the style for this item tooltip.
3084  *
3085  * @param it toolbar item with tooltip already set.
3086  * @return style the theme style in use, defaults to "default". If the
3087  *         object does not have a tooltip set, then NULL is returned.
3088  *
3089  * @deprecated Use elm_object_item_style_get() instead
3090  * @see elm_object_tooltip_style_get() for more details.
3091  * @see elm_toolbar_item_tooltip_style_set()
3092  *
3093  * @ingroup Toolbar
3094  */
3095 EINA_DEPRECATED EAPI const char                  *elm_toolbar_item_tooltip_style_get(const Elm_Object_Item *it);
3096
3097 /**
3098  * @brief Link a Elm_Payer with an Elm_Video object.
3099  *
3100  * @param player the Elm_Player object.
3101  * @param video The Elm_Video object.
3102  *
3103  * This mean that action on the player widget will affect the
3104  * video object and the state of the video will be reflected in
3105  * the player itself.
3106  *
3107  * @see elm_player_add()
3108  * @see elm_video_add()
3109  * @deprecated use elm_object_part_content_set() instead
3110  *
3111  * @ingroup Video
3112  */
3113 EINA_DEPRECATED EAPI void elm_player_video_set(Evas_Object *player, Evas_Object *video);
3114
3115 /**
3116  * Set the label of item.
3117  *
3118  * @param it The item of segment control.
3119  * @param text The label of item.
3120  *
3121  * The label to be displayed by the item.
3122  * Label will be at right of the icon (if set).
3123  *
3124  * If a label was passed as argument on item creation, with function
3125  * elm_control_segment_item_add(), it will be already
3126  * displayed by the item.
3127  *
3128  * @see elm_segment_control_item_label_get()
3129  * @see elm_segment_control_item_add()
3130  * @deprecated Use elm_object_item_text_set() instead
3131  *
3132  * @ingroup SegmentControl
3133  */
3134 EINA_DEPRECATED EAPI void              elm_segment_control_item_label_set(Elm_Object_Item *it, const char *label);
3135
3136
3137 /**
3138  * Set the icon associated to the item.
3139  *
3140  * @param it The segment control item.
3141  * @param icon The icon object to associate with @p it.
3142  *
3143  * The icon object to use at left side of the item. An
3144  * icon can be any Evas object, but usually it is an icon created
3145  * with elm_icon_add().
3146  *
3147  * Once the icon object is set, a previously set one will be deleted.
3148  * @warning Setting the same icon for two items will cause the icon to
3149  * dissapear from the first item.
3150  *
3151  * If an icon was passed as argument on item creation, with function
3152  * elm_segment_control_item_add(), it will be already
3153  * associated to the item.
3154  *
3155  * @see elm_segment_control_item_add()
3156  * @see elm_segment_control_item_icon_get()
3157  * @deprecated Use elm_object_item_part_content_set() instead
3158  *
3159  * @ingroup SegmentControl
3160  */
3161 EINA_DEPRECATED EAPI void              elm_segment_control_item_icon_set(Elm_Object_Item *it, Evas_Object *icon);
3162
3163 /**
3164  * Remove a segment control item from its parent, deleting it.
3165  *
3166  * @param it The item to be removed.
3167  *
3168  * Items can be added with elm_segment_control_item_add() or
3169  * elm_segment_control_item_insert_at().
3170  *
3171  * @deprecated Use elm_object_item_del() instead
3172  * @ingroup SegmentControl
3173  */
3174 EINA_DEPRECATED EAPI void              elm_segment_control_item_del(Elm_Object_Item *it);
3175
3176 /**
3177  * Get the label
3178  *
3179  * @param obj The multibuttonentry object
3180  * @return The label, or NULL if none
3181  *
3182  * @deprecated Use elm_object_text_get() instead 
3183  *
3184  */
3185 EINA_DEPRECATED EAPI const char                *elm_multibuttonentry_label_get(const Evas_Object *obj);
3186
3187 /**
3188  * Set the label
3189  *
3190  * @param obj The multibuttonentry object
3191  * @param label The text label string
3192  *
3193  * @deprecated Use elm_object_text_set() instead
3194  *
3195  */
3196 EINA_DEPRECATED EAPI void                       elm_multibuttonentry_label_set(Evas_Object *obj, const char *label);
3197
3198 /**
3199  * Get the label of a given item
3200  *
3201  * @param it The item
3202  * @return The label of a given item, or NULL if none
3203  *
3204  * @deprecated Use elm_object_item_text_get() instead
3205  *
3206  */
3207 EINA_DEPRECATED EAPI const char                *elm_multibuttonentry_item_label_get(const Elm_Object_Item *it);
3208
3209 /**
3210  * Set the label of a given item
3211  *
3212  * @param it The item
3213  * @param str The text label string
3214  *
3215  * @deprecated Use elm_object_item_text_set() instead
3216  */
3217 EINA_DEPRECATED EAPI void                       elm_multibuttonentry_item_label_set(Elm_Object_Item *it, const char *str);
3218
3219 /**
3220  * Delete a given item
3221  *
3222  * @param it The item
3223  * 
3224  * @deprecated Use elm_object_item_del() instead 
3225  *
3226  */
3227 EINA_DEPRECATED EAPI void                       elm_multibuttonentry_item_del(Elm_Object_Item *it);
3228
3229 /**
3230  * @brief Delete the given item instantly.
3231  *
3232  * @param it The naviframe item
3233  *
3234  * This just deletes the given item from the naviframe item list instantly.
3235  * So this would not emit any signals for view transitions but just change
3236  * the current view if the given item is a top one.
3237  *
3238  * @deprecated Use elm_object_item_del() instead
3239  * @ingroup Naviframe
3240  */
3241 EINA_DEPRECATED EAPI void             elm_naviframe_item_del(Elm_Object_Item *it);
3242
3243
3244
3245 /**
3246  * Sets the disabled/enabled state of a list item.
3247  *
3248  * @param it The item.
3249  * @param disabled The disabled state.
3250  *
3251  * A disabled item cannot be selected or unselected. It will also
3252  * change its appearance (generally greyed out). This sets the
3253  * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
3254  * enabled).
3255  *
3256  * @deprecated Use elm_object_item_disabled_set() instead
3257  * 
3258  * @ingroup List
3259  */
3260 EINA_DEPRECATED EAPI void                         elm_list_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
3261
3262 /**
3263  * Get a value whether list item is disabled or not.
3264  *
3265  * @param it The item.
3266  * @return The disabled state.
3267  *
3268  * @see elm_list_item_disabled_set() for more details.
3269  *
3270  * @deprecated Use elm_object_item_disabled_get() instead
3271  * 
3272  * @ingroup List
3273  */
3274 EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_disabled_get(const Elm_Object_Item *it);
3275
3276 /**
3277  * Set the function called when a list item is freed.
3278  *
3279  * @param it The item to set the callback on
3280  * @param func The function called
3281  *
3282  * If there is a @p func, then it will be called prior item's memory release.
3283  * That will be called with the following arguments:
3284  * @li item's data;
3285  * @li item's Evas object;
3286  * @li item itself;
3287  *
3288  * This way, a data associated to a list item could be properly freed.
3289  * 
3290  * @deprecated Please use elm_object_item_del_cb_set() instead.
3291  *
3292  * @ingroup List
3293  */
3294 EINA_DEPRECATED EAPI void                         elm_list_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
3295
3296 /**
3297  * Get the data associated to the item.
3298  *
3299  * @param it The list item
3300  * @return The data associated to @p item
3301  *
3302  * The return value is a pointer to data associated to @p item when it was
3303  * created, with function elm_list_item_append() or similar. If no data
3304  * was passed as argument, it will return @c NULL.
3305  *
3306  * @see elm_list_item_append()
3307  *
3308  * @deprecated Please use elm_object_item_data_get() instead.
3309  * 
3310  * @ingroup List
3311  */
3312 EINA_DEPRECATED EAPI void                        *elm_list_item_data_get(const Elm_Object_Item *it);
3313
3314 /**
3315  * Get the left side icon associated to the item.
3316  *
3317  * @param it The list item
3318  * @return The left side icon associated to @p item
3319  *
3320  * The return value is a pointer to the icon associated to @p item when
3321  * it was
3322  * created, with function elm_list_item_append() or similar, or later
3323  * with function elm_list_item_icon_set(). If no icon
3324  * was passed as argument, it will return @c NULL.
3325  *
3326  * @see elm_list_item_append()
3327  * @see elm_list_item_icon_set()
3328  *
3329  * @deprecated Please use elm_object_item_part_content_get(item, NULL);
3330  * @ingroup List
3331  */
3332 EINA_DEPRECATED EAPI Evas_Object                 *elm_list_item_icon_get(const Elm_Object_Item *it);
3333
3334 /**
3335  * Set the left side icon associated to the item.
3336  *
3337  * @param it The list item
3338  * @param icon The left side icon object to associate with @p item
3339  *
3340  * The icon object to use at left side of the item. An
3341  * icon can be any Evas object, but usually it is an icon created
3342  * with elm_icon_add().
3343  *
3344  * Once the icon object is set, a previously set one will be deleted.
3345  * @warning Setting the same icon for two items will cause the icon to
3346  * dissapear from the first item.
3347  *
3348  * If an icon was passed as argument on item creation, with function
3349  * elm_list_item_append() or similar, it will be already
3350  * associated to the item.
3351  *
3352  * @see elm_list_item_append()
3353  * @see elm_list_item_icon_get()
3354  *
3355  * @deprecated Please use elm_object_item_part_content_set(item, NULL, icon);
3356  * @ingroup List
3357  */
3358 EINA_DEPRECATED EAPI void                         elm_list_item_icon_set(Elm_Object_Item *it, Evas_Object *icon);
3359
3360 /**
3361  * Get the right side icon associated to the item.
3362  *
3363  * @param it The list item
3364  * @return The right side icon associated to @p item
3365  *
3366  * The return value is a pointer to the icon associated to @p item when
3367  * it was
3368  * created, with function elm_list_item_append() or similar, or later
3369  * with function elm_list_item_icon_set(). If no icon
3370  * was passed as argument, it will return @c NULL.
3371  *
3372  * @see elm_list_item_append()
3373  * @see elm_list_item_icon_set()
3374  *
3375  * @deprecated Please use elm_object_item_part_content_get(item, "end");
3376  * @ingroup List
3377  */
3378 EINA_DEPRECATED EAPI Evas_Object                 *elm_list_item_end_get(const Elm_Object_Item *it);
3379
3380 /**
3381  * Set the right side icon associated to the item.
3382  *
3383  * @param it The list item
3384  * @param end The right side icon object to associate with @p item
3385  *
3386  * The icon object to use at right side of the item. An
3387  * icon can be any Evas object, but usually it is an icon created
3388  * with elm_icon_add().
3389  *
3390  * Once the icon object is set, a previously set one will be deleted.
3391  * @warning Setting the same icon for two items will cause the icon to
3392  * dissapear from the first item.
3393  *
3394  * If an icon was passed as argument on item creation, with function
3395  * elm_list_item_append() or similar, it will be already
3396  * associated to the item.
3397  *
3398  * @see elm_list_item_append()
3399  * @see elm_list_item_end_get()
3400  *
3401  * @deprecated Please use elm_object_item_part_content_set(item, "end", end);
3402  * @ingroup List
3403  */
3404 EINA_DEPRECATED EAPI void                         elm_list_item_end_set(Elm_Object_Item *it, Evas_Object *end);
3405
3406 /**
3407  * Get the label of item.
3408  *
3409  * @param it The item of list.
3410  * @return The label of item.
3411  *
3412  * The return value is a pointer to the label associated to @p item when
3413  * it was created, with function elm_list_item_append(), or later
3414  * with function elm_list_item_label_set. If no label
3415  * was passed as argument, it will return @c NULL.
3416  *
3417  * @see elm_list_item_label_set() for more details.
3418  * @see elm_list_item_append()
3419  *
3420  * @deprecated Please use elm_object_item_text_get(item);
3421  * @ingroup List
3422  */
3423 EINA_DEPRECATED EAPI const char                  *elm_list_item_label_get(const Elm_Object_Item *it);
3424
3425 /**
3426  * Set the label of item.
3427  *
3428  * @param it The item of list.
3429  * @param text The label of item.
3430  *
3431  * The label to be displayed by the item.
3432  * Label will be placed between left and right side icons (if set).
3433  *
3434  * If a label was passed as argument on item creation, with function
3435  * elm_list_item_append() or similar, it will be already
3436  * displayed by the item.
3437  *
3438  * @see elm_list_item_label_get()
3439  * @see elm_list_item_append()
3440  *
3441  * @deprecated Please use elm_object_item_text_set(item, text);
3442  * @ingroup List
3443  */
3444 EINA_DEPRECATED EAPI void                         elm_list_item_label_set(Elm_Object_Item *it, const char *text);
3445
3446 /**
3447  * Set the text to be shown in a given list item's tooltips.
3448  *
3449  * @param it Target item.
3450  * @param text The text to set in the content.
3451  *
3452  * Setup the text as tooltip to object. The item can have only one tooltip,
3453  * so any previous tooltip data - set with this function or
3454  * elm_list_item_tooltip_content_cb_set() - is removed.
3455  *
3456  * @deprecated Use elm_object_item_tooltip_text_set() instead
3457  * @see elm_object_tooltip_text_set() for more details.
3458  *
3459  * @ingroup List
3460  */
3461 EINA_DEPRECATED EAPI void                         elm_list_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
3462
3463 /**
3464  * @brief Disable size restrictions on an object's tooltip
3465  * @param it The tooltip's anchor object
3466  * @param disable If EINA_TRUE, size restrictions are disabled
3467  * @return EINA_FALSE on failure, EINA_TRUE on success
3468  *
3469  * This function allows a tooltip to expand beyond its parant window's canvas.
3470  * It will instead be limited only by the size of the display.
3471  *
3472  * @deprecated Use elm_object_item_tooltip_window_mode_set() instead
3473  *
3474  */
3475 EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_tooltip_window_mode_set(Elm_Object_Item *it, Eina_Bool disable);
3476
3477 /**
3478  * @brief Retrieve size restriction state of an object's tooltip
3479  * @param obj The tooltip's anchor object
3480  * @return If EINA_TRUE, size restrictions are disabled
3481  *
3482  * This function returns whether a tooltip is allowed to expand beyond
3483  * its parant window's canvas.
3484  * It will instead be limited only by the size of the display.
3485  *
3486  * @deprecated Use elm_object_item_tooltip_window_mode_get() instead
3487  *
3488  */
3489 EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_tooltip_window_mode_get(const Elm_Object_Item *it);
3490
3491 /**
3492  * Set the content to be shown in the tooltip item.
3493  *
3494  * Setup the tooltip to item. The item can have only one tooltip,
3495  * so any previous tooltip data is removed. @p func(with @p data) will
3496  * be called every time that need show the tooltip and it should
3497  * return a valid Evas_Object. This object is then managed fully by
3498  * tooltip system and is deleted when the tooltip is gone.
3499  *
3500  * @param it the list item being attached a tooltip.
3501  * @param func the function used to create the tooltip contents.
3502  * @param data what to provide to @a func as callback data/context.
3503  * @param del_cb called when data is not needed anymore, either when
3504  *        another callback replaces @a func, the tooltip is unset with
3505  *        elm_list_item_tooltip_unset() or the owner @a item
3506  *        dies. This callback receives as the first parameter the
3507  *        given @a data, and @c event_info is the item.
3508  *
3509  * @deprecated Use elm_object_item_tooltip_content_cb_set() instead
3510  *
3511  * @see elm_object_tooltip_content_cb_set() for more details.
3512  *
3513  * @ingroup List
3514  */
3515 EINA_DEPRECATED EAPI void                         elm_list_item_tooltip_content_cb_set(Elm_Object_Item *it, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb);
3516
3517 /**
3518  * Unset tooltip from item.
3519  *
3520  * @param it list item to remove previously set tooltip.
3521  *
3522  * Remove tooltip from item. The callback provided as del_cb to
3523  * elm_list_item_tooltip_content_cb_set() will be called to notify
3524  * it is not used anymore.
3525  *
3526  * @deprecated Use elm_object_item_tooltip_unset() instead
3527  * @see elm_object_tooltip_unset() for more details.
3528  * @see elm_list_item_tooltip_content_cb_set()
3529  *
3530  * @ingroup List
3531  */
3532 EINA_DEPRECATED EAPI void                         elm_list_item_tooltip_unset(Elm_Object_Item *it);
3533
3534 /**
3535  * Sets a different style for this item tooltip.
3536  *
3537  * @note before you set a style you should define a tooltip with
3538  *       elm_list_item_tooltip_content_cb_set() or
3539  *       elm_list_item_tooltip_text_set()
3540  *
3541  * @param it list item with tooltip already set.
3542  * @param style the theme style to use (default, transparent, ...)
3543  *
3544  *
3545  * @deprecated Use elm_object_item_tooltip_style_set() instead
3546  * @see elm_object_tooltip_style_set() for more details.
3547  *
3548  * @ingroup List
3549  */
3550 EINA_DEPRECATED EAPI void                         elm_list_item_tooltip_style_set(Elm_Object_Item *it, const char *style);
3551
3552 /**
3553  * Get the style for this item tooltip.
3554  *
3555  * @param item list item with tooltip already set.
3556  * @return style the theme style in use, defaults to "default". If the
3557  *         object does not have a tooltip set, then NULL is returned.
3558  *
3559  * @deprecated Use elm_object_item_tooltip_style_get() instead
3560  *
3561  * @see elm_object_tooltip_style_get() for more details.
3562  * @see elm_list_item_tooltip_style_set()
3563  *
3564  * @ingroup List
3565  */
3566 EINA_DEPRECATED EAPI const char                  *elm_list_item_tooltip_style_get(const Elm_Object_Item *it);
3567
3568 /**
3569  * Set the type of mouse pointer/cursor decoration to be shown,
3570  * when the mouse pointer is over the given list widget item
3571  *
3572  * @param it list item to customize cursor on
3573  * @param cursor the cursor type's name
3574  *
3575  * This function works analogously as elm_object_cursor_set(), but
3576  * here the cursor's changing area is restricted to the item's
3577  * area, and not the whole widget's. Note that that item cursors
3578  * have precedence over widget cursors, so that a mouse over an
3579  * item with custom cursor set will always show @b that cursor.
3580  *
3581  * If this function is called twice for an object, a previously set
3582  * cursor will be unset on the second call.
3583  *
3584  * @see elm_object_cursor_set()
3585  * @see elm_list_item_cursor_get()
3586  * @see elm_list_item_cursor_unset()
3587  *
3588  * @deprecated Please use elm_object_item_cursor_set() instead
3589  * @ingroup List
3590  */
3591 EINA_DEPRECATED EAPI void                         elm_list_item_cursor_set(Elm_Object_Item *it, const char *cursor);
3592
3593 /*
3594  * Get the type of mouse pointer/cursor decoration set to be shown,
3595  * when the mouse pointer is over the given list widget item
3596  *
3597  * @param it list item with custom cursor set
3598  * @return the cursor type's name or @c NULL, if no custom cursors
3599  * were set to @p item (and on errors)
3600  *
3601  * @see elm_object_cursor_get()
3602  * @see elm_list_item_cursor_set()
3603  * @see elm_list_item_cursor_unset()
3604  *
3605  * @deprecated Please use elm_object_item_cursor_get() insteas
3606  * @ingroup List
3607  */
3608 EINA_DEPRECATED EAPI const char                  *elm_list_item_cursor_get(const Elm_Object_Item *it);
3609
3610 /**
3611  * Unset any custom mouse pointer/cursor decoration set to be
3612  * shown, when the mouse pointer is over the given list widget
3613  * item, thus making it show the @b default cursor again.
3614  *
3615  * @param it a list item
3616  *
3617  * Use this call to undo any custom settings on this item's cursor
3618  * decoration, bringing it back to defaults (no custom style set).
3619  *
3620  * @see elm_object_cursor_unset()
3621  * @see elm_list_item_cursor_set()
3622  *
3623  * @deprecated Please use elm_list_item_cursor_unset() instead
3624  * @ingroup List
3625  */
3626 EINA_DEPRECATED EAPI void                         elm_list_item_cursor_unset(Elm_Object_Item *it);
3627
3628 /**
3629  * Set a different @b style for a given custom cursor set for a
3630  * list item.
3631  *
3632  * @param it list item with custom cursor set
3633  * @param style the <b>theme style</b> to use (e.g. @c "default",
3634  * @c "transparent", etc)
3635  *
3636  * This function only makes sense when one is using custom mouse
3637  * cursor decorations <b>defined in a theme file</b>, which can have,
3638  * given a cursor name/type, <b>alternate styles</b> on it. It
3639  * works analogously as elm_object_cursor_style_set(), but here
3640  * applyed only to list item objects.
3641  *
3642  * @warning Before you set a cursor style you should have definen a
3643  *       custom cursor previously on the item, with
3644  *       elm_list_item_cursor_set()
3645  *
3646  * @see elm_list_item_cursor_engine_only_set()
3647  * @see elm_list_item_cursor_style_get()
3648  *
3649  * @deprecated Please use elm_list_item_cursor_style_set() instead
3650  * @ingroup List
3651  */
3652 EINA_DEPRECATED EAPI void                         elm_list_item_cursor_style_set(Elm_Object_Item *it, const char *style);
3653
3654 /**
3655  * Get the current @b style set for a given list item's custom
3656  * cursor
3657  *
3658  * @param it list item with custom cursor set.
3659  * @return style the cursor style in use. If the object does not
3660  *         have a cursor set, then @c NULL is returned.
3661  *
3662  * @see elm_list_item_cursor_style_set() for more details
3663  *
3664  * @deprecated Please use elm_list_item_cursor_style_get() instead
3665  * @ingroup List
3666  */
3667 EINA_DEPRECATED EAPI const char                  *elm_list_item_cursor_style_get(const Elm_Object_Item *it);
3668
3669 /**
3670  * Set if the (custom)cursor for a given list item should be
3671  * searched in its theme, also, or should only rely on the
3672  * rendering engine.
3673  *
3674  * @param it item with custom (custom) cursor already set on
3675  * @param engine_only Use @c EINA_TRUE to have cursors looked for
3676  * only on those provided by the rendering engine, @c EINA_FALSE to
3677  * have them searched on the widget's theme, as well.
3678  *
3679  * @note This call is of use only if you've set a custom cursor
3680  * for list items, with elm_list_item_cursor_set().
3681  *
3682  * @note By default, cursors will only be looked for between those
3683  * provided by the rendering engine.
3684  *
3685  * @deprecated Please use elm_list_item_cursor_engine_only_set() instead
3686  * @ingroup List
3687  */
3688 EINA_DEPRECATED EAPI void                         elm_list_item_cursor_engine_only_set(Elm_Object_Item *it, Eina_Bool engine_only);
3689
3690 /**
3691  * Get if the (custom) cursor for a given list item is being
3692  * searched in its theme, also, or is only relying on the rendering
3693  * engine.
3694  *
3695  * @param it a list item
3696  * @return @c EINA_TRUE, if cursors are being looked for only on
3697  * those provided by the rendering engine, @c EINA_FALSE if they
3698  * are being searched on the widget's theme, as well.
3699  *
3700  * @see elm_list_item_cursor_engine_only_set(), for more details
3701  *
3702  * @deprecated Please use elm_list_item_cursor_engine_only_get() instead
3703  * @ingroup List
3704  */
3705 EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_cursor_engine_only_get(const Elm_Object_Item *it);
3706
3707 /**
3708  * Set the shrink state of toolbar @p obj.
3709  *
3710  * @param obj The toolbar object.
3711  * @param shrink_mode Toolbar's items display behavior.
3712  *
3713  * The toolbar won't scroll if #ELM_TOOLBAR_SHRINK_NONE,
3714  * but will enforce a minimun size so all the items will fit, won't scroll
3715  * and won't show the items that don't fit if #ELM_TOOLBAR_SHRINK_HIDE,
3716  * will scroll if #ELM_TOOLBAR_SHRINK_SCROLL, and will create a button to
3717  * pop up excess elements with #ELM_TOOLBAR_SHRINK_MENU.
3718  *
3719  * @deprecated Please use elm_toolbar_shrink_mode_set(obj, shrink_mode);
3720  * @ingroup Toolbar
3721  */
3722 EINA_DEPRECATED EAPI void                         elm_toolbar_mode_shrink_set(Evas_Object *obj, Elm_Toolbar_Shrink_Mode shrink_mode);
3723
3724 /**
3725  * Get the shrink mode of toolbar @p obj.
3726  *
3727  * @param obj The toolbar object.
3728  * @return Toolbar's items display behavior.
3729  *
3730  * @see elm_toolbar_shrink_mode_set() for details.
3731  *
3732  * @deprecated Please use elm_toolbar_shrink_mode_get(obj);
3733  * @ingroup Toolbar
3734  */
3735 EINA_DEPRECATED EAPI Elm_Toolbar_Shrink_Mode      elm_toolbar_mode_shrink_get(const Evas_Object *obj);
3736
3737 /**
3738  * This sets a widget to be displayed to the left of a scrolled entry.
3739  *
3740  * @param obj The scrolled entry object
3741  * @param icon The widget to display on the left side of the scrolled
3742  * entry.
3743  *
3744  * @note A previously set widget will be destroyed.
3745  * @note If the object being set does not have minimum size hints set,
3746  * it won't get properly displayed.
3747  *
3748  * @deprecated Use elm_object_part_content_set(entry, "icon", content) instead
3749  * @see elm_entry_end_set()
3750  */
3751 EINA_DEPRECATED EAPI void               elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
3752
3753 /**
3754  * Gets the leftmost widget of the scrolled entry. This object is
3755  * owned by the scrolled entry and should not be modified.
3756  *
3757  * @param obj The scrolled entry object
3758  * @return the left widget inside the scroller
3759  *
3760  * @deprecated Use elm_object_part_content_get(entry, "icon") instead
3761  */
3762 EINA_DEPRECATED EAPI Evas_Object       *elm_entry_icon_get(const Evas_Object *obj);
3763
3764 /**
3765  * Unset the leftmost widget of the scrolled entry, unparenting and
3766  * returning it.
3767  *
3768  * @param obj The scrolled entry object
3769  * @return the previously set icon sub-object of this entry, on
3770  * success.
3771  *
3772  * @deprecated Use elm_object_part_content_unset(entry, "icon") instead
3773  * @see elm_entry_icon_set()
3774  */
3775 EINA_DEPRECATED EAPI Evas_Object       *elm_entry_icon_unset(Evas_Object *obj);
3776
3777 /**
3778  * This sets a widget to be displayed to the end of a scrolled entry.
3779  *
3780  * @param obj The scrolled entry object
3781  * @param end The widget to display on the right side of the scrolled
3782  * entry.
3783  *
3784  * @note A previously set widget will be destroyed.
3785  * @note If the object being set does not have minimum size hints set,
3786  * it won't get properly displayed.
3787  *
3788  * @deprecated Use elm_object_part_content_set(entry, "end", content) instead
3789  * @see elm_entry_icon_set
3790  */
3791 EINA_DEPRECATED EAPI void               elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
3792
3793 /**
3794  * Gets the endmost widget of the scrolled entry. This object is owned
3795  * by the scrolled entry and should not be modified.
3796  *
3797  * @param obj The scrolled entry object
3798  * @return the right widget inside the scroller
3799  *
3800  * @deprecated Use elm_object_part_content_get(entry, "end") instead
3801  */
3802 EAPI Evas_Object       *elm_entry_end_get(const Evas_Object *obj);
3803
3804 /**
3805  * Unset the endmost widget of the scrolled entry, unparenting and
3806  * returning it.
3807  *
3808  * @param obj The scrolled entry object
3809  * @return the previously set icon sub-object of this entry, on
3810  * success.
3811  *
3812  * @deprecated Use elm_object_part_content_unset(entry, "end") instead
3813  * @see elm_entry_icon_set()
3814  */
3815 EINA_DEPRECATED EAPI Evas_Object       *elm_entry_end_unset(Evas_Object *obj);
3816
3817 /**
3818  * Convert a pixel coordinate into a rotated pixel coordinate.
3819  *
3820  * @param obj The map object.
3821  * @param x horizontal coordinate of the point to rotate.
3822  * @param y vertical coordinate of the point to rotate.
3823  * @param cx rotation's center horizontal position.
3824  * @param cy rotation's center vertical position.
3825  * @param degree amount of degrees from 0.0 to 360.0 to rotate arount Z axis.
3826  * @param xx Pointer where to store rotated x.
3827  * @param yy Pointer where to store rotated y.
3828  *
3829  * @ingroup Map
3830  * @deprecated Rotation is not needed to know. Use elm_map_canvas_to_geo_convert() instead
3831  */
3832 EINA_DEPRECATED EAPI void                  elm_map_utils_rotate_coord(const Evas_Object *obj, const Evas_Coord x, const Evas_Coord y, const Evas_Coord cx, const Evas_Coord cy, const double degree, Evas_Coord *xx, Evas_Coord *yy);
3833