lst = elm_list_add(win);
li = elm_list_item_append(lst, "Hello", NULL, NULL, NULL, NULL);
elm_list_item_tooltip_content_cb_set(li, _tt_item_label, NULL, NULL);
- elm_list_item_tooltip_window_mode(li, EINA_TRUE);
+ elm_list_item_tooltip_window_mode_set(li, EINA_TRUE);
li = elm_list_item_append(lst, "Icon Tooltip", NULL, NULL, NULL, NULL);
elm_list_item_tooltip_content_cb_set(li, _tt_item_icon, NULL, NULL);
li = elm_list_item_append(lst, "Big Icon Tooltip", NULL, NULL, NULL, NULL);
elm_list_item_tooltip_content_cb_set(li, _tt_item_icon2, NULL, NULL);
elm_list_item_tooltip_style_set(li, "transparent");
- elm_list_item_tooltip_window_mode(li, EINA_TRUE);
+ elm_list_item_tooltip_window_mode_set(li, EINA_TRUE);
li = elm_list_item_append(lst, "Insanely Big Icon Tooltip", NULL, NULL, NULL, NULL);
elm_list_item_tooltip_content_cb_set(li, _tt_item_icon3, NULL, NULL);
elm_list_item_tooltip_style_set(li, "transparent");
- elm_list_item_tooltip_window_mode(li, EINA_TRUE);
+ elm_list_item_tooltip_window_mode_set(li, EINA_TRUE);
evas_object_size_hint_weight_set(lst, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(lst, EVAS_HINT_FILL, EVAS_HINT_FILL);
* This function allows a tooltip to expand beyond its parant window's canvas.
* It will instead be limited only by the size of the display.
*/
- EAPI Eina_Bool elm_gengrid_item_tooltip_window_mode(Elm_Gengrid_Item *item, Eina_Bool disable);
+ EAPI Eina_Bool elm_gengrid_item_tooltip_window_mode_set(Elm_Gengrid_Item *item, Eina_Bool disable);
/**
* @brief Retrieve size restriction state of an object's tooltip
* @param item The tooltip's anchor object
* its parant window's canvas.
* It will instead be limited only by the size of the display.
*/
- EAPI Eina_Bool elm_gengrid_item_tooltip_window_moded_get(const Elm_Gengrid_Item *item);
+ EAPI Eina_Bool elm_gengrid_item_tooltip_window_mode_get(const Elm_Gengrid_Item *item);
/**
* Set the type of mouse pointer/cursor decoration to be shown,
* when the mouse pointer is over the given gengrid widget item
* This function allows a tooltip to expand beyond its parant window's canvas.
* It will instead be limited only by the size of the display.
*/
- EAPI Eina_Bool elm_list_item_tooltip_window_mode(Elm_List_Item *item, Eina_Bool disable) EINA_ARG_NONNULL(1);
+ EAPI Eina_Bool elm_list_item_tooltip_window_mode_set(Elm_List_Item *item, Eina_Bool disable) EINA_ARG_NONNULL(1);
/**
* @brief Retrieve size restriction state of an object's tooltip
* @param obj The tooltip's anchor object
* its parant window's canvas.
* It will instead be limited only by the size of the display.
*/
- EAPI Eina_Bool elm_list_item_tooltip_window_moded_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
+ EAPI Eina_Bool elm_list_item_tooltip_window_mode_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
/**
* Set the content to be shown in the tooltip item.
* This function allows a tooltip to expand beyond its parant window's canvas.
* It will instead be limited only by the size of the display.
*/
- EAPI Eina_Bool elm_genlist_item_tooltip_window_mode(Elm_Genlist_Item *item, Eina_Bool disable);
+ EAPI Eina_Bool elm_genlist_item_tooltip_window_mode_set(Elm_Genlist_Item *item, Eina_Bool disable);
/**
* @brief Retrieve size restriction state of an object's tooltip
* @param item The tooltip's anchor object
* its parant window's canvas.
* It will instead be limited only by the size of the display.
*/
- EAPI Eina_Bool elm_genlist_item_tooltip_window_moded_get(const Elm_Genlist_Item *item);
+ EAPI Eina_Bool elm_genlist_item_tooltip_window_mode_get(const Elm_Genlist_Item *item);
/**
* Set the type of mouse pointer/cursor decoration to be shown,
* when the mouse pointer is over the given genlist widget item
it->tooltip.content_cb,
it->tooltip.data, NULL);
elm_widget_item_tooltip_style_set(it, it->tooltip.style);
- elm_widget_item_tooltip_window_mode(it, it->tooltip.free_size);
+ elm_widget_item_tooltip_window_mode_set(it, it->tooltip.free_size);
}
if (it->mouse_cursor)
it->tooltip.content_cb,
it->tooltip.data, NULL);
elm_widget_item_tooltip_style_set(it, it->tooltip.style);
- elm_widget_item_tooltip_window_mode(it, it->tooltip.free_size);
+ elm_widget_item_tooltip_window_mode_set(it, it->tooltip.free_size);
}
return;
}
EAPI Eina_Bool
-elm_gengrid_item_tooltip_window_mode(Elm_Gen_Item *it, Eina_Bool disable)
+elm_gengrid_item_tooltip_window_mode_set(Elm_Gen_Item *it, Eina_Bool disable)
{
ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
it->tooltip.free_size = disable;
- if (VIEW(it)) return elm_widget_item_tooltip_window_mode(it, disable);
+ if (VIEW(it)) return elm_widget_item_tooltip_window_mode_set(it, disable);
return EINA_TRUE;
}
EAPI Eina_Bool
-elm_gengrid_item_tooltip_window_moded_get(const Elm_Gen_Item *it)
+elm_gengrid_item_tooltip_window_mode_get(const Elm_Gen_Item *it)
{
ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
return it->tooltip.free_size;
it->tooltip.content_cb,
it->tooltip.data, NULL);
elm_widget_item_tooltip_style_set(it, it->tooltip.style);
- elm_widget_item_tooltip_window_mode(it, it->tooltip.free_size);
+ elm_widget_item_tooltip_window_mode_set(it, it->tooltip.free_size);
}
if (it->mouse_cursor)
it->tooltip.content_cb,
it->tooltip.data, NULL);
elm_widget_item_tooltip_style_set(it, it->tooltip.style);
- elm_widget_item_tooltip_window_mode(it, it->tooltip.free_size);
+ elm_widget_item_tooltip_window_mode_set(it, it->tooltip.free_size);
}
return;
}
EAPI Eina_Bool
-elm_genlist_item_tooltip_window_mode(Elm_Gen_Item *it, Eina_Bool disable)
+elm_genlist_item_tooltip_window_mode_set(Elm_Gen_Item *it, Eina_Bool disable)
{
ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
it->tooltip.free_size = disable;
- if (VIEW(it)) return elm_widget_item_tooltip_window_mode(it, disable);
+ if (VIEW(it)) return elm_widget_item_tooltip_window_mode_set(it, disable);
return EINA_TRUE;
}
EAPI Eina_Bool
-elm_genlist_item_tooltip_window_moded_get(const Elm_Gen_Item *it)
+elm_genlist_item_tooltip_window_mode_get(const Elm_Gen_Item *it)
{
ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, EINA_FALSE);
return it->tooltip.free_size;
}
EAPI Eina_Bool
-elm_list_item_tooltip_window_mode(Elm_List_Item *item, Eina_Bool disable)
+elm_list_item_tooltip_window_mode_set(Elm_List_Item *item, Eina_Bool disable)
{
ELM_LIST_ITEM_CHECK_DELETED_RETURN(item, EINA_FALSE);
- return elm_widget_item_tooltip_window_mode(item, disable);
+ return elm_widget_item_tooltip_window_mode_set(item, disable);
}
EAPI Eina_Bool
-elm_list_item_tooltip_window_moded_get(const Elm_List_Item *item)
+elm_list_item_tooltip_window_mode_get(const Elm_List_Item *item)
{
ELM_LIST_ITEM_CHECK_DELETED_RETURN(item, EINA_FALSE);
- return elm_widget_item_tooltip_window_moded_get(item);
+ return elm_widget_item_tooltip_window_mode_get(item);
}
EAPI void
}
EAPI Eina_Bool
-_elm_widget_item_tooltip_window_mode(Elm_Widget_Item *item, Eina_Bool disable)
+_elm_widget_item_tooltip_window_mode_set(Elm_Widget_Item *item, Eina_Bool disable)
{
ELM_WIDGET_ITEM_CHECK_OR_RETURN(item, EINA_FALSE);
return elm_object_tooltip_window_mode_set(item->view, disable);
}
EAPI Eina_Bool
-_elm_widget_item_tooltip_window_moded_get(const Elm_Widget_Item *item)
+_elm_widget_item_tooltip_window_mode_get(const Elm_Widget_Item *item)
{
ELM_WIDGET_ITEM_CHECK_OR_RETURN(item, EINA_FALSE);
return elm_object_tooltip_window_mode_get(item->view);
EAPI void _elm_widget_item_tooltip_content_cb_set(Elm_Widget_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb);
EAPI void _elm_widget_item_tooltip_unset(Elm_Widget_Item *item);
EAPI void _elm_widget_item_tooltip_style_set(Elm_Widget_Item *item, const char *style);
-EAPI Eina_Bool _elm_widget_item_tooltip_window_mode(Elm_Widget_Item *item, Eina_Bool disable);
-EAPI Eina_Bool _elm_widget_item_tooltip_window_moded_get(const Elm_Widget_Item *item);
+EAPI Eina_Bool _elm_widget_item_tooltip_window_mode_set(Elm_Widget_Item *item, Eina_Bool disable);
+EAPI Eina_Bool _elm_widget_item_tooltip_window_mode_get(const Elm_Widget_Item *item);
EAPI const char *_elm_widget_item_tooltip_style_get(const Elm_Widget_Item *item);
EAPI void _elm_widget_item_cursor_set(Elm_Widget_Item *item, const char *cursor);
EAPI const char *_elm_widget_item_cursor_get(const Elm_Widget_Item *item);
#define elm_widget_item_tooltip_style_set(item, style) \
_elm_widget_item_tooltip_style_set((Elm_Widget_Item *)item, style)
-#define elm_widget_item_tooltip_window_mode(item, disable) \
- _elm_widget_item_tooltip_window_mode((Elm_Widget_Item *)item, disable)
+#define elm_widget_item_tooltip_window_mode_set(item, disable) \
+ _elm_widget_item_tooltip_window_mode_set((Elm_Widget_Item *)item, disable)
-#define elm_widget_item_tooltip_window_moded_get(item) \
- _elm_widget_item_tooltip_window_moded_get((Elm_Widget_Item *)item)
+#define elm_widget_item_tooltip_window_mode_get(item) \
+ _elm_widget_item_tooltip_window_mode_get((Elm_Widget_Item *)item)
/**
* Convenience function to query item's tooltip style.
* @see _elm_widget_item_tooltip_style_get()