1 #ifndef _EFL_UI_PANES_EO_LEGACY_H_
2 #define _EFL_UI_PANES_EO_LEGACY_H_
3 
4 #ifndef _EFL_UI_PANES_EO_CLASS_TYPE
5 #define _EFL_UI_PANES_EO_CLASS_TYPE
6 
7 typedef Eo Efl_Ui_Panes;
8 
9 #endif
10 
11 #ifndef _EFL_UI_PANES_EO_TYPES
12 #define _EFL_UI_PANES_EO_TYPES
13 
14 
15 #endif
16 
17 
18 
19 /**
20  * @brief Set whether the left and right panes can be resized by user
21  * interaction.
22  *
23  * By default panes' contents are resizable by user interaction.
24  *
25  * @param[in] obj The object.
26  * @param[in] fixed Use @c true to fix the left and right panes sizes and make
27  * them not to be resized by user interaction. Use @c false to make them
28  * resizable.
29  *
30  * @ingroup Elm_Panes_Group
31  */
32 EAPI void elm_panes_fixed_set(Efl_Ui_Panes *obj, Eina_Bool fixed);
33 
34 /**
35  * @brief Set whether the left and right panes can be resized by user
36  * interaction.
37  *
38  * By default panes' contents are resizable by user interaction.
39  *
40  * @param[in] obj The object.
41  *
42  * @return Use @c true to fix the left and right panes sizes and make them not
43  * to be resized by user interaction. Use @c false to make them resizable.
44  *
45  * @ingroup Elm_Panes_Group
46  */
47 EAPI Eina_Bool elm_panes_fixed_get(const Efl_Ui_Panes *obj);
48 
49 #endif
50