Fix ElmImage documentation.

SVN revision: 64336
This commit is contained in:
Sanjeev BA 2011-10-23 23:41:41 +00:00
parent 1390faa5d9
commit fa9edc811e
1 changed files with 7 additions and 14 deletions

View File

@ -5249,6 +5249,7 @@ extern "C" {
* @ingroup Image * @ingroup Image
*/ */
EAPI Eina_Bool elm_image_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1); EAPI Eina_Bool elm_image_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
/** /**
* Gets the current size of the image. * Gets the current size of the image.
* *
@ -5324,7 +5325,7 @@ extern "C" {
*/ */
EAPI void elm_image_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1); EAPI void elm_image_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
/** /**
* Set if the image fill the entire object area when keeping the aspect ratio. * Set if the image fills the entire object area, when keeping the aspect ratio.
* *
* @param obj The image object * @param obj The image object
* @param fill_outside @c EINA_TRUE if the object is filled outside, * @param fill_outside @c EINA_TRUE if the object is filled outside,
@ -5394,11 +5395,7 @@ extern "C" {
* Set the image orientation. * Set the image orientation.
* *
* @param obj The image object * @param obj The image object
* @param orient The image orientation * @param orient The image orientation @ref Elm_Image_Orient
* (one of #ELM_IMAGE_ORIENT_NONE, #ELM_IMAGE_ROTATE_90_CW,
* #ELM_IMAGE_ROTATE_180_CW, #ELM_IMAGE_ROTATE_90_CCW,
* #ELM_IMAGE_FLIP_HORIZONTAL, #ELM_IMAGE_FLIP_VERTICAL,
* #ELM_IMAGE_FLIP_TRANSPOSE, #ELM_IMAGE_FLIP_TRANSVERSE).
* Default is #ELM_IMAGE_ORIENT_NONE. * Default is #ELM_IMAGE_ORIENT_NONE.
* *
* This function allows to rotate or flip the given image. * This function allows to rotate or flip the given image.
@ -5413,11 +5410,7 @@ extern "C" {
* Get the image orientation. * Get the image orientation.
* *
* @param obj The image object * @param obj The image object
* @return The image orientation * @return The image orientation @ref Elm_Image_Orient
* (one of #ELM_IMAGE_ORIENT_NONE, #ELM_IMAGE_ROTATE_90_CW,
* #ELM_IMAGE_ROTATE_180_CW, #ELM_IMAGE_ROTATE_90_CCW,
* #ELM_IMAGE_FLIP_HORIZONTAL, #ELM_IMAGE_FLIP_VERTICAL,
* #ELM_IMAGE_FLIP_TRANSPOSE, #ELM_IMAGE_FLIP_TRANSVERSE)
* *
* @see elm_image_orient_set() * @see elm_image_orient_set()
* @see @ref Elm_Image_Orient * @see @ref Elm_Image_Orient
@ -5438,13 +5431,13 @@ extern "C" {
*/ */
EAPI void elm_image_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1); EAPI void elm_image_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
/** /**
* Make the image 'editable'. * Check if the image 'editable'.
* *
* @param obj Image object. * @param obj Image object.
* @return Editability. * @return Editability.
* *
* This means the image is a valid drag target for drag and drop, and can be * A return value of EINA_TRUE means the image is a valid drag target
* cut or pasted too. * for drag and drop, and can be cut or pasted too.
* *
* @ingroup Image * @ingroup Image
*/ */