tizen 2.4 release
[framework/uifw/elementary.git] / src / lib / elm_hover_legacy.h
1 /**
2  * @brief Adds a hover object to @p parent
3  *
4  * @param parent The parent object
5  * @return The hover object or NULL if one could not be created
6  *
7  * @ingroup Hover
8  */
9 EAPI Evas_Object *elm_hover_add(Evas_Object *parent);
10
11 /**
12  * @brief Sets the parent object for the hover.
13  *
14  * @param obj The hover object
15  * @param parent The object to locate the hover over.
16  *
17  * This function will cause the hover to take up the entire space that the
18  * parent object fills.
19  *
20  * @ingroup Hover
21  */
22 EAPI void         elm_hover_parent_set(Evas_Object *obj, Evas_Object *parent);
23
24 /**
25  * @brief Get the parent object for the hover.
26  *
27  * @param obj The hover object
28  * @return The parent object to locate the hover over.
29  *
30  * @see elm_hover_parent_set()
31  *
32  * @ingroup Hover
33  */
34 EAPI Evas_Object *elm_hover_parent_get(const Evas_Object *obj);
35
36 #include "elm_hover.eo.legacy.h"