1 #include <Elementary.h>
5 * @defgroup Separator Separator
8 * A separator is a widget that adds a very thin object to separate other
10 * A separator can be vertical or horizontal.
13 typedef struct _Widget_Data Widget_Data;
21 static const char *widtype = NULL;
22 static void _del_hook(Evas_Object *obj);
23 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
24 static void _theme_hook(Evas_Object *obj);
25 static void _sizing_eval(Evas_Object *obj);
28 _del_hook(Evas_Object *obj)
30 Widget_Data *wd = elm_widget_data_get(obj);
36 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
38 Widget_Data *wd = elm_widget_data_get(obj);
40 edje_object_mirrored_set(wd->sep, rtl);
44 _theme_hook(Evas_Object *obj)
46 Widget_Data *wd = elm_widget_data_get(obj);
48 _elm_widget_mirrored_reload(obj);
49 _mirrored_set(obj, elm_widget_mirrored_get(obj));
51 _elm_theme_object_set(obj, wd->sep, "separator", "horizontal", elm_widget_style_get(obj));
53 _elm_theme_object_set(obj, wd->sep, "separator", "vertical", elm_widget_style_get(obj));
54 edje_object_scale_set(wd->sep, elm_widget_scale_get(obj) * _elm_config->scale);
59 _sizing_eval(Evas_Object *obj)
61 Widget_Data *wd = elm_widget_data_get(obj);
62 Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
64 edje_object_size_min_calc(wd->sep, &minw, &minh);
65 evas_object_size_hint_min_set(obj, minw, minh);
66 evas_object_size_hint_max_set(obj, maxw, maxh);
67 evas_object_size_hint_align_set(obj, maxw, maxh);
71 * Add a separator object to @p parent
73 * @param parent The parent object
75 * @return The separator object, or NULL upon failure
80 elm_separator_add(Evas_Object *parent)
86 ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
88 ELM_SET_WIDTYPE(widtype, "separator");
89 wd->horizontal = EINA_FALSE;
90 elm_widget_type_set(obj, "separator");
91 elm_widget_sub_object_add(parent, obj);
92 elm_widget_data_set(obj, wd);
93 elm_widget_del_hook_set(obj, _del_hook);
94 elm_widget_theme_hook_set(obj, _theme_hook);
95 elm_widget_can_focus_set(obj, EINA_FALSE);
97 wd->sep = edje_object_add(e);
98 _elm_theme_object_set(obj, wd->sep, "separator", "vertical", "default");
99 elm_widget_resize_object_set(obj, wd->sep);
100 _mirrored_set(obj, elm_widget_mirrored_get(obj));
106 * Set the horizontal mode of a separator object
108 * @param obj The separator object
109 * @param horizontal If true, the separator is horizontal
114 elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal)
116 ELM_CHECK_WIDTYPE(obj, widtype);
117 Widget_Data *wd = elm_widget_data_get(obj);
119 horizontal = !!horizontal;
120 if (wd->horizontal == horizontal) return;
121 wd->horizontal = horizontal;
126 * Get the horizontal mode of a separator object
128 * @param obj The separator object
129 * @return If true, the separator is horizontal
134 elm_separator_horizontal_get(const Evas_Object *obj)
136 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
137 Widget_Data *wd = elm_widget_data_get(obj);
138 if (!wd) return EINA_FALSE;
139 return wd->horizontal;