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