From 1651433f93ae71ea5e3f504d262378518bf64dfd Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Thu, 27 Sep 2018 12:07:28 +0900 Subject: [PATCH] Docs: Add a group of APIs for which group is not declared in elm_config Summary: Longpress elm_config_longpress_timeout_get elm_config_longpress_timeout_set SotfCursor elm_config_softcursor_mode_set elm_config_softcursor_mode_get Tooltips (Add in Elm_Tooltips) elm_config_tooltip_delay_get elm_config_tooltip_delay_set Test Plan: make doc Reviewers: cedric, Hermet, zmike, Jaehyun_Cho Reviewed By: Jaehyun_Cho Subscribers: #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D7093 Change-Id: I86a098b2384eecb65b6975a313f0b65d9734e8c0 --- src/lib/elm_config.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/src/lib/elm_config.h b/src/lib/elm_config.h index 3644cab..66dbbfc 100644 --- a/src/lib/elm_config.h +++ b/src/lib/elm_config.h @@ -1105,6 +1105,15 @@ EAPI Elm_Slider_Indicator_Visible_Mode elm_config_slider_indicator_visible_mode_ */ /** + * @defgroup longpress_group Longpress + * @ingroup elm_infra_group + * + * @brief Configuration for longpress events. + * + * @{ + */ + +/** * Get the duration for occurring long press event. * * @return Timeout for long press event @@ -1128,6 +1137,19 @@ EAPI double elm_config_longpress_timeout_get(void); */ EAPI void elm_config_longpress_timeout_set(double longpress_timeout); +/** + * @} + */ + +/** + * @defgroup softcursor_group Sotfcursor + * @ingroup elm_infra_group + * + * @brief Configuration for softcursor. + * + * @{ + */ + typedef enum _Elm_Softcursor_Mode { ELM_SOFTCURSOR_MODE_AUTO, /**< Auto-detect if a software cursor should be used (default) */ @@ -1171,6 +1193,15 @@ EAPI void elm_config_softcursor_mode_set(Elm_Softcursor_Mode mode); EAPI Elm_Softcursor_Mode elm_config_softcursor_mode_get(void); /** + * @} + */ + +/** + * @ingroup Elm_Tooltips + * @{ + */ + +/** * @MOBILE_ONLY * * Get the duration after which tooltip will be shown. @@ -1195,6 +1226,10 @@ EAPI double elm_config_tooltip_delay_get(void); EAPI void elm_config_tooltip_delay_set(double delay); /** + * @} + */ + +/** * Get the configured cursor engine only usage * * This gets the globally configured exclusive usage of engine cursors. -- 2.7.4