tizen 2.4 release
[framework/uifw/elementary.git] / src / lib / elm_removed.h
index 900e7a9..df873e4 100644 (file)
 #error "do not include this"
 
 /**
+ *
+ * @brief A toggle is a slider which can be used to toggle between
+ * two values.  It has two states: on and off.
+ *
+ * This widget is deprecated. Please use elm_check_add() instead using the
+ * toggle style like:
+ *
+ * @code
+ * obj = elm_check_add(parent);
+ * elm_object_style_set(obj, "toggle");
+ * elm_object_part_text_set(obj, "on", "ON");
+ * elm_object_part_text_set(obj, "off", "OFF");
+ * @endcode
+ *
+ * Signals that you can add callbacks for are:
+ * @li "changed" - Whenever the toggle value has been changed.  Is not called
+ *                 until the toggle is released by the cursor (assuming it
+ *                 has been triggered by the cursor in the first place).
+ *
+ * Default content parts of the toggle widget that you can use for are:
+ * @li "icon" - An icon of the toggle
+ *
+ * Default text parts of the toggle widget that you can use for are:
+ * @li "elm.text" - Label of the toggle
+ *
+ * @{
+ */
+
+/**
+ * @internal
+ *
+ * @brief Add a toggle to @p parent.
+ *
+ * @param parent The parent object
+ *
+ * @return The toggle object
+ */
+EINA_DEPRECATED EAPI Evas_Object *elm_toggle_add(Evas_Object *parent);
+
+/**
+ * @internal
+ *
+ * @brief Sets the label to be displayed with the toggle.
+ *
+ * @param obj The toggle object
+ * @param label The label to be displayed
+ *
+ * @deprecated use elm_object_text_set() instead.
+ */
+EINA_DEPRECATED EAPI void         elm_toggle_label_set(Evas_Object *obj, const char *label);
+
+/**
+ * @internal
+ *
+ * @brief Get the label of the toggle
+ *
+ * @param obj  toggle object
+ * @return The label of the toggle
+ *
+ * @deprecated use elm_object_text_get() instead.
+ */
+EINA_DEPRECATED EAPI const char  *elm_toggle_label_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * @brief Set the icon used for the toggle
+ *
+ * @param obj The toggle object
+ * @param icon The icon object for the button
+ *
+ * Once the icon object is set, a previously set one will be deleted
+ * If you want to keep that old content object, use the
+ * elm_toggle_icon_unset() function.
+ *
+ * @deprecated use elm_object_part_content_set() instead.
+ */
+EINA_DEPRECATED EAPI void         elm_toggle_icon_set(Evas_Object *obj, Evas_Object *icon);
+
+/**
+ * @internal
+ *
+ * @brief Get the icon used for the toggle
+ *
+ * @param obj The toggle object
+ * @return The icon object that is being used
+ *
+ * Return the icon object which is set for this widget.
+ *
+ * @deprecated use elm_object_part_content_get() instead.
+ */
+EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * @brief Unset the icon used for the toggle
+ *
+ * @param obj The toggle object
+ * @return The icon object that was being used
+ *
+ * Unparent and return the icon object which was set for this widget.
+ *
+ * @deprecated use elm_object_part_content_unset() instead.
+ */
+EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_unset(Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * @brief Sets the labels to be associated with the on and off states of the toggle.
+ *
+ * @param obj The toggle object
+ * @param onlabel The label displayed when the toggle is in the "on" state
+ * @param offlabel The label displayed when the toggle is in the "off" state
+ *
+ * @deprecated use elm_object_part_text_set() for "on" and "off" parts
+ * instead.
+ */
+EINA_DEPRECATED EAPI void         elm_toggle_states_labels_set(Evas_Object *obj, const char *onlabel, const char *offlabel);
+
+/**
+ * @internal
+ *
+ * @brief Get the labels associated with the on and off states of the
+ * toggle.
+ *
+ * @param obj The toggle object
+ * @param onlabel A char** to place the onlabel of @p obj into
+ * @param offlabel A char** to place the offlabel of @p obj into
+ *
+ * @deprecated use elm_object_part_text_get() for "on" and "off" parts
+ * instead.
+ */
+EINA_DEPRECATED EAPI void         elm_toggle_states_labels_get(const Evas_Object *obj, const char **onlabel, const char **offlabel);
+
+/**
+ * @internal
+ *
+ * @brief Sets the state of the toggle to @p state.
+ *
+ * @param obj The toggle object
+ * @param state The state of @p obj
+ *
+ * @deprecated use elm_check_state_set() instead.
+ */
+EINA_DEPRECATED EAPI void         elm_toggle_state_set(Evas_Object *obj, Eina_Bool state);
+
+/**
+ * @internal
+ *
+ * @brief Get the state of the toggle to @p state.
+ *
+ * @param obj The toggle object
+ * @return The state of @p obj
+ *
+ * @deprecated use elm_check_state_get() instead.
+ */
+EINA_DEPRECATED EAPI Eina_Bool    elm_toggle_state_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * @brief Sets the state pointer of the toggle to @p statep.
+ *
+ * @param obj The toggle object
+ * @param statep The state pointer of @p obj
+ *
+ * @deprecated use elm_check_state_pointer_set() instead.
+ */
+EINA_DEPRECATED EAPI void         elm_toggle_state_pointer_set(Evas_Object *obj, Eina_Bool *statep);
+
+/**
+ * @internal
+ *
  * @brief Get Elementary's rendering engine in use.
  *
  * @return The rendering engine's name
 EINA_DEPRECATED EAPI const char *elm_engine_current_get(void);
 
 /**
+ * @internal
+ *
  * Set the configured finger size for all applications on the display
  *
  * This sets the globally configured finger size in pixels for all
@@ -33,11 +210,13 @@ EINA_DEPRECATED EAPI const char *elm_engine_current_get(void);
  *
  * @param size The finger size
  * @ingroup Fingers
- * @deprecated Use elm_finger_size_set() and elm_config_all_flush()
+ * @deprecated Use elm_config_finger_size_set() and elm_config_all_flush()
  */
 EINA_DEPRECATED EAPI void       elm_finger_size_all_set(Evas_Coord size);
 
 /**
+ * @internal
+ *
  * Set the global scaling factor for all applications on the display
  *
  * This sets the globally configured scaling factor that is applied to all
@@ -49,6 +228,8 @@ EINA_DEPRECATED EAPI void       elm_finger_size_all_set(Evas_Coord size);
 EINA_DEPRECATED EAPI void   elm_scale_all_set(double scale);
 
 /**
+ * @internal
+ *
  * Apply the changes made with elm_font_overlay_set() and
  * elm_font_overlay_unset() on all Elementary application windows.
  *
@@ -60,6 +241,8 @@ EINA_DEPRECATED EAPI void   elm_scale_all_set(double scale);
 EINA_DEPRECATED EAPI void             elm_font_overlay_all_apply(void);
 
 /**
+ * @internal
+ *
  * Set the configured cache flush interval time for all applications on the
  * display
  *
@@ -73,6 +256,8 @@ EINA_DEPRECATED EAPI void             elm_font_overlay_all_apply(void);
 EINA_DEPRECATED EAPI void      elm_cache_flush_interval_all_set(int size);
 
 /**
+ * @internal
+ *
  * Set the configured cache flush enabled state for all applications on the
  * display
  *
@@ -86,6 +271,8 @@ EINA_DEPRECATED EAPI void      elm_cache_flush_interval_all_set(int size);
 EINA_DEPRECATED EAPI void      elm_cache_flush_enabled_all_set(Eina_Bool enabled);
 
 /**
+ * @internal
+ *
  * Set the configured font cache size for all applications on the
  * display
  *
@@ -99,6 +286,8 @@ EINA_DEPRECATED EAPI void      elm_cache_flush_enabled_all_set(Eina_Bool enabled
 EINA_DEPRECATED EAPI void      elm_font_cache_all_set(int size);
 
 /**
+ * @internal
+ *
  * Set the configured image cache size for all applications on the
  * display
  *
@@ -112,6 +301,8 @@ EINA_DEPRECATED EAPI void      elm_font_cache_all_set(int size);
 EINA_DEPRECATED EAPI void      elm_image_cache_all_set(int size);
 
 /**
+ * @internal
+ *
  * Set the configured edje file cache size for all applications on the
  * display
  *
@@ -125,6 +316,8 @@ EINA_DEPRECATED EAPI void      elm_image_cache_all_set(int size);
 EINA_DEPRECATED EAPI void      elm_edje_file_cache_all_set(int size);
 
 /**
+ * @internal
+ *
  * Set the configured edje collections (groups) cache size for all
  * applications on the display
  *
@@ -138,6 +331,8 @@ EINA_DEPRECATED EAPI void      elm_edje_file_cache_all_set(int size);
 EINA_DEPRECATED EAPI void      elm_edje_collection_cache_all_set(int size);
 
 /**
+ * @internal
+ *
  * Set Elementary's profile.
  *
  * This sets the global profile that is applied to all Elementary
@@ -151,6 +346,8 @@ EINA_DEPRECATED EAPI void      elm_edje_collection_cache_all_set(int size);
 EINA_DEPRECATED EAPI void        elm_profile_all_set(const char *profile);
 
 /**
+ * @internal
+ *
  * Set whether scrollers should bounce when they reach their
  * viewport's edge during a scroll, for all Elementary application
  * windows.
@@ -164,6 +361,8 @@ EINA_DEPRECATED EAPI void        elm_profile_all_set(const char *profile);
 EINA_DEPRECATED EAPI void         elm_scroll_bounce_enabled_all_set(Eina_Bool enabled);
 
 /**
+ * @internal
+ *
  * Set the amount of inertia a scroller will impose at bounce
  * animations, for all Elementary application windows.
  *
@@ -176,19 +375,23 @@ EINA_DEPRECATED EAPI void         elm_scroll_bounce_enabled_all_set(Eina_Bool en
 EINA_DEPRECATED EAPI void         elm_scroll_bounce_friction_all_set(double friction);
 
 /**
+ * @internal
+ *
  * Set the amount of inertia a <b>paged</b> scroller will impose at
  * page fitting animations, for all Elementary application windows.
  *
  * @param friction the page scroll friction
  *
  * @see elm_thumbscroll_page_scroll_friction_get()
- * @deprecated Use elm_scroll_page_scroll_friction_set() and 
+ * @deprecated Use elm_scroll_page_scroll_friction_set() and
  * elm_config_all_flush()
  * @ingroup Scrolling
  */
 EINA_DEPRECATED EAPI void         elm_scroll_page_scroll_friction_all_set(double friction);
 
 /**
+ * @internal
+ *
  * Set the amount of inertia a scroller will impose at region bring
  * animations, for all Elementary application windows.
  *
@@ -202,6 +405,8 @@ EINA_DEPRECATED EAPI void         elm_scroll_page_scroll_friction_all_set(double
 EINA_DEPRECATED EAPI void         elm_scroll_bring_in_scroll_friction_all_set(double friction);
 
 /**
+ * @internal
+ *
  * Set the amount of inertia scrollers will impose at animations
  * triggered by Elementary widgets' zooming API, for all Elementary
  * application windows.
@@ -215,6 +420,8 @@ EINA_DEPRECATED EAPI void         elm_scroll_bring_in_scroll_friction_all_set(do
 EINA_DEPRECATED EAPI void         elm_scroll_zoom_friction_all_set(double friction);
 
 /**
+ * @internal
+ *
  * Set whether scrollers should be draggable from any point in their
  * views, for all Elementary application windows.
  *
@@ -229,6 +436,8 @@ EINA_DEPRECATED EAPI void         elm_scroll_zoom_friction_all_set(double fricti
 EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_enabled_all_set(Eina_Bool enabled);
 
 /**
+ * @internal
+ *
 
  * Set the number of pixels one should travel while dragging a
  * scroller's view to actually trigger scrolling, for all Elementary
@@ -245,6 +454,8 @@ EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_enabled_all_set(Eina_Bo
 EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_threshold_all_set(unsigned int threshold);
 
 /**
+ * @internal
+ *
  * Set the minimum speed of mouse cursor movement which will trigger
  * list self scrolling animation after a mouse up event
  * (pixels/second), for all Elementary application windows.
@@ -260,6 +471,8 @@ EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_threshold_all_set(unsig
 EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_momentum_threshold_all_set(double threshold);
 
 /**
+ * @internal
+ *
  * Set the amount of inertia a scroller will impose at self scrolling
  * animations, for all Elementary application windows.
  *
@@ -274,6 +487,8 @@ EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_momentum_threshold_all_
 EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_friction_all_set(double friction);
 
 /**
+ * @internal
+ *
  * Set the amount of lag between your actual mouse cursor dragging
  * movement and a scroller's view movement itself, while pushing it
  * into bounce state manually, for all Elementary application windows.
@@ -292,6 +507,8 @@ EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_friction_all_set(double
 EINA_DEPRECATED EAPI void         elm_scroll_thumbscroll_border_friction_all_set(double friction);
 
 /**
+ * @internal
+ *
  * Set the sensitivity amount which is be multiplied by the length of
  * mouse dragging, for all Elementary application windows.
  *
@@ -332,19 +549,8 @@ EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_item_prev_get(const Elm_Gen_Item *it)
 EINA_DEPRECATED EAPI Evas_Object  *elm_gen_item_widget_get(const Elm_Gen_Item *it);
 
 /**
- * Get the widget object's handle which contains a given item
- *
- * @param it The Elementary object item
- * @return The widget object
+ * @internal
  *
- * @note This returns the widget object itself that an item belongs to.
- * @note Every elm_object_item supports this API
- * @deprecated Use elm_object_item_widget_get() instead
- * @ingroup General
- */
-EINA_DEPRECATED EAPI Evas_Object                 *elm_object_item_object_get(const Elm_Object_Item *it);
-
-/**
  * Set the text to show in the anchorblock
  *
  * Sets the text of the anchorblock to @p text. This text can include markup
@@ -363,9 +569,11 @@ EINA_DEPRECATED EAPI Evas_Object                 *elm_object_item_object_get(con
 EINA_DEPRECATED EAPI void        elm_anchorblock_text_set(Evas_Object *obj, const char *text);
 
 /**
+ * @internal
+ *
  * Get the markup text set for the anchorblock
  *
- * Retrieves the text set on the anchorblock, with markup tags included.
+ * Gets the text set on the anchorblock, with markup tags included.
  *
  * @param obj The anchorblock object
  * @return The markup text set or @c NULL if nothing was set or an error
@@ -375,6 +583,8 @@ EINA_DEPRECATED EAPI void        elm_anchorblock_text_set(Evas_Object *obj, cons
 EINA_DEPRECATED EAPI const char *elm_anchorblock_text_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the text to show in the anchorview
  *
  * Sets the text of the anchorview to @p text. This text can include markup
@@ -393,9 +603,11 @@ EINA_DEPRECATED EAPI const char *elm_anchorblock_text_get(const Evas_Object *obj
 EINA_DEPRECATED EAPI void        elm_anchorview_text_set(Evas_Object *obj, const char *text);
 
 /**
+ * @internal
+ *
  * Get the markup text set for the anchorview
  *
- * Retrieves the text set on the anchorview, with markup tags included.
+ * Gets the text set on the anchorview, with markup tags included.
  *
  * @param obj The anchorview object
  * @return The markup text set or @c NULL if nothing was set or an error
@@ -405,6 +617,8 @@ EINA_DEPRECATED EAPI void        elm_anchorview_text_set(Evas_Object *obj, const
 EINA_DEPRECATED EAPI const char *elm_anchorview_text_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Get the ctxpopup item's disabled/enabled state.
  *
  * @param it Ctxpopup item to be enabled/disabled
@@ -418,6 +632,8 @@ EINA_DEPRECATED EAPI const char *elm_anchorview_text_get(const Evas_Object *obj)
 EINA_DEPRECATED EAPI Eina_Bool                    elm_ctxpopup_item_disabled_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Set the ctxpopup item's state as disabled or enabled.
  *
  * @param it Ctxpopup item to be enabled/disabled
@@ -431,6 +647,8 @@ EINA_DEPRECATED EAPI Eina_Bool                    elm_ctxpopup_item_disabled_get
 EINA_DEPRECATED EAPI void         elm_ctxpopup_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
 
 /**
+ * @internal
+ *
  * @brief Get the icon object for the given ctxpopup item.
  *
  * @param it Ctxpopup item
@@ -447,6 +665,8 @@ EINA_DEPRECATED EAPI void         elm_ctxpopup_item_disabled_set(Elm_Object_Item
 EINA_DEPRECATED EAPI Evas_Object *elm_ctxpopup_item_icon_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Sets the side icon associated with the ctxpopup item
  *
  * @param it Ctxpopup item
@@ -465,6 +685,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_ctxpopup_item_icon_get(const Elm_Object_It
 EINA_DEPRECATED EAPI void         elm_ctxpopup_item_icon_set(Elm_Object_Item *it, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * @brief Get the label for the given ctxpopup item.
  *
  * @param it Ctxpopup item
@@ -481,6 +703,8 @@ EINA_DEPRECATED EAPI void         elm_ctxpopup_item_icon_set(Elm_Object_Item *it
 EINA_DEPRECATED EAPI const char  *elm_ctxpopup_item_label_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief (Re)set the label on the given ctxpopup item.
  *
  * @param it Ctxpopup item
@@ -493,6 +717,8 @@ EINA_DEPRECATED EAPI const char  *elm_ctxpopup_item_label_get(const Elm_Object_I
 EINA_DEPRECATED EAPI void         elm_ctxpopup_item_label_set(Elm_Object_Item *it, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Set an elm widget as the content of the ctxpopup.
  *
  * @param obj Ctxpopup object
@@ -512,6 +738,8 @@ EINA_DEPRECATED EAPI void         elm_ctxpopup_item_label_set(Elm_Object_Item *i
 EINA_DEPRECATED EAPI void         elm_ctxpopup_content_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * @brief Unset the ctxpopup content
  *
  * @param obj Ctxpopup object
@@ -530,6 +758,8 @@ EINA_DEPRECATED EAPI void         elm_ctxpopup_content_set(Evas_Object *obj, Eva
 EINA_DEPRECATED EAPI Evas_Object *elm_ctxpopup_content_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Delete the given item in a ctxpopup object.
  *
  * @param it Ctxpopup item to be deleted
@@ -542,6 +772,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_ctxpopup_content_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void                         elm_ctxpopup_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the label for a given file selector button widget
  *
  * @param obj The file selector button widget
@@ -552,6 +784,8 @@ EINA_DEPRECATED EAPI void                         elm_ctxpopup_item_del(Elm_Obje
 EINA_DEPRECATED EAPI void        elm_fileselector_button_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label set for a given file selector button widget
  *
  * @param obj The file selector button widget
@@ -562,6 +796,8 @@ EINA_DEPRECATED EAPI void        elm_fileselector_button_label_set(Evas_Object *
 EINA_DEPRECATED EAPI const char *elm_fileselector_button_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the icon on a given file selector button widget
  *
  * @param obj The file selector button widget
@@ -577,6 +813,8 @@ EINA_DEPRECATED EAPI const char *elm_fileselector_button_label_get(const Evas_Ob
 EINA_DEPRECATED EAPI void                        elm_fileselector_button_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * Get the icon set for a given file selector button widget
  *
  * @param obj The file selector button widget
@@ -589,6 +827,8 @@ EINA_DEPRECATED EAPI void                        elm_fileselector_button_icon_se
 EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_button_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the icon used in a given file selector button widget
  *
  * @param obj The file selector button widget
@@ -604,6 +844,8 @@ EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_button_icon_ge
 EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_button_icon_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the label for a given file selector entry widget's button
  *
  * @param obj The file selector entry widget
@@ -615,6 +857,8 @@ EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_button_icon_un
 EINA_DEPRECATED EAPI void        elm_fileselector_entry_button_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label set for a given file selector entry widget's button
  *
  * @param obj The file selector entry widget
@@ -625,6 +869,8 @@ EINA_DEPRECATED EAPI void        elm_fileselector_entry_button_label_set(Evas_Ob
 EINA_DEPRECATED EAPI const char *elm_fileselector_entry_button_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the icon on a given file selector entry widget's button
  *
  * @param obj The file selector entry widget
@@ -640,6 +886,8 @@ EINA_DEPRECATED EAPI const char *elm_fileselector_entry_button_label_get(const E
 EINA_DEPRECATED EAPI void                        elm_fileselector_entry_button_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * Get the icon set for a given file selector entry widget's button
  *
  * @param obj The file selector entry widget
@@ -652,6 +900,8 @@ EINA_DEPRECATED EAPI void                        elm_fileselector_entry_button_i
 EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_entry_button_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the icon used in a given file selector entry widget's
  * button
  *
@@ -668,6 +918,8 @@ EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_entry_button_i
 EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_entry_button_icon_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Sets the content of the hover object and the direction in which it
  * will pop out.
  *
@@ -701,6 +953,8 @@ EINA_DEPRECATED EAPI Evas_Object                *elm_fileselector_entry_button_i
 EINA_DEPRECATED EAPI void         elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * @brief Get the content of the hover object, in a given direction.
  *
  * Return the content object which was set for this widget in the
@@ -716,6 +970,8 @@ EINA_DEPRECATED EAPI void         elm_hover_content_set(Evas_Object *obj, const
 EINA_DEPRECATED EAPI Evas_Object *elm_hover_content_get(const Evas_Object *obj, const char *swallow);
 
 /**
+ * @internal
+ *
  * @brief Unset the content of the hover object, in a given direction.
  *
  * Unparent and return the content object set at @p swallow direction.
@@ -730,6 +986,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_hover_content_get(const Evas_Object *obj,
 EINA_DEPRECATED EAPI Evas_Object *elm_hover_content_unset(Evas_Object *obj, const char *swallow);
 
 /**
+ * @internal
+ *
  * @brief Set the hoversel button label
  *
  * @param obj The hoversel object
@@ -743,6 +1001,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_hover_content_unset(Evas_Object *obj, cons
 EINA_DEPRECATED EAPI void         elm_hoversel_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Get the hoversel button label
  *
  * @param obj The hoversel object
@@ -753,6 +1013,8 @@ EINA_DEPRECATED EAPI void         elm_hoversel_label_set(Evas_Object *obj, const
 EINA_DEPRECATED EAPI const char  *elm_hoversel_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the icon of the hoversel button
  *
  * @param obj The hoversel object
@@ -769,6 +1031,8 @@ EINA_DEPRECATED EAPI const char  *elm_hoversel_label_get(const Evas_Object *obj)
 EINA_DEPRECATED EAPI void         elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * @brief Get the icon of the hoversel button
  *
  * @param obj The hoversel object
@@ -783,6 +1047,8 @@ EINA_DEPRECATED EAPI void         elm_hoversel_icon_set(Evas_Object *obj, Evas_O
 EINA_DEPRECATED EAPI Evas_Object *elm_hoversel_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Get and unparent the icon of the hoversel button
  *
  * @param obj The hoversel object
@@ -798,6 +1064,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_hoversel_icon_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_hoversel_icon_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief This returns the data pointer supplied with elm_hoversel_item_add()
  * that will be passed to associated function callbacks.
  *
@@ -810,6 +1078,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_hoversel_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void        *elm_hoversel_item_data_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief This returns the label text of the given hoversel item.
  *
  * @param it The item to get the label
@@ -821,6 +1091,8 @@ EINA_DEPRECATED EAPI void        *elm_hoversel_item_data_get(const Elm_Object_It
 EINA_DEPRECATED EAPI const char  *elm_hoversel_item_label_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Set the function to be called when an item from the hoversel is
  * freed.
  *
@@ -838,6 +1110,8 @@ EINA_DEPRECATED EAPI const char  *elm_hoversel_item_label_get(const Elm_Object_I
 EINA_DEPRECATED EAPI void                         elm_hoversel_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
 
 /**
+ * @internal
+ *
  * @brief Delete an item from the hoversel
  *
  * @param it The item to delete
@@ -851,6 +1125,8 @@ EINA_DEPRECATED EAPI void                         elm_hoversel_item_del_cb_set(E
 EINA_DEPRECATED EAPI void                         elm_hoversel_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set actionslider labels.
  *
  * @param obj The actionslider object
@@ -862,6 +1138,8 @@ EINA_DEPRECATED EAPI void                         elm_hoversel_item_del(Elm_Obje
 EINA_DEPRECATED EAPI void        elm_actionslider_labels_set(Evas_Object *obj, const char *left_label, const char *center_label, const char *right_label);
 
 /**
+ * @internal
+ *
  * Get actionslider labels.
  *
  * @param obj The actionslider object
@@ -873,6 +1151,8 @@ EINA_DEPRECATED EAPI void        elm_actionslider_labels_set(Evas_Object *obj, c
 EINA_DEPRECATED EAPI void        elm_actionslider_labels_get(const Evas_Object *obj, const char **left_label, const char **center_label, const char **right_label);
 
 /**
+ * @internal
+ *
  * Set the label used on the indicator.
  *
  * @param obj The actionslider object
@@ -882,6 +1162,8 @@ EINA_DEPRECATED EAPI void        elm_actionslider_labels_get(const Evas_Object *
 EINA_DEPRECATED EAPI void        elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label used on the indicator object.
  *
  * @param obj The actionslider object
@@ -891,6 +1173,8 @@ EINA_DEPRECATED EAPI void        elm_actionslider_indicator_label_set(Evas_Objec
 EINA_DEPRECATED EAPI const char *elm_actionslider_indicator_label_get(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the overlay object used for the background object.
  *
  * @param obj The bg object
@@ -909,6 +1193,8 @@ EINA_DEPRECATED EAPI const char *elm_actionslider_indicator_label_get(Evas_Objec
 EINA_DEPRECATED EAPI void         elm_bg_overlay_set(Evas_Object *obj, Evas_Object *overlay);
 
 /**
+ * @internal
+ *
  * Get the overlay object used for the background object.
  *
  * @param obj The bg object
@@ -923,6 +1209,8 @@ EINA_DEPRECATED EAPI void         elm_bg_overlay_set(Evas_Object *obj, Evas_Obje
 EINA_DEPRECATED EAPI Evas_Object *elm_bg_overlay_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Get the overlay object used for the background object.
  *
  * @param obj The bg object
@@ -938,6 +1226,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_bg_overlay_unset(Evas_Object *obj);
 
 
 /**
+ * @internal
+ *
  * Set the label of the bubble
  *
  * @param obj The bubble object
@@ -950,6 +1240,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_bg_overlay_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_bubble_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label of the bubble
  *
  * @param obj The bubble object
@@ -961,6 +1253,8 @@ EINA_DEPRECATED EAPI void         elm_bubble_label_set(Evas_Object *obj, const c
 EINA_DEPRECATED EAPI const char  *elm_bubble_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the info of the bubble
  *
  * @param obj The bubble object
@@ -973,6 +1267,8 @@ EINA_DEPRECATED EAPI const char  *elm_bubble_label_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_bubble_info_set(Evas_Object *obj, const char *info);
 
 /**
+ * @internal
+ *
  * Get the info of the bubble
  *
  * @param obj The bubble object
@@ -985,6 +1281,8 @@ EINA_DEPRECATED EAPI void         elm_bubble_info_set(Evas_Object *obj, const ch
 EINA_DEPRECATED EAPI const char  *elm_bubble_info_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the content to be shown in the bubble
  *
  * Once the content object is set, a previously set one will be deleted.
@@ -1002,6 +1300,8 @@ EINA_DEPRECATED EAPI const char  *elm_bubble_info_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_bubble_content_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * Get the content shown in the bubble
  *
  * Return the content object which is set for this widget.
@@ -1015,6 +1315,8 @@ EINA_DEPRECATED EAPI void         elm_bubble_content_set(Evas_Object *obj, Evas_
 EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the content shown in the bubble
  *
  * Unparent and return the content object which was set for this widget.
@@ -1028,6 +1330,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_get(const Evas_Object *obj)
 EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the icon of the bubble
  *
  * Once the icon object is set, a previously set one will be deleted.
@@ -1043,6 +1347,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_bubble_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * Get the icon of the bubble
  *
  * @param obj The bubble object
@@ -1056,6 +1362,8 @@ EINA_DEPRECATED EAPI void         elm_bubble_icon_set(Evas_Object *obj, Evas_Obj
 EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the icon of the bubble
  *
  * Unparent and return the icon object which was set for this widget.
@@ -1070,6 +1378,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_unset(Evas_Object *obj);
 
 
 /**
+ * @internal
+ *
  * Set the label used in the button
  *
  * The passed @p label can be NULL to clean any existing text in it and
@@ -1082,6 +1392,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_button_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label set for the button
  *
  * The string returned is an internal pointer and should not be freed or
@@ -1097,6 +1409,8 @@ EINA_DEPRECATED EAPI void         elm_button_label_set(Evas_Object *obj, const c
 EINA_DEPRECATED EAPI const char  *elm_button_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the icon used for the button
  *
  * Setting a new icon will delete any other that was previously set, making
@@ -1110,6 +1424,8 @@ EINA_DEPRECATED EAPI const char  *elm_button_label_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_button_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * Get the icon used for the button
  *
  * Return the icon object which is set for this widget. If the button is
@@ -1124,6 +1440,8 @@ EINA_DEPRECATED EAPI void         elm_button_icon_set(Evas_Object *obj, Evas_Obj
 EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Remove the icon set without deleting it and return the object
  *
  * This function drops the reference the button holds of the icon object
@@ -1138,6 +1456,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set a day text color to the same that represents Saturdays.
  *
  * @param obj The calendar object.
@@ -1158,6 +1478,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos);
 
 /**
+ * @internal
+ *
  * Set a day text color to the same that represents Sundays.
  *
  * @param obj The calendar object.
@@ -1178,6 +1500,8 @@ EINA_DEPRECATED EAPI void elm_calendar_text_saturday_color_set(Evas_Object *obj,
 EINA_DEPRECATED EAPI void elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos);
 
 /**
+ * @internal
+ *
  * Set a day text color to the same that represents Weekdays.
  *
  * @param obj The calendar object
@@ -1208,6 +1532,8 @@ EINA_DEPRECATED EAPI void elm_calendar_text_weekday_color_set(Evas_Object *obj,
 
 
 /**
+ * @internal
+ *
  * @brief Set the text label of the check object
  *
  * @param obj The check object
@@ -1218,6 +1544,8 @@ EINA_DEPRECATED EAPI void elm_calendar_text_weekday_color_set(Evas_Object *obj,
 EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Get the text label of the check object
  *
  * @param obj The check object
@@ -1228,6 +1556,8 @@ EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const ch
 EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the icon object of the check object
  *
  * @param obj The check object
@@ -1243,6 +1573,8 @@ EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * @brief Get the icon object of the check object
  *
  * @param obj The check object
@@ -1254,6 +1586,8 @@ EINA_DEPRECATED EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Obje
 EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Unset the icon used for the check object
  *
  * @param obj The check object
@@ -1267,6 +1601,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the text label of the check object
  *
  * @param obj The check object
@@ -1277,6 +1613,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Get the text label of the check object
  *
  * @param obj The check object
@@ -1287,6 +1625,8 @@ EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const ch
 EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the icon object of the check object
  *
  * @param obj The check object
@@ -1302,6 +1642,8 @@ EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * @brief Get the icon object of the check object
  *
  * @param obj The check object
@@ -1313,6 +1655,8 @@ EINA_DEPRECATED EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Obje
 EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Unset the icon used for the check object
  *
  * @param obj The check object
@@ -1330,6 +1674,8 @@ EINA_DEPRECATED EAPI void         elm_check_states_labels_get(const Evas_Object
 
 
 /**
+ * @internal
+ *
  * Set the content of the conformant widget.
  *
  * @param obj The conformant object.
@@ -1354,6 +1700,8 @@ EINA_DEPRECATED EAPI void         elm_check_states_labels_get(const Evas_Object
 EINA_DEPRECATED EAPI void         elm_conformant_content_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * Get the content of the conformant widget.
  *
  * @param obj The conformant object.
@@ -1373,6 +1721,8 @@ EINA_DEPRECATED EAPI void         elm_conformant_content_set(Evas_Object *obj, E
 EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the content of the conformant widget.
  *
  * @param obj The conformant object.
@@ -1389,6 +1739,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *
 EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Get the side labels max length.
  *
  * @deprecated use elm_diskselector_side_label_length_get() instead:
@@ -1402,6 +1754,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj)
 EINA_DEPRECATED EAPI int    elm_diskselector_side_label_lenght_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the side labels max length.
  *
  * @deprecated use elm_diskselector_side_label_length_set() instead:
@@ -1414,6 +1768,8 @@ EINA_DEPRECATED EAPI int    elm_diskselector_side_label_lenght_get(const Evas_Ob
 EINA_DEPRECATED EAPI void   elm_diskselector_side_label_lenght_set(Evas_Object *obj, int len);
 
 /**
+ * @internal
+ *
  * Get the data associated to the item.
  *
  * @param it The diskselector item
@@ -1431,6 +1787,8 @@ EINA_DEPRECATED EAPI void   elm_diskselector_side_label_lenght_set(Evas_Object *
 EINA_DEPRECATED EAPI void                  *elm_diskselector_item_data_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the icon associated to the item.
  *
  * @param it The diskselector item
@@ -1457,6 +1815,8 @@ EINA_DEPRECATED EAPI void                  *elm_diskselector_item_data_get(const
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_icon_set(Elm_Object_Item *it, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * Get the icon associated to the item.
  *
  * @param it The diskselector item
@@ -1476,6 +1836,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_icon_set(Elm_O
 EAPI Evas_Object           *elm_diskselector_item_icon_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the label of item.
  *
  * @param it The item of diskselector.
@@ -1512,6 +1874,8 @@ EAPI Evas_Object           *elm_diskselector_item_icon_get(const Elm_Object_Item
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_label_set(Elm_Object_Item *it, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label of item.
  *
  * @param it The item of diskselector.
@@ -1531,6 +1895,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_label_set(Elm_
 EINA_DEPRECATED EAPI const char            *elm_diskselector_item_label_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the function called when a diskselector item is freed.
  *
  * @param it The item to set the callback on
@@ -1551,6 +1917,8 @@ EINA_DEPRECATED EAPI const char            *elm_diskselector_item_label_get(cons
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
 
 /**
+ * @internal
+ *
  * Delete them item from the diskselector.
  *
  * @param it The item of diskselector to be deleted.
@@ -1567,6 +1935,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_del_cb_set(Elm
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the text to be shown in the diskselector item.
  *
  * @param it Target item
@@ -1583,6 +1953,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_del(Elm_Object
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
 
 /**
+ * @internal
+ *
  * Set the content to be shown in the tooltip item.
  *
  * Setup the tooltip to item. The item can have only one tooltip,
@@ -1598,7 +1970,7 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_text_s
  *        another callback replaces @p func, the tooltip is unset with
  *        elm_diskselector_item_tooltip_unset() or the owner @a item
  *        dies. This callback receives as the first parameter the
- *        given @a data, and @c event_info is the item.
+ *        given @a data, and @p event_info is the item.
  *
  * @deprecated Use elm_object_item_tooltip_content_cb_set() instead
  * @see elm_object_tooltip_content_cb_set() for more details.
@@ -1608,6 +1980,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_text_s
 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);
 
 /**
+ * @internal
+ *
  * Unset tooltip from item.
  *
  * @param it diskselector item to remove previously set tooltip.
@@ -1625,6 +1999,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_conten
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_unset(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Sets a different style for this item tooltip.
  *
  * @note before you set a style you should define a tooltip with
@@ -1642,6 +2018,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_unset(
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_style_set(Elm_Object_Item *it, const char *style);
 
 /**
+ * @internal
+ *
  * Get the style for this item tooltip.
  *
  * @param it diskselector item with tooltip already set.
@@ -1657,6 +2035,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_tooltip_style_
 EINA_DEPRECATED EAPI const char            *elm_diskselector_item_tooltip_style_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the cursor to be shown when mouse is over the diskselector item
  *
  * @param it Target item
@@ -1670,6 +2050,8 @@ EINA_DEPRECATED EAPI const char            *elm_diskselector_item_tooltip_style_
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_cursor_set(Elm_Object_Item *it, const char *cursor);
 
 /**
+ * @internal
+ *
  * Get the cursor to be shown when mouse is over the diskselector item
  *
  * @param it diskselector item with cursor already set.
@@ -1684,6 +2066,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_cursor_set(Elm
 EINA_DEPRECATED EAPI const char            *elm_diskselector_item_cursor_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Unset the cursor to be shown when mouse is over the diskselector item
  *
  * @param it Target item
@@ -1697,6 +2081,8 @@ EINA_DEPRECATED EAPI const char            *elm_diskselector_item_cursor_get(con
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_cursor_unset(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Sets a different style for this item cursor.
  *
  * @note before you set a style you should define a cursor with
@@ -1713,6 +2099,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_cursor_unset(E
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_cursor_style_set(Elm_Object_Item *it, const char *style);
 
 /**
+ * @internal
+ *
  * Get the style for this item cursor.
  *
  * @param it diskselector item with cursor already set.
@@ -1728,6 +2116,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_item_cursor_style_s
 EINA_DEPRECATED EAPI const char            *elm_diskselector_item_cursor_style_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set if the cursor set should be searched on the theme or should use
  * the provided by the engine, only.
  *
@@ -1748,6 +2138,8 @@ EINA_DEPRECATED EAPI const char            *elm_diskselector_item_cursor_style_g
 EINA_DEPRECATED EAPI void                   elm_diskselector_item_cursor_engine_only_set(Elm_Object_Item *it, Eina_Bool engine_only);
 
 /**
+ * @internal
+ *
  * Get the cursor engine only usage for this item cursor.
  *
  * @param it widget item with cursor already set.
@@ -1766,6 +2158,8 @@ EINA_DEPRECATED EAPI void         elm_factory_content_set(Evas_Object *obj, Evas
 EINA_DEPRECATED EAPI Evas_Object *elm_factory_content_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Get the label of a given flip selector widget's item.
  *
  * @param it The item to get label from
@@ -1779,6 +2173,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_factory_content_get(const Evas_Object *obj
 EINA_DEPRECATED EAPI const char *elm_flipselector_item_label_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the label of a given flip selector widget's item.
  *
  * @param it The item to set label on
@@ -1792,6 +2188,8 @@ EINA_DEPRECATED EAPI const char *elm_flipselector_item_label_get(const Elm_Objec
 EINA_DEPRECATED EAPI void        elm_flipselector_item_label_set(Elm_Object_Item *it, const char *label);
 
 /**
+ * @internal
+ *
  * Delete a given item from a flip selector widget.
  *
  * @param it The item to delete
@@ -1802,6 +2200,8 @@ EINA_DEPRECATED EAPI void        elm_flipselector_item_label_set(Elm_Object_Item
 EINA_DEPRECATED EAPI void       elm_flipselector_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the interval on time updates for a user mouse button hold
  * on a flip selector widget.
  *
@@ -1831,6 +2231,8 @@ EINA_DEPRECATED EAPI void       elm_flipselector_item_del(Elm_Object_Item *it);
 EINA_DEPRECATED EAPI void                        elm_flipselector_interval_set(Evas_Object *obj, double interval);
 
 /**
+ * @internal
+ *
  * Get the interval on time updates for an user mouse button hold
  * on a flip selector widget.
  *
@@ -1845,6 +2247,8 @@ EINA_DEPRECATED EAPI void                        elm_flipselector_interval_set(E
 EINA_DEPRECATED EAPI double                      elm_flipselector_interval_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Make a given Elementary object the focused one.
  *
  * @param obj The Elementary object to make focused.
@@ -1861,6 +2265,8 @@ EINA_DEPRECATED EAPI double                      elm_flipselector_interval_get(c
 EINA_DEPRECATED EAPI void elm_object_focus(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Give focus to next object in object tree.
  *
  * Give focus to next object in focus chain of one object sub-tree.
@@ -1877,6 +2283,8 @@ EINA_DEPRECATED EAPI void elm_object_focus(Evas_Object *obj);
 EINA_DEPRECATED EAPI void                 elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir);
 
 /**
+ * @internal
+ *
  * Remove the focus from an Elementary object
  *
  * @param obj The Elementary to take focus from
@@ -1892,6 +2300,8 @@ EINA_DEPRECATED EAPI void                 elm_object_focus_cycle(Evas_Object *ob
 EINA_DEPRECATED EAPI void elm_object_unfocus(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Give focus to near object in one direction.
  *
  * Give focus to near object in direction of one object.
@@ -1907,6 +2317,8 @@ EINA_DEPRECATED EAPI void elm_object_unfocus(Evas_Object *obj);
 EINA_DEPRECATED EAPI void                 elm_object_focus_direction_go(Evas_Object *obj, int x, int y);
 
 /**
+ * @internal
+ *
  * @brief Set the frame label
  *
  * @param obj The frame object
@@ -1917,6 +2329,8 @@ EINA_DEPRECATED EAPI void                 elm_object_focus_direction_go(Evas_Obj
 EINA_DEPRECATED EAPI void         elm_frame_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Get the frame label
  *
  * @param obj The frame object
@@ -1928,6 +2342,8 @@ EINA_DEPRECATED EAPI void         elm_frame_label_set(Evas_Object *obj, const ch
 EINA_DEPRECATED EAPI const char  *elm_frame_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the content of the frame widget
  *
  * Once the content object is set, a previously set one will be deleted.
@@ -1942,6 +2358,8 @@ EINA_DEPRECATED EAPI const char  *elm_frame_label_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_frame_content_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * @brief Get the content of the frame widget
  *
  * Return the content object which is set for this widget
@@ -1954,6 +2372,8 @@ EINA_DEPRECATED EAPI void         elm_frame_content_set(Evas_Object *obj, Evas_O
 EINA_DEPRECATED EAPI Evas_Object *elm_frame_content_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Unset the content of the frame widget
  *
  * Unparent and return the content object which was set for this widget
@@ -1969,6 +2389,8 @@ EINA_DEPRECATED EAPI void          elm_genlist_horizontal_mode_set(Evas_Object *
 EINA_DEPRECATED EAPI Elm_List_Mode elm_genlist_horizontal_mode_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void          elm_genlist_item_icons_orphan(Elm_Object_Item *it);
 /**
+ * @internal
+ *
  * This sets the horizontal stretching mode.
  *
  * @param obj The genlist object
@@ -1990,7 +2412,9 @@ EINA_DEPRECATED EAPI void          elm_genlist_item_icons_orphan(Elm_Object_Item
 EINA_DEPRECATED EAPI void                          elm_genlist_horizontal_set(Evas_Object *obj, Elm_List_Mode mode);
 
 /**
- * Gets the horizontal stretching mode.
+ * @internal
+ *
+ * Get the horizontal stretching mode.
  *
  * @param obj The genlist object
  * @return The mode to use
@@ -2004,6 +2428,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_horizontal_set(Ev
 EINA_DEPRECATED EAPI Elm_List_Mode                 elm_genlist_horizontal_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Return the data associated to a given genlist item
  *
  * @param it The genlist item.
@@ -2021,6 +2447,8 @@ EINA_DEPRECATED EAPI Elm_List_Mode                 elm_genlist_horizontal_get(co
 EINA_DEPRECATED EAPI void                         *elm_genlist_item_data_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the data associated to a given genlist item
  *
  * @param it The genlist item
@@ -2040,6 +2468,8 @@ EINA_DEPRECATED EAPI void                         *elm_genlist_item_data_get(con
 EINA_DEPRECATED EAPI void                          elm_genlist_item_data_set(Elm_Object_Item *it, const void *data);
 
 /**
+ * @internal
+ *
  * Set whether a given genlist item is disabled or not.
  *
  * @param it The item
@@ -2057,6 +2487,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_item_data_set(Elm
 EINA_DEPRECATED EAPI void                          elm_genlist_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
 
 /**
+ * @internal
+ *
  * Get whether a given genlist item is disabled or not.
  *
  * @param it The item
@@ -2071,6 +2503,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_item_disabled_set
 EINA_DEPRECATED EAPI Eina_Bool                     elm_genlist_item_disabled_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Remove a genlist item from the its parent, deleting it.
  *
  * @param it The item to be removed.
@@ -2085,6 +2519,8 @@ EINA_DEPRECATED EAPI Eina_Bool                     elm_genlist_item_disabled_get
 EINA_DEPRECATED EAPI void                          elm_genlist_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Get the genlist object's handle which contains a given genlist
  * item
  *
@@ -2099,6 +2535,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_item_del(Elm_Obje
 EINA_DEPRECATED EAPI Evas_Object                  *elm_genlist_item_genlist_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Get the mode item style of items in the genlist
  * @param obj The genlist object
  * @return The mode item style string, or NULL if none is specified
@@ -2113,6 +2551,8 @@ EINA_DEPRECATED EAPI Evas_Object                  *elm_genlist_item_genlist_get(
 EINA_DEPRECATED EAPI const char                   *elm_genlist_mode_item_style_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the mode item style of items in the genlist
  * @param obj The genlist object
  * @param style The mode item style string, or NULL if none is desired
@@ -2127,6 +2567,8 @@ EINA_DEPRECATED EAPI const char                   *elm_genlist_mode_item_style_g
 EINA_DEPRECATED EAPI void                          elm_genlist_mode_item_style_set(Evas_Object *obj, const char *style);
 
 /**
+ * @internal
+ *
  * Get the Item's Flags
  *
  * @param it The genlist item
@@ -2141,6 +2583,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_mode_item_style_s
 EINA_DEPRECATED EAPI Elm_Genlist_Item_Type        elm_genlist_item_flags_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Tells genlist to "orphan" contents fetched by the item class
  *
  * @param it The item
@@ -2159,6 +2603,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_item_contents_orp
 #define ELM_IMAGE_ROTATE_90_CCW 3
 
 /**
+ * @internal
+ *
  * Return the data associated with a given index widget item
  *
  * @param item The index widget item handle
@@ -2171,6 +2617,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_item_contents_orp
 EINA_DEPRECATED EAPI void *elm_index_item_data_get(const Elm_Object_Item *item);
 
 /**
+ * @internal
+ *
  * Set the data associated with a given index widget item
  *
  * @param it The index widget item handle
@@ -2186,12 +2634,14 @@ EINA_DEPRECATED EAPI void *elm_index_item_data_get(const Elm_Object_Item *item);
 EINA_DEPRECATED EAPI void  elm_index_item_data_set(Elm_Object_Item *it, const void *data);
 
 /**
+ * @internal
+ *
  * Set the function to be called when a given index widget item is freed.
  *
  * @param it The item to set the callback on
  * @param func The function to call on the item's deletion
  *
- * When called, @p func will have both @c data and @c event_info
+ * When called, @p func will have both @c data and @p event_info
  * arguments with the @p it item's data value and, naturally, the
  * @c obj argument with a handle to the parent index widget.
  *
@@ -2200,6 +2650,8 @@ EINA_DEPRECATED EAPI void  elm_index_item_data_set(Elm_Object_Item *it, const vo
 EINA_DEPRECATED EAPI void                  elm_index_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
 
 /**
+ * @internal
+ *
  * Remove an item from a given index widget, <b>to be referenced by
  * it's data value</b>.
  *
@@ -2214,6 +2666,8 @@ EINA_DEPRECATED EAPI void                  elm_index_item_del_cb_set(Elm_Object_
 EINA_DEPRECATED EAPI void                  elm_index_item_del(Evas_Object *obj, Elm_Object_Item *item);
 
 /**
+ * @internal
+ *
 * @brief Set the label on the label object
  *
  * @param obj The label object
@@ -2223,6 +2677,8 @@ EINA_DEPRECATED EAPI void                  elm_index_item_del(Evas_Object *obj,
 EINA_DEPRECATED EAPI void        elm_label_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Get the label used on the label object
  *
  * @param obj The label object
@@ -2231,88 +2687,12 @@ EINA_DEPRECATED EAPI void        elm_label_label_set(Evas_Object *obj, const cha
  */
 EINA_DEPRECATED EAPI const char *elm_label_label_get(const Evas_Object *obj);
 
-
 /**
- * Set the layout content.
- *
- * @param obj The layout object
- * @param swallow The swallow part name in the edje file
- * @param content The child that will be added in this layout object
- * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise
+ * @internal
  *
- * Once the content object is set, a previously set one will be deleted.
- * If you want to keep that old content object, use the
- * elm_object_part_content_unset() function.
- *
- * @note In an Edje theme, the part used as a content container is called @c
- * SWALLOW. This is why the parameter name is called @p swallow, but it is
- * expected to be a part name just like the second parameter of
- * elm_layout_box_append().
- *
- * @see elm_layout_box_append()
- * @see elm_object_part_content_get()
- * @see elm_object_part_content_unset()
- * @see @ref secBox
- * @deprecated use elm_object_part_content_set() instead
- *
- */
-EINA_DEPRECATED EAPI Eina_Bool    elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content);
-
-/**
- * Get the child object in the given content part.
- *
- * @param obj The layout object
- * @param swallow The SWALLOW part to get its content
- *
- * @return The swallowed object or NULL if none or an error occurred
- *
- * @deprecated use elm_object_part_content_get() instead
- *
- */
-EINA_DEPRECATED EAPI Evas_Object *elm_layout_content_get(const Evas_Object *obj, const char *swallow);
-
-/**
- * Unset the layout content.
- *
- * @param obj The layout object
- * @param swallow The swallow part name in the edje file
- * @return The content that was being used
- *
- * Unparent and return the content object which was set for this part.
- *
- * @deprecated use elm_object_part_content_unset() instead
- *
- */
-EINA_DEPRECATED EAPI Evas_Object *elm_layout_content_unset(Evas_Object *obj, const char *swallow);
-
-/**
- * Set the text of the given part
- *
- * @param obj The layout object
- * @param part The TEXT part where to set the text
- * @param text The text to set
- * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise
- *
- * @deprecated use elm_object_part_text_set() instead.
- */
-EINA_DEPRECATED EAPI Eina_Bool    elm_layout_text_set(Evas_Object *obj, const char *part, const char *text);
-
-/**
- * Get the text set in the given part
- *
- * @param obj The layout object
- * @param part The TEXT part to retrieve the text off
- *
- * @return The text set in @p part
- *
- * @deprecated use elm_object_part_text_get() instead.
- */
-EINA_DEPRECATED EAPI const char  *elm_layout_text_get(const Evas_Object *obj, const char *part);
-
-/**
- * @def elm_layout_label_set
- * Convenience macro to set the label in a layout that follows the
- * Elementary naming convention for its parts.
+ * @def elm_layout_label_set
+ * Convenience macro to set the label in a layout that follows the
+ * Elementary naming convention for its parts.
  *
  * @deprecated use elm_object_text_set() instead.
  */
@@ -2320,6 +2700,8 @@ EINA_DEPRECATED EAPI const char  *elm_layout_text_get(const Evas_Object *obj, co
   elm_layout_text_set((_ly), "elm.text", (_txt))
 
 /**
+ * @internal
+ *
  * @def elm_layout_label_get
  * Convenience macro to get the label in a layout that follows the
  * Elementary naming convention for its parts.
@@ -2333,6 +2715,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_list_item_base_get(const Elm_Object_Item *
 
 
 /**
+ * @internal
+ *
  * Set the content of the mapbuf.
  *
  * @param obj The mapbuf object.
@@ -2350,6 +2734,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_list_item_base_get(const Elm_Object_Item *
 EINA_DEPRECATED EAPI void         elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * Get the content of the mapbuf.
  *
  * @param obj The mapbuf object.
@@ -2365,6 +2751,8 @@ EINA_DEPRECATED EAPI void         elm_mapbuf_content_set(Evas_Object *obj, Evas_
 EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the content of the mapbuf.
  *
  * @param obj The mapbuf object.
@@ -2380,6 +2768,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_get(const Evas_Object *obj)
 EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the label of a menu item
  *
  * @param it The menu item object.
@@ -2393,6 +2783,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_menu_item_label_set(Elm_Object_Item *it, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Get the label of a menu item
  *
  * @param it The menu item object.
@@ -2402,6 +2794,8 @@ EINA_DEPRECATED EAPI void         elm_menu_item_label_set(Elm_Object_Item *it, c
 EINA_DEPRECATED EAPI const char  *elm_menu_item_label_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Set the content object of a menu item
  *
  * @param it The menu item object
@@ -2416,6 +2810,8 @@ EINA_DEPRECATED EAPI const char  *elm_menu_item_label_get(const Elm_Object_Item
 EINA_DEPRECATED EAPI Eina_Bool    elm_menu_item_object_content_set(Elm_Object_Item *it, Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Get the content object of a menu item
  *
  * @param it The menu item object
@@ -2431,6 +2827,8 @@ EINA_DEPRECATED EAPI Eina_Bool    elm_menu_item_object_content_set(Elm_Object_It
 EINA_DEPRECATED EAPI Evas_Object *elm_menu_item_object_content_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Set the disabled state of @p item.
  *
  * @param it The menu item object.
@@ -2440,6 +2838,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_menu_item_object_content_get(const Elm_Obj
 EINA_DEPRECATED EAPI void         elm_menu_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
 
 /**
+ * @internal
+ *
  * @brief Get the disabled state of @p item.
  *
  * @param it The menu item object.
@@ -2451,6 +2851,8 @@ EINA_DEPRECATED EAPI void         elm_menu_item_disabled_set(Elm_Object_Item *it
 EINA_DEPRECATED EAPI Eina_Bool    elm_menu_item_disabled_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Returns the data associated with menu item @p item.
  *
  * @param it The item
@@ -2463,6 +2865,8 @@ EINA_DEPRECATED EAPI Eina_Bool    elm_menu_item_disabled_get(const Elm_Object_It
 EINA_DEPRECATED EAPI void        *elm_menu_item_data_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Set the function called when a menu item is deleted.
  *
  * @param it The item to set the callback on
@@ -2475,6 +2879,8 @@ EINA_DEPRECATED EAPI void        *elm_menu_item_data_get(const Elm_Object_Item *
 EINA_DEPRECATED EAPI void                         elm_menu_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
 
 /**
+ * @internal
+ *
  * @brief Sets the data to be associated with menu item @p item.
  *
  * @param it The item
@@ -2485,6 +2891,8 @@ EINA_DEPRECATED EAPI void                         elm_menu_item_del_cb_set(Elm_O
 EINA_DEPRECATED EAPI void         elm_menu_item_data_set(Elm_Object_Item *it, const void *data);
 
 /**
+ * @internal
+ *
  * @brief Deletes an item from the menu.
  *
  * @param it The item to delete.
@@ -2495,6 +2903,8 @@ EINA_DEPRECATED EAPI void         elm_menu_item_data_set(Elm_Object_Item *it, co
 EINA_DEPRECATED EAPI void                         elm_menu_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief @brief Return a menu item's owner menu
  *
  * @param it The menu item
@@ -2506,6 +2916,8 @@ EINA_DEPRECATED EAPI void                         elm_menu_item_del(Elm_Object_I
 EINA_DEPRECATED EAPI Evas_Object                 *elm_menu_item_menu_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Set the icon of a menu item to the standard icon with name @p icon
  *
  * @param it The menu item object.
@@ -2517,6 +2929,8 @@ EINA_DEPRECATED EAPI Evas_Object                 *elm_menu_item_menu_get(const E
 EINA_DEPRECATED EAPI void                         elm_menu_item_object_icon_name_set(Elm_Object_Item *it, const char *icon);
 
 /**
+ * @internal
+ *
  * @brief Get the string representation from the icon of a menu item
  *
  * @param it The menu item object.
@@ -2528,6 +2942,8 @@ EINA_DEPRECATED EAPI void                         elm_menu_item_object_icon_name
 EINA_DEPRECATED EAPI const char                  *elm_menu_item_object_icon_name_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Set the content of the notify widget
  *
  * @param obj The notify object
@@ -2543,6 +2959,8 @@ EINA_DEPRECATED EAPI const char                  *elm_menu_item_object_icon_name
 EINA_DEPRECATED EAPI void         elm_notify_content_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * @brief Unset the content of the notify widget
  *
  * @param obj The notify object
@@ -2557,6 +2975,8 @@ EINA_DEPRECATED EAPI void         elm_notify_content_set(Evas_Object *obj, Evas_
 EINA_DEPRECATED EAPI Evas_Object *elm_notify_content_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Return the content of the notify widget
  *
  * @param obj The notify object
@@ -2569,6 +2989,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_notify_content_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_notify_content_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set a label of an object
  *
  * @param obj The Elementary object
@@ -2581,6 +3003,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_notify_content_get(const Evas_Object *obj)
 EINA_DEPRECATED EAPI void         elm_object_text_part_set(Evas_Object *obj, const char *part, const char *label);
 
 /**
+ * @internal
+ *
  * Get a label of an object
  *
  * @param obj The Elementary object
@@ -2593,6 +3017,8 @@ EINA_DEPRECATED EAPI void         elm_object_text_part_set(Evas_Object *obj, con
 EINA_DEPRECATED EAPI const char  *elm_object_text_part_get(const Evas_Object *obj, const char *part);
 
 /**
+ * @internal
+ *
  * Set a content of an object
  *
  * @param obj The Elementary object
@@ -2605,6 +3031,8 @@ EINA_DEPRECATED EAPI const char  *elm_object_text_part_get(const Evas_Object *ob
 EINA_DEPRECATED EAPI void         elm_object_content_part_set(Evas_Object *obj, const char *part, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * Get a content of an object
  *
  * @param obj The Elementary object
@@ -2617,6 +3045,8 @@ EINA_DEPRECATED EAPI void         elm_object_content_part_set(Evas_Object *obj,
 EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_get(const Evas_Object *obj, const char *part);
 
 /**
+ * @internal
+ *
  * Unset a content of an object
  *
  * @param obj The Elementary object
@@ -2628,6 +3058,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_get(const Evas_Object
 EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_unset(Evas_Object *obj, const char *part);
 
 /**
+ * @internal
+ *
  * Set a content of an object item
  *
  * @param it The Elementary object item
@@ -2640,6 +3072,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_unset(Evas_Object *obj
 EINA_DEPRECATED EAPI void         elm_object_item_content_part_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * Get a content of an object item
  *
  * @param it The Elementary object item
@@ -2652,6 +3086,8 @@ EINA_DEPRECATED EAPI void         elm_object_item_content_part_set(Elm_Object_It
 EINA_DEPRECATED EAPI Evas_Object                 *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *part);
 
 /**
+ * @internal
+ *
  * Unset a content of an object item
  *
  * @param it The Elementary object item
@@ -2663,6 +3099,8 @@ EINA_DEPRECATED EAPI Evas_Object                 *elm_object_item_content_part_g
 EINA_DEPRECATED EAPI Evas_Object *elm_object_item_content_part_unset(Elm_Object_Item *it, const char *part);
 
 /**
+ * @internal
+ *
  * Get a label of an object item
  *
  * @param it The Elementary object item
@@ -2675,6 +3113,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_object_item_content_part_unset(Elm_Object_
 EINA_DEPRECATED EAPI const char  *elm_object_item_text_part_get(const Elm_Object_Item *it, const char *part);
 
 /**
+ * @internal
+ *
  * Set a label of an object item
  *
  * @param it The Elementary object item
@@ -2687,6 +3127,8 @@ EINA_DEPRECATED EAPI const char  *elm_object_item_text_part_get(const Elm_Object
 EINA_DEPRECATED EAPI void         elm_object_item_text_part_set(Elm_Object_Item *it, const char *part, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Set the content of the panel.
  *
  * @param obj The panel object
@@ -2702,6 +3144,8 @@ EINA_DEPRECATED EAPI void         elm_object_item_text_part_set(Elm_Object_Item
 EINA_DEPRECATED EAPI void         elm_panel_content_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * @brief Get the content of the panel.
  *
  * @param obj The panel object
@@ -2717,6 +3161,8 @@ EINA_DEPRECATED EAPI void         elm_panel_content_set(Evas_Object *obj, Evas_O
 EINA_DEPRECATED EAPI Evas_Object *elm_panel_content_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Unset the content of the panel.
  *
  * @param obj The panel object
@@ -2732,6 +3178,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_panel_content_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_panel_content_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the left content of the panes widget.
  *
  * @param obj The panes object.
@@ -2753,6 +3201,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_panel_content_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_panes_content_left_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * Set the right content of the panes widget.
  *
  * @param obj The panes object.
@@ -2774,6 +3224,8 @@ EINA_DEPRECATED EAPI void         elm_panes_content_left_set(Evas_Object *obj, E
 EINA_DEPRECATED EAPI void         elm_panes_content_right_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * Get the left content of the panes.
  *
  * @param obj The panes object.
@@ -2789,6 +3241,8 @@ EINA_DEPRECATED EAPI void         elm_panes_content_right_set(Evas_Object *obj,
 EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_left_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Get the right content of the panes.
  *
  * @param obj The panes object
@@ -2804,6 +3258,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_left_get(const Evas_Object *
 EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_right_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the left content used for the panes.
  *
  * @param obj The panes object.
@@ -2820,6 +3276,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_right_get(const Evas_Object
 EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_left_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the right content used for the panes.
  *
  * @param obj The panes object.
@@ -2836,6 +3294,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_left_unset(Evas_Object *obj)
  */
 EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_right_unset(Evas_Object *obj);
 /**
+ * @internal
+ *
  * Set the label of a given progress bar widget
  *
  * @param obj The progress bar object
@@ -2846,6 +3306,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_right_unset(Evas_Object *obj
 EINA_DEPRECATED EAPI void         elm_progressbar_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label of a given progress bar widget
  *
  * @param obj The progressbar object
@@ -2856,6 +3318,8 @@ EINA_DEPRECATED EAPI void         elm_progressbar_label_set(Evas_Object *obj, co
 EINA_DEPRECATED EAPI const char  *elm_progressbar_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the icon object of a given progress bar widget
  *
  * @param obj The progress bar object
@@ -2874,7 +3338,9 @@ EINA_DEPRECATED EAPI const char  *elm_progressbar_label_get(const Evas_Object *o
 EINA_DEPRECATED EAPI void         elm_progressbar_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
- * Retrieve the icon object set for a given progress bar widget
+ * @internal
+ *
+ * Get the icon object set for a given progress bar widget
  *
  * @param obj The progress bar object
  * @return The icon object's handle, if @p obj had one set, or @c NULL,
@@ -2887,6 +3353,8 @@ EINA_DEPRECATED EAPI void         elm_progressbar_icon_set(Evas_Object *obj, Eva
 EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset an icon set on a given progress bar widget
  *
  * @param obj The progress bar object
@@ -2903,6 +3371,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_get(const Evas_Object *ob
 EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the text label of the radio object
  *
  * @param obj The radio object
@@ -2913,6 +3383,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_radio_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * @brief Get the text label of the radio object
  *
  * @param obj The radio object
@@ -2923,6 +3395,8 @@ EINA_DEPRECATED EAPI void         elm_radio_label_set(Evas_Object *obj, const ch
 EINA_DEPRECATED EAPI const char  *elm_radio_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the icon object of the radio object
  *
  * @param obj The radio object
@@ -2938,6 +3412,8 @@ EINA_DEPRECATED EAPI const char  *elm_radio_label_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_radio_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * @brief Get the icon object of the radio object
  *
  * @param obj The radio object
@@ -2951,6 +3427,8 @@ EINA_DEPRECATED EAPI void         elm_radio_icon_set(Evas_Object *obj, Evas_Obje
 EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Unset the icon used for the radio object
  *
  * @param obj The radio object
@@ -2965,6 +3443,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the label of a given slider widget
  *
  * @param obj The progress bar object
@@ -2975,6 +3455,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_slider_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label of a given slider widget
  *
  * @param obj The progressbar object
@@ -2985,6 +3467,8 @@ EINA_DEPRECATED EAPI void         elm_slider_label_set(Evas_Object *obj, const c
 EINA_DEPRECATED EAPI const char  *elm_slider_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the icon object of the slider object.
  *
  * @param obj The slider object.
@@ -3005,6 +3489,8 @@ EINA_DEPRECATED EAPI const char  *elm_slider_label_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_slider_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * Unset an icon set on a given slider widget.
  *
  * @param obj The slider object.
@@ -3025,7 +3511,9 @@ EINA_DEPRECATED EAPI void         elm_slider_icon_set(Evas_Object *obj, Evas_Obj
 EINA_DEPRECATED EAPI Evas_Object *elm_slider_icon_unset(Evas_Object *obj);
 
 /**
- * Retrieve the icon object set for a given slider widget.
+ * @internal
+ *
+ * Get the icon object set for a given slider widget.
  *
  * @param obj The slider object.
  * @return The icon object's handle, if @p obj had one set, or @c NULL,
@@ -3043,6 +3531,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_slider_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_slider_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the end object of the slider object.
  *
  * @param obj The slider object.
@@ -3064,6 +3554,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_slider_icon_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void         elm_slider_end_set(Evas_Object *obj, Evas_Object *end);
 
 /**
+ * @internal
+ *
  * Unset an end object set on a given slider widget.
  *
  * @param obj The slider object.
@@ -3086,7 +3578,9 @@ EINA_DEPRECATED EAPI void         elm_slider_end_set(Evas_Object *obj, Evas_Obje
 EINA_DEPRECATED EAPI Evas_Object *elm_slider_end_unset(Evas_Object *obj);
 
 /**
- * Retrieve the end object set for a given slider widget.
+ * @internal
+ *
+ * Get the end object set for a given slider widget.
  *
  * @param obj The slider object.
  * @return The end object's handle, if @p obj had one set, or @c NULL,
@@ -3106,6 +3600,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_slider_end_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object *elm_slider_end_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Return the data associated with a given slideshow item
  *
  * @param it The slideshow item
@@ -3116,6 +3612,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_slider_end_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void *elm_slideshow_item_data_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Delete a given item from a slideshow widget.
  *
  * @param it The slideshow item
@@ -3125,6 +3623,8 @@ EINA_DEPRECATED EAPI void *elm_slideshow_item_data_get(const Elm_Object_Item *it
 EINA_DEPRECATED EAPI void                  elm_slideshow_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Display a given slideshow widget's item, programmatically.
  *
  * @param it The item to display on @p obj's viewport
@@ -3138,6 +3638,8 @@ EINA_DEPRECATED EAPI void                  elm_slideshow_item_del(Elm_Object_Ite
 EINA_DEPRECATED EAPI void                  elm_slideshow_show(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Get the toolbar object from an item.
  *
  * @param it The item.
@@ -3145,11 +3647,13 @@ EINA_DEPRECATED EAPI void                  elm_slideshow_show(Elm_Object_Item *i
  *
  * This returns the toolbar object itself that an item belongs to.
  *
- * @deprecated use elm_object_item_object_get() instead.
+ * @deprecated use elm_object_item_widget_get() instead.
  */
 EINA_DEPRECATED EAPI Evas_Object *elm_toolbar_item_toolbar_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Get the label of item.
  *
  * @param it The item of toolbar.
@@ -3169,6 +3673,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_toolbar_item_toolbar_get(const Elm_Object_
 EINA_DEPRECATED EAPI const char  *elm_toolbar_item_label_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the label of item.
  *
  * @param it The item of toolbar.
@@ -3189,6 +3695,8 @@ EINA_DEPRECATED EAPI const char  *elm_toolbar_item_label_get(const Elm_Object_It
 EINA_DEPRECATED EAPI void         elm_toolbar_item_label_set(Elm_Object_Item *it, const char *label);
 
 /**
+ * @internal
+ *
  * Return the data associated with a given toolbar widget item.
  *
  * @param it The toolbar widget item handle.
@@ -3201,6 +3709,8 @@ EINA_DEPRECATED EAPI void         elm_toolbar_item_label_set(Elm_Object_Item *it
 EINA_DEPRECATED EAPI void        *elm_toolbar_item_data_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the data associated with a given toolbar widget item.
  *
  * @param it The toolbar widget item handle
@@ -3216,6 +3726,8 @@ EINA_DEPRECATED EAPI void        *elm_toolbar_item_data_get(const Elm_Object_Ite
 EINA_DEPRECATED EAPI void         elm_toolbar_item_data_set(Elm_Object_Item *it, const void *data);
 
 /**
+ * @internal
+ *
  * Get a value whether toolbar item is disabled or not.
  *
  * @param it The item.
@@ -3228,6 +3740,8 @@ EINA_DEPRECATED EAPI void         elm_toolbar_item_data_set(Elm_Object_Item *it,
 EINA_DEPRECATED EAPI Eina_Bool    elm_toolbar_item_disabled_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Sets the disabled/enabled state of a toolbar item.
  *
  * @param it The item.
@@ -3243,6 +3757,8 @@ EINA_DEPRECATED EAPI Eina_Bool    elm_toolbar_item_disabled_get(const Elm_Object
 EINA_DEPRECATED EAPI void         elm_toolbar_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
 
 /**
+ * @internal
+ *
  * Change a toolbar's orientation
  * @param obj The toolbar object
  * @param vertical If @c EINA_TRUE, the toolbar is vertical
@@ -3252,6 +3768,8 @@ EINA_DEPRECATED EAPI void         elm_toolbar_item_disabled_set(Elm_Object_Item
 EINA_DEPRECATED EAPI void         elm_toolbar_orientation_set(Evas_Object *obj, Eina_Bool vertical);
 
 /**
+ * @internal
+ *
  * Get a toolbar's orientation
  * @param obj The toolbar object
  * @return If @c EINA_TRUE, the toolbar is vertical
@@ -3261,6 +3779,8 @@ EINA_DEPRECATED EAPI void         elm_toolbar_orientation_set(Evas_Object *obj,
 EINA_DEPRECATED EAPI Eina_Bool    elm_toolbar_orientation_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the function called when a toolbar item is freed.
  *
  * @param it The item to set the callback on.
@@ -3279,6 +3799,8 @@ EINA_DEPRECATED EAPI Eina_Bool    elm_toolbar_orientation_get(const Evas_Object
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
 
 /**
+ * @internal
+ *
  * Delete them item from the toolbar.
  *
  * @param it The item of toolbar to be deleted.
@@ -3290,6 +3812,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_del_cb_set(El
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the content to be shown in the tooltip item.
  *
  * Setup the tooltip to item. The item can have only one tooltip,
@@ -3305,7 +3829,7 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_del(Elm_Objec
  *        another callback replaces @a func, the tooltip is unset with
  *        elm_toolbar_item_tooltip_unset() or the owner @a item
  *        dies. This callback receives as the first parameter the
- *        given @a data, and @c event_info is the item.
+ *        given @a data, and @p event_info is the item.
  *
  * @deprecated Use elm_object_item_tooltip_content_cb_set() instead
  * @see elm_object_tooltip_content_cb_set() for more details.
@@ -3314,6 +3838,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_del(Elm_Objec
 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);
 
 /**
+ * @internal
+ *
  * Unset tooltip from item.
  *
  * @param it toolbar item to remove previously set tooltip.
@@ -3330,6 +3856,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_conte
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_unset(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Sets a different style for this item tooltip.
  *
  * @note before you set a style you should define a tooltip with
@@ -3346,6 +3874,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_unset
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_style_set(Elm_Object_Item *it, const char *style);
 
 /**
+ * @internal
+ *
  * Get the style for this item tooltip.
  *
  * @param it toolbar item with tooltip already set.
@@ -3360,6 +3890,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_style
 EINA_DEPRECATED EAPI const char                  *elm_toolbar_item_tooltip_style_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the type of mouse pointer/cursor decoration to be shown,
  * when the mouse pointer is over the given toolbar widget item
  *
@@ -3384,7 +3916,9 @@ EINA_DEPRECATED EAPI const char                  *elm_toolbar_item_tooltip_style
  */
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_cursor_set(Elm_Object_Item *it, const char *cursor);
 
-/*
+/**
+ * @internal
+ *
  * Get the type of mouse pointer/cursor decoration set to be shown,
  * when the mouse pointer is over the given toolbar widget item
  *
@@ -3402,6 +3936,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_cursor_set(El
 EINA_DEPRECATED EAPI const char                  *elm_toolbar_item_cursor_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Unset any custom mouse pointer/cursor decoration set to be
  * shown, when the mouse pointer is over the given toolbar widget
  * item, thus making it show the @b default cursor again.
@@ -3420,6 +3956,8 @@ EINA_DEPRECATED EAPI const char                  *elm_toolbar_item_cursor_get(co
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_cursor_unset(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set a different @b style for a given custom cursor set for a
  * toolbar item.
  *
@@ -3446,6 +3984,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_cursor_unset(
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_cursor_style_set(Elm_Object_Item *it, const char *style);
 
 /**
+ * @internal
+ *
  * Get the current @b style set for a given toolbar item's custom
  * cursor
  *
@@ -3461,6 +4001,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_cursor_style_
 EINA_DEPRECATED EAPI const char                  *elm_toolbar_item_cursor_style_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set if the (custom)cursor for a given toolbar item should be
  * searched in its theme, also, or should only rely on the
  * rendering engine.
@@ -3482,6 +4024,8 @@ EINA_DEPRECATED EAPI const char                  *elm_toolbar_item_cursor_style_
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_cursor_engine_only_set(Elm_Object_Item *it, Eina_Bool engine_only);
 
 /**
+ * @internal
+ *
  * Get if the (custom) cursor for a given toolbar item is being
  * searched in its theme, also, or is only relying on the rendering
  * engine.
@@ -3499,6 +4043,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_cursor_engine
 EINA_DEPRECATED EAPI Eina_Bool                    elm_toolbar_item_cursor_engine_only_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Link a Elm_Payer with an Elm_Video object.
  *
  * @param player the Elm_Player object.
@@ -3516,6 +4062,8 @@ EINA_DEPRECATED EAPI Eina_Bool                    elm_toolbar_item_cursor_engine
 EINA_DEPRECATED EAPI void elm_player_video_set(Evas_Object *player, Evas_Object *video);
 
 /**
+ * @internal
+ *
  * Set the label of item.
  *
  * @param it The item of segment control.
@@ -3537,6 +4085,8 @@ EINA_DEPRECATED EAPI void              elm_segment_control_item_label_set(Elm_Ob
 
 
 /**
+ * @internal
+ *
  * Set the icon associated to the item.
  *
  * @param it The segment control item.
@@ -3562,6 +4112,8 @@ EINA_DEPRECATED EAPI void              elm_segment_control_item_label_set(Elm_Ob
 EINA_DEPRECATED EAPI void              elm_segment_control_item_icon_set(Elm_Object_Item *it, Evas_Object *icon);
 
 /**
+ * @internal
+ *
  * Remove a segment control item from its parent, deleting it.
  *
  * @param it The item to be removed.
@@ -3574,6 +4126,8 @@ EINA_DEPRECATED EAPI void              elm_segment_control_item_icon_set(Elm_Obj
 EINA_DEPRECATED EAPI void              elm_segment_control_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Get the label
  *
  * @param obj The multibuttonentry object
@@ -3585,6 +4139,8 @@ EINA_DEPRECATED EAPI void              elm_segment_control_item_del(Elm_Object_I
 EINA_DEPRECATED EAPI const char                *elm_multibuttonentry_label_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the label
  *
  * @param obj The multibuttonentry object
@@ -3596,6 +4152,8 @@ EINA_DEPRECATED EAPI const char                *elm_multibuttonentry_label_get(c
 EINA_DEPRECATED EAPI void                       elm_multibuttonentry_label_set(Evas_Object *obj, const char *label);
 
 /**
+ * @internal
+ *
  * Get the label of a given item
  *
  * @param it The item
@@ -3607,6 +4165,8 @@ EINA_DEPRECATED EAPI void                       elm_multibuttonentry_label_set(E
 EINA_DEPRECATED EAPI const char                *elm_multibuttonentry_item_label_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the label of a given item
  *
  * @param it The item
@@ -3617,6 +4177,8 @@ EINA_DEPRECATED EAPI const char                *elm_multibuttonentry_item_label_
 EINA_DEPRECATED EAPI void                       elm_multibuttonentry_item_label_set(Elm_Object_Item *it, const char *str);
 
 /**
+ * @internal
+ *
  * Delete a given item
  *
  * @param it The item
@@ -3627,6 +4189,8 @@ EINA_DEPRECATED EAPI void                       elm_multibuttonentry_item_label_
 EINA_DEPRECATED EAPI void                       elm_multibuttonentry_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Delete the given item instantly.
  *
  * @param it The naviframe item
@@ -3642,6 +4206,8 @@ EINA_DEPRECATED EAPI void             elm_naviframe_item_del(Elm_Object_Item *it
 
 
 /**
+ * @internal
+ *
  * Sets the disabled/enabled state of a list item.
  *
  * @param it The item.
@@ -3658,6 +4224,8 @@ EINA_DEPRECATED EAPI void             elm_naviframe_item_del(Elm_Object_Item *it
 EINA_DEPRECATED EAPI void                         elm_list_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
 
 /**
+ * @internal
+ *
  * Get a value whether list item is disabled or not.
  *
  * @param it The item.
@@ -3671,6 +4239,8 @@ EINA_DEPRECATED EAPI void                         elm_list_item_disabled_set(Elm
 EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_disabled_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * @brief Disable size restrictions on an object's tooltip
  * @param it The tooltip's anchor object
  * @param disable If EINA_TRUE, size restrictions are disabled
@@ -3685,7 +4255,9 @@ EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_disabled_get(con
 EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_tooltip_window_mode_set(Elm_Object_Item *it, Eina_Bool disable);
 
 /**
- * @brief Retrieve size restriction state of an object's tooltip
+ * @internal
+ *
+ * @brief Get size restriction state of an object's tooltip
  * @param obj The tooltip's anchor object
  * @return If EINA_TRUE, size restrictions are disabled
  *
@@ -3699,6 +4271,428 @@ EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_tooltip_window_m
 EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_tooltip_window_mode_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
+ * Set the function called when a list item is freed.
+ *
+ * @param it The item to set the callback on
+ * @param func The function called
+ *
+ * If there is a @p func, then it will be called prior item's memory release.
+ * That will be called with the following arguments:
+ * @li item's data;
+ * @li item's Evas object;
+ * @li item itself;
+ *
+ * This way, a data associated to a list item could be properly freed.
+ *
+ * @deprecated Please use elm_object_item_del_cb_set() instead.
+ *
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func);
+
+/**
+ * @internal
+ *
+ * Get the data associated to the item.
+ *
+ * @param it The list item
+ * @return The data associated to @p item
+ *
+ * The return value is a pointer to data associated to @p item when it was
+ * created, with function elm_list_item_append() or similar. If no data
+ * was passed as argument, it will return @c NULL.
+ *
+ * @see elm_list_item_append()
+ *
+ * @deprecated Please use elm_object_item_data_get() instead.
+ *
+ */
+EINA_DEPRECATED EAPI void                        *elm_list_item_data_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Get the left side icon associated to the item.
+ *
+ * @param it The list item
+ * @return The left side icon associated to @p item
+ *
+ * The return value is a pointer to the icon associated to @p item when
+ * it was
+ * created, with function elm_list_item_append() or similar, or later
+ * with function elm_list_item_icon_set(). If no icon
+ * was passed as argument, it will return @c NULL.
+ *
+ * @see elm_list_item_append()
+ * @see elm_list_item_icon_set()
+ *
+ * @deprecated Please use elm_object_item_part_content_get(item, NULL);
+ */
+EINA_DEPRECATED EAPI Evas_Object                 *elm_list_item_icon_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Set the left side icon associated to the item.
+ *
+ * @param it The list item
+ * @param icon The left side icon object to associate with @p item
+ *
+ * The icon object to use at left side of the item. An
+ * icon can be any Evas object, but usually it is an icon created
+ * with elm_icon_add().
+ *
+ * Once the icon object is set, a previously set one will be deleted.
+ * @warning Setting the same icon for two items will cause the icon to
+ * disappear from the first item.
+ *
+ * If an icon was passed as argument on item creation, with function
+ * elm_list_item_append() or similar, it will be already
+ * associated to the item.
+ *
+ * @see elm_list_item_append()
+ * @see elm_list_item_icon_get()
+ *
+ * @deprecated Please use elm_object_item_part_content_set(item, NULL, icon);
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_icon_set(Elm_Object_Item *it, Evas_Object *icon);
+
+/**
+ * @internal
+ *
+ * Get the right side icon associated to the item.
+ *
+ * @param it The list item
+ * @return The right side icon associated to @p item
+ *
+ * The return value is a pointer to the icon associated to @p item when
+ * it was
+ * created, with function elm_list_item_append() or similar, or later
+ * with function elm_list_item_icon_set(). If no icon
+ * was passed as argument, it will return @c NULL.
+ *
+ * @see elm_list_item_append()
+ * @see elm_list_item_icon_set()
+ *
+ * @deprecated Please use elm_object_item_part_content_get(item, "end");
+ */
+EINA_DEPRECATED EAPI Evas_Object                 *elm_list_item_end_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Set the right side icon associated to the item.
+ *
+ * @param it The list item
+ * @param end The right side icon object to associate with @p item
+ *
+ * The icon object to use at right side of the item. An
+ * icon can be any Evas object, but usually it is an icon created
+ * with elm_icon_add().
+ *
+ * Once the icon object is set, a previously set one will be deleted.
+ * @warning Setting the same icon for two items will cause the icon to
+ * disappear from the first item.
+ *
+ * If an icon was passed as argument on item creation, with function
+ * elm_list_item_append() or similar, it will be already
+ * associated to the item.
+ *
+ * @see elm_list_item_append()
+ * @see elm_list_item_end_get()
+ *
+ * @deprecated Please use elm_object_item_part_content_set(item, "end", end);
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_end_set(Elm_Object_Item *it, Evas_Object *end);
+
+/**
+ * @internal
+ *
+ * Get the label of item.
+ *
+ * @param it The item of list.
+ * @return The label of item.
+ *
+ * The return value is a pointer to the label associated to @p item when
+ * it was created, with function elm_list_item_append(), or later
+ * with function elm_list_item_label_set. If no label
+ * was passed as argument, it will return @c NULL.
+ *
+ * @see elm_list_item_label_set() for more details.
+ * @see elm_list_item_append()
+ *
+ * @deprecated Please use elm_object_item_text_get(item);
+ */
+EINA_DEPRECATED EAPI const char                  *elm_list_item_label_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Set the label of item.
+ *
+ * @param it The item of list.
+ * @param text The label of item.
+ *
+ * The label to be displayed by the item.
+ * Label will be placed between left and right side icons (if set).
+ *
+ * If a label was passed as argument on item creation, with function
+ * elm_list_item_append() or similar, it will be already
+ * displayed by the item.
+ *
+ * @see elm_list_item_label_get()
+ * @see elm_list_item_append()
+ *
+ * @deprecated Please use elm_object_item_text_set(item, text);
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_label_set(Elm_Object_Item *it, const char *text);
+
+/**
+ * @internal
+ *
+ * Set the text to be shown in a given list item's tooltips.
+ *
+ * @param it Target item.
+ * @param text The text to set in the content.
+ *
+ * Setup the text as tooltip to object. The item can have only one tooltip,
+ * so any previous tooltip data - set with this function or
+ * elm_list_item_tooltip_content_cb_set() - is removed.
+ *
+ * @deprecated Use elm_object_item_tooltip_text_set() instead
+ * @see elm_object_tooltip_text_set() for more details.
+ *
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
+
+/**
+ * @internal
+ *
+ * Set the content to be shown in the tooltip item.
+ *
+ * Setup the tooltip to item. The item can have only one tooltip,
+ * so any previous tooltip data is removed. @p func(with @p data) will
+ * be called every time that need show the tooltip and it should
+ * return a valid Evas_Object. This object is then managed fully by
+ * tooltip system and is deleted when the tooltip is gone.
+ *
+ * @param it the list item being attached a tooltip.
+ * @param func the function used to create the tooltip contents.
+ * @param data what to provide to @a func as callback data/context.
+ * @param del_cb called when data is not needed anymore, either when
+ *        another callback replaces @a func, the tooltip is unset with
+ *        elm_list_item_tooltip_unset() or the owner @a item
+ *        dies. This callback receives as the first parameter the
+ *        given @a data, and @p event_info is the item.
+ *
+ * @deprecated Use elm_object_item_tooltip_content_cb_set() instead
+ *
+ * @see elm_object_tooltip_content_cb_set() for more details.
+ *
+ */
+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);
+
+/**
+ * @internal
+ *
+ * Unset tooltip from item.
+ *
+ * @param it list item to remove previously set tooltip.
+ *
+ * Remove tooltip from item. The callback provided as del_cb to
+ * elm_list_item_tooltip_content_cb_set() will be called to notify
+ * it is not used anymore.
+ *
+ * @deprecated Use elm_object_item_tooltip_unset() instead
+ * @see elm_object_tooltip_unset() for more details.
+ * @see elm_list_item_tooltip_content_cb_set()
+ *
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_tooltip_unset(Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Sets a different style for this item tooltip.
+ *
+ * @note before you set a style you should define a tooltip with
+ *       elm_list_item_tooltip_content_cb_set() or
+ *       elm_list_item_tooltip_text_set()
+ *
+ * @param it list item with tooltip already set.
+ * @param style the theme style to use (default, transparent, ...)
+ *
+ *
+ * @deprecated Use elm_object_item_tooltip_style_set() instead
+ * @see elm_object_tooltip_style_set() for more details.
+ *
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_tooltip_style_set(Elm_Object_Item *it, const char *style);
+
+/**
+ * @internal
+ *
+ * Get the style for this item tooltip.
+ *
+ * @param it list item with tooltip already set.
+ * @return style the theme style in use, defaults to "default". If the
+ *         object does not have a tooltip set, then NULL is returned.
+ *
+ * @deprecated Use elm_object_item_tooltip_style_get() instead
+ *
+ * @see elm_object_tooltip_style_get() for more details.
+ * @see elm_list_item_tooltip_style_set()
+ *
+ */
+EINA_DEPRECATED EAPI const char                  *elm_list_item_tooltip_style_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Set the type of mouse pointer/cursor decoration to be shown,
+ * when the mouse pointer is over the given list widget item
+ *
+ * @param it list item to customize cursor on
+ * @param cursor the cursor type's name
+ *
+ * This function works analogously as elm_object_cursor_set(), but
+ * here the cursor's changing area is restricted to the item's
+ * area, and not the whole widget's. Note that that item cursors
+ * have precedence over widget cursors, so that a mouse over an
+ * item with custom cursor set will always show @b that cursor.
+ *
+ * If this function is called twice for an object, a previously set
+ * cursor will be unset on the second call.
+ *
+ * @see elm_object_cursor_set()
+ * @see elm_list_item_cursor_get()
+ * @see elm_list_item_cursor_unset()
+ *
+ * @deprecated Please use elm_object_item_cursor_set() instead
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_cursor_set(Elm_Object_Item *it, const char *cursor);
+
+/**
+ * @internal
+ *
+ * Get the type of mouse pointer/cursor decoration set to be shown,
+ * when the mouse pointer is over the given list widget item
+ *
+ * @param it list item with custom cursor set
+ * @return the cursor type's name or @c NULL, if no custom cursors
+ * were set to @p item (and on errors)
+ *
+ * @see elm_object_cursor_get()
+ * @see elm_list_item_cursor_set()
+ * @see elm_list_item_cursor_unset()
+ *
+ * @deprecated Please use elm_object_item_cursor_get() instead
+ */
+EINA_DEPRECATED EAPI const char                  *elm_list_item_cursor_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Unset any custom mouse pointer/cursor decoration set to be
+ * shown, when the mouse pointer is over the given list widget
+ * item, thus making it show the @b default cursor again.
+ *
+ * @param it a list item
+ *
+ * Use this call to undo any custom settings on this item's cursor
+ * decoration, bringing it back to defaults (no custom style set).
+ *
+ * @see elm_object_cursor_unset()
+ * @see elm_list_item_cursor_set()
+ *
+ * @deprecated Please use elm_list_item_cursor_unset() instead
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_cursor_unset(Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Set a different @b style for a given custom cursor set for a
+ * list item.
+ *
+ * @param it list item with custom cursor set
+ * @param style the <b>theme style</b> to use (e.g. @c "default",
+ * @c "transparent", etc)
+ *
+ * This function only makes sense when one is using custom mouse
+ * cursor decorations <b>defined in a theme file</b>, which can have,
+ * given a cursor name/type, <b>alternate styles</b> on it. It
+ * works analogously as elm_object_cursor_style_set(), but here
+ * applies only to list item objects.
+ *
+ * @warning Before you set a cursor style you should have defined a
+ *       custom cursor previously on the item, with
+ *       elm_list_item_cursor_set()
+ *
+ * @see elm_list_item_cursor_engine_only_set()
+ * @see elm_list_item_cursor_style_get()
+ *
+ * @deprecated Please use elm_list_item_cursor_style_set() instead
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_cursor_style_set(Elm_Object_Item *it, const char *style);
+
+/**
+ * @internal
+ *
+ * Get the current @b style set for a given list item's custom
+ * cursor
+ *
+ * @param it list item with custom cursor set.
+ * @return style the cursor style in use. If the object does not
+ *         have a cursor set, then @c NULL is returned.
+ *
+ * @see elm_list_item_cursor_style_set() for more details
+ *
+ * @deprecated Please use elm_list_item_cursor_style_get() instead
+ */
+EINA_DEPRECATED EAPI const char                  *elm_list_item_cursor_style_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Get if the (custom) cursor for a given list item is being
+ * searched in its theme, also, or is only relying on the rendering
+ * engine.
+ *
+ * @param it a list item
+ * @return @c EINA_TRUE, if cursors are being looked for only on
+ * those provided by the rendering engine, @c EINA_FALSE if they
+ * are being searched on the widget's theme, as well.
+ *
+ * @see elm_list_item_cursor_engine_only_set(), for more details
+ *
+ * @deprecated Please use elm_list_item_cursor_engine_only_get() instead
+ */
+EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_cursor_engine_only_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Delete the item from the list.
+ *
+ * @param it The item of list to be deleted.
+ *
+ * If deleting all list items is required, elm_list_clear()
+ * should be used instead of getting items list and deleting each one.
+ *
+ * @see elm_list_clear()
+ * @see elm_list_item_append()
+ * @see elm_widget_item_del_cb_set()
+ * @deprecated Use elm_object_item_del() instead
+ *
+ */
+EINA_DEPRECATED EAPI void                         elm_list_item_del(Elm_Object_Item *it);
+
+
+/**
+ * @internal
+ *
  * This sets a widget to be displayed to the left of a scrolled entry.
  *
  * @param obj The scrolled entry object
@@ -3715,7 +4709,9 @@ EINA_DEPRECATED EAPI Eina_Bool                    elm_list_item_tooltip_window_m
 EINA_DEPRECATED EAPI void               elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
 
 /**
- * Gets the leftmost widget of the scrolled entry. This object is
+ * @internal
+ *
+ * Get the leftmost widget of the scrolled entry. This object is
  * owned by the scrolled entry and should not be modified.
  *
  * @param obj The scrolled entry object
@@ -3726,6 +4722,8 @@ EINA_DEPRECATED EAPI void               elm_entry_icon_set(Evas_Object *obj, Eva
 EINA_DEPRECATED EAPI Evas_Object       *elm_entry_icon_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the leftmost widget of the scrolled entry, unparenting and
  * returning it.
  *
@@ -3739,6 +4737,8 @@ EINA_DEPRECATED EAPI Evas_Object       *elm_entry_icon_get(const Evas_Object *ob
 EINA_DEPRECATED EAPI Evas_Object       *elm_entry_icon_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * This sets a widget to be displayed to the end of a scrolled entry.
  *
  * @param obj The scrolled entry object
@@ -3755,7 +4755,9 @@ EINA_DEPRECATED EAPI Evas_Object       *elm_entry_icon_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void               elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
 
 /**
- * Gets the endmost widget of the scrolled entry. This object is owned
+ * @internal
+ *
+ * Get the endmost widget of the scrolled entry. This object is owned
  * by the scrolled entry and should not be modified.
  *
  * @param obj The scrolled entry object
@@ -3766,6 +4768,8 @@ EINA_DEPRECATED EAPI void               elm_entry_end_set(Evas_Object *obj, Evas
 EINA_DEPRECATED EAPI Evas_Object       *elm_entry_end_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Unset the endmost widget of the scrolled entry, unparenting and
  * returning it.
  *
@@ -3779,6 +4783,8 @@ EINA_DEPRECATED EAPI Evas_Object       *elm_entry_end_get(const Evas_Object *obj
 EINA_DEPRECATED EAPI Evas_Object       *elm_entry_end_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set route service to be used. By default used source is
  * #ELM_MAP_ROUTE_SOURCE_YOURS.
  *
@@ -3795,6 +4801,8 @@ typedef enum
 } Elm_Map_Route_Sources;
 
 /**
+ * @internal
+ *
  * Convert a pixel coordinate into a rotated pixel coordinate.
  *
  * @param obj The map object.
@@ -3811,6 +4819,8 @@ typedef enum
 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);
 
 /**
+ * @internal
+ *
  * Convert canvas coordinates into a geographic coordinate
  * (longitude, latitude).
  *
@@ -3830,6 +4840,8 @@ EINA_DEPRECATED EAPI void                  elm_map_utils_rotate_coord(const Evas
 EINA_DEPRECATED EAPI void                  elm_map_canvas_to_geo_convert(const Evas_Object *obj, const Evas_Coord x, const Evas_Coord y, double *lon, double *lat);
 
 /**
+ * @internal
+ *
  * Get the current geographic coordinates of the map.
  *
  * @param obj The map object.
@@ -3847,6 +4859,8 @@ EINA_DEPRECATED EAPI void                  elm_map_canvas_to_geo_convert(const E
 EINA_DEPRECATED EAPI void                  elm_map_geo_region_get(const Evas_Object *obj, double *lon, double *lat);
 
 /**
+ * @internal
+ *
  * Animatedly bring in given coordinates to the center of the map.
  *
  * @param obj The map object.
@@ -3866,6 +4880,8 @@ EINA_DEPRECATED EAPI void                  elm_map_geo_region_get(const Evas_Obj
 EINA_DEPRECATED EAPI void                  elm_map_geo_region_bring_in(Evas_Object *obj, double lon, double lat);
 
 /**
+ * @internal
+ *
  * Show the given coordinates at the center of the map, @b immediately.
  *
  * @param obj The map object.
@@ -3884,6 +4900,8 @@ EINA_DEPRECATED EAPI void                  elm_map_geo_region_bring_in(Evas_Obje
 EINA_DEPRECATED EAPI void                  elm_map_geo_region_show(Evas_Object *obj, double lon, double lat);
 
 /**
+ * @internal
+ *
  * Set the minimum zoom of the source.
  *
  * @param obj The map object.
@@ -3896,6 +4914,8 @@ EINA_DEPRECATED EAPI void                  elm_map_geo_region_show(Evas_Object *
 EINA_DEPRECATED EAPI void                  elm_map_source_zoom_min_set(Evas_Object *obj, int zoom);
 
 /**
+ * @internal
+ *
  * Get the minimum zoom of the source.
  *
  * @param obj The map object.
@@ -3908,6 +4928,8 @@ EINA_DEPRECATED EAPI void                  elm_map_source_zoom_min_set(Evas_Obje
 EINA_DEPRECATED EAPI int                   elm_map_source_zoom_min_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the maximum zoom of the source.
  *
  * @param obj The map object.
@@ -3920,6 +4942,8 @@ EINA_DEPRECATED EAPI int                   elm_map_source_zoom_min_get(const Eva
 EINA_DEPRECATED EAPI void                  elm_map_source_zoom_max_set(Evas_Object *obj, int zoom);
 
 /**
+ * @internal
+ *
  * Get the maximum zoom of the source.
  *
  * @param obj The map object.
@@ -3933,6 +4957,8 @@ EINA_DEPRECATED EAPI int                   elm_map_source_zoom_max_get(const Eva
 
 
 /**
+ * @internal
+ *
  * Get the list of available sources.
  *
  * @param obj The map object.
@@ -3956,6 +4982,8 @@ EINA_DEPRECATED EAPI int                   elm_map_source_zoom_max_get(const Eva
 EINA_DEPRECATED EAPI const char          **elm_map_source_names_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the source of the map.
  *
  * @param obj The map object.
@@ -3980,6 +5008,8 @@ EINA_DEPRECATED EAPI const char          **elm_map_source_names_get(const Evas_O
 EINA_DEPRECATED EAPI void                  elm_map_source_name_set(Evas_Object *obj, const char *source_name);
 
 /**
+ * @internal
+ *
  * Get the name of currently used source.
  *
  * @param obj The map object.
@@ -3992,6 +5022,8 @@ EINA_DEPRECATED EAPI void                  elm_map_source_name_set(Evas_Object *
 EINA_DEPRECATED EAPI const char           *elm_map_source_name_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the source of the route service to be used by the map.
  *
  * @param obj The map object.
@@ -4017,6 +5049,8 @@ EINA_DEPRECATED EAPI const char           *elm_map_source_name_get(const Evas_Ob
 EINA_DEPRECATED EAPI void                  elm_map_route_source_set(Evas_Object *obj, Elm_Map_Route_Sources source);
 
 /**
+ * @internal
+ *
  * Get the current route source.
  *
  * @param obj The map object.
@@ -4029,6 +5063,8 @@ EINA_DEPRECATED EAPI void                  elm_map_route_source_set(Evas_Object
 EINA_DEPRECATED EAPI Elm_Map_Route_Sources elm_map_route_source_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the maximum numbers of markers' content to be displayed in a group.
  *
  * @param obj The map object.
@@ -4055,6 +5091,8 @@ EINA_DEPRECATED EAPI Elm_Map_Route_Sources elm_map_route_source_get(const Evas_O
 EINA_DEPRECATED EAPI void                  elm_map_max_marker_per_group_set(Evas_Object *obj, int max);
 
 /**
+ * @internal
+ *
  * Set to show markers during zoom level changes or not.
  *
  * @param obj The map object.
@@ -4084,6 +5122,8 @@ EINA_DEPRECATED EAPI void                  elm_map_max_marker_per_group_set(Evas
 EINA_DEPRECATED EAPI void                  elm_map_paused_markers_set(Evas_Object *obj, Eina_Bool paused);
 
 /**
+ * @internal
+ *
  * Get a value whether markers will be displayed on zoom level changes or not
  *
  * @param obj The map object.
@@ -4099,6 +5139,8 @@ EINA_DEPRECATED EAPI void                  elm_map_paused_markers_set(Evas_Objec
 EINA_DEPRECATED EAPI Eina_Bool             elm_map_paused_markers_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Close all the bubbles opened by the user.
  *
  * @param obj The map object.
@@ -4114,6 +5156,8 @@ EINA_DEPRECATED EAPI Eina_Bool             elm_map_paused_markers_get(const Evas
 EINA_DEPRECATED EAPI void                  elm_map_bubbles_close(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the marker's style of a group class.
  *
  * @param clas The group class.
@@ -4135,6 +5179,8 @@ EINA_DEPRECATED EAPI void                  elm_map_bubbles_close(Evas_Object *ob
 EINA_DEPRECATED EAPI void                  elm_map_group_class_style_set(Elm_Map_Group_Class *clas, const char *style);
 
 /**
+ * @internal
+ *
  * Set the icon callback function of a group class.
  *
  * @param clas The group class.
@@ -4151,6 +5197,8 @@ EINA_DEPRECATED EAPI void                  elm_map_group_class_style_set(Elm_Map
 EINA_DEPRECATED EAPI void                  elm_map_group_class_icon_cb_set(Elm_Map_Group_Class *clas, Elm_Map_Group_Icon_Get_Func icon_get);
 
 /**
+ * @internal
+ *
  * Set the data associated to the group class.
  *
  * @param clas The group class.
@@ -4171,6 +5219,8 @@ EINA_DEPRECATED EAPI void                  elm_map_group_class_icon_cb_set(Elm_M
 EINA_DEPRECATED EAPI void                  elm_map_group_class_data_set(Elm_Map_Group_Class *clas, void *data);
 
 /**
+ * @internal
+ *
  * Set the minimum zoom from where the markers are displayed.
  *
  * @param clas The group class.
@@ -4187,6 +5237,8 @@ EINA_DEPRECATED EAPI void                  elm_map_group_class_data_set(Elm_Map_
 EINA_DEPRECATED EAPI void                  elm_map_group_class_zoom_displayed_set(Elm_Map_Group_Class *clas, int zoom);
 
 /**
+ * @internal
+ *
  * Set the zoom from where the markers are no more grouped.
  *
  * @param clas The group class.
@@ -4203,6 +5255,8 @@ EINA_DEPRECATED EAPI void                  elm_map_group_class_zoom_displayed_se
 EINA_DEPRECATED EAPI void                  elm_map_group_class_zoom_grouped_set(Elm_Map_Group_Class *clas, int zoom);
 
 /**
+ * @internal
+ *
  * Set if the markers associated to the group class @p clas are hidden or not.
  *
  * @param clas The group class.
@@ -4218,6 +5272,8 @@ EINA_DEPRECATED EAPI void                  elm_map_group_class_zoom_grouped_set(
 EINA_DEPRECATED EAPI void                  elm_map_group_class_hide_set(Evas_Object *obj, Elm_Map_Group_Class *clas, Eina_Bool hide);
 
 /**
+ * @internal
+ *
  * Set the marker's style of a marker class.
  *
  * @param clas The marker class.
@@ -4239,6 +5295,8 @@ EINA_DEPRECATED EAPI void                  elm_map_group_class_hide_set(Evas_Obj
 EINA_DEPRECATED EAPI void                  elm_map_marker_class_style_set(Elm_Map_Marker_Class *clas, const char *style);
 
 /**
+ * @internal
+ *
  * Set the icon callback function of a marker class.
  *
  * @param clas The marker class.
@@ -4255,6 +5313,8 @@ EINA_DEPRECATED EAPI void                  elm_map_marker_class_style_set(Elm_Ma
 EINA_DEPRECATED EAPI void                  elm_map_marker_class_icon_cb_set(Elm_Map_Marker_Class *clas, Elm_Map_Marker_Icon_Get_Func icon_get);
 
 /**
+ * @internal
+ *
  * Set the bubble content callback function of a marker class.
  *
  * @param clas The marker class.
@@ -4276,6 +5336,8 @@ EINA_DEPRECATED EAPI void                  elm_map_marker_class_icon_cb_set(Elm_
 EINA_DEPRECATED EAPI void                  elm_map_marker_class_get_cb_set(Elm_Map_Marker_Class *clas, Elm_Map_Marker_Get_Func get);
 
 /**
+ * @internal
+ *
  * Set the callback function used to delete bubble content of a marker class.
  *
  * @param clas The marker class.
@@ -4302,6 +5364,8 @@ EINA_DEPRECATED EAPI void                  elm_map_marker_class_get_cb_set(Elm_M
 EINA_DEPRECATED EAPI void                  elm_map_marker_class_del_cb_set(Elm_Map_Marker_Class *clas, Elm_Map_Marker_Del_Func del);
 
 /**
+ * @internal
+ *
  * Set the route color.
  *
  * @param route The route object.
@@ -4330,6 +5394,8 @@ EINA_DEPRECATED EAPI void                  elm_map_marker_class_del_cb_set(Elm_M
 EINA_DEPRECATED EAPI void                  elm_map_route_color_set(Elm_Map_Route *route, int r, int g, int b, int a);
 
 /**
+ * @internal
+ *
  * Get the route color.
  *
  * @param route The route object.
@@ -4345,6 +5411,8 @@ EINA_DEPRECATED EAPI void                  elm_map_route_color_set(Elm_Map_Route
 EINA_DEPRECATED EAPI void                  elm_map_route_color_get(const Elm_Map_Route *route, int *r, int *g, int *b, int *a);
 
 /**
+ * @internal
+ *
  * Remove a name from the map.
  *
  * @param name The name to remove.
@@ -4360,6 +5428,8 @@ EINA_DEPRECATED EAPI void                  elm_map_route_color_get(const Elm_Map
 EINA_DEPRECATED EAPI void                  elm_map_name_remove(Elm_Map_Name *name);
 
 /**
+ * @internal
+ *
  * Get the gengrid object's handle which contains a given gengrid item
  *
  * @param it The item to fetch the container from
@@ -4372,6 +5442,8 @@ EINA_DEPRECATED EAPI void                  elm_map_name_remove(Elm_Map_Name *nam
 EINA_DEPRECATED EAPI Evas_Object                  *elm_gengrid_item_gengrid_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Return the data associated to a given gengrid item
  *
  * @param it The gengrid item.
@@ -4387,6 +5459,8 @@ EINA_DEPRECATED EAPI Evas_Object                  *elm_gengrid_item_gengrid_get(
 EINA_DEPRECATED EAPI void                         *elm_gengrid_item_data_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Set the data associated with a given gengrid item
  *
  * @param it The gengrid item
@@ -4406,6 +5480,8 @@ EINA_DEPRECATED EAPI void                         *elm_gengrid_item_data_get(con
 EINA_DEPRECATED EAPI void                          elm_gengrid_item_data_set(Elm_Object_Item *it, const void *data);
 
 /**
+ * @internal
+ *
  * Set whether a given gengrid item is disabled or not.
  *
  * @param it The gengrid item
@@ -4422,6 +5498,8 @@ EINA_DEPRECATED EAPI void                          elm_gengrid_item_data_set(Elm
 EINA_DEPRECATED EAPI void                          elm_gengrid_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled);
 
 /**
+ * @internal
+ *
  * Get whether a given gengrid item is disabled or not.
  *
  * @param it The gengrid item
@@ -4435,6 +5513,8 @@ EINA_DEPRECATED EAPI void                          elm_gengrid_item_disabled_set
 EINA_DEPRECATED EAPI Eina_Bool                     elm_gengrid_item_disabled_get(const Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Remove a gengrid item from its parent, deleting it.
  *
  * @param it The item to be removed.
@@ -4448,6 +5528,8 @@ EINA_DEPRECATED EAPI Eina_Bool                     elm_gengrid_item_disabled_get
 EINA_DEPRECATED EAPI void                          elm_gengrid_item_del(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Update the item class of a gengrid item.
  *
  * This sets another class of the item, changing the way that it is
@@ -4462,6 +5544,8 @@ EINA_DEPRECATED EAPI void                          elm_gengrid_item_del(Elm_Obje
 EINA_DEPRECATED EAPI void                          elm_gengrid_item_item_class_set(Elm_Object_Item *it, const Elm_Gengrid_Item_Class *gic);
 
 /**
+ * @internal
+ *
  * Insert an item in a gengrid widget using a user-defined sort function.
  *
  * @param obj The gengrid object.
@@ -4486,6 +5570,8 @@ EINA_DEPRECATED EAPI void                          elm_gengrid_item_item_class_s
 EINA_DEPRECATED EAPI Elm_Object_Item             *elm_gengrid_item_direct_sorted_insert(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Eina_Compare_Cb comp, Evas_Smart_Cb func, const void *func_data);
 
 /**
+ * @internal
+ *
  * Append a filter function for text inserted in the entry
  *
  * Append the given callback to the list. This functions will be called
@@ -4504,6 +5590,8 @@ EINA_DEPRECATED EAPI Elm_Object_Item             *elm_gengrid_item_direct_sorted
 EINA_DEPRECATED EAPI void               elm_entry_text_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
 
 /**
+ * @internal
+ *
  * Prepend a filter function for text inserted in the entry
  *
  * Prepend the given callback to the list. See elm_entry_text_filter_append()
@@ -4517,6 +5605,8 @@ EINA_DEPRECATED EAPI void               elm_entry_text_filter_append(Evas_Object
 EINA_DEPRECATED EAPI void               elm_entry_text_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
 
 /**
+ * @internal
+ *
  * Remove a filter from the list
  *
  * Removes the given callback from the filter list. See
@@ -4530,6 +5620,8 @@ EINA_DEPRECATED EAPI void               elm_entry_text_filter_prepend(Evas_Objec
 EINA_DEPRECATED EAPI void               elm_entry_text_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
 
 /**
+ * @internal
+ *
  * @brief Set the front content of the flip widget.
  *
  * @param obj The flip object
@@ -4544,6 +5636,8 @@ EINA_DEPRECATED EAPI void               elm_entry_text_filter_remove(Evas_Object
 EINA_DEPRECATED EAPI void                 elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * @brief Set the back content of the flip widget.
  *
  * @param obj The flip object
@@ -4558,6 +5652,8 @@ EINA_DEPRECATED EAPI void                 elm_flip_content_front_set(Evas_Object
 EINA_DEPRECATED EAPI void                 elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content);
 
 /**
+ * @internal
+ *
  * @brief Get the front content used for the flip
  *
  * @param obj The flip object
@@ -4570,6 +5666,8 @@ EINA_DEPRECATED EAPI void                 elm_flip_content_back_set(Evas_Object
 EINA_DEPRECATED EAPI Evas_Object         *elm_flip_content_front_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Get the back content used for the flip
  *
  * @param obj The flip object
@@ -4582,6 +5680,8 @@ EINA_DEPRECATED EAPI Evas_Object         *elm_flip_content_front_get(const Evas_
 EINA_DEPRECATED EAPI Evas_Object         *elm_flip_content_back_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Unset the front content used for the flip
  *
  * @param obj The flip object
@@ -4594,6 +5694,8 @@ EINA_DEPRECATED EAPI Evas_Object         *elm_flip_content_back_get(const Evas_O
 EINA_DEPRECATED EAPI Evas_Object         *elm_flip_content_front_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Unset the back content used for the flip
  *
  * @param obj The flip object
@@ -4606,6 +5708,8 @@ EINA_DEPRECATED EAPI Evas_Object         *elm_flip_content_front_unset(Evas_Obje
 EINA_DEPRECATED EAPI Evas_Object         *elm_flip_content_back_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Get flip front visibility state
  *
  * @param obj The flip object
@@ -4617,6 +5721,8 @@ EINA_DEPRECATED EAPI Evas_Object         *elm_flip_content_back_unset(Evas_Objec
 EINA_DEPRECATED EAPI Eina_Bool            elm_flip_front_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Set the font size on the label object.
  *
  * @param obj The label object
@@ -4629,6 +5735,8 @@ EINA_DEPRECATED EAPI Eina_Bool            elm_flip_front_get(const Evas_Object *
 EINA_DEPRECATED EAPI void                        elm_label_fontsize_set(Evas_Object *obj, int fontsize);
 
 /**
+ * @internal
+ *
  * @brief Set the text color on the label object
  *
  * @param obj The label object
@@ -4644,6 +5752,8 @@ EINA_DEPRECATED EAPI void                        elm_label_fontsize_set(Evas_Obj
 EINA_DEPRECATED EAPI void                        elm_label_text_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a);
 
 /**
+ * @internal
+ *
  * @brief Set the text align on the label object
  *
  * @param obj The label object
@@ -4656,6 +5766,8 @@ EINA_DEPRECATED EAPI void                        elm_label_text_color_set(Evas_O
 EINA_DEPRECATED EAPI void                        elm_label_text_align_set(Evas_Object *obj, const char *alignmode);
 
 /**
+ * @internal
+ *
  * @brief Set background color of the label
  *
  * @param obj The label object
@@ -4671,6 +5783,8 @@ EINA_DEPRECATED EAPI void                        elm_label_text_align_set(Evas_O
 EINA_DEPRECATED EAPI void                        elm_label_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a);
 
 /**
+ * @internal
+ *
  * @brief Set wrap height of the label
  *
  * @param obj The label object
@@ -4684,6 +5798,8 @@ EINA_DEPRECATED EAPI void                        elm_label_background_color_set(
 EINA_DEPRECATED EAPI void                        elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h);
 
 /**
+ * @internal
+ *
  * @brief get wrap width of the label
  *
  * @param obj The label object
@@ -4693,6 +5809,8 @@ EINA_DEPRECATED EAPI void                        elm_label_wrap_height_set(Evas_
 EINA_DEPRECATED EAPI Evas_Coord                  elm_label_wrap_height_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Flush all caches.
  *
  * Frees all data that was in cache and is not currently being used to reduce
@@ -4711,6 +5829,8 @@ EINA_DEPRECATED EAPI void      elm_all_flush(void);
 
 
 /**
+ * @internal
+ *
  * @brief Define the uri that will be the video source.
  *
  * @param video The video object to define the file for.
@@ -4727,6 +5847,8 @@ EINA_DEPRECATED EAPI void      elm_all_flush(void);
 EINA_DEPRECATED EAPI void                 elm_video_uri_set(Evas_Object *video, const char *uri);
 
 /**
+ * @internal
+ *
  * @brief Get the region of the image that is currently shown
  *
  * @param obj
@@ -4740,6 +5862,8 @@ EINA_DEPRECATED EAPI void                 elm_video_uri_set(Evas_Object *video,
 EINA_DEPRECATED EAPI void                   elm_photocam_region_get(const Evas_Object *obj, int *x, int *y, int *w, int *h);
 
 /**
+ * @internal
+ *
  * @brief Set the gesture state for photocam.
  *
  * @param obj The photocam object
@@ -4753,6 +5877,8 @@ EINA_DEPRECATED EAPI void                   elm_photocam_region_get(const Evas_O
 EINA_DEPRECATED EAPI void                  elm_photocam_gesture_set(Evas_Object *obj, Eina_Bool gesture);
 
 /**
+ * @internal
+ *
  * @brief Get the gesture state for photocam.
  *
  * @param obj The photocam object
@@ -4776,6 +5902,8 @@ EINA_DEPRECATED EAPI double       elm_route_lat_max_get(Evas_Object *obj);
 
 
 /**
+ * @internal
+ *
  * Get the duration after which tooltip will be shown.
  *
  * @return Duration after which tooltip will be shown.
@@ -4784,6 +5912,8 @@ EINA_DEPRECATED EAPI double       elm_route_lat_max_get(Evas_Object *obj);
 EINA_DEPRECATED EAPI double      elm_tooltip_delay_get(void);
 
 /**
+ * @internal
+ *
  * Set the duration after which tooltip will be shown.
  *
  * @return EINA_TRUE if value is set.
@@ -4792,6 +5922,8 @@ EINA_DEPRECATED EAPI double      elm_tooltip_delay_get(void);
 EINA_DEPRECATED EAPI Eina_Bool   elm_tooltip_delay_set(double delay);
 
 /**
+ * @internal
+ *
  * Set the corner of the bubble
  *
  * @param obj The bubble object.
@@ -4803,6 +5935,8 @@ EINA_DEPRECATED EAPI Eina_Bool   elm_tooltip_delay_set(double delay);
 EINA_DEPRECATED EAPI void elm_bubble_corner_set(Evas_Object *obj, const char *corner);
 
 /**
+ * @internal
+ *
  * Get the corner of the bubble
  *
  * @param obj The bubble object.
@@ -4813,6 +5947,8 @@ EINA_DEPRECATED EAPI void elm_bubble_corner_set(Evas_Object *obj, const char *co
 EINA_DEPRECATED EAPI const char *elm_bubble_corner_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Enable or disable day selection
  *
  * @param obj The calendar object.
@@ -4824,6 +5960,8 @@ EINA_DEPRECATED EAPI const char *elm_bubble_corner_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI void                 elm_calendar_day_selection_enabled_set(Evas_Object *obj, Eina_Bool enabled);
 
 /**
+ * @internal
+ *
  * Get a value whether day selection is enabled or not.
  *
  * @param obj The calendar object.
@@ -4835,11 +5973,15 @@ EINA_DEPRECATED EAPI void                 elm_calendar_day_selection_enabled_set
 EINA_DEPRECATED EAPI Eina_Bool            elm_calendar_day_selection_enabled_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @deprecated Use Elm_Calendar_Mark_Repeat_Type instead.
  */
 typedef _Elm_Calendar_Mark_Repeat_Type Elm_Calendar_Mark_Repeat EINA_DEPRECATED;
 
 /**
+ * @internal
+ *
  * Get the configured font cache size
  *
  * This gets the globally configured font cache size, in bytes.
@@ -4850,6 +5992,8 @@ typedef _Elm_Calendar_Mark_Repeat_Type Elm_Calendar_Mark_Repeat EINA_DEPRECATED;
 EINA_DEPRECATED EAPI int       elm_font_cache_get(void);
 
 /**
+ * @internal
+ *
  * Set the configured font cache size
  *
  * This sets the globally configured font cache size, in bytes
@@ -4860,6 +6004,8 @@ EINA_DEPRECATED EAPI int       elm_font_cache_get(void);
 EINA_DEPRECATED EAPI void      elm_font_cache_set(int size);
 
 /**
+ * @internal
+ *
  * Get the configured image cache size
  *
  * This gets the globally configured image cache size, in bytes
@@ -4870,6 +6016,8 @@ EINA_DEPRECATED EAPI int       elm_image_cache_get(void);
 EINA_DEPRECATED EAPI int       elm_cache_image_cache_size_get(void);
 
 /**
+ * @internal
+ *
  * Set the configured image cache size
  *
  * This sets the globally configured image cache size, in bytes
@@ -4881,6 +6029,8 @@ EINA_DEPRECATED EAPI void      elm_image_cache_set(int size);
 
 
 /**
+ * @internal
+ *
  * Get the configured edje file cache size.
  *
  * This gets the globally configured edje file cache size, in number
@@ -4892,6 +6042,8 @@ EINA_DEPRECATED EAPI void      elm_image_cache_set(int size);
 EINA_DEPRECATED EAPI int       elm_edje_file_cache_get(void);
 
 /**
+ * @internal
+ *
  * Set the configured edje file cache size
  *
  * This sets the globally configured edje file cache size, in number
@@ -4903,6 +6055,8 @@ EINA_DEPRECATED EAPI int       elm_edje_file_cache_get(void);
 EINA_DEPRECATED EAPI void      elm_edje_file_cache_set(int size);
 
 /**
+ * @internal
+ *
  * Get the configured edje collections (groups) cache size.
  *
  * This gets the globally configured edje collections cache size, in
@@ -4914,6 +6068,8 @@ EINA_DEPRECATED EAPI void      elm_edje_file_cache_set(int size);
 EINA_DEPRECATED EAPI int       elm_edje_collection_cache_get(void);
 
 /**
+ * @internal
+ *
  * Set the configured edje collections (groups) cache size
  *
  * This sets the globally configured edje collections cache size, in
@@ -4925,7 +6081,9 @@ EINA_DEPRECATED EAPI int       elm_edje_collection_cache_get(void);
 EINA_DEPRECATED EAPI void      elm_edje_collection_cache_set(int size);
 
 /**
- * Gets whether browsing history is enabled for the given object
+ * @internal
+ *
+ * Get whether browsing history is enabled for the given object
  *
  * @param obj The web object
  *
@@ -4936,6 +6094,8 @@ EINA_DEPRECATED EAPI void      elm_edje_collection_cache_set(int size);
 EINA_DEPRECATED EAPI Eina_Bool         elm_web_history_enable_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Enables or disables the browsing history
  *
  * @param obj The web object
@@ -4947,6 +6107,8 @@ EINA_DEPRECATED EAPI Eina_Bool         elm_web_history_enable_get(const Evas_Obj
 EINA_DEPRECATED EAPI void              elm_web_history_enable_set(Evas_Object *obj, Eina_Bool enable);
 
 /**
+ * @internal
+ *
  * @brief Add an object swallowed in an item at the end of the given menu
  * widget
  *
@@ -4963,6 +6125,8 @@ EINA_DEPRECATED EAPI void              elm_web_history_enable_set(Evas_Object *o
 EINA_DEPRECATED EAPI Elm_Object_Item             *elm_menu_item_add_object(Evas_Object *obj, Elm_Object_Item *parent, Evas_Object *subobj, Evas_Smart_Cb func, const void *data);
 
 /**
+ * @internal
+ *
  * @brief Sets whether events should be passed to by a click outside
  * its area.
  *
@@ -4978,6 +6142,8 @@ EINA_DEPRECATED EAPI Elm_Object_Item             *elm_menu_item_add_object(Evas_
 EINA_DEPRECATED EAPI void                         elm_notify_repeat_events_set(Evas_Object *obj, Eina_Bool repeat);
 
 /**
+ * @internal
+ *
  * @brief Return true if events are repeat below the notify object
  * @param obj the notify object
  *
@@ -4987,6 +6153,8 @@ EINA_DEPRECATED EAPI void                         elm_notify_repeat_events_set(E
 EINA_DEPRECATED EAPI Eina_Bool                    elm_notify_repeat_events_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set if the cursor set should be searched on the theme or should use
  * the provided by the engine, only.
  *
@@ -4999,6 +6167,8 @@ EINA_DEPRECATED EAPI Eina_Bool                    elm_notify_repeat_events_get(c
 EINA_DEPRECATED EAPI void        elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only);
 
 /**
+ * @internal
+ *
  * Get the cursor engine only usage for this object cursor.
  *
  * @param obj an object with cursor already set.
@@ -5012,6 +6182,8 @@ EINA_DEPRECATED EAPI void        elm_object_cursor_engine_only_set(Evas_Object *
 EINA_DEPRECATED EAPI Eina_Bool   elm_object_cursor_engine_only_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Go to a given items level on a index widget
  *
  * @param obj The index object
@@ -5022,6 +6194,8 @@ EINA_DEPRECATED EAPI Eina_Bool   elm_object_cursor_engine_only_get(const Evas_Ob
 EINA_DEPRECATED EAPI void                  elm_index_item_go(Evas_Object *obj, int level);
 
 /**
+ * @internal
+ *
  * Enable or disable auto hiding feature for a given index widget.
  *
  * @param obj The index object
@@ -5034,6 +6208,8 @@ EINA_DEPRECATED EAPI void                  elm_index_item_go(Evas_Object *obj, i
 EINA_DEPRECATED EAPI void                  elm_index_active_set(Evas_Object *obj, Eina_Bool active);
 
 /**
+ * @internal
+ *
  * Get whether auto hiding feature is enabled or not for a given index widget.
  *
  * @param obj The index object
@@ -5046,6 +6222,8 @@ EINA_DEPRECATED EAPI void                  elm_index_active_set(Evas_Object *obj
 EINA_DEPRECATED EAPI Eina_Bool             elm_index_active_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Append a new item, on a given index widget, <b>after the item
  * having @p relative as data</b>.
  *
@@ -5053,7 +6231,7 @@ EINA_DEPRECATED EAPI Eina_Bool             elm_index_active_get(const Evas_Objec
  * @param letter Letter under which the item should be indexed
  * @param item The item data to set for the index's item
  * @param relative The index item to be the predecessor of this new one
- * @return A handle to the item added or @c NULL, on errors 
+ * @return A handle to the item added or @c NULL, on errors
  *
  * Despite the most common usage of the @p letter argument is for
  * single char strings, one could use arbitrary strings as index
@@ -5070,6 +6248,8 @@ EINA_DEPRECATED EAPI Eina_Bool             elm_index_active_get(const Evas_Objec
 EINA_DEPRECATED EAPI Elm_Object_Item      *elm_index_item_append_relative(Evas_Object *obj, const char *letter, const void *item, const Elm_Object_Item *relative);
 
 /**
+ * @internal
+ *
  * Prepend a new item, on a given index widget, <b>after the item
  * having @p relative as data</b>.
  *
@@ -5077,7 +6257,7 @@ EINA_DEPRECATED EAPI Elm_Object_Item      *elm_index_item_append_relative(Evas_O
  * @param letter Letter under which the item should be indexed
  * @param item The item data to set for the index's item
  * @param relative The index item to be the successor of this new one
- * @return A handle to the item added or @c NULL, on errors 
+ * @return A handle to the item added or @c NULL, on errors
  *
  * Despite the most common usage of the @p letter argument is for
  * single char strings, one could use arbitrary strings as index
@@ -5094,6 +6274,8 @@ EINA_DEPRECATED EAPI Elm_Object_Item      *elm_index_item_append_relative(Evas_O
 EINA_DEPRECATED EAPI Elm_Object_Item      *elm_index_item_prepend_relative(Evas_Object *obj, const char *letter, const void *item, const Elm_Object_Item *relative);
 
 /**
+ * @internal
+ *
  * Set the transparency state of a window.
  *
  * Use elm_win_alpha_set() instead.
@@ -5107,6 +6289,8 @@ EINA_DEPRECATED EAPI Elm_Object_Item      *elm_index_item_prepend_relative(Evas_
 EINA_DEPRECATED EAPI void                  elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent);
 
 /**
+ * @internal
+ *
  * Get the transparency state of a window.
  *
  * @param obj The window object
@@ -5118,6 +6302,8 @@ EINA_DEPRECATED EAPI void                  elm_win_transparent_set(Evas_Object *
 EINA_DEPRECATED EAPI Eina_Bool             elm_win_transparent_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the theme for all elementary using applications on the current display
  *
  * @param theme The name of the theme to use. Format same as the ELM_THEME
@@ -5127,6 +6313,8 @@ EINA_DEPRECATED EAPI Eina_Bool             elm_win_transparent_get(const Evas_Ob
 EINA_DEPRECATED EAPI void             elm_theme_all_set(const char *theme);
 
 /**
+ * @internal
+ *
  * Returns the Evas_Object that represents the content area.
  *
  * @param obj The conformant object.
@@ -5136,6 +6324,8 @@ EINA_DEPRECATED EAPI void             elm_theme_all_set(const char *theme);
 EINA_DEPRECATED EAPI Evas_Object                 *elm_conformant_content_area_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set if the object is (up/down) resizable.
  *
  * @param obj The image object
@@ -5155,6 +6345,8 @@ EINA_DEPRECATED EAPI Evas_Object                 *elm_conformant_content_area_ge
 EINA_DEPRECATED EAPI void             elm_image_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down);
 
 /**
+ * @internal
+ *
  * Get if the object is (up/down) resizable.
  *
  * @param obj The image object
@@ -5168,6 +6360,8 @@ EINA_DEPRECATED EAPI void             elm_image_scale_set(Evas_Object *obj, Eina
 EINA_DEPRECATED EAPI void             elm_image_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down);
 
 /**
+ * @internal
+ *
  * Set if the object is (up/down) resizable.
  *
  * @param obj The icon object
@@ -5187,6 +6381,8 @@ EINA_DEPRECATED EAPI void             elm_image_scale_get(const Evas_Object *obj
 EINA_DEPRECATED EAPI void                  elm_icon_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down);
 
 /**
+ * @internal
+ *
  * Get if the object is (up/down) resizable.
  *
  * @param obj The icon object
@@ -5200,6 +6396,8 @@ EINA_DEPRECATED EAPI void                  elm_icon_scale_set(Evas_Object *obj,
 EINA_DEPRECATED EAPI void                  elm_icon_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down);
 
 /**
+ * @internal
+ *
  * Enable or disable preloading of the icon
  *
  * @param obj The icon object
@@ -5209,6 +6407,8 @@ EINA_DEPRECATED EAPI void                  elm_icon_scale_get(const Evas_Object
 EINA_DEPRECATED EAPI void                  elm_icon_preload_set(Evas_Object *obj, Eina_Bool disable);
 
 /**
+ * @internal
+ *
  * Returns the last selected item, for a given index widget.
  *
  * @param obj The index object.
@@ -5220,6 +6420,8 @@ EINA_DEPRECATED EAPI void                  elm_icon_preload_set(Evas_Object *obj
 EINA_DEPRECATED EAPI Elm_Object_Item      *elm_index_item_selected_get(const Evas_Object *obj, int level);
 
 /**
+ * @internal
+ *
  * Get the value of shrink_mode state.
  *
  * @deprecated elm_multibuttonentry_expanded_get()
@@ -5227,6 +6429,8 @@ EINA_DEPRECATED EAPI Elm_Object_Item      *elm_index_item_selected_get(const Eva
 EINA_DEPRECATED EAPI int                        elm_multibuttonentry_shrink_mode_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set/Unset the multibuttonentry to shrink mode state of single line
  *
  * @deprecated elm_multibuttonentry_expanded_set()
@@ -5234,6 +6438,8 @@ EINA_DEPRECATED EAPI int                        elm_multibuttonentry_shrink_mode
 EINA_DEPRECATED EAPI void                       elm_multibuttonentry_shrink_mode_set(Evas_Object *obj, int shrink_mode);
 
 /**
+ * @internal
+ *
  * Get the guide text
  *
  * @param obj The multibuttonentry object
@@ -5244,6 +6450,8 @@ EINA_DEPRECATED EAPI void                       elm_multibuttonentry_shrink_mode
 EINA_DEPRECATED EAPI const char                *elm_multibuttonentry_guide_text_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the guide text
  *
  * @param obj The multibuttonentry object
@@ -5254,6 +6462,8 @@ EINA_DEPRECATED EAPI const char                *elm_multibuttonentry_guide_text_
 EINA_DEPRECATED EAPI void                       elm_multibuttonentry_guide_text_set(Evas_Object *obj, const char *guidetext);
 
 /**
+ * @internal
+ *
  * Make the elementary object and its children to be unfocusable
  * (or focusable).
  *
@@ -5276,6 +6486,8 @@ EINA_DEPRECATED EAPI void                       elm_multibuttonentry_guide_text_
 EINA_DEPRECATED EAPI void                 elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable);
 
 /**
+ * @internal
+ *
  * Get whether an Elementary object and its children are unfocusable or not.
  *
  * @param obj The Elementary object to get the information from
@@ -5289,6 +6501,8 @@ EINA_DEPRECATED EAPI void                 elm_object_tree_unfocusable_set(Evas_O
 EINA_DEPRECATED EAPI Eina_Bool            elm_object_tree_unfocusable_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Animatedly bring in, to the visible are of a genlist, a given
  * item on it.
  *
@@ -5297,6 +6511,8 @@ EINA_DEPRECATED EAPI Eina_Bool            elm_object_tree_unfocusable_get(const
 EINA_DEPRECATED EAPI void elm_genlist_item_top_bring_in(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Animatedly bring in, to the visible are of a genlist, a given
  * item on it.
  *
@@ -5305,6 +6521,8 @@ EINA_DEPRECATED EAPI void elm_genlist_item_top_bring_in(Elm_Object_Item *it);
 EINA_DEPRECATED EAPI void elm_genlist_item_middle_bring_in(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Show the portion of a genlist's internal list containing a given
  * item, immediately.
  *
@@ -5316,6 +6534,8 @@ EINA_DEPRECATED EAPI void elm_genlist_item_middle_bring_in(Elm_Object_Item *it);
 EINA_DEPRECATED EAPI void                          elm_genlist_item_top_show(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Show the portion of a genlist's internal list containing a given
  * item, immediately.
  *
@@ -5327,6 +6547,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_item_top_show(Elm
 EINA_DEPRECATED EAPI void                          elm_genlist_item_middle_show(Elm_Object_Item *it);
 
 /**
+ * @internal
+ *
  * Enable or disable round mode.
  *
  * @param obj The diskselector object.
@@ -5344,6 +6566,8 @@ EINA_DEPRECATED EAPI void                          elm_genlist_item_middle_show(
 EINA_DEPRECATED EAPI void                   elm_diskselector_round_set(Evas_Object *obj, Eina_Bool round);
 
 /**
+ * @internal
+ *
  * Set whether items on a given gengrid widget are to get their
  * selection callbacks issued for @b every subsequent selection
  * click on them or just for the first click.
@@ -5365,6 +6589,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_round_set(Evas_Obje
 EINA_DEPRECATED EAPI void                          elm_gengrid_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
 
 /**
+ * @internal
+ *
  * Get whether items on a given gengrid widget have their selection
  * callbacks issued for @b every subsequent selection click on them
  * or just for the first click.
@@ -5379,6 +6605,8 @@ EINA_DEPRECATED EAPI void                          elm_gengrid_always_select_mod
 EINA_DEPRECATED EAPI Eina_Bool                     elm_gengrid_always_select_mode_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set whether items on a given gengrid widget can be selected or not.
  *
  * @param obj The gengrid object
@@ -5396,6 +6624,8 @@ EINA_DEPRECATED EAPI Eina_Bool                     elm_gengrid_always_select_mod
 EINA_DEPRECATED EAPI void                          elm_gengrid_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
 
 /**
+ * @internal
+ *
  * Get whether items on a given gengrid widget can be selected or
  * not.
  *
@@ -5409,6 +6639,8 @@ EINA_DEPRECATED EAPI void                          elm_gengrid_no_select_mode_se
 EINA_DEPRECATED EAPI Eina_Bool                     elm_gengrid_no_select_mode_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Get the side labels max length.
  *
  * @see elm_diskselector_side_text_max_length_set() for details.
@@ -5422,6 +6654,8 @@ EINA_DEPRECATED EAPI Eina_Bool                     elm_gengrid_no_select_mode_ge
 EINA_DEPRECATED EAPI int                    elm_diskselector_side_label_length_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the side labels max length.
  *
  * @param obj The diskselector object.
@@ -5449,6 +6683,8 @@ EINA_DEPRECATED EAPI int                    elm_diskselector_side_label_length_g
 EINA_DEPRECATED EAPI void                   elm_diskselector_side_label_length_set(Evas_Object *obj, int len);
 
 /**
+ * @internal
+ *
  * Set whether the toolbar should always have an item selected.
  *
  * @param obj The toolbar object.
@@ -5468,6 +6704,8 @@ EINA_DEPRECATED EAPI void                   elm_diskselector_side_label_length_s
 EINA_DEPRECATED EAPI void                         elm_toolbar_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
 
 /**
+ * @internal
+ *
  * Get whether the toolbar should always have an item selected.
  *
  * @param obj The toolbar object.
@@ -5481,6 +6719,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_always_select_mode
 EINA_DEPRECATED EAPI Eina_Bool                    elm_toolbar_always_select_mode_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set whether the toolbar items' should be selected by the user or not.
  *
  * @param obj The toolbar object.
@@ -5500,6 +6740,8 @@ EINA_DEPRECATED EAPI Eina_Bool                    elm_toolbar_always_select_mode
 EINA_DEPRECATED EAPI void                         elm_toolbar_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
 
 /**
+ * @internal
+ *
  * Set whether the toolbar items' should be selected by the user or not.
  *
  * @param obj The toolbar object.
@@ -5512,7 +6754,9 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_no_select_mode_set
  */
 EINA_DEPRECATED EAPI Eina_Bool                    elm_toolbar_no_select_mode_get(const Evas_Object *obj);
 
-/*
+/**
+ * @internal
+ *
  * Set the interval on time updates for a user mouse button hold
  * on clock widgets' time edition.
  *
@@ -5540,6 +6784,8 @@ EINA_DEPRECATED EAPI Eina_Bool                    elm_toolbar_no_select_mode_get
 EINA_DEPRECATED EAPI void              elm_clock_interval_set(Evas_Object *obj, double interval);
 
 /**
+ * @internal
+ *
  * Get the interval on time updates for a user mouse button hold
  * on clock widgets' time edition.
  *
@@ -5551,6 +6797,8 @@ EINA_DEPRECATED EAPI void              elm_clock_interval_set(Evas_Object *obj,
 EINA_DEPRECATED EAPI double            elm_clock_interval_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set what digits of the given clock widget should be editable
  * when in edition mode.
  *
@@ -5567,7 +6815,9 @@ EINA_DEPRECATED EAPI double            elm_clock_interval_get(const Evas_Object
 EINA_DEPRECATED EAPI void              elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Edit_Mode digedit);
 
 /**
- * Retrieve what digits of the given clock widget should be
+ * @internal
+ *
+ * Get what digits of the given clock widget should be
  * editable when in edition mode.
  *
  * @param obj The clock object
@@ -5578,7 +6828,9 @@ EINA_DEPRECATED EAPI void              elm_clock_digit_edit_set(Evas_Object *obj
  */
 EINA_DEPRECATED EAPI Elm_Clock_Edit_Mode elm_clock_digit_edit_get(const Evas_Object *obj);
 
-/*
+/**
+ * @internal
+ *
  * Queries whether it's possible to go back in history
  *
  * @param obj The web object
@@ -5590,6 +6842,8 @@ EINA_DEPRECATED EAPI Elm_Clock_Edit_Mode elm_clock_digit_edit_get(const Evas_Obj
 EINA_DEPRECATED EAPI Eina_Bool         elm_web_backward_possible(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Queries whether it's possible to go forward in history
  *
  * @param obj The web object
@@ -5602,6 +6856,8 @@ EINA_DEPRECATED EAPI Eina_Bool         elm_web_backward_possible(Evas_Object *ob
 EINA_DEPRECATED EAPI Eina_Bool         elm_web_forward_possible(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Queries whether it's possible to jump the given number of steps
  *
  * @deprecated elm_web_navigate_possible_get();
@@ -5610,6 +6866,8 @@ EINA_DEPRECATED EAPI Eina_Bool         elm_web_forward_possible(Evas_Object *obj
 EINA_DEPRECATED EAPI Eina_Bool         elm_web_navigate_possible(Evas_Object *obj, int steps);
 
 /**
+ * @internal
+ *
  * @brief Set the content of the scroller widget (the object to be scrolled around).
  *
  * @param obj The scroller object
@@ -5623,6 +6881,8 @@ EINA_DEPRECATED EAPI Eina_Bool         elm_web_navigate_possible(Evas_Object *ob
 EINA_DEPRECATED EAPI void         elm_scroller_content_set(Evas_Object *obj, Evas_Object *child);
 
 /**
+ * @internal
+ *
  * @brief Get the content of the scroller widget
  *
  * @param obj The slider object
@@ -5636,6 +6896,8 @@ EINA_DEPRECATED EAPI void         elm_scroller_content_set(Evas_Object *obj, Eva
 EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * @brief Unset the content of the scroller widget
  *
  * @param obj The slider object
@@ -5649,6 +6911,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_get(const Evas_Object *ob
 EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_unset(Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the shrink state of toolbar @p obj.
  *
  * @param obj The toolbar object.
@@ -5665,6 +6929,8 @@ EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_unset(Evas_Object *obj);
 EINA_DEPRECATED EAPI void                         elm_toolbar_mode_shrink_set(Evas_Object *obj, Elm_Toolbar_Shrink_Mode shrink_mode);
 
 /**
+ * @internal
+ *
  * Get the shrink mode of toolbar @p obj.
  *
  * @param obj The toolbar object.
@@ -5677,6 +6943,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_mode_shrink_set(Ev
 EINA_DEPRECATED EAPI Elm_Toolbar_Shrink_Mode      elm_toolbar_mode_shrink_get(const Evas_Object *obj);
 
 /**
+ * @internal
+ *
  * Set the text to be shown in a given toolbar item's tooltips.
  *
  * @param it toolbar item.
@@ -5693,6 +6961,8 @@ EINA_DEPRECATED EAPI Elm_Toolbar_Shrink_Mode      elm_toolbar_mode_shrink_get(co
 EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_text_set(Elm_Object_Item *it, const char *text);
 
 /**
+ * @internal
+ *
  * Enable or disable always select mode on the list object.
  *
  * @param obj The list object
@@ -5715,6 +6985,8 @@ EINA_DEPRECATED EAPI void                         elm_toolbar_item_tooltip_text_
 EINA_DEPRECATED EAPI void                         elm_list_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
 
 /**
+ * @internal
+ *
  * Get a value whether always select mode is enabled or not, meaning that
  * an item will always call its callback function, even if already selected.
  *
@@ -5729,3 +7001,304 @@ EINA_DEPRECATED EAPI void                         elm_list_always_select_mode_se
  */
 EINA_DEPRECATED EAPI Eina_Bool                    elm_list_always_select_mode_get(const Evas_Object *obj);
 
+/**
+ * @internal
+ *
+ * Get the real Evas object created to implement the view of a
+ * given genlist item
+ *
+ * @param it The genlist item.
+ * @return the Evas object implementing this item's view.
+ *
+ * This returns the actual Evas object used to implement the
+ * specified genlist item's view. This may be @c NULL, as it may
+ * not have been created or may have been deleted, at any time, by
+ * the genlist. <b>Do not modify this object</b> (move, resize,
+ * show, hide, etc.), as the genlist is controlling it. This
+ * function is for querying, emitting custom signals or hooking
+ * lower level callbacks for events on that object. Do not delete
+ * this object under any circumstances.
+ *
+ * @see elm_object_item_data_get()
+ * @deprecated No more support. If you need to emit signal to item's edje object, use elm_object_item_signal_emit().
+ *
+ */
+EINA_DEPRECATED EAPI const Evas_Object            *elm_genlist_item_object_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Set the always select mode.
+ *
+ * @param obj The genlist object
+ * @param always_select The always select mode (@c EINA_TRUE = on, @c
+ * EINA_FALSE = off). Default is @c EINA_FALSE.
+ *
+ * Items will only call their selection func and callback when first
+ * becoming selected. Any further clicks will do nothing, unless you
+ * enable always select with elm_genlist_always_select_mode_set().
+ * This means that, even if selected, every click will make the selected
+ * callbacks be called.
+ *
+ * @deprecated use elm_genlist_select_mode_set(obj, ELM_OBJECT_SELECT_MODE_ALWAYS); instead. use elm_genlist_select_mode_set(obj, ELM_OBJECT_SELECT_MODE_DEFAULT); for normal mode.
+ *
+ */
+EINA_DEPRECATED EAPI void                          elm_genlist_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
+
+
+/**
+ * @internal
+ *
+ * Get the always select mode.
+ *
+ * @param obj The genlist object
+ * @return The always select mode
+ * (@c EINA_TRUE = on, @c EINA_FALSE = off)
+ *
+ * @deprecated use elm_genlist_select_mode_get instead.
+ *
+ */
+EINA_DEPRECATED EAPI Eina_Bool                     elm_genlist_always_select_mode_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * Enable/disable the no select mode.
+ *
+ * @param obj The genlist object
+ * @param no_select The no select mode
+ * (EINA_TRUE = on, EINA_FALSE = off)
+ *
+ * This will turn off the ability to select items entirely and they
+ * will neither appear selected nor call selected callback functions.
+ *
+ * @deprecated use elm_genlist_select_mode_set(obj, ELM_OBJECT_SELECT_MODE_NONE); instead. use elm_genlist_select_mode_set(obj, ELM_OBJECT_SELECT_MODE_DEFAULT); for normal mode.
+ *
+ */
+EINA_DEPRECATED EAPI void                          elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
+
+/**
+ * @internal
+ *
+ * Get whether the no select mode is enabled.
+ *
+ * @param obj The genlist object
+ * @return The no select mode
+ * (@c EINA_TRUE = on, @c EINA_FALSE = off)
+ *
+ * @deprecated use elm_genlist_select_mode_get instead.
+ *
+ */
+EINA_DEPRECATED EAPI Eina_Bool                     elm_genlist_no_select_mode_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * Enable/disable compress mode.
+ *
+ * @param obj The genlist object
+ * @param compress The compress mode
+ * (@c EINA_TRUE = on, @c EINA_FALSE = off). Default is @c EINA_FALSE.
+ *
+ * This will enable the compress mode where items are "compressed"
+ * horizontally to fit the genlist scrollable viewport width. This is
+ * special for genlist.  Do not rely on
+ * elm_genlist_mode_set() being set to @c ELM_LIST_COMPRESS to
+ * work as genlist needs to handle it specially.
+ *
+ * @deprecated elm_genlist_mode_set(obj, ELM_LIST_COMPRESS)
+ */
+EINA_DEPRECATED EAPI void                          elm_genlist_compress_mode_set(Evas_Object *obj, Eina_Bool compress);
+
+/**
+ * @internal
+ *
+ * Sets the display only state of an item.
+ *
+ * @param it The item
+ * @param display_only @c EINA_TRUE if the item is display only, @c
+ * EINA_FALSE otherwise.
+ *
+ * A display only item cannot be selected or unselected. It is for
+ * display only and not selecting or otherwise clicking, dragging
+ * etc. by the user, thus finger size rules will not be applied to
+ * this item.
+ *
+ * It's good to set group index items to display only state.
+ *
+ * @see elm_genlist_item_display_only_get()
+ *
+ * @deprecated elm_genlist_item_display_only_set()
+ */
+EINA_DEPRECATED EAPI void                          elm_genlist_item_display_only_set(Elm_Object_Item *it, Eina_Bool display_only);
+
+/**
+ * @internal
+ *
+ * Get the display only state of an item
+ *
+ * @param it The item
+ * @return @c EINA_TRUE if the item is display only, @c
+ * EINA_FALSE otherwise.
+ *
+ * @see elm_genlist_item_display_only_set()
+ *
+ * @deprecated elm_genlist_item_display_only_get()
+ */
+EINA_DEPRECATED EAPI Eina_Bool                     elm_genlist_item_display_only_get(const Elm_Object_Item *it);
+
+/**
+ * @internal
+ *
+ * Get whether the compress mode is enabled.
+ *
+ * @param obj The genlist object
+ * @return The compress mode
+ * (@c EINA_TRUE = on, @c EINA_FALSE = off)
+ *
+ * @deprecated elm_genlsit_mode_get()
+ */
+EINA_DEPRECATED EAPI Eina_Bool                     elm_genlist_compress_mode_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * Enable/disable height-for-width mode.
+ *
+ * @param obj The genlist object
+ * @param height_for_width The height-for-width mode (@c EINA_TRUE = on,
+ * @c EINA_FALSE = off). Default is @c EINA_FALSE.
+ *
+ * With height-for-width mode the item width will be fixed (restricted
+ * to a minimum of) to the list width when calculating its size in
+ * order to allow the height to be calculated based on it. This allows,
+ * for instance, text block to wrap lines if the Edje part is
+ * configured with "text.min: 0 1".
+ *
+ * @note This mode will make list resize slower as it will have to
+ *       recalculate every item height again whenever the list width
+ *       changes!
+ *
+ * @note When height-for-width mode is enabled, it also enables
+ *       compress mode (see elm_genlist_compress_mode_set()) and
+ *       disables homogeneous (see elm_genlist_homogeneous_set()).
+ *
+ * @deprecated elm_genlist_mode_set(obj, ELM_LIST_COMPRESS)
+ */
+EINA_DEPRECATED EAPI void                          elm_genlist_height_for_width_mode_set(Evas_Object *obj, Eina_Bool height_for_width);
+
+/**
+ * @internal
+ *
+ * Get whether the height-for-width mode is enabled.
+ *
+ * @param obj The genlist object
+ * @return The height-for-width mode (@c EINA_TRUE = on, @c EINA_FALSE =
+ * off)
+ *
+ * @deprecated elm_genlist_mode_set(obj, ELM_LIST_COMPRESS)
+ */
+EINA_DEPRECATED EAPI Eina_Bool                     elm_genlist_height_for_width_mode_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * Activate a genlist mode on an item
+ *
+ * @param it The genlist item
+ * @param mode_type Mode name
+ * @param mode_set Boolean to define set or unset mode.
+ *
+ * A genlist mode is a different way of selecting an item. Once a mode is
+ * activated on an item, any other selected item is immediately unselected.
+ * This feature provides an easy way of implementing a new kind of animation
+ * for selecting an item, without having to entirely rewrite the item style
+ * theme. However, the elm_genlist_selected_* API can't be used to get what
+ * item is activate for a mode.
+ *
+ * The current item style will still be used, but applying a genlist mode to
+ * an item will select it using a different kind of animation.
+ *
+ * The current active item for a mode can be found by
+ * elm_genlist_decorated_item_get().
+ *
+ * The characteristics of genlist mode are:
+ * - Only one mode can be active at any time, and for only one item.
+ * - Genlist handles deactivating other items when one item is activated.
+ * - A mode is defined in the genlist theme (edc), and more modes can easily
+ *   be added.
+ * - A mode style and the genlist item style are different things. They
+ *   can be combined to provide a default style to the item, with some kind
+ *   of animation for that item when the mode is activated.
+ *
+ * When a mode is activated on an item, a new view for that item is created.
+ * The theme of this mode defines the animation that will be used to transit
+ * the item from the old view to the new view. This second (new) view will be
+ * active for that item while the mode is active on the item, and will be
+ * destroyed after the mode is totally deactivated from that item.
+ *
+ * @deprecated elm_genlist_item_decorate_mode_set()
+ */
+EINA_DEPRECATED EAPI void                          elm_genlist_item_mode_set(Elm_Object_Item *it, const char *mode_type, Eina_Bool mode_set);
+
+/**
+ * @internal
+ *
+ * Get the last (or current) genlist mode used.
+ *
+ * @param obj The genlist object
+ *
+ * This function just returns the name of the last used genlist mode. It will
+ * be the current mode if it's still active.
+ *
+ * @deprecated elm_genlist_item_decorate_mode_get()
+ */
+EINA_DEPRECATED EAPI const char                   *elm_genlist_mode_type_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * Get active genlist mode item
+ *
+ * @param obj The genlist object
+ * @return The active item for that current mode. Or @c NULL if no item is
+ * activated with any mode.
+ *
+ * This function returns the item that was activated with a mode, by the
+ * function elm_genlist_item_decorate_mode_set().
+ *
+ * @deprecated elm_genlist_decorated_item_get()
+ */
+EINA_DEPRECATED EAPI const Elm_Object_Item       *elm_genlist_mode_item_get(const Evas_Object *obj);
+
+/**
+ * @internal
+ *
+ * Set Genlist edit mode
+ *
+ * This sets Genlist edit mode.
+ *
+ * @param obj The Genlist object
+ * @param The edit mode status
+ * (EINA_TRUE = edit mode, EINA_FALSE = normal mode
+ *
+ * @deprecated elm_genlist_decorate_mode_set
+ */
+EINA_DEPRECATED EAPI void               elm_genlist_edit_mode_set(Evas_Object *obj, Eina_Bool edit_mode);
+
+/**
+ * @internal
+ *
+ * Get Genlist edit mode
+ *
+ * @param obj The genlist object
+ * @return The edit mode status
+ * (EINA_TRUE = edit mode, EINA_FALSE = normal mode
+ *
+ * @deprecated elm_genlist_decorate_mode_get()
+ */
+EINA_DEPRECATED EAPI Eina_Bool          elm_genlist_edit_mode_get(const Evas_Object *obj);
+
+/**
+ * @}
+ */