summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_separator_eo.h
blob: ce4d5e053907d5e525a1bf8c30890b87cc70f0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef _ELM_SEPARATOR_EO_H_
#define _ELM_SEPARATOR_EO_H_

#ifndef _ELM_SEPARATOR_EO_CLASS_TYPE
#define _ELM_SEPARATOR_EO_CLASS_TYPE

typedef Eo Elm_Separator;

#endif

#ifndef _ELM_SEPARATOR_EO_TYPES
#define _ELM_SEPARATOR_EO_TYPES


#endif
/** Elementary separator class
 *
 * @ingroup Elm_Separator
 */
#define ELM_SEPARATOR_CLASS elm_separator_class_get()

EWAPI const Efl_Class *elm_separator_class_get(void);

/**
 * @brief Set the horizontal mode of a separator object
 *
 * @param[in] obj The object.
 * @param[in] horizontal If true, the separator is horizontal
 *
 * @ingroup Elm_Separator
 */
EOAPI void elm_obj_separator_horizontal_set(Eo *obj, Eina_Bool horizontal);

/**
 * @brief Get the horizontal mode of a separator object
 *
 * @param[in] obj The object.
 *
 * @return If true, the separator is horizontal
 *
 * @ingroup Elm_Separator
 */
EOAPI Eina_Bool elm_obj_separator_horizontal_get(const Eo *obj);

#endif