From d3123c1f12a62a487e39fba2170ec275dfbca2ec Mon Sep 17 00:00:00 2001 From: woohyun Date: Fri, 17 Feb 2012 11:26:40 +0000 Subject: [PATCH] elementary : reviewd elm_mirroring.h git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68068 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/Elementary.h.in | 2 +- src/lib/elm_mirroring.h | 21 ++++++++++++++++----- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/src/lib/Elementary.h.in b/src/lib/Elementary.h.in index d044b56..8749aab 100644 --- a/src/lib/Elementary.h.in +++ b/src/lib/Elementary.h.in @@ -217,7 +217,7 @@ EAPI extern Elm_Version *elm_version; #include // OK #include #include // OK -#include +#include // OK #include #include #include diff --git a/src/lib/elm_mirroring.h b/src/lib/elm_mirroring.h index 75be1f3..50a929b 100644 --- a/src/lib/elm_mirroring.h +++ b/src/lib/elm_mirroring.h @@ -1,5 +1,5 @@ /** - * @defgroup UI-Mirroring Selective Widget mirroring + * @defgroup Mirroring Mirroring * * These functions allow you to set ui-mirroring on specific * widgets or the whole interface. Widgets can be in one of two @@ -12,16 +12,13 @@ * @{ */ -EAPI Eina_Bool elm_mirrored_get(void); -EAPI void elm_mirrored_set(Eina_Bool mirrored); - /** * Get the system mirrored mode. This determines the default mirrored mode * of widgets. * * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise */ -EAPI Eina_Bool elm_object_mirrored_get(const Evas_Object *obj); +EAPI Eina_Bool elm_mirrored_get(void); /** * Set the system mirrored mode. This determines the default mirrored mode @@ -29,6 +26,20 @@ EAPI Eina_Bool elm_object_mirrored_get(const Evas_Object *obj); * * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it. */ +EAPI void elm_mirrored_set(Eina_Bool mirrored); + +/** + * Get the widget's mirrored mode. + * + * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise + */ +EAPI Eina_Bool elm_object_mirrored_get(const Evas_Object *obj); + +/** + * Set the widget's mirrored mode. + * + * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it. + */ EAPI void elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored); /** -- 2.7.4