/usr/include/elementary-1/elm_toolbar_eo.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 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | /**
* @ingroup Toolbar
*
* @{
*/
#define ELM_OBJ_TOOLBAR_CLASS elm_obj_toolbar_class_get()
const Eo_Class *elm_obj_toolbar_class_get(void) EINA_CONST;
extern EAPI Eo_Op ELM_OBJ_TOOLBAR_BASE_ID;
enum
{
ELM_OBJ_TOOLBAR_SUB_ID_ICON_SIZE_SET,
ELM_OBJ_TOOLBAR_SUB_ID_ICON_SIZE_GET,
ELM_OBJ_TOOLBAR_SUB_ID_ITEM_APPEND,
ELM_OBJ_TOOLBAR_SUB_ID_ITEM_PREPEND,
ELM_OBJ_TOOLBAR_SUB_ID_ITEM_INSERT_BEFORE,
ELM_OBJ_TOOLBAR_SUB_ID_ITEM_INSERT_AFTER,
ELM_OBJ_TOOLBAR_SUB_ID_FIRST_ITEM_GET,
ELM_OBJ_TOOLBAR_SUB_ID_LAST_ITEM_GET,
ELM_OBJ_TOOLBAR_SUB_ID_ITEM_FIND_BY_LABEL,
ELM_OBJ_TOOLBAR_SUB_ID_SELECTED_ITEM_GET,
ELM_OBJ_TOOLBAR_SUB_ID_MORE_ITEM_GET,
ELM_OBJ_TOOLBAR_SUB_ID_SHRINK_MODE_SET,
ELM_OBJ_TOOLBAR_SUB_ID_SHRINK_MODE_GET,
ELM_OBJ_TOOLBAR_SUB_ID_HOMOGENEOUS_SET,
ELM_OBJ_TOOLBAR_SUB_ID_HOMOGENEOUS_GET,
ELM_OBJ_TOOLBAR_SUB_ID_MENU_PARENT_SET,
ELM_OBJ_TOOLBAR_SUB_ID_MENU_PARENT_GET,
ELM_OBJ_TOOLBAR_SUB_ID_ALIGN_SET,
ELM_OBJ_TOOLBAR_SUB_ID_ALIGN_GET,
ELM_OBJ_TOOLBAR_SUB_ID_ICON_ORDER_LOOKUP_SET,
ELM_OBJ_TOOLBAR_SUB_ID_ICON_ORDER_LOOKUP_GET,
ELM_OBJ_TOOLBAR_SUB_ID_HORIZONTAL_SET,
ELM_OBJ_TOOLBAR_SUB_ID_HORIZONTAL_GET,
ELM_OBJ_TOOLBAR_SUB_ID_ITEMS_COUNT,
ELM_OBJ_TOOLBAR_SUB_ID_STANDARD_PRIORITY_SET,
ELM_OBJ_TOOLBAR_SUB_ID_STANDARD_PRIORITY_GET,
ELM_OBJ_TOOLBAR_SUB_ID_SELECT_MODE_SET,
ELM_OBJ_TOOLBAR_SUB_ID_SELECT_MODE_GET,
ELM_OBJ_TOOLBAR_SUB_ID_LAST
};
#define ELM_OBJ_TOOLBAR_ID(sub_id) (ELM_OBJ_TOOLBAR_BASE_ID + sub_id)
/**
* @def elm_obj_toolbar_icon_size_set
* @since 1.8
*
* Set the icon size, in pixels, to be used by toolbar items.
*
* @param[in] icon_size
*
* @see elm_toolbar_icon_size_set
*/
#define elm_obj_toolbar_icon_size_set(icon_size) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ICON_SIZE_SET), EO_TYPECHECK(int, icon_size)
/**
* @def elm_obj_toolbar_icon_size_get
* @since 1.8
*
* Get the icon size, in pixels, to be used by toolbar items.
*
* @param[out] ret
*
* @see elm_toolbar_icon_size_get
*/
#define elm_obj_toolbar_icon_size_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ICON_SIZE_GET), EO_TYPECHECK(int *, ret)
/**
* @def elm_obj_toolbar_item_append
* @since 1.8
*
* Append item to the toolbar.
*
* @param[in] icon
* @param[in] label
* @param[in] func
* @param[in] data
* @param[out] ret
*
* @see elm_toolbar_item_append
*/
#define elm_obj_toolbar_item_append(icon, label, func, data, ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ITEM_APPEND), EO_TYPECHECK(const char *, icon), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(const void *, data), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_item_prepend
* @since 1.8
*
* Prepend item to the toolbar.
*
* @param[in] icon
* @param[in] label
* @param[in] func
* @param[in] data
* @param[out] ret
*
* @see elm_toolbar_item_prepend
*/
#define elm_obj_toolbar_item_prepend(icon, label, func, data, ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ITEM_PREPEND), EO_TYPECHECK(const char *, icon), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(const void *, data), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_item_insert_before
* @since 1.8
*
* Insert a new item into the toolbar object before item before.
*
* @param[in] before
* @param[in] icon
* @param[in] label
* @param[in] func
* @param[in] data
* @param[out] ret
*
* @see elm_toolbar_item_insert_before
*/
#define elm_obj_toolbar_item_insert_before(before, icon, label, func, data, ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ITEM_INSERT_BEFORE), EO_TYPECHECK(Elm_Object_Item *, before), EO_TYPECHECK(const char *, icon), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(const void *, data), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_item_insert_after
* @since 1.8
*
* Insert a new item into the toolbar object after item after.
*
* @param[in] after
* @param[in] icon
* @param[in] label
* @param[in] func
* @param[in] data
* @param[out] ret
*
* @see elm_toolbar_item_insert_after
*/
#define elm_obj_toolbar_item_insert_after(after, icon, label, func, data, ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ITEM_INSERT_AFTER), EO_TYPECHECK(Elm_Object_Item *, after), EO_TYPECHECK(const char *, icon), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(const void *, data), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_first_item_get
* @since 1.8
*
* Get the first item in the given toolbar widget's list of
* items.
*
* @param[out] ret
*
* @see elm_toolbar_first_item_get
*/
#define elm_obj_toolbar_first_item_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_FIRST_ITEM_GET), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_last_item_get
* @since 1.8
*
* Get the last item in the given toolbar widget's list of
* items.
*
* @param[out] ret
*
* @see elm_toolbar_last_item_get
*/
#define elm_obj_toolbar_last_item_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_LAST_ITEM_GET), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_item_find_by_label
* @since 1.8
*
* Returns a pointer to a toolbar item by its label.
*
* @param[in] label
* @param[out] ret
*
* @see elm_toolbar_item_find_by_label
*/
#define elm_obj_toolbar_item_find_by_label(label, ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ITEM_FIND_BY_LABEL), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_selected_item_get
* @since 1.8
*
* Get the selected item.
*
* @param[out] ret
*
* @see elm_toolbar_selected_item_get
*/
#define elm_obj_toolbar_selected_item_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_SELECTED_ITEM_GET), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_more_item_get
* @since 1.8
*
* Get the more item.
*
* @param[out] ret
*
* @see elm_toolbar_more_item_get
*/
#define elm_obj_toolbar_more_item_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_MORE_ITEM_GET), EO_TYPECHECK(Elm_Object_Item **, ret)
/**
* @def elm_obj_toolbar_shrink_mode_set
* @since 1.8
*
* Set the item displaying mode of a given toolbar widget obj.
*
* @param[in] shrink_mode
*
* @see elm_toolbar_shrink_mode_set
*/
#define elm_obj_toolbar_shrink_mode_set(shrink_mode) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_SHRINK_MODE_SET), EO_TYPECHECK(Elm_Toolbar_Shrink_Mode, shrink_mode)
/**
* @def elm_obj_toolbar_shrink_mode_get
* @since 1.8
*
* Get the shrink mode of toolbar obj.
*
* @param[out] ret
*
* @see elm_toolbar_shrink_mode_get
*/
#define elm_obj_toolbar_shrink_mode_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_SHRINK_MODE_GET), EO_TYPECHECK(Elm_Toolbar_Shrink_Mode *, ret)
/**
* @def elm_obj_toolbar_homogeneous_set
* @since 1.8
*
* Enable/disable homogeneous mode.
*
* @param[in] homogeneous
*
* @see elm_toolbar_homogeneous_set
*/
#define elm_obj_toolbar_homogeneous_set(homogeneous) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_HOMOGENEOUS_SET), EO_TYPECHECK(Eina_Bool, homogeneous)
/**
* @def elm_obj_toolbar_homogeneous_get
* @since 1.8
*
* Get whether the homogeneous mode is enabled.
*
* @param[out] ret
*
* @see elm_toolbar_homogeneous_get
*/
#define elm_obj_toolbar_homogeneous_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_HOMOGENEOUS_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_toolbar_menu_parent_set
* @since 1.8
*
* Set the parent object of the toolbar items' menus.
*
* @param[in] parent
*
* @see elm_toolbar_menu_parent_set
*/
#define elm_obj_toolbar_menu_parent_set(parent) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_MENU_PARENT_SET), EO_TYPECHECK(Evas_Object *, parent)
/**
* @def elm_obj_toolbar_menu_parent_get
* @since 1.8
*
* Get the parent object of the toolbar items' menus.
*
* @param[out] ret
*
* @see elm_toolbar_menu_parent_get
*/
#define elm_obj_toolbar_menu_parent_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_MENU_PARENT_GET), EO_TYPECHECK(Evas_Object **, ret)
/**
* @def elm_obj_toolbar_align_set
* @since 1.8
*
* Set the alignment of the items.
*
* @param[in] align
*
* @see elm_toolbar_align_set
*/
#define elm_obj_toolbar_align_set(align) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ALIGN_SET), EO_TYPECHECK(double, align)
/**
* @def elm_obj_toolbar_align_get
* @since 1.8
*
* Get the alignment of the items.
*
* @param[out] ret
*
* @see elm_toolbar_align_get
*/
#define elm_obj_toolbar_align_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ALIGN_GET), EO_TYPECHECK(double *, ret)
/**
* @def elm_obj_toolbar_icon_order_lookup_set
* @since 1.8
*
* Sets icon lookup order, for toolbar items' icons.
*
* @param[in] order
*
* @see elm_toolbar_icon_order_lookup_set
*/
#define elm_obj_toolbar_icon_order_lookup_set(order) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ICON_ORDER_LOOKUP_SET), EO_TYPECHECK(Elm_Icon_Lookup_Order, order)
/**
* @def elm_obj_toolbar_icon_order_lookup_get
* @since 1.8
*
* Get the icon lookup order.
*
* @param[out] ret
*
* @see elm_toolbar_icon_order_lookup_get
*/
#define elm_obj_toolbar_icon_order_lookup_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ICON_ORDER_LOOKUP_GET), EO_TYPECHECK(Elm_Icon_Lookup_Order *, ret)
/**
* @def elm_obj_toolbar_horizontal_set
* @since 1.8
*
* Change a toolbar's orientation
*
* @param[in] horizontal
*
* @see elm_toolbar_horizontal_set
*/
#define elm_obj_toolbar_horizontal_set(horizontal) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_HORIZONTAL_SET), EO_TYPECHECK(Eina_Bool, horizontal)
/**
* @def elm_obj_toolbar_horizontal_get
* @since 1.8
*
* Get a toolbar's orientation
*
* @param[out] ret
*
* @see elm_toolbar_horizontal_get
*/
#define elm_obj_toolbar_horizontal_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_HORIZONTAL_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_toolbar_items_count
* @since 1.8
*
* Get the number of items in a toolbar
*
* @param[out] ret
*
* @see elm_toolbar_items_count
*/
#define elm_obj_toolbar_items_count(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_ITEMS_COUNT), EO_TYPECHECK(unsigned int *, ret)
/**
* @def elm_obj_toolbar_standard_priority_set
* @since 1.8
*
* Set the standard priority of visible items in a toolbar
*
* @param[in] priority
*
* @see elm_toolbar_standard_priority_set
*/
#define elm_obj_toolbar_standard_priority_set(priority) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_STANDARD_PRIORITY_SET), EO_TYPECHECK(int, priority)
/**
* @def elm_obj_toolbar_standard_priority_get
* @since 1.8
*
* Get the standard_priority of visible items in a toolbar
*
* @param[out] ret
*
* @see elm_toolbar_standard_priority_get
*/
#define elm_obj_toolbar_standard_priority_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_STANDARD_PRIORITY_GET), EO_TYPECHECK(int *, ret)
/**
* @def elm_obj_toolbar_select_mode_set
* @since 1.8
*
* No description supplied by the EAPI.
*
* @param[in] mode
*
* @see elm_toolbar_select_mode_set
*/
#define elm_obj_toolbar_select_mode_set(mode) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_SELECT_MODE_SET), EO_TYPECHECK(Elm_Object_Select_Mode, mode)
/**
* @def elm_obj_toolbar_select_mode_get
* @since 1.8
*
* No description supplied by the EAPI.
*
* @param[out] ret
*
* @see elm_toolbar_select_mode_get
*/
#define elm_obj_toolbar_select_mode_get(ret) ELM_OBJ_TOOLBAR_ID(ELM_OBJ_TOOLBAR_SUB_ID_SELECT_MODE_GET), EO_TYPECHECK(Elm_Object_Select_Mode *, ret)
/**
* @}
*/
|