elementary : reviewd elm_mirroring.h
authorwoohyun <woohyun@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 17 Feb 2012 11:26:40 +0000 (11:26 +0000)
committerwoohyun <woohyun@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 17 Feb 2012 11:26:40 +0000 (11:26 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68068 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/Elementary.h.in
src/lib/elm_mirroring.h

index d044b56..8749aab 100644 (file)
@@ -217,7 +217,7 @@ EAPI extern Elm_Version *elm_version;
 #include <elm_mapbuf.h> //  OK
 #include <elm_map.h>
 #include <elm_menu.h> // OK
-#include <elm_mirroring.h>
+#include <elm_mirroring.h> // OK
 #include <elm_need.h>
 #include <elm_notify.h>
 #include <elm_object.h>
index 75be1f3..50a929b 100644 (file)
@@ -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
  * @{
  */
 
-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);
 
 /**