From e9fcd87e4294c881dd5ca8e61ae5ada0d9d7151e Mon Sep 17 00:00:00 2001 From: Myoungwoon Kim Date: Sat, 10 Mar 2012 12:52:44 +0900 Subject: [PATCH] Add WRAPPER for booting --- src/lib/elm_config.c | 25 +++++++++++++++++++++++++ src/lib/elm_config.h | 6 ++++++ src/lib/elm_win.c | 14 ++++++++++++++ src/lib/elm_win.h | 6 ++++++ 4 files changed, 51 insertions(+) diff --git a/src/lib/elm_config.c b/src/lib/elm_config.c index 9195be4..b72cab0 100644 --- a/src/lib/elm_config.c +++ b/src/lib/elm_config.c @@ -1464,12 +1464,24 @@ elm_config_tooltip_delay_set(double delay) } EAPI double +elm_scale_get(void) +{ + return elm_config_scale_get(); +} + +EAPI double elm_config_scale_get(void) { return _elm_config->scale; } EAPI void +elm_scale_set(double scale) +{ + elm_config_scale_set(scale); +} + +EAPI void elm_config_scale_set(double scale) { if (_elm_config->scale == scale) return; @@ -1611,6 +1623,12 @@ elm_config_font_overlay_apply(void) { _elm_config_font_overlay_apply(); } +// WRAPPER:: will be removed soon. +EAPI Evas_Coord +elm_finger_size_get(void) +{ + return elm_config_finger_size_get(); +} EAPI Evas_Coord elm_config_finger_size_get(void) @@ -1618,6 +1636,13 @@ elm_config_finger_size_get(void) return _elm_config->finger_size; } +// WRAPPER:: will be removed soon. +EAPI void +elm_finger_size_set(Evas_Coord size) +{ + elm_config_finger_size_set(size); +} + EAPI void elm_config_finger_size_set(Evas_Coord size) { diff --git a/src/lib/elm_config.h b/src/lib/elm_config.h index 625936b..84a5a4f 100644 --- a/src/lib/elm_config.h +++ b/src/lib/elm_config.h @@ -464,6 +464,7 @@ EAPI void elm_config_cursor_engine_only_set(Eina_Bool engine_only); * @ingroup Scaling */ EAPI double elm_config_scale_get(void); +EAPI double elm_scale_get(void); /** * Set the global scaling factor @@ -475,6 +476,7 @@ EAPI double elm_config_scale_get(void); * @ingroup Scaling */ EAPI void elm_config_scale_set(double scale); +EAPI void elm_scale_set(double scale); /** * @defgroup Password_last_show Password show last @@ -714,6 +716,8 @@ EAPI void elm_config_font_overlay_apply(void); * @ingroup Fingers */ EAPI Evas_Coord elm_config_finger_size_get(void); +// WRAPPER: Temperary Added. +EAPI Evas_Coord elm_finger_size_get(void); /** * Set the configured finger size @@ -724,6 +728,8 @@ EAPI Evas_Coord elm_config_finger_size_get(void); * @ingroup Fingers */ EAPI void elm_config_finger_size_set(Evas_Coord size); +// WRAPPER: Temperary Added. +EAPI void elm_finger_size_set(Evas_Coord size); /** diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 822162e..915dd43 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -2795,6 +2795,13 @@ elm_win_keyboard_win_get(const Evas_Object *obj) return EINA_FALSE; } +// WRAPPER: Temperary added. +EAPI void +elm_win_indicator_state_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode) +{ + elm_win_indicator_mode_set(obj, mode); +} + EAPI void elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode) { @@ -2820,6 +2827,13 @@ elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode) #endif } +// WRAPPER: Temperary added. +EAPI Elm_Win_Indicator_Mode +elm_win_indicator_state_get(const Evas_Object *obj) +{ + return elm_win_indicator_mode_get(obj); +} + EAPI Elm_Win_Indicator_Mode elm_win_indicator_mode_get(const Evas_Object *obj) { diff --git a/src/lib/elm_win.h b/src/lib/elm_win.h index e79c6a4..94a6630 100644 --- a/src/lib/elm_win.h +++ b/src/lib/elm_win.h @@ -1026,6 +1026,9 @@ EAPI Eina_Bool elm_win_keyboard_win_get(const Evas_Object *obj); */ EAPI void elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode); +// WRAPPER: Temperary added. +EAPI void elm_win_indicator_state_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode); + /** * Gets the indicator mode of the window. * @@ -1034,6 +1037,9 @@ EAPI void elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_ */ EAPI Elm_Win_Indicator_Mode elm_win_indicator_mode_get(const Evas_Object *obj); +// WRAPPER: Temperary added. +EAPI Elm_Win_Indicator_Mode elm_win_indicator_state_get(const Evas_Object *obj); + /** * Sets the indicator opacity mode of the window. * -- 2.7.4