[searchbar] remove unused codes
[framework/uifw/elementary.git] / src / lib / elm_searchbar.c
1 /*
2  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
3  */
4 #include <Elementary.h>
5 #include "elm_priv.h"
6
7 /**
8  * @defgroup Searchbar Searchbar
9  * @ingroup Elementary
10  *
11  * This is Searchbar. 
12  * It can contain a simple entry and button object.
13  */
14
15 typedef struct _Widget_Data Widget_Data;
16
17 struct _Widget_Data
18 {
19    Evas_Object *base, *eb, *cancel_btn;
20    Eina_Bool cancel_btn_ani_flag;
21 };
22
23 static void _del_hook(Evas_Object *obj);
24 static void _theme_hook(Evas_Object *obj);
25 static void _sizing_eval(Evas_Object *obj);
26 static void _clicked(void *data, Evas_Object *obj, const char *emission, const char *source);
27 static void _changed(void *data, Evas_Object *obj, const char *emission, const char *source);
28 static void _cancel_clicked(void *data, Evas_Object *obj, const char *emission, const char *source);
29 static void _signal_reset_clicked(void *data, Evas_Object *obj, const char *emission, const char *source);
30
31 static void _del_hook(Evas_Object *obj)
32 {
33    Widget_Data *wd = elm_widget_data_get(obj);
34
35    if (!wd) return;
36
37    free(wd);
38 }
39
40 static void _theme_hook(Evas_Object *obj)
41 {
42    Widget_Data *wd = elm_widget_data_get(obj);
43    if (!wd) return;
44
45    _elm_theme_object_set(obj, wd->base, "searchbar", "base", elm_widget_style_get(obj));
46
47    if (wd->eb)
48      edje_object_part_swallow(wd->base, "search_textfield", wd->eb);
49    if (wd->cancel_btn)
50      edje_object_part_swallow(wd->base, "button_cancel", wd->cancel_btn);
51
52    edje_object_signal_callback_add(wd->base, "elm,action,click", "", _signal_reset_clicked, obj);
53
54    edje_object_scale_set(wd->cancel_btn, elm_widget_scale_get(obj) * _elm_config->scale);
55    _sizing_eval(obj);
56 }
57
58 static void _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
63    if (!wd) return;
64    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
65    edje_object_size_min_restricted_calc(wd->base, &minw, &minh, minw, minh);
66    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
67    evas_object_size_hint_min_set(obj, minw, minh);
68    evas_object_size_hint_max_set(obj, maxw, maxh);
69 }
70
71 static void _clicked(void *data, Evas_Object *obj, const char *emission, const char *source)
72 {
73    Widget_Data *wd = elm_widget_data_get(data);
74    if (!wd) return;
75
76    elm_entry_cursor_end_set(elm_editfield_entry_get(wd->eb));
77    if (wd->cancel_btn_ani_flag == EINA_TRUE)
78      edje_object_signal_emit(wd->base, "CANCELIN", "PROG");
79    else
80      edje_object_signal_emit(wd->base, "CANCELSHOW", "PROG");
81
82    evas_object_smart_callback_call(data, "clicked", NULL);
83 }
84
85 static void _changed(void *data, Evas_Object *obj, const char *emission, const char *source)
86 {
87    Widget_Data *wd = elm_widget_data_get(data);
88
89    if (!wd) return;
90
91    evas_object_smart_callback_call(data, "changed", NULL);
92 }
93
94 static void _cancel_clicked(void *data, Evas_Object *obj, const char *emission, const char *source)
95 {
96    Widget_Data *wd = elm_widget_data_get(data);
97    if (!wd) return;
98
99    if (wd->cancel_btn_ani_flag == EINA_TRUE)
100      edje_object_signal_emit(wd->base, "CANCELOUT", "PROG");
101    else
102      edje_object_signal_emit(wd->base, "CANCELHIDE", "PROG");
103
104
105    const char* text;
106    text = elm_entry_entry_get(elm_editfield_entry_get(wd->eb));
107    if (text != NULL && strlen(text) > 0)
108      elm_entry_entry_set(elm_editfield_entry_get(wd->eb), NULL);
109
110    evas_object_smart_callback_call(data, "cancel,clicked", NULL);
111 }
112
113 static void _signal_reset_clicked(void *data, Evas_Object *obj, const char *emission, const char *source)
114 {
115    Widget_Data *wd = elm_widget_data_get(data);
116    if (!wd) return;
117    elm_entry_entry_set(elm_editfield_entry_get(wd->eb), NULL);
118 }
119
120 /**
121  * Add a new searchbar to the parent
122  * @param parent The parent object
123  * @return The new object or NULL if it cannot be created
124  *
125  * @ingroup Searchbar
126  */
127 EAPI Evas_Object *elm_searchbar_add(Evas_Object *parent)
128 {
129    Evas_Object *obj;
130    Evas *e;
131    Widget_Data *wd;
132
133    wd = ELM_NEW(Widget_Data);
134    e = evas_object_evas_get(parent);
135    if (e == NULL) return NULL;
136    obj = elm_widget_add(e);
137    if (obj == NULL) return NULL;
138    elm_widget_type_set(obj, "searchbar");
139    elm_widget_sub_object_add(parent, obj);
140    elm_widget_data_set(obj, wd);
141    elm_widget_del_hook_set(obj, _del_hook);
142    elm_widget_theme_hook_set(obj, _theme_hook);
143    elm_widget_can_focus_set(obj, 1 );
144
145    wd->base = edje_object_add(e);
146    if (wd->base == NULL) return NULL;
147
148    _elm_theme_object_set(obj, wd->base, "searchbar", "base", "default");
149
150    //   evas_object_size_hint_weight_set(wd->base, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
151    //   evas_object_size_hint_align_set(wd->base, EVAS_HINT_FILL, EVAS_HINT_FILL);
152
153    // Add Entry
154    wd->eb = elm_editfield_add(parent);
155    elm_object_style_set(wd->eb, "searchbar");
156    edje_object_part_swallow(wd->base, "search_textfield", wd->eb);
157 //   elm_editfield_guide_text_set(wd->eb, "Search");
158    elm_editfield_entry_single_line_set(wd->eb, EINA_TRUE);
159    elm_editfield_eraser_set(wd->eb, EINA_TRUE);
160    evas_object_smart_callback_add(wd->eb, "clicked", _clicked, obj);
161    evas_object_smart_callback_add(wd->eb, "changed", _changed, obj);
162    elm_widget_sub_object_add(obj, wd->eb);
163
164    // Add Button
165    wd->cancel_btn = elm_button_add(parent);
166    edje_object_part_swallow(wd->base, "button_cancel", wd->cancel_btn);
167    elm_object_style_set(wd->cancel_btn, "custom/darkblue");
168    elm_button_label_set(wd->cancel_btn, "Cancel");
169    evas_object_smart_callback_add(wd->cancel_btn, "clicked", _cancel_clicked, obj);
170    elm_widget_sub_object_add(obj, wd->cancel_btn);
171
172    wd->cancel_btn_ani_flag = EINA_FALSE;
173
174    edje_object_signal_callback_add(wd->base, "elm,action,click", "", _signal_reset_clicked, obj);
175
176    elm_widget_resize_object_set(obj, wd->base);
177
178    _sizing_eval(obj);
179
180    return obj;
181 }
182
183 /**
184  * get the text of entry
185  *
186  * @param obj The entry object
187  * @return The title of entry
188  *
189  * @ingroup entry
190  */
191 EAPI void elm_searchbar_text_set(Evas_Object *obj, const char *entry)
192 {
193    Widget_Data *wd = elm_widget_data_get(obj);
194    if (!wd) return NULL;
195
196    elm_entry_entry_set(elm_editfield_entry_get(wd->eb), entry);
197 }
198
199 /**
200  * get the text of entry
201  *
202  * @param obj The entry object
203  * @return The title of entry
204  *
205  * @ingroup entry
206  */
207 EAPI const char* elm_searchbar_text_get(Evas_Object *obj)
208 {
209    Widget_Data *wd = elm_widget_data_get(obj);
210    if (!wd) return NULL;
211
212    return elm_entry_entry_get(elm_editfield_entry_get(wd->eb));
213 }
214
215 /**
216  * get the pointer of entry
217  *
218  * @param obj The entry object
219  * @return The title of entry
220  *
221  * @ingroup entry
222  */
223 EAPI Evas_Object *elm_searchbar_entry_get(Evas_Object *obj)
224 {
225    Widget_Data *wd = elm_widget_data_get(obj);
226    if (!wd) return NULL;
227
228    return elm_editfield_entry_get(wd->eb);
229 }
230
231 /**
232  * get the pointer of entry
233  *
234  * @param obj The entry object
235  * @return The title of entry
236  *
237  * @ingroup entry
238  */
239 EAPI void elm_searchbar_cancel_button_animation_set(Evas_Object *obj, Eina_Bool cancel_btn_ani_flag)
240 {
241    Widget_Data *wd = elm_widget_data_get(obj);
242    if (!wd) return;
243
244    if (cancel_btn_ani_flag == EINA_TRUE)
245      wd->cancel_btn_ani_flag = EINA_TRUE;
246    else
247      wd->cancel_btn_ani_flag = EINA_FALSE;
248 }