1 #ifndef _EFL_UI_CHECK_EO_LEGACY_H_
2 #define _EFL_UI_CHECK_EO_LEGACY_H_
3 
4 #ifndef _EFL_UI_CHECK_EO_CLASS_TYPE
5 #define _EFL_UI_CHECK_EO_CLASS_TYPE
6 
7 typedef Eo Efl_Ui_Check;
8 
9 #endif
10 
11 #ifndef _EFL_UI_CHECK_EO_TYPES
12 #define _EFL_UI_CHECK_EO_TYPES
13 
14 
15 #endif
16 
17 /**
18  * @brief The on/off state of the check object.
19  *
20  * @param[in] obj The object.
21  * @param[in] value @c true if the check object is selected, @c false otherwise
22  *
23  * @ingroup Elm_Check_Group
24  */
25 EAPI void elm_check_selected_set(Efl_Ui_Check *obj, Eina_Bool value);
26 
27 /**
28  * @brief The on/off state of the check object.
29  *
30  * @param[in] obj The object.
31  *
32  * @return @c true if the check object is selected, @c false otherwise
33  *
34  * @ingroup Elm_Check_Group
35  */
36 EAPI Eina_Bool elm_check_selected_get(const Efl_Ui_Check *obj);
37 
38 #endif
39