1 /**
2  * @defgroup Elm_Colorselector Colorselector
3  * @ingroup Elementary
4  *
5  * @image html colorselector_inheritance_tree.png
6  * @image latex colorselector_inheritance_tree.eps
7  *
8  * @image html img/widget/colorselector/preview-00.png
9  * @image latex img/widget/colorselector/preview-00.eps
10  *
11  * A ColorSelector is a color selection widget. It allows application
12  * to set a series of colors.It also allows to load/save colors
13  * from/to config with a unique identifier, by default, the colors are
14  * loaded/saved from/to config using "default" identifier. The colors
15  * can be picked by user from the color set by clicking on individual
16  * color item on the palette or by selecting it from selector.
17  *
18  * This widget inherits from the @ref Elm_Layout one, so that all the
19  * functions acting on it also work for check objects.
20  *
21  * This widget emits the following signals, besides the ones sent from
22  * @ref Elm_Layout :
23  * - @c "changed" - When the color value changes on selector
24  *   event_info is NULL.
25  * - @c "color,item,selected" - When user clicks on color item. The
26  *   event_info parameter of the callback will be the selected color
27  *   item.
28  * - @c "color,item,longpressed" - When user long presses on color
29  *   item. The event info parameter of the callback contains selected
30  *   color item.
31  * - @c "focused" - When the colorselector has received focus. (since 1.8)
32  * - @c "unfocused" - When the colorselector has lost focus. (since 1.8)
33  * - @c "language,changed" - the program's language changed (since 1.9)
34  *
35  * See @ref tutorial_colorselector.
36  * @{
37  */
38 
39 #include "elm_colorselector_common.h"
40 #ifndef EFL_NOLEGACY_API_SUPPORT
41 #include "elm_colorselector_legacy.h"
42 #endif
43 /**
44  * @}
45  */
46