1 /**
2  * @defgroup Elm_Flip Flip
3  * @ingroup Elementary
4  *
5  * @image html flip_inheritance_tree.png
6  * @image latex flip_inheritance_tree.eps
7  *
8  * This widget holds 2 content objects(Evas_Object): one on the front and one
9  * on the back. It allows you to flip from front to back and vice-versa using
10  * various animations.
11  *
12  * If either the front or back contents are not set the flip will treat that
13  * as transparent. So if you wore to set the front content but not the back,
14  * and then call elm_flip_go() you would see whatever is below the flip.
15  *
16  * For a list of supported animations see elm_flip_go().
17  *
18  * Signals that you can add callbacks for are:
19  * "animate,begin" - when a flip animation was started
20  * "animate,done" - when a flip animation is finished
21  *
22  * Default content parts of the flip widget that you can use for are:
23  * @li "front" - A front content of the flip
24  * @li "back" - A back content of the flip
25  *
26  * This widget inherits from @ref elm-container-class, so that the
27  * functions meant to act on it will work for mapbuf objects:
28  *
29  * @li @ref elm_object_part_content_set
30  * @li @ref elm_object_part_content_get
31  * @li @ref elm_object_part_content_unset
32  *
33  * @ref tutorial_flip show how to use most of the API.
34  *
35  * @{
36  */
37 
38 #ifndef EFL_NOLEGACY_API_SUPPORT
39 #include "efl_ui_flip_legacy.h"
40 #endif
41 /**
42  * @}
43  */
44