/usr/include/elementary-1/elc_multibuttonentry_common.h is in libelementary-dev 1.8.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /**
* @brief Callback to be invoked when an item is added to the multibuttonentry.
*
* @param obj The parent object
* @param item_label The label corresponding to the added item.
* @param item_data data specific to this item.
* @param data data specific to the multibuttonentry.
*
* @return EINA_TRUE
* EINA_FALSE otherwise.
*
* @ingroup Multibuttonentry
*/
typedef Eina_Bool (*Elm_Multibuttonentry_Item_Filter_Cb)(Evas_Object *obj, const char *item_label, void *item_data, void *data);
|