elementary : reviewd elm_mirroring.h

SVN revision: 68068
This commit is contained in:
WooHyun Jung 2012-02-17 11:26:40 +00:00
parent 0ba7d42fed
commit 4d0d161e1c
2 changed files with 17 additions and 6 deletions

View 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>

View 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
@ -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);
/**