diff --git a/legacy/elementary/src/lib/elc_ctxpopup.h b/legacy/elementary/src/lib/elc_ctxpopup.h index fb1e5028aa..ecdf079985 100644 --- a/legacy/elementary/src/lib/elc_ctxpopup.h +++ b/legacy/elementary/src/lib/elc_ctxpopup.h @@ -77,7 +77,7 @@ enum /** - * @def ctxpopup_hover_parent_set + * @def elm_obj_ctxpopup_hover_parent_set * @since 1.8 * * @brief Set the Ctxpopup's parent @@ -89,7 +89,7 @@ enum #define elm_obj_ctxpopup_hover_parent_set(parent) ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_HOVER_PARENT_SET), EO_TYPECHECK(Evas_Object *, parent) /** - * @def ctxpopup_hover_parent_get + * @def elm_obj_ctxpopup_hover_parent_get * @since 1.8 * * @brief Get the Ctxpopup's parent @@ -101,7 +101,7 @@ enum #define elm_obj_ctxpopup_hover_parent_get(ret) ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_HOVER_PARENT_GET), EO_TYPECHECK(Evas_Object **, ret) /** - * @def ctxpopup_clear + * @def elm_obj_ctxpopup_clear * @since 1.8 * * @brief Clear all items in the given ctxpopup object. @@ -112,7 +112,7 @@ enum #define elm_obj_ctxpopup_clear() ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_CLEAR) /** - * @def ctxpopup_horizontal_set + * @def elm_obj_ctxpopup_horizontal_set * @since 1.8 * * @brief Change the ctxpopup's orientation to horizontal or vertical. @@ -124,7 +124,7 @@ enum #define elm_obj_ctxpopup_horizontal_set(horizontal) ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_HORIZONTAL_SET), EO_TYPECHECK(Eina_Bool, horizontal) /** - * @def ctxpopup_horizontal_get + * @def elm_obj_ctxpopup_horizontal_get * @since 1.8 * * @brief Get the value of current ctxpopup object's orientation. @@ -136,7 +136,7 @@ enum #define elm_obj_ctxpopup_horizontal_get(ret) ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_HORIZONTAL_GET), EO_TYPECHECK(Eina_Bool *, ret) /** - * @def ctxpopup_item_append + * @def elm_obj_ctxpopup_item_append * @since 1.8 * * @brief Add a new item to a ctxpopup object. @@ -152,7 +152,7 @@ enum #define elm_obj_ctxpopup_item_append(label, icon, func, data, ret) ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_ITEM_APPEND), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Object *, icon), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(const void *, data), EO_TYPECHECK(Elm_Object_Item **, ret) /** - * @def ctxpopup_direction_priority_set + * @def elm_obj_ctxpopup_direction_priority_set * @since 1.8 * * @brief Set the direction priority of a ctxpopup. @@ -167,7 +167,7 @@ enum #define elm_obj_ctxpopup_direction_priority_set(first, second, third, fourth) ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_DIRECTION_PRIORITY_SET), EO_TYPECHECK(Elm_Ctxpopup_Direction, first), EO_TYPECHECK(Elm_Ctxpopup_Direction, second), EO_TYPECHECK(Elm_Ctxpopup_Direction, third), EO_TYPECHECK(Elm_Ctxpopup_Direction, fourth) /** - * @def ctxpopup_direction_priority_get + * @def elm_obj_ctxpopup_direction_priority_get * @since 1.8 * * @brief Get the direction priority of a ctxpopup. @@ -182,7 +182,7 @@ enum #define elm_obj_ctxpopup_direction_priority_get(first, second, third, fourth) ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_DIRECTION_PRIORITY_GET), EO_TYPECHECK(Elm_Ctxpopup_Direction *, first), EO_TYPECHECK(Elm_Ctxpopup_Direction *, second), EO_TYPECHECK(Elm_Ctxpopup_Direction *, third), EO_TYPECHECK(Elm_Ctxpopup_Direction *, fourth) /** - * @def ctxpopup_direction_get + * @def elm_obj_ctxpopup_direction_get * @since 1.8 * * @brief Get the current direction of a ctxpopup. @@ -194,7 +194,7 @@ enum #define elm_obj_ctxpopup_direction_get(ret) ELM_OBJ_CTXPOPUP_ID(ELM_OBJ_CTXPOPUP_SUB_ID_DIRECTION_GET), EO_TYPECHECK(Elm_Ctxpopup_Direction *, ret) /** - * @def ctxpopup_dismiss + * @def elm_obj_ctxpopup_dismiss * @since 1.8 * * @brief Dismiss a ctxpopup object diff --git a/legacy/elementary/src/lib/elm_button.h b/legacy/elementary/src/lib/elm_button.h index 3a2e3d2a72..46330de037 100644 --- a/legacy/elementary/src/lib/elm_button.h +++ b/legacy/elementary/src/lib/elm_button.h @@ -85,6 +85,17 @@ enum #define ELM_OBJ_BUTTON_ID(sub_id) (ELM_OBJ_BUTTON_BASE_ID + sub_id) + +/** + * @def elm_obj_button_admits_autorepeat_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_button_admits_autorepeat_get + */ #define elm_obj_button_admits_autorepeat_get(ret) ELM_OBJ_BUTTON_ID(ELM_OBJ_BUTTON_SUB_ID_ADMITS_AUTOREPEAT_GET), EO_TYPECHECK(Eina_Bool *, ret) /** diff --git a/legacy/elementary/src/lib/elm_image.h b/legacy/elementary/src/lib/elm_image.h index 5a0c4f0399..473a7cdfd9 100644 --- a/legacy/elementary/src/lib/elm_image.h +++ b/legacy/elementary/src/lib/elm_image.h @@ -176,6 +176,18 @@ enum * @see elm_image_smooth_get */ #define elm_obj_image_smooth_get(ret) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_SMOOTH_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_image_size_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] w + * @param[out] h + * + * @see elm_image_size_get + */ #define elm_obj_image_size_get(w, h) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_OBJECT_SIZE_GET), EO_TYPECHECK(int *, w), EO_TYPECHECK(int *, h) /** @@ -409,24 +421,164 @@ enum */ #define elm_obj_image_animated_play_get(ret) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_ANIMATED_PLAY_GET), EO_TYPECHECK(Eina_Bool *, ret) +/** + * @def elm_obj_image_sizing_eval + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_obj_image_sizing_eval() ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_SIZING_EVAL) + +/** + * @def elm_obj_image_smooth_scale_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] smooth + * + * @see elm_image_smooth_scale_set + */ #define elm_obj_image_smooth_scale_set(smooth) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_SMOOTH_SCALE_SET), EO_TYPECHECK(Eina_Bool, smooth) + +/** + * @def elm_obj_image_smooth_scale_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_image_smooth_scale_get + */ #define elm_obj_image_smooth_scale_get(ret) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_SMOOTH_SCALE_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_image_fill_inside_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] fill_inside + * + * @see elm_image_fill_inside_set + */ #define elm_obj_image_fill_inside_set(fill_inside) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_FILL_INSIDE_SET), EO_TYPECHECK(Eina_Bool, fill_inside) + +/** + * @def elm_obj_image_fill_inside_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_image_fill_inside_get + */ #define elm_obj_image_fill_inside_get(ret) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_FILL_INSIDE_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_image_load_size_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] size + * + * @see elm_image_load_size_set + */ #define elm_obj_image_load_size_set(size) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_LOAD_SIZE_SET), EO_TYPECHECK(int, size) + +/** + * @def elm_obj_image_load_size_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_image_load_size_get + */ #define elm_obj_image_load_size_get(ret) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_LOAD_SIZE_GET), EO_TYPECHECK(int *, ret) + +/** + * @def elm_obj_image_resize_down_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] resize_down + * + * @see elm_image_resize_down_set + */ #define elm_obj_image_resize_down_set(resize_down) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_RESIZE_DOWN_SET), EO_TYPECHECK(Eina_Bool, resize_down) + +/** + * @def elm_obj_image_resize_down_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_image_resize_down_get + */ #define elm_obj_image_resize_down_get(ret) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_RESIZE_DOWN_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_image_resize_up_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] resize_up + * + * @see elm_image_resize_up_set + */ #define elm_obj_image_resize_up_set(resize_up) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_RESIZE_UP_SET), EO_TYPECHECK(Eina_Bool, resize_up) + +/** + * @def elm_obj_image_resize_up_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_image_resize_up_get + */ #define elm_obj_image_resize_up_get(ret) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_RESIZE_UP_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_image_scale_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] scale + * + * @see elm_image_scale_set + */ #define elm_obj_image_scale_set(scale) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_SCALE_SET), EO_TYPECHECK(double, scale) + +/** + * @def elm_obj_image_scale_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_image_scale_get + */ #define elm_obj_image_scale_get(ret) ELM_OBJ_IMAGE_ID(ELM_OBJ_IMAGE_SUB_ID_SCALE_GET), EO_TYPECHECK(double *, ret) + /** * @addtogroup Image * @{ diff --git a/legacy/elementary/src/lib/elm_interface_scrollable.h b/legacy/elementary/src/lib/elm_interface_scrollable.h index 66c0c049db..f4291272ee 100644 --- a/legacy/elementary/src/lib/elm_interface_scrollable.h +++ b/legacy/elementary/src/lib/elm_interface_scrollable.h @@ -49,12 +49,96 @@ enum }; #define ELM_OBJ_PAN_ID(sub_id) (ELM_OBJ_PAN_BASE_ID + sub_id) + +/** + * @def elm_obj_pan_pos_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * + * @see elm_pan_pos_set + */ #define elm_obj_pan_pos_set(x, y) ELM_OBJ_PAN_ID(ELM_OBJ_PAN_SUB_ID_POS_SET), EO_TYPECHECK(Evas_Coord, x), EO_TYPECHECK(Evas_Coord, y) + +/** + * @def elm_obj_pan_pos_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * + * @see elm_pan_pos_get + */ #define elm_obj_pan_pos_get(x, y) ELM_OBJ_PAN_ID(ELM_OBJ_PAN_SUB_ID_POS_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y) + +/** + * @def elm_obj_pan_pos_max_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * + * @see elm_pan_pos_max_get + */ #define elm_obj_pan_pos_max_get(x, y) ELM_OBJ_PAN_ID(ELM_OBJ_PAN_SUB_ID_POS_MAX_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y) + +/** + * @def elm_obj_pan_pos_min_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * + * @see elm_pan_pos_min_get + */ #define elm_obj_pan_pos_min_get(x, y) ELM_OBJ_PAN_ID(ELM_OBJ_PAN_SUB_ID_POS_MIN_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y) + +/** + * @def elm_obj_pan_content_size_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] w + * @param[out] h + * + * @see elm_pan_content_size_get + */ #define elm_obj_pan_content_size_get(w, h) ELM_OBJ_PAN_ID(ELM_OBJ_PAN_SUB_ID_CONTENT_SIZE_GET), EO_TYPECHECK(Evas_Coord *, w), EO_TYPECHECK(Evas_Coord *, h) + +/** + * @def elm_obj_pan_gravity_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * + * @see elm_pan_gravity_set + */ #define elm_obj_pan_gravity_set(x, y) ELM_OBJ_PAN_ID(ELM_OBJ_PAN_SUB_ID_GRAVITY_SET), EO_TYPECHECK(double, x), EO_TYPECHECK(double, y) + +/** + * @def elm_obj_pan_gravity_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * + * @see elm_pan_gravity_get + */ #define elm_obj_pan_gravity_get(x, y) ELM_OBJ_PAN_ID(ELM_OBJ_PAN_SUB_ID_GRAVITY_GET), EO_TYPECHECK(double *, x), EO_TYPECHECK(double *, y) #define ELM_SCROLLABLE_INTERFACE elm_scrollable_interface_get() @@ -118,53 +202,568 @@ enum #define ELM_SCROLLABLE_INTERFACE_ID(sub_id) (ELM_SCROLLABLE_INTERFACE_BASE_ID + sub_id) + +/** + * @def elm_scrollable_interface_objects_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] edje_object + * @param[in] hit_rectangle + * + */ #define elm_scrollable_interface_objects_set(edje_object, hit_rectangle) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_OBJECTS_SET), EO_TYPECHECK(Evas_Object *, edje_object), EO_TYPECHECK(Evas_Object *, hit_rectangle) + +/** + * @def elm_scrollable_interface_content_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] content + * + */ #define elm_scrollable_interface_content_set(content) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_SET), EO_TYPECHECK(Evas_Object *, content) + +/** + * @def elm_scrollable_interface_extern_pan_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] pan + * + */ #define elm_scrollable_interface_extern_pan_set(pan) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_EXTERN_PAN_SET), EO_TYPECHECK(Evas_Object *, pan) + +/** + * @def elm_scrollable_interface_drag_start_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] drag_start_cb + * + */ #define elm_scrollable_interface_drag_start_cb_set(drag_start_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_DRAG_START_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, drag_start_cb) + +/** + * @def elm_scrollable_interface_drag_stop_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] drag_stop_cb + * + */ #define elm_scrollable_interface_drag_stop_cb_set(drag_stop_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_DRAG_STOP_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, drag_stop_cb) + +/** + * @def elm_scrollable_interface_animate_start_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] animate_start_cb + * + */ #define elm_scrollable_interface_animate_start_cb_set(animate_start_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_ANIMATE_START_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, animate_start_cb) + +/** + * @def elm_scrollable_interface_animate_stop_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] animate_stop_cb + * + */ #define elm_scrollable_interface_animate_stop_cb_set(animate_stop_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_ANIMATE_STOP_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, animate_stop_cb) + +/** + * @def elm_scrollable_interface_scroll_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] scroll_cb + * + */ #define elm_scrollable_interface_scroll_cb_set(scroll_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_SCROLL_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, scroll_cb) + +/** + * @def elm_scrollable_interface_edge_left_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] edge_left_cb + * + */ #define elm_scrollable_interface_edge_left_cb_set(edge_left_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_EDGE_LEFT_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, edge_left_cb) + +/** + * @def elm_scrollable_interface_edge_right_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] edge_right_cb + * + */ #define elm_scrollable_interface_edge_right_cb_set(edge_right_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_EDGE_RIGHT_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, edge_right_cb) + +/** + * @def elm_scrollable_interface_edge_top_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] edge_top_cb + * + */ #define elm_scrollable_interface_edge_top_cb_set(edge_top_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_EDGE_TOP_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, edge_top_cb) + +/** + * @def elm_scrollable_interface_edge_bottom_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] edge_bottom_cb + * + */ #define elm_scrollable_interface_edge_bottom_cb_set(edge_bottom_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_EDGE_BOTTOM_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Cb, edge_bottom_cb) + +/** + * @def elm_scrollable_interface_content_min_limit_cb_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] min_limit_cb + * + */ #define elm_scrollable_interface_content_min_limit_cb_set(min_limit_cb) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_MIN_LIMIT_CB_SET), EO_TYPECHECK(Elm_Interface_Scrollable_Min_Limit_Cb, min_limit_cb) + +/** + * @def elm_scrollable_interface_content_pos_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * + */ #define elm_scrollable_interface_content_pos_set(x, y) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_POS_SET), EO_TYPECHECK(Evas_Coord, x), EO_TYPECHECK(Evas_Coord, y) + +/** + * @def elm_scrollable_interface_content_pos_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * + */ #define elm_scrollable_interface_content_pos_get(x, y) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_POS_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y) + +/** + * @def elm_scrollable_interface_content_region_show + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * @param[in] w + * @param[in] h + * + */ #define elm_scrollable_interface_content_region_show(x, y, w, h) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_REGION_SHOW), EO_TYPECHECK(Evas_Coord, x), EO_TYPECHECK(Evas_Coord, y), EO_TYPECHECK(Evas_Coord, w), EO_TYPECHECK(Evas_Coord, h) + +/** + * @def elm_scrollable_interface_content_region_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * @param[in] w + * @param[in] h + * + */ #define elm_scrollable_interface_content_region_set(x, y, w, h) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_REGION_SET), EO_TYPECHECK(Evas_Coord, x), EO_TYPECHECK(Evas_Coord, y), EO_TYPECHECK(Evas_Coord, w), EO_TYPECHECK(Evas_Coord, h) + +/** + * @def elm_scrollable_interface_content_size_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] w + * @param[out] h + * + */ #define elm_scrollable_interface_content_size_get(w, h) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_SIZE_GET), EO_TYPECHECK(Evas_Coord *, w), EO_TYPECHECK(Evas_Coord *, h) + +/** + * @def elm_scrollable_interface_content_viewport_size_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] w + * @param[out] h + * + */ #define elm_scrollable_interface_content_viewport_size_get(w, h) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_VIEWPORT_SIZE_GET), EO_TYPECHECK(Evas_Coord *, w), EO_TYPECHECK(Evas_Coord *, h) + +/** + * @def elm_scrollable_interface_content_min_limit + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] w + * @param[in] h + * + */ #define elm_scrollable_interface_content_min_limit(w, h) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CONTENT_MIN_LIMIT), EO_TYPECHECK(Eina_Bool, w), EO_TYPECHECK(Eina_Bool, h) + +/** + * @def elm_scrollable_interface_step_size_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * + */ #define elm_scrollable_interface_step_size_set(x, y) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_STEP_SIZE_SET), EO_TYPECHECK(Evas_Coord, x), EO_TYPECHECK(Evas_Coord, y) + +/** + * @def elm_scrollable_interface_step_size_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * + */ #define elm_scrollable_interface_step_size_get(x, y) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_STEP_SIZE_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y) + +/** + * @def elm_scrollable_interface_page_size_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * + */ #define elm_scrollable_interface_page_size_set(x, y) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_PAGE_SIZE_SET), EO_TYPECHECK(Evas_Coord, x), EO_TYPECHECK(Evas_Coord, y) + +/** + * @def elm_scrollable_interface_page_size_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * + */ #define elm_scrollable_interface_page_size_get(x, y) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_PAGE_SIZE_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y) + +/** + * @def elm_scrollable_interface_policy_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] hbar + * @param[in] vbar + * + */ #define elm_scrollable_interface_policy_set(hbar, vbar) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_POLICY_SET), EO_TYPECHECK(Elm_Scroller_Policy, hbar), EO_TYPECHECK(Elm_Scroller_Policy, vbar) + +/** + * @def elm_scrollable_interface_policy_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] hbar + * @param[out] vbar + * + */ #define elm_scrollable_interface_policy_get(hbar, vbar) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_POLICY_GET), EO_TYPECHECK(Elm_Scroller_Policy *, hbar), EO_TYPECHECK(Elm_Scroller_Policy *, vbar) + +/** + * @def elm_scrollable_interface_single_direction_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] single_dir + * + */ #define elm_scrollable_interface_single_direction_set(single_dir) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_SINGLE_DIRECTION_SET), EO_TYPECHECK(Eina_Bool, single_dir) + +/** + * @def elm_scrollable_interface_single_direction_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] single_dir + * + */ #define elm_scrollable_interface_single_direction_get(single_dir) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_SINGLE_DIRECTION_GET), EO_TYPECHECK(Eina_Bool *, single_dir) + +/** + * @def elm_scrollable_interface_mirrored_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] mirrored + * + */ #define elm_scrollable_interface_mirrored_set(mirrored) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_MIRRORED_SET), EO_TYPECHECK(Eina_Bool, mirrored) + +/** + * @def elm_scrollable_interface_hold_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] hold + * + */ #define elm_scrollable_interface_hold_set(hold) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_HOLD_SET), EO_TYPECHECK(Eina_Bool, hold) + +/** + * @def elm_scrollable_interface_freeze_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] freeze + * + */ #define elm_scrollable_interface_freeze_set(freeze) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_FREEZE_SET), EO_TYPECHECK(Eina_Bool, freeze) + +/** + * @def elm_scrollable_interface_bounce_allow_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] horiz + * @param[in] vert + * + */ #define elm_scrollable_interface_bounce_allow_set(horiz, vert) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_BOUNCE_ALLOW_SET), EO_TYPECHECK(Eina_Bool, horiz), EO_TYPECHECK(Eina_Bool, vert) + +/** + * @def elm_scrollable_interface_bounce_allow_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] horiz + * @param[out] vert + * + */ #define elm_scrollable_interface_bounce_allow_get(horiz, vert) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_BOUNCE_ALLOW_GET), EO_TYPECHECK(Eina_Bool *, horiz), EO_TYPECHECK(Eina_Bool *, vert) + +/** + * @def elm_scrollable_interface_paging_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] pagerel_h + * @param[in] pagerel_v + * @param[in] pagesize_h + * @param[in] pagesize_v + * + */ #define elm_scrollable_interface_paging_set(pagerel_h, pagerel_v, pagesize_h, pagesize_v) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_PAGING_SET), EO_TYPECHECK(double, pagerel_h), EO_TYPECHECK(double, pagerel_v), EO_TYPECHECK(Evas_Coord, pagesize_h), EO_TYPECHECK(Evas_Coord, pagesize_v) + +/** + * @def elm_scrollable_interface_paging_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] pagerel_h + * @param[out] pagerel_v + * @param[out] pagesize_h + * @param[out] pagesize_v + * + */ #define elm_scrollable_interface_paging_get(pagerel_h, pagerel_v, pagesize_h, pagesize_v) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_PAGING_GET), EO_TYPECHECK(double *, pagerel_h), EO_TYPECHECK(double *, pagerel_v), EO_TYPECHECK(Evas_Coord *, pagesize_h), EO_TYPECHECK(Evas_Coord *, pagesize_v) + +/** + * @def elm_scrollable_interface_current_page_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] pagenumber_h + * @param[out] pagenumber_v + * + */ #define elm_scrollable_interface_current_page_get(pagenumber_h, pagenumber_v) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_CURRENT_PAGE_GET), EO_TYPECHECK(int *, pagenumber_h), EO_TYPECHECK(int *, pagenumber_v) + +/** + * @def elm_scrollable_interface_last_page_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] pagenumber_h + * @param[out] pagenumber_v + * + */ #define elm_scrollable_interface_last_page_get(pagenumber_h, pagenumber_v) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_LAST_PAGE_GET), EO_TYPECHECK(int *, pagenumber_h), EO_TYPECHECK(int *, pagenumber_v) + +/** + * @def elm_scrollable_interface_page_show + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] pagenumber_h + * @param[in] pagenumber_v + * + */ #define elm_scrollable_interface_page_show(pagenumber_h, pagenumber_v) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_PAGE_SHOW), EO_TYPECHECK(int, pagenumber_h), EO_TYPECHECK(int, pagenumber_v) + +/** + * @def elm_scrollable_interface_page_bring_in + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] pagenumber_h + * @param[in] pagenumber_v + * + */ #define elm_scrollable_interface_page_bring_in(pagenumber_h, pagenumber_v) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_PAGE_BRING_IN), EO_TYPECHECK(int, pagenumber_h), EO_TYPECHECK(int, pagenumber_v) + +/** + * @def elm_scrollable_interface_region_bring_in + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * @param[in] w + * @param[in] h + * + */ #define elm_scrollable_interface_region_bring_in(x, y, w, h) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_REGION_BRING_IN), EO_TYPECHECK(Evas_Coord, x), EO_TYPECHECK(Evas_Coord, y), EO_TYPECHECK(Evas_Coord, w), EO_TYPECHECK(Evas_Coord, h) + +/** + * @def elm_scrollable_interface_gravity_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * + */ #define elm_scrollable_interface_gravity_set(x, y) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_GRAVITY_SET), EO_TYPECHECK(double, x), EO_TYPECHECK(double, y) + +/** + * @def elm_scrollable_interface_gravity_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * + */ #define elm_scrollable_interface_gravity_get(x, y) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_GRAVITY_GET), EO_TYPECHECK(double *, x), EO_TYPECHECK(double *, y) + +/** + * @def elm_scrollable_interface_momentum_animator_disabled_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_scrollable_interface_momentum_animator_disabled_get(ret) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_MOMENTUM_ANIMATOR_DISABLED_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_scrollable_interface_momentum_animator_disabled_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] disabled + * + */ #define elm_scrollable_interface_momentum_animator_disabled_set(disabled) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_MOMENTUM_ANIMATOR_DISABLED_SET), EO_TYPECHECK(Eina_Bool, disabled) + +/** + * @def elm_scrollable_interface_bounce_animator_disabled_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_scrollable_interface_bounce_animator_disabled_set(ret) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_BOUNCE_ANIMATOR_DISABLED_SET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_scrollable_interface_bounce_animator_disabled_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] disabled + * + */ #define elm_scrollable_interface_bounce_animator_disabled_get(disabled) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_BOUNCE_ANIMATOR_DISABLED_GET), EO_TYPECHECK(Eina_Bool, disabled) + +/** + * @def elm_scrollable_interface_wheel_disabled_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_scrollable_interface_wheel_disabled_get(ret) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_WHEEL_DISABLED_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_scrollable_interface_wheel_disabled_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] disabled + * + */ #define elm_scrollable_interface_wheel_disabled_set(disabled) ELM_SCROLLABLE_INTERFACE_ID(ELM_SCROLLABLE_INTERFACE_SUB_ID_WHEEL_DISABLED_SET), EO_TYPECHECK(Eina_Bool, disabled) /** diff --git a/legacy/elementary/src/lib/elm_inwin.h b/legacy/elementary/src/lib/elm_inwin.h index a68d2ecb0e..a18af41f4d 100644 --- a/legacy/elementary/src/lib/elm_inwin.h +++ b/legacy/elementary/src/lib/elm_inwin.h @@ -55,6 +55,13 @@ enum #define ELM_OBJ_WIN_INWIN_ID(sub_id) (ELM_OBJ_WIN_INWIN_BASE_ID + sub_id) +/** + * @def elm_obj_win_inwin_activate + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_obj_win_inwin_activate() ELM_OBJ_WIN_INWIN_ID(ELM_OBJ_WIN_INWIN_SUB_ID_ACTIVATE) /** diff --git a/legacy/elementary/src/lib/elm_layout.h b/legacy/elementary/src/lib/elm_layout.h index 9ef1bfd9c2..37c4ab896e 100644 --- a/legacy/elementary/src/lib/elm_layout.h +++ b/legacy/elementary/src/lib/elm_layout.h @@ -573,11 +573,78 @@ * @see elm_layout_part_cursor_engine_only_get */ #define elm_obj_layout_part_cursor_engine_only_get(part_name, ret) ELM_OBJ_LAYOUT_ID(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_ENGINE_ONLY_GET), EO_TYPECHECK(const char *, part_name), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_layout_edje_object_can_access_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] can_access + * @param[out] ret + * + * @see elm_layout_edje_object_can_access_set + */ #define elm_obj_layout_edje_object_can_access_set(can_access, ret) ELM_OBJ_LAYOUT_ID(ELM_OBJ_LAYOUT_SUB_ID_EDJE_OBJECT_CAN_ACCESS_SET), EO_TYPECHECK(Eina_Bool, can_access), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_layout_edje_object_can_access_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_layout_edje_object_can_access_get + */ #define elm_obj_layout_edje_object_can_access_get(ret) ELM_OBJ_LAYOUT_ID(ELM_OBJ_LAYOUT_SUB_ID_EDJE_OBJECT_CAN_ACCESS_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_layout_smart_text_aliases_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] aliases + * + * @see elm_layout_smart_text_aliases_get + */ #define elm_obj_layout_smart_text_aliases_get(aliases) ELM_OBJ_LAYOUT_ID(ELM_OBJ_LAYOUT_SUB_ID_TEXT_ALIASES_GET), EO_TYPECHECK(const Elm_Layout_Part_Alias_Description **, aliases) + +/** + * @def elm_obj_layout_smart_content_aliases_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] aliases + * + * @see elm_layout_smart_content_aliases_get + */ #define elm_obj_layout_smart_content_aliases_get(aliases) ELM_OBJ_LAYOUT_ID(ELM_OBJ_LAYOUT_SUB_ID_CONTENT_ALIASES_GET), EO_TYPECHECK(const Elm_Layout_Part_Alias_Description **, aliases) + +/** + * @def elm_obj_layout_sub_object_add_enable + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] enable + * + * @see elm_layout_sub_object_add_enable + */ #define elm_obj_layout_sub_object_add_enable(enable) ELM_OBJ_LAYOUT_ID(ELM_OBJ_LAYOUT_SUB_ID_SUB_OBJECT_ADD_ENABLE), EO_TYPECHECK(Eina_Bool *, enable) + +/** + * @def elm_obj_layout_theme_enable + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] enable + * + * @see elm_layout_theme_enable + */ #define elm_obj_layout_theme_enable(enable) ELM_OBJ_LAYOUT_ID(ELM_OBJ_LAYOUT_SUB_ID_THEME_ENABLE), EO_TYPECHECK(Eina_Bool *, enable) /** diff --git a/legacy/elementary/src/lib/elm_list.h b/legacy/elementary/src/lib/elm_list.h index 55501280ae..70a40073cc 100644 --- a/legacy/elementary/src/lib/elm_list.h +++ b/legacy/elementary/src/lib/elm_list.h @@ -194,7 +194,29 @@ * @see elm_list_horizontal_get */ #define elm_obj_list_horizontal_get(ret) ELM_OBJ_LIST_ID(ELM_OBJ_LIST_SUB_ID_HORIZONTAL_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_list_select_mode_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] mode + * + * @see elm_list_select_mode_set + */ #define elm_obj_list_select_mode_set(mode) ELM_OBJ_LIST_ID(ELM_OBJ_LIST_SUB_ID_SELECT_MODE_SET), EO_TYPECHECK(Elm_Object_Select_Mode, mode) + +/** + * @def elm_obj_list_select_mode_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_list_select_mode_get + */ #define elm_obj_list_select_mode_get(ret) ELM_OBJ_LIST_ID(ELM_OBJ_LIST_SUB_ID_SELECT_MODE_GET), EO_TYPECHECK(Elm_Object_Select_Mode *, ret) /** diff --git a/legacy/elementary/src/lib/elm_notify.h b/legacy/elementary/src/lib/elm_notify.h index eda24fa1df..0cf1001e7c 100644 --- a/legacy/elementary/src/lib/elm_notify.h +++ b/legacy/elementary/src/lib/elm_notify.h @@ -53,7 +53,29 @@ enum #define ELM_OBJ_NOTIFY_ID(sub_id) (ELM_OBJ_NOTIFY_BASE_ID + sub_id) + +/** + * @def elm_obj_notify_orient_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] orient + * + * @see elm_notify_orient_set + */ #define elm_obj_notify_orient_set(orient) ELM_OBJ_NOTIFY_ID(ELM_OBJ_NOTIFY_SUB_ID_ORIENT_SET), EO_TYPECHECK(Elm_Notify_Orient, orient) + +/** + * @def elm_obj_notify_orient_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + * @see elm_notify_orient_get + */ #define elm_obj_notify_orient_get(ret) ELM_OBJ_NOTIFY_ID(ELM_OBJ_NOTIFY_SUB_ID_ORIENT_GET), EO_TYPECHECK(Elm_Notify_Orient *, ret) /** diff --git a/legacy/elementary/src/lib/elm_route.h b/legacy/elementary/src/lib/elm_route.h index 5bca30b020..5a88ff6e29 100644 --- a/legacy/elementary/src/lib/elm_route.h +++ b/legacy/elementary/src/lib/elm_route.h @@ -26,6 +26,17 @@ enum #define ELM_OBJ_ROUTE_ID(sub_id) (ELM_OBJ_ROUTE_BASE_ID + sub_id) + +/** + * @def elm_obj_route_emap_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] emap + * + * @see elm_route_emap_set + */ #define elm_obj_route_emap_set(emap) ELM_OBJ_ROUTE_ID(ELM_OBJ_ROUTE_SUB_ID_EMAP_SET), EO_TYPECHECK(EMap_Route *, emap) /** diff --git a/legacy/elementary/src/lib/elm_toolbar.h b/legacy/elementary/src/lib/elm_toolbar.h index cea342a413..59fd119181 100644 --- a/legacy/elementary/src/lib/elm_toolbar.h +++ b/legacy/elementary/src/lib/elm_toolbar.h @@ -1363,7 +1363,29 @@ enum * @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) diff --git a/legacy/elementary/src/lib/elm_widget.h b/legacy/elementary/src/lib/elm_widget.h index b3b733f77d..d00bcb5644 100644 --- a/legacy/elementary/src/lib/elm_widget.h +++ b/legacy/elementary/src/lib/elm_widget.h @@ -1147,139 +1147,1214 @@ typedef void (*region_hook_func_type)(void *data, Evas_Object *obj); typedef void * (*list_data_get_func_type)(const Eina_List * l); #define ELM_WIDGET_ID(sub_id) (ELM_WIDGET_BASE_ID + sub_id) + +/** + * @def elm_wdg_on_focus + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_on_focus(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_ON_FOCUS), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_disable + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_disable(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DISABLE), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_theme + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_theme(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_THEME), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_translate + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_translate(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TRANSLATE), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_event + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] source + * @param[in] type + * @param[in] event_info + * @param[out] ret + * + */ #define elm_wdg_event(source, type, event_info, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_EVENT), EO_TYPECHECK(Evas_Object *, source), EO_TYPECHECK(Evas_Callback_Type, type), EO_TYPECHECK(void *, event_info), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_on_focus_region + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * @param[out] w + * @param[out] h + * @param[out] ret + * + */ #define elm_wdg_on_focus_region(x, y, w, h, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_ON_FOCUS_REGION), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y), EO_TYPECHECK(Evas_Coord *, w), EO_TYPECHECK(Evas_Coord *, h), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_next_manager_is + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_focus_next_manager_is(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_NEXT_MANAGER_IS), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_next + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] dir + * @param[out] next + * @param[out] ret + * + */ #define elm_wdg_focus_next(dir, next, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_NEXT), EO_TYPECHECK(Elm_Focus_Direction, dir), EO_TYPECHECK(Evas_Object **, next), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_direction_manager_is + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_focus_direction_manager_is(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_DIRECTION_MANAGER_IS), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_direction + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] base + * @param[in] degree + * @param[out] direction + * @param[out] weight + * @param[out] ret + * + */ #define elm_wdg_focus_direction(base, degree, direction, weight, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_DIRECTION), EO_TYPECHECK(const Evas_Object *, base), EO_TYPECHECK(double, degree), EO_TYPECHECK(Evas_Object **, direction), EO_TYPECHECK(double *, weight), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_sub_object_add + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] sobj + * @param[out] ret + * + */ #define elm_wdg_sub_object_add(sobj, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SUB_OBJECT_ADD), EO_TYPECHECK(Evas_Object *, sobj), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_sub_object_del + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] sobj + * @param[out] ret + * + */ #define elm_wdg_sub_object_del(sobj, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SUB_OBJECT_DEL), EO_TYPECHECK(Evas_Object *, sobj), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_access + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] is_access + * + */ #define elm_wdg_access(is_access) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_ACCESS), EO_TYPECHECK(Eina_Bool, is_access) + +/** + * @def elm_wdg_parent_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] parent + * + */ #define elm_wdg_parent_set(parent) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_PARENT_SET), EO_TYPECHECK(Evas_Object *, parent) + +/** + * @def elm_wdg_parent_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] parent + * + */ #define elm_wdg_parent_get(parent) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_PARENT_GET), EO_TYPECHECK(Evas_Object **, parent) + +/** + * @def elm_wdg_parent2_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] parent + * + */ #define elm_wdg_parent2_set(parent) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_PARENT_SET), EO_TYPECHECK(Evas_Object *, parent) + +/** + * @def elm_wdg_parent2_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] parent + * + */ #define elm_wdg_parent2_get(parent) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_PARENT_GET), EO_TYPECHECK(Evas_Object **, parent) + +/** + * @def elm_wdg_activate + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] act + * @param[out] ret + * + */ #define elm_wdg_activate(act, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_ACTIVATE), EO_TYPECHECK(Elm_Activate, act), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_mirrored_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_mirrored_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_MIRRORED_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_mirrored_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] mirrored + * + */ #define elm_wdg_mirrored_set(mirrored) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_MIRRORED_SET), EO_TYPECHECK(Eina_Bool, mirrored) + +/** + * @def elm_wdg_mirrored_automatic_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_mirrored_automatic_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_MIRRORED_AUTOMATIC_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_mirrored_automatic_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] automatic + * + */ #define elm_wdg_mirrored_automatic_set(automatic) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_MIRRORED_AUTOMATIC_SET), EO_TYPECHECK(Eina_Bool, automatic) + +/** + * @def elm_wdg_highlight_ignore_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] ignore + * + */ #define elm_wdg_highlight_ignore_set(ignore) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_HIGHLIGHT_IGNORE_SET), EO_TYPECHECK(Eina_Bool, ignore) + +/** + * @def elm_wdg_highlight_ignore_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_highlight_ignore_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_HIGHLIGHT_IGNORE_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_highlight_in_theme_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] highlight + * + */ #define elm_wdg_highlight_in_theme_set(highlight) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_HIGHLIGHT_IN_THEME_SET), EO_TYPECHECK(Eina_Bool, highlight) + +/** + * @def elm_wdg_highlight_in_theme_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_highlight_in_theme_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_HIGHLIGHT_IN_THEME_GET), EO_TYPECHECK(Eina_Bool *, ret) +/** + * @def elm_wdg_scroll_hold_push + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_scroll_hold_push() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCROLL_HOLD_PUSH) + +/** + * @def elm_wdg_scroll_hold_pop + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_scroll_hold_pop() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCROLL_HOLD_POP) + +/** + * @def elm_wdg_scroll_hold_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_scroll_hold_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCROLL_HOLD_GET), EO_TYPECHECK(int *, ret) + +/** + * @def elm_wdg_scroll_freeze_push + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_scroll_freeze_push() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCROLL_FREEZE_PUSH) + +/** + * @def elm_wdg_scroll_freeze_pop + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_scroll_freeze_pop() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCROLL_FREEZE_POP) + +/** + * @def elm_wdg_scroll_freeze_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_scroll_freeze_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCROLL_FREEZE_GET), EO_TYPECHECK(int *, ret) + +/** + * @def elm_wdg_on_show_region_hook_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] func + * @param[in] data + * + */ #define elm_wdg_on_show_region_hook_set(func, data) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_ON_SHOW_REGION_HOOK_SET), EO_TYPECHECK(region_hook_func_type, func), EO_TYPECHECK(void *, data) + +/** + * @def elm_wdg_resize_object_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] sobj + * + */ #define elm_wdg_resize_object_set(sobj) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_RESIZE_OBJECT_SET), EO_TYPECHECK(Evas_Object *, sobj) + +/** + * @def elm_wdg_hover_object_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] sobj + * + */ #define elm_wdg_hover_object_set(sobj) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_HOVER_OBJECT_SET), EO_TYPECHECK(Evas_Object *, sobj) + +/** + * @def elm_wdg_can_focus_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] can_focus + * + */ #define elm_wdg_can_focus_set(can_focus) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_CAN_FOCUS_SET), EO_TYPECHECK(Eina_Bool, can_focus) + +/** + * @def elm_wdg_can_focus_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_can_focus_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_CAN_FOCUS_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_child_can_focus_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_child_can_focus_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_CHILD_CAN_FOCUS_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_focus_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focused_object_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_focused_object_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUSED_OBJECT_GET), EO_TYPECHECK(Evas_Object **, ret) + +/** + * @def elm_wdg_top_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_top_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TOP_GET), EO_TYPECHECK(Evas_Object **, ret) + +/** + * @def elm_wdg_parent_widget_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_parent_widget_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_PARENT_WIDGET_GET), EO_TYPECHECK(Evas_Object **, ret) + +/** + * @def elm_wdg_focus_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] first + * + */ #define elm_wdg_focus_set(first) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_SET), EO_TYPECHECK(int, first) + +/** + * @def elm_wdg_focused_object_clear + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_focused_object_clear() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUSED_OBJECT_CLEAR) + +/** + * @def elm_wdg_focus_steal + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_focus_steal() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_STEAL) + +/** + * @def elm_wdg_focus_restore + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_focus_restore() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_RESTORE) + +/** + * @def elm_wdg_disabled_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] disabled + * + */ #define elm_wdg_disabled_set(disabled) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DISABLED_SET), EO_TYPECHECK(Eina_Bool, disabled) + +/** + * @def elm_wdg_disabled_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_disabled_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DISABLED_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_show_region_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] x + * @param[in] y + * @param[in] w + * @param[in] h + * @param[in] forceshow + * + */ #define elm_wdg_show_region_set(x, y, w, h, forceshow) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SHOW_REGION_SET), EO_TYPECHECK(Evas_Coord, x), EO_TYPECHECK(Evas_Coord, y), EO_TYPECHECK(Evas_Coord, w), EO_TYPECHECK(Evas_Coord, h), EO_TYPECHECK(Eina_Bool, forceshow) + +/** + * @def elm_wdg_show_region_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * @param[out] w + * @param[out] h + * + */ #define elm_wdg_show_region_get(x, y, w, h) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SHOW_REGION_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y), EO_TYPECHECK(Evas_Coord *, w), EO_TYPECHECK(Evas_Coord *, h) +/** + * @def elm_wdg_scrollable_children_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_scrollable_children_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCROLLABLE_CHILDREN_GET), EO_TYPECHECK(Eina_List **, ret) + +/** + * @def elm_wdg_scale_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] scale + * + */ #define elm_wdg_scale_set(scale) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCALE_SET), EO_TYPECHECK(double, scale) + +/** + * @def elm_wdg_scale_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_scale_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SCALE_GET), EO_TYPECHECK(double *, ret) + +/** + * @def elm_wdg_text_part_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] part + * @param[in] label + * + */ #define elm_wdg_text_part_set(part, label) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TEXT_PART_SET), EO_TYPECHECK(const char *, part), EO_TYPECHECK(const char *, label) + +/** + * @def elm_wdg_text_part_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] part + * @param[out] ret + * + */ #define elm_wdg_text_part_get(part, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TEXT_PART_GET), EO_TYPECHECK(const char *, part), EO_TYPECHECK(const char **, ret) + +/** + * @def elm_wdg_domain_translatable_text_part_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] part + * @param[in] domain + * @param[in] label + * + */ #define elm_wdg_domain_translatable_text_part_set(part, domain, label) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DOMAIN_TRANSLATABLE_TEXT_PART_SET), EO_TYPECHECK(const char *, part), EO_TYPECHECK(const char *, domain), EO_TYPECHECK(const char *, label) + +/** + * @def elm_wdg_translatable_text_part_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] part + * @param[out] ret + * + */ #define elm_wdg_translatable_text_part_get(part, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TRANSLATABLE_TEXT_PART_GET), EO_TYPECHECK(const char *, part), EO_TYPECHECK(const char **, ret) + +/** + * @def elm_wdg_access_info_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] txt + * + */ #define elm_wdg_access_info_set(txt) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_ACCESS_INFO_SET), EO_TYPECHECK(const char *, txt) + +/** + * @def elm_wdg_access_info_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_access_info_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_ACCESS_INFO_GET), EO_TYPECHECK(const char **, ret) + +/** + * @def elm_wdg_theme_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] th + * + */ #define elm_wdg_theme_set(th) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_THEME_SET), EO_TYPECHECK(Elm_Theme *, th) + +/** + * @def elm_wdg_theme_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_theme_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_THEME_GET), EO_TYPECHECK(Elm_Theme **, ret) + +/** + * @def elm_wdg_style_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] style + * @param[out] ret + * + */ #define elm_wdg_style_set(style, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_STYLE_SET), EO_TYPECHECK(const char *, style), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_style_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_style_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_STYLE_GET), EO_TYPECHECK(const char **, ret) + +/** + * @def elm_wdg_tooltip_add + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] tt + * + */ #define elm_wdg_tooltip_add(tt) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TOOLTIP_ADD), EO_TYPECHECK(Elm_Tooltip *, tt) + +/** + * @def elm_wdg_tooltip_del + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] tt + * + */ #define elm_wdg_tooltip_del(tt) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TOOLTIP_DEL), EO_TYPECHECK(Elm_Tooltip *, tt) + +/** + * @def elm_wdg_cursor_add + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] cur + * + */ #define elm_wdg_cursor_add(cur) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_CURSOR_ADD), EO_TYPECHECK(Elm_Cursor *, cur) + +/** + * @def elm_wdg_cursor_del + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] cur + * + */ #define elm_wdg_cursor_del(cur) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_CURSOR_DEL), EO_TYPECHECK(Elm_Cursor *, cur) + +/** + * @def elm_wdg_drag_lock_x_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] lock + * + */ #define elm_wdg_drag_lock_x_set(lock) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DRAG_LOCK_X_SET), EO_TYPECHECK(Eina_Bool, lock) + +/** + * @def elm_wdg_drag_lock_y_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] lock + * + */ #define elm_wdg_drag_lock_y_set(lock) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DRAG_LOCK_Y_SET), EO_TYPECHECK(Eina_Bool, lock) + +/** + * @def elm_wdg_drag_lock_x_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_drag_lock_x_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DRAG_LOCK_X_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_drag_lock_y_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_drag_lock_y_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DRAG_LOCK_Y_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_drag_child_locked_x_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_drag_child_locked_x_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DRAG_CHILD_LOCKED_X_GET), EO_TYPECHECK(int *, ret) + +/** + * @def elm_wdg_drag_child_locked_y_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_drag_child_locked_y_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DRAG_CHILD_LOCKED_Y_GET), EO_TYPECHECK(int *, ret) + +/** + * @def elm_wdg_event_callback_add + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] func + * @param[in] data + * + */ #define elm_wdg_event_callback_add(func, data) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_EVENT_CALLBACK_ADD), EO_TYPECHECK(Elm_Event_Cb, func), EO_TYPECHECK(const void *, data) + +/** + * @def elm_wdg_event_callback_del + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] func + * @param[in] data + * @param[out] ret + * + */ #define elm_wdg_event_callback_del(func, data, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_EVENT_CALLBACK_DEL), EO_TYPECHECK(Elm_Event_Cb, func), EO_TYPECHECK(const void *, data), EO_TYPECHECK(void **, ret) + +/** + * @def elm_wdg_event_propagate + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] type + * @param[in] event_info + * @param[in] event_flags + * @param[out] ret + * + */ #define elm_wdg_event_propagate(type, event_info, event_flags, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_EVENT_PROPAGATE), EO_TYPECHECK(Evas_Callback_Type, type), EO_TYPECHECK(void *, event_info), EO_TYPECHECK(Evas_Event_Flags *, event_flags), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_signal_emit + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] emission + * @param[in] source + * + */ #define elm_wdg_signal_emit(emission, source) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SIGNAL_EMIT), EO_TYPECHECK(const char *, emission), EO_TYPECHECK(const char *, source) + +/** + * @def elm_wdg_signal_callback_add + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] emission + * @param[in] source + * @param[in] func + * @param[in] data + * + */ #define elm_wdg_signal_callback_add(emission, source, func, data) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SIGNAL_CALLBACK_ADD), EO_TYPECHECK(const char *, emission), EO_TYPECHECK(const char *, source), EO_TYPECHECK(Edje_Signal_Cb, func), EO_TYPECHECK(void *, data) + +/** + * @def elm_wdg_signal_callback_del + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] emission + * @param[in] source + * @param[in] func + * @param[out] ret + * + */ #define elm_wdg_signal_callback_del(emission, source, func, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_SIGNAL_CALLBACK_DEL), EO_TYPECHECK(const char *, emission), EO_TYPECHECK(const char *, source), EO_TYPECHECK(Edje_Signal_Cb, func), EO_TYPECHECK(void **, ret) + +/** + * @def elm_wdg_name_find + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] name + * @param[in] recurse + * @param[out] ret + * + */ #define elm_wdg_name_find(name, recurse, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_NAME_FIND), EO_TYPECHECK(const char *, name), EO_TYPECHECK(int, recurse), EO_TYPECHECK(Evas_Object **, ret) +/** + * @def elm_wdg_focus_hide_handle + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_focus_hide_handle() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_HIDE_HANDLE) + +/** + * @def elm_wdg_focus_mouse_up_handle + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_focus_mouse_up_handle() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_MOUSE_UP_HANDLE) + +/** + * @def elm_wdg_focus_tree_unfocusable_handle + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_focus_tree_unfocusable_handle() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_TREE_UNFOCUSABLE_HANDLE) + +/** + * @def elm_wdg_focus_disabled_handle + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_focus_disabled_handle() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_DISABLED_HANDLE) + +/** + * @def elm_wdg_focus_order_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_focus_order_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_ORDER_GET), EO_TYPECHECK(unsigned int *, ret) + +/** + * @def elm_wdg_focus_region_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] x + * @param[out] y + * @param[out] w + * @param[out] h + * @param[out] ret + * + */ #define elm_wdg_focus_region_get(x, y, w, h, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_REGION_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y), EO_TYPECHECK(Evas_Coord *, w), EO_TYPECHECK(Evas_Coord *, h), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_theme_object_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] edj + * @param[in] wname + * @param[in] welement + * @param[in] wstyle + * @param[out] ret + * + */ #define elm_wdg_theme_object_set(edj, wname, welement, wstyle, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_THEME_OBJECT_SET), EO_TYPECHECK(Evas_Object *, edj), EO_TYPECHECK(const char *, wname), EO_TYPECHECK(const char *, welement), EO_TYPECHECK(const char *, wstyle), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_custom_chain_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] objs + * + */ #define elm_wdg_focus_custom_chain_set(objs) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_CUSTOM_CHAIN_SET), EO_TYPECHECK(Eina_List *, objs) + +/** + * @def elm_wdg_focus_custom_chain_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_focus_custom_chain_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_CUSTOM_CHAIN_GET), EO_TYPECHECK(const Eina_List **, ret) + +/** + * @def elm_wdg_focus_custom_chain_unset + * @since 1.8 + * + * No description supplied by the EAPI. + * + */ #define elm_wdg_focus_custom_chain_unset() ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_CUSTOM_CHAIN_UNSET) + +/** + * @def elm_wdg_focus_custom_chain_append + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] child + * @param[in] relative_child + * + */ #define elm_wdg_focus_custom_chain_append(child, relative_child) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_CUSTOM_CHAIN_APPEND), EO_TYPECHECK(Evas_Object *, child), EO_TYPECHECK(Evas_Object *, relative_child) + +/** + * @def elm_wdg_focus_custom_chain_prepend + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] child + * @param[in] relative_child + * + */ #define elm_wdg_focus_custom_chain_prepend(child, relative_child) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_CUSTOM_CHAIN_PREPEND), EO_TYPECHECK(Evas_Object *, child), EO_TYPECHECK(Evas_Object *, relative_child) + +/** + * @def elm_wdg_focus_cycle + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] dir + * + */ #define elm_wdg_focus_cycle(dir) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_CYCLE), EO_TYPECHECK(Elm_Focus_Direction, dir) + +/** + * @def elm_wdg_focus_direction_go + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] degree + * @param[out] ret + * + */ #define elm_wdg_focus_direction_go(degree, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_DIRECTION_GO), EO_TYPECHECK(double, degree), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_direction_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] base + * @param[in] degree + * @param[out] direction + * @param[out] weight + * @param[out] ret + * + */ #define elm_wdg_focus_direction_get(base, degree, direction, weight, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_DIRECTION_GET), EO_TYPECHECK(const Evas_Object *, base), EO_TYPECHECK(double, degree), EO_TYPECHECK(Evas_Object **, direction), EO_TYPECHECK(double *, weight), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_list_direction_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] base + * @param[in] items + * @param[in] list_data_get + * @param[in] degree + * @param[out] direction + * @param[out] weight + * @param[out] ret + * + */ #define elm_wdg_focus_list_direction_get(base, items, list_data_get, degree, direction, weight, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_LIST_DIRECTION_GET), EO_TYPECHECK(const Evas_Object *, base), EO_TYPECHECK(const Eina_List *, items), EO_TYPECHECK(list_data_get_func_type, list_data_get), EO_TYPECHECK(double, degree), EO_TYPECHECK(Evas_Object **, direction), EO_TYPECHECK(double *, weight), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_next_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] dir + * @param[out] next + * @param[out] ret + * + */ #define elm_wdg_focus_next_get(dir, next, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_NEXT_GET), EO_TYPECHECK(Elm_Focus_Direction, dir), EO_TYPECHECK(Evas_Object **, next), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_focus_list_next_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] items + * @param[in] list_data_get + * @param[in] dir + * @param[out] next + * @param[out] ret + * + */ #define elm_wdg_focus_list_next_get(items, list_data_get, dir, next, ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_FOCUS_LIST_NEXT_GET), EO_TYPECHECK(const Eina_List *, items), EO_TYPECHECK(list_data_get_func_type, list_data_get), EO_TYPECHECK(Elm_Focus_Direction, dir), EO_TYPECHECK(Evas_Object **, next), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_display_mode_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] dispmode + * + */ #define elm_wdg_display_mode_set(dispmode) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DISPLAY_MODE_SET), EO_TYPECHECK(Evas_Display_Mode, dispmode) + +/** + * @def elm_wdg_display_mode_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_display_mode_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_DISPLAY_MODE_GET), EO_TYPECHECK(Evas_Display_Mode *, ret) + +/** + * @def elm_wdg_tree_unfocusable_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] tree_unfocusable + * + */ #define elm_wdg_tree_unfocusable_set(tree_unfocusable) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TREE_UNFOCUSABLE_SET), EO_TYPECHECK(Eina_Bool, tree_unfocusable) + +/** + * @def elm_wdg_tree_unfocusable_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_tree_unfocusable_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_TREE_UNFOCUSABLE_GET), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_wdg_can_focus_child_list_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[out] ret + * + */ #define elm_wdg_can_focus_child_list_get(ret) ELM_WIDGET_ID(ELM_WIDGET_SUB_ID_CAN_FOCUS_CHILD_LIST_GET), EO_TYPECHECK(Eina_List **, ret) #endif diff --git a/legacy/elementary/src/lib/elm_widget_container.h b/legacy/elementary/src/lib/elm_widget_container.h index 6c241971ad..4427fdd2d7 100644 --- a/legacy/elementary/src/lib/elm_widget_container.h +++ b/legacy/elementary/src/lib/elm_widget_container.h @@ -49,8 +49,42 @@ enum #define ELM_OBJ_CONTAINER_ID(sub_id) (ELM_OBJ_CONTAINER_BASE_ID + sub_id) + +/** + * @def elm_obj_container_content_set + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] name + * @param[in] content + * @param[out] ret + * + */ #define elm_obj_container_content_set(name, content, ret) ELM_OBJ_CONTAINER_ID(ELM_OBJ_CONTAINER_SUB_ID_CONTENT_SET), EO_TYPECHECK(const char*, name), EO_TYPECHECK(Evas_Object *,content), EO_TYPECHECK(Eina_Bool *, ret) + +/** + * @def elm_obj_container_content_get + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] name + * @param[out] ret + * + */ #define elm_obj_container_content_get(name, ret) ELM_OBJ_CONTAINER_ID(ELM_OBJ_CONTAINER_SUB_ID_CONTENT_GET), EO_TYPECHECK(const char*, name), EO_TYPECHECK(Evas_Object **,ret) + +/** + * @def elm_obj_container_content_unset + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] name + * @param[out] ret + * + */ #define elm_obj_container_content_unset(name, ret) ELM_OBJ_CONTAINER_ID(ELM_OBJ_CONTAINER_SUB_ID_CONTENT_UNSET), EO_TYPECHECK(const char*, name), EO_TYPECHECK(Evas_Object **,ret) #endif diff --git a/legacy/elementary/src/lib/elm_win.h b/legacy/elementary/src/lib/elm_win.h index 1d36ae2d96..e99b09503b 100644 --- a/legacy/elementary/src/lib/elm_win.h +++ b/legacy/elementary/src/lib/elm_win.h @@ -191,6 +191,17 @@ enum #define ELM_OBJ_WIN_ID(sub_id) (ELM_OBJ_WIN_BASE_ID + sub_id) + +/** + * @def elm_obj_win_constructor + * @since 1.8 + * + * No description supplied by the EAPI. + * + * @param[in] name + * @param[in] type + * + */ #define elm_obj_win_constructor(name, type) ELM_OBJ_WIN_ID(ELM_OBJ_WIN_SUB_ID_WIN_CONSTRUCTOR), EO_TYPECHECK(const char *, name), EO_TYPECHECK(Elm_Win_Type, type) /**