diff options
Diffstat (limited to 'src/lib/elementary/elm_separator_eo.h')
-rw-r--r-- | src/lib/elementary/elm_separator_eo.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/lib/elementary/elm_separator_eo.h b/src/lib/elementary/elm_separator_eo.h new file mode 100644 index 0000000..ce4d5e0 --- /dev/null +++ b/src/lib/elementary/elm_separator_eo.h | |||
@@ -0,0 +1,45 @@ | |||
1 | #ifndef _ELM_SEPARATOR_EO_H_ | ||
2 | #define _ELM_SEPARATOR_EO_H_ | ||
3 | |||
4 | #ifndef _ELM_SEPARATOR_EO_CLASS_TYPE | ||
5 | #define _ELM_SEPARATOR_EO_CLASS_TYPE | ||
6 | |||
7 | typedef Eo Elm_Separator; | ||
8 | |||
9 | #endif | ||
10 | |||
11 | #ifndef _ELM_SEPARATOR_EO_TYPES | ||
12 | #define _ELM_SEPARATOR_EO_TYPES | ||
13 | |||
14 | |||
15 | #endif | ||
16 | /** Elementary separator class | ||
17 | * | ||
18 | * @ingroup Elm_Separator | ||
19 | */ | ||
20 | #define ELM_SEPARATOR_CLASS elm_separator_class_get() | ||
21 | |||
22 | EWAPI const Efl_Class *elm_separator_class_get(void); | ||
23 | |||
24 | /** | ||
25 | * @brief Set the horizontal mode of a separator object | ||
26 | * | ||
27 | * @param[in] obj The object. | ||
28 | * @param[in] horizontal If true, the separator is horizontal | ||
29 | * | ||
30 | * @ingroup Elm_Separator | ||
31 | */ | ||
32 | EOAPI void elm_obj_separator_horizontal_set(Eo *obj, Eina_Bool horizontal); | ||
33 | |||
34 | /** | ||
35 | * @brief Get the horizontal mode of a separator object | ||
36 | * | ||
37 | * @param[in] obj The object. | ||
38 | * | ||
39 | * @return If true, the separator is horizontal | ||
40 | * | ||
41 | * @ingroup Elm_Separator | ||
42 | */ | ||
43 | EOAPI Eina_Bool elm_obj_separator_horizontal_get(const Eo *obj); | ||
44 | |||
45 | #endif | ||