[photo] delete docs
authorMike McCormack <mj.mccormack@samsung.com>
Tue, 8 Nov 2011 01:18:56 +0000 (10:18 +0900)
committerMike McCormack <mj.mccormack@samsung.com>
Tue, 8 Nov 2011 01:18:56 +0000 (10:18 +0900)
src/lib/elm_photo.c

index aaba565..4371e4e 100644 (file)
@@ -1,20 +1,6 @@
 #include <Elementary.h>
 #include "elm_priv.h"
 
-/**
- * @defgroup Photo Photo
- * @ingroup Elementary
- *
- * For displaying the photo of a person (contact). Simple yet
- * with a very specific purpose.
- *
- * Signals that you can add callbacks for are:
- *
- * "clicked" - This is called when a user has clicked the photo
- * "drag,start" - Someone started dragging the image out of the object
- * "drag,end" - Dragged item was dropped (somewhere)
- */
-
 typedef struct _Widget_Data Widget_Data;
 
 struct _Widget_Data
@@ -212,15 +198,6 @@ _mouse_up(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *eve
    evas_object_smart_callback_call(data, SIG_CLICKED, NULL);
 }
 
-
-/**
- * Add a new photo to the parent
- *
- * @param parent The parent object
- * @return The new object or NULL if it cannot be created
- *
- * @ingroup Photo
- */
 EAPI Evas_Object *
 elm_photo_add(Evas_Object *parent)
 {
@@ -276,16 +253,6 @@ elm_photo_add(Evas_Object *parent)
    return obj;
 }
 
-/**
- * Set the file that will be used as photo
- *
- * @param obj The photo object
- * @param file The path to file that will be used as photo
- *
- * @return (1 = success, 0 = error)
- *
- * @ingroup Photo
- */
 EAPI Eina_Bool
 elm_photo_file_set(Evas_Object *obj, const char *file)
 {
@@ -300,14 +267,6 @@ elm_photo_file_set(Evas_Object *obj, const char *file)
    return EINA_TRUE;
 }
 
-/**
- * Set the size that will be used on the photo
- *
- * @param obj The photo object
- * @param size The size that the photo will be
- *
- * @ingroup Photo
- */
 EAPI void
 elm_photo_size_set(Evas_Object *obj, int size)
 {
@@ -322,14 +281,6 @@ elm_photo_size_set(Evas_Object *obj, int size)
    _sizing_eval(obj);
 }
 
-/**
- * Set if the photo should be completely visible or not.
- *
- * @param obj The photo object
- * @param fill if true the photo will be completely visible
- *
- * @ingroup Photo
- */
 EAPI void
 elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill)
 {
@@ -342,16 +293,6 @@ elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill)
    _sizing_eval(obj);
 }
 
-/**
- * Set editability of the photo.
- *
- * An editable photo can be dragged to or from, and can be cut or pasted too.
- * Note that pasting an image or dropping an item on the image will delete the
- * existing content.
- *
- * @param obj The photo object.
- * @param set To set of clear editablity.
- */
 EAPI void
 elm_photo_editable_set(Evas_Object *obj, Eina_Bool set)
 {