elementary / menu, gengrid, slider, separator, photocam, index, toggle
[framework/uifw/elementary.git] / src / lib / elm_separator.c
1 #include <Elementary.h>
2 #include "elm_priv.h"
3
4 /**
5  * @defgroup Separator Separator
6  *
7  * A separator is a widget that adds a very thin object to separate other 
8  * objects.
9  * A separator can be vertical or horizontal.
10  */
11
12 typedef struct _Widget_Data Widget_Data;
13
14 struct _Widget_Data
15 {
16    Evas_Object *sep;
17    Eina_Bool horizontal;
18 };
19
20 static const char *widtype = NULL;
21 static void _del_hook(Evas_Object *obj);
22 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
23 static void _theme_hook(Evas_Object *obj);
24 static void _sizing_eval(Evas_Object *obj);
25
26 static void
27 _del_hook(Evas_Object *obj)
28 {
29    Widget_Data *wd = elm_widget_data_get(obj);
30    if (!wd) return;
31    free(wd);
32 }
33
34 static void
35 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
36 {
37    Widget_Data *wd = elm_widget_data_get(obj);
38    if (!wd) return;
39    edje_object_mirrored_set(wd->sep, rtl);
40 }
41
42 static void
43 _theme_hook(Evas_Object *obj)
44 {
45    Widget_Data *wd = elm_widget_data_get(obj);
46    if (!wd) return;
47    _elm_widget_mirrored_reload(obj);
48    _mirrored_set(obj, elm_widget_mirrored_get(obj));
49    if (wd->horizontal)
50      _elm_theme_object_set(obj, wd->sep, "separator", "horizontal", elm_widget_style_get(obj));
51    else
52      _elm_theme_object_set(obj, wd->sep, "separator", "vertical", elm_widget_style_get(obj));
53    edje_object_scale_set(wd->sep, elm_widget_scale_get(obj) * _elm_config->scale);
54    _sizing_eval(obj);
55 }
56
57 static void
58 _sizing_eval(Evas_Object *obj)
59 {
60    Widget_Data *wd = elm_widget_data_get(obj);
61    Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
62    if (!wd) return;
63    edje_object_size_min_calc(wd->sep, &minw, &minh);
64    evas_object_size_hint_min_set(obj, minw, minh);
65    evas_object_size_hint_max_set(obj, maxw, maxh);
66    evas_object_size_hint_align_set(obj, maxw, maxh);
67 }
68
69 /**
70  * Add a separator object to @p parent
71  *
72  * @param parent The parent object
73  *
74  * @return The separator object, or NULL upon failure
75  *
76  * @ingroup Separator
77  */
78 EAPI Evas_Object *
79 elm_separator_add(Evas_Object *parent)
80 {
81    Evas_Object *obj;
82    Evas *e;
83    Widget_Data *wd;
84
85    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
86
87    ELM_SET_WIDTYPE(widtype, "separator");
88    wd->horizontal = EINA_FALSE;
89    elm_widget_type_set(obj, "separator");
90    elm_widget_sub_object_add(parent, obj);
91    elm_widget_data_set(obj, wd);
92    elm_widget_del_hook_set(obj, _del_hook);
93    elm_widget_theme_hook_set(obj, _theme_hook);
94    elm_widget_can_focus_set(obj, EINA_FALSE);
95
96    wd->sep = edje_object_add(e);
97    _elm_theme_object_set(obj, wd->sep, "separator", "vertical", "default");
98    elm_widget_resize_object_set(obj, wd->sep);
99    _mirrored_set(obj, elm_widget_mirrored_get(obj));
100    _sizing_eval(obj);
101    return obj;
102 }
103
104 /**
105  * Set the horizontal mode of a separator object
106  *
107  * @param obj The separator object
108  * @param horizontal If true, the separator is horizontal
109  *
110  * @ingroup Separator
111  */
112 EAPI void
113 elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal)
114 {
115    ELM_CHECK_WIDTYPE(obj, widtype);
116    Widget_Data *wd = elm_widget_data_get(obj);
117    if (!wd) return;
118    horizontal = !!horizontal;
119    if (wd->horizontal == horizontal) return;
120    wd->horizontal = horizontal;
121    _theme_hook(obj);
122 }
123
124 /**
125  * Get the horizontal mode of a separator object
126  *
127  * @param obj The separator object
128  * @return If true, the separator is horizontal
129  *
130  * @ingroup Separator
131  */
132 EAPI Eina_Bool
133 elm_separator_horizontal_get(const Evas_Object *obj)
134 {
135    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
136    Widget_Data *wd = elm_widget_data_get(obj);
137    if (!wd) return EINA_FALSE;
138    return wd->horizontal;
139 }