[genlist] apply r71140 with local enhancement
[framework/uifw/elementary.git] / src / lib / elm_mirroring.h
index 5420e38..24baa48 100644 (file)
@@ -1,5 +1,6 @@
 /**
- * @defgroup UI-Mirroring Selective Widget mirroring
+ * @defgroup Mirroring Mirroring
+ * @ingroup Elementary
  *
  * 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.
+ * Get the widget's mirrored mode.
  *
+ * @param obj The widget.
  * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise
+ *
+ * @ingroup Mirroring
  */
-EAPI Eina_Bool
-               elm_object_mirrored_get(const Evas_Object *obj)
-EINA_ARG_NONNULL(1);
+EAPI Eina_Bool elm_object_mirrored_get(const Evas_Object *obj);
 
 /**
- * Set the system mirrored mode. This determines the default mirrored mode
- * of widgets.
+ * Set the widget's mirrored mode.
  *
+ * @param obj The widget.
  * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it.
+ *
+ * @ingroup Mirroring
  */
-EAPI void      elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
+EAPI void      elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored);
 
 /**
  * Returns the widget's mirrored mode setting.
@@ -39,8 +39,9 @@ EAPI void      elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EIN
  * @param obj The widget.
  * @return mirrored mode setting of the object.
  *
- **/
-EAPI Eina_Bool elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+ * @ingroup Mirroring
+ */
+EAPI Eina_Bool elm_object_mirrored_automatic_get(const Evas_Object *obj);
 
 /**
  * Sets the widget's mirrored mode setting.
@@ -48,8 +49,10 @@ EAPI Eina_Bool elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_AR
  * elm_mirrored_set().
  * @param obj The widget.
  * @param automatic EINA_TRUE for auto mirrored mode. EINA_FALSE for manual.
+ *
+ * @ingroup Mirroring
  */
-EAPI void      elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
+EAPI void      elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic);
 
 /**
  * @}