X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Flib%2Felm_tooltip.h;h=3daf1c7ea5a721ab2a99b2cc45cc1da5f838acea;hb=df949f9c4a552d857aaba20432b94273974e6851;hp=3e7a0b11a9731495b161700755cfa4139988dec7;hpb=dc51613aaddf690cb50f00eaa19b38874c6790ef;p=framework%2Fuifw%2Felementary.git diff --git a/src/lib/elm_tooltip.h b/src/lib/elm_tooltip.h index 3e7a0b1..3daf1c7 100644 --- a/src/lib/elm_tooltip.h +++ b/src/lib/elm_tooltip.h @@ -1,5 +1,6 @@ /** * @defgroup Tooltips Tooltips + * @ingroup Elementary * * The Tooltip is an (internal, for now) smart object used to show a * content in a frame on mouse hover of objects(or widgets), with @@ -26,17 +27,16 @@ typedef Evas_Object *(*Elm_Tooltip_Content_Cb)(void *data, Evas_Object *obj, Eva */ typedef Evas_Object *(*Elm_Tooltip_Item_Content_Cb)(void *data, Evas_Object *obj, Evas_Object *tooltip, void *item); -EINA_DEPRECATED EAPI double elm_tooltip_delay_get(void); -EINA_DEPRECATED EAPI Eina_Bool elm_tooltip_delay_set(double delay); - EAPI void elm_object_tooltip_show(Evas_Object *obj); EAPI void elm_object_tooltip_hide(Evas_Object *obj); -/** +/** * Set the text to be displayed inside the tooltip. * * @param obj The tooltip object. * @param text The text to be displayed. + * + * @ingroup Tooltips */ EAPI void elm_object_tooltip_text_set(Evas_Object *obj, const char *text); EAPI void elm_object_tooltip_domain_translatable_text_set(Evas_Object *obj, const char *domain, const char *text); @@ -53,6 +53,8 @@ EAPI void elm_object_tooltip_unset(Evas_Object *obj); * * @param obj an object with tooltip already set. * @param style the theme style to use (default, transparent, ...) + * + * @ingroup Tooltips */ EAPI void elm_object_tooltip_style_set(Evas_Object *obj, const char *style); @@ -62,6 +64,8 @@ EAPI void elm_object_tooltip_style_set(Evas_Object *obj, const char *styl * @param obj an object 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. + * + * @ingroup Tooltips */ EAPI const char *elm_object_tooltip_style_get(const Evas_Object *obj); @@ -73,6 +77,8 @@ EAPI const char *elm_object_tooltip_style_get(const Evas_Object *obj); * * This function allows a tooltip to expand beyond its parent window's canvas. * It will instead be limited only by the size of the display. + * + * @ingroup Tooltips */ EAPI Eina_Bool elm_object_tooltip_window_mode_set(Evas_Object *obj, Eina_Bool disable); @@ -84,6 +90,8 @@ EAPI Eina_Bool elm_object_tooltip_window_mode_set(Evas_Object *obj, Eina_Bool * This function returns whether a tooltip is allowed to expand beyond * its parent window's canvas. * It will instead be limited only by the size of the display. + * + * @ingroup Tooltips */ EAPI Eina_Bool elm_object_tooltip_window_mode_get(const Evas_Object *obj);