1 /**
2  * @defgroup Elm_Photo Photo
3  * @ingroup Elementary
4  *
5  * @image html photo_inheritance_tree.png
6  * @image latex photo_inheritance_tree.eps
7  *
8  * The Elementary photo widget is intended for displaying a photo, for
9  * ex., a person's image (contact). Simple, yet with a very specific
10  * purpose. It has a decorative frame around the inner image itself,
11  * on the default theme. If and while no photo is set on it, it
12  * displays a person icon, indicating it's a photo placeholder.
13  *
14  * This widget relies on an internal @ref Icon, so that the APIs of
15  * these two widgets are similar (drag and drop is also possible here,
16  * for example).
17  *
18  * Signals that you can add callbacks for are:
19  * - @c "clicked" - This is called when a user has clicked the photo
20  * - @c "drag,start" - One has started dragging the inner image out of the
21  *                     photo's frame
22  * - @c "drag,end" - One has dropped the dragged image somewhere
23  *
24  * @{
25  */
26 
27 #ifndef EFL_NOLEGACY_API_SUPPORT
28 #include <elm_photo_legacy.h>
29 #endif
30 
31 /**
32  * @}
33  */
34