Edje: update doc.

Summary: fix and add missing doxygen conent.

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7088
This commit is contained in:
Hermet Park 2018-09-21 17:55:14 +09:00
parent de277311fd
commit 9c0f6a4bb7
2 changed files with 15 additions and 2 deletions

View File

@ -13,9 +13,16 @@ typedef struct _Edje_Version
int major; /**< The major number of Edje version. */
int minor; /**< The minor number of Edje version. */
int micro; /**< The micro number of Edje version. */
int revision; /**< The revision of Edje version) */
int revision; /**< The revision of Edje version. */
} Edje_Version;
/**
* @internal
* @ingroup Edje_General_Group
*
* Current Edje Version info
*
*/
EAPI extern Edje_Version *edje_version;
#ifndef _EDJE_OBJECT_EO_CLASS_TYPE

View File

@ -846,6 +846,8 @@ EAPI void edje_extern_object_aspect_set (Evas_Object *obj, Edje_Aspect
* @param[in] file The path to the EDJ file to load @p from
* @param[in] group The name of the group, in @p file, which implements an
Edje object
*
* @ingroup Edje_Object
*/
EAPI Eina_Bool edje_object_file_set(Evas_Object *obj, const char *file, const char *group);
@ -866,6 +868,8 @@ EAPI Eina_Bool edje_object_file_set(Evas_Object *obj, const char *file, const ch
* @param[out] file The path to the EDJ file to load @p from
* @param[out] group The name of the group, in @p file, which implements an
Edje object
*
* @ingroup Edje_Object
*/
EAPI void edje_object_file_get(const Evas_Object *obj, const char **file, const char **group);
@ -895,12 +899,14 @@ EAPI void edje_object_file_get(const Evas_Object *obj, const char **file, const
*
* @see edje_object_add()
* @see edje_object_file_get()
* @see edje_object_mmap_set()
* @since 1.8
*
* @param[in] file The Eina.File pointing to the EDJ file to load @p from
* @param[in] group The name of the group, in @p file, which implements an
Edje object
*
* @ingroup Edje_Object
*
*/
EAPI Eina_Bool edje_object_mmap_set(Evas_Object *obj, const Eina_File *file, const char *group);