[TSAM-3410] Remove the padding in pw label
[apps/native/ug-mobile-ap.git] / src / mh_view_wifi_setup.c
1 /*
2 * ug-mobile-ap
3 *
4 * Copyright 2012  Samsung Electronics Co., Ltd
5
6 * Licensed under the Flora License, Version 1.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9
10 * http://www.tizenopensource.org/license
11
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 */
19 #include <efl_extension.h>
20
21 #include "mh_popup.h"
22 #include "mh_view_wifi_setup.h"
23 #include "mh_string.h"
24
25 static void __gl_realized(void *data, Evas_Object *obj, void *event_info);
26 static void __cancel_btn_cb(void *data, Evas_Object *object, void *event_info);
27 static void __save_btn_cb(void *data, Evas_Object *object, void *event_info);
28
29 static void __hide_btn_changed_cb(void *data, Evas_Object *obj, void *event_info)
30 {
31         __MOBILE_AP_FUNC_ENTER__;
32
33         if (data == NULL || obj == NULL) {
34                 ERR("Invalid param\n");
35                 return;
36         }
37
38         mh_appdata_t *ad = (mh_appdata_t *)data;
39
40         ad->setup.visibility_new = !ad->setup.visibility_new;
41
42         __MOBILE_AP_FUNC_EXIT__;
43 }
44
45 static bool __save_hide_btn_change(mh_appdata_t *ad)
46 {
47         __MOBILE_AP_FUNC_ENTER__;
48
49         if (ad == NULL) {
50                 ERR("Invalid param\n");
51                 return false;
52         }
53
54         int ret = 0;
55
56         ret = tethering_wifi_set_ssid_visibility(ad->handle,
57                         ad->setup.visibility_new);
58         if (ret != TETHERING_ERROR_NONE) {
59                 ERR("tethering_wifi_set_ssid_visibility is failed : %d\n", ret);
60                 return false;
61         }
62
63         __MOBILE_AP_FUNC_EXIT__;
64         return true;
65 }
66
67 static void __security_btn_changed_cb(void *data, Evas_Object *obj, void *event_info)
68 {
69         __MOBILE_AP_FUNC_ENTER__;
70
71         if (data == NULL || obj == NULL) {
72                 ERR("Invalid param\n");
73                 return;
74         }
75
76         mh_appdata_t *ad = (mh_appdata_t *)data;
77         mh_wifi_setting_view_t *st = &ad->setup;
78
79         if (st->security_type_new == TETHERING_WIFI_SECURITY_TYPE_NONE)
80                 st->security_type_new = TETHERING_WIFI_SECURITY_TYPE_WPA2_PSK;
81         else
82                 st->security_type_new = TETHERING_WIFI_SECURITY_TYPE_NONE;
83
84         /* update wifi passphrase item */
85         if (st->security_type_new == TETHERING_WIFI_SECURITY_TYPE_NONE) {
86                 elm_object_item_disabled_set(st->pw_item, EINA_TRUE);
87                 elm_object_disabled_set(st->save_button, EINA_FALSE);
88         } else {
89                 elm_object_item_disabled_set(st->pw_item, EINA_FALSE);
90                 if (st->pw_entry == NULL || elm_entry_entry_get(st->pw_entry) == NULL ||
91                     strlen(elm_entry_entry_get(st->pw_entry)) == 0)
92                         elm_object_disabled_set(st->save_button, EINA_TRUE);
93         }
94
95         if (st->pw_item)
96                 elm_genlist_item_update(st->pw_item);
97
98         __MOBILE_AP_FUNC_EXIT__;
99 }
100
101 static bool __save_security_btn_change(mh_appdata_t *ad)
102 {
103         __MOBILE_AP_FUNC_ENTER__;
104
105         if (ad == NULL) {
106                 ERR("Invalid param\n");
107                 return false;
108         }
109
110         int ret = 0;
111
112         ret = tethering_wifi_set_security_type(ad->handle, ad->setup.security_type_new);
113         if (ret != TETHERING_ERROR_NONE) {
114                 ERR("tethering_wifi_set_security_type is failed : %d\n", ret);
115                 return false;
116         }
117
118         __MOBILE_AP_FUNC_EXIT__;
119         return true;
120 }
121
122 static char *__gl_device_name_title_label_get(void *data, Evas_Object *obj, const char *part)
123 {
124         __MOBILE_AP_FUNC_ENTER__;
125         mh_appdata_t *ad = (mh_appdata_t *)data;
126         char *device_name_utf = NULL;
127         char *ptr = NULL;
128         char buf[MH_LABEL_LENGTH_MAX] = {0, };
129
130         if (data == NULL || obj == NULL || part == NULL) {
131                 ERR("Invalid param\n");
132                 return NULL;
133         }
134
135         if (!strcmp("elm.text.multiline", part)) {
136                 device_name_utf = vconf_get_str(VCONFKEY_SETAPPL_DEVICE_NAME_STR);
137                 if (device_name_utf == NULL)
138                         ERR("vconf_get_str failed \n");
139
140                 ptr = elm_entry_utf8_to_markup(device_name_utf);
141                 if (ptr == NULL) {
142                         ERR("elm_entry_utf8_to_markup is failed\n");
143                         free(device_name_utf);
144                         return NULL;
145                 }
146
147                 g_strlcpy(ad->setup.device_name, ptr,
148                                 sizeof(ad->setup.device_name));
149
150                 snprintf(buf, MH_LABEL_LENGTH_MAX, "<font_size=30>%s</font_size><br>%s", STR_MY_DEVICE_NAME, ptr);
151
152                 free(device_name_utf);
153                 free(ptr);
154
155                 return strdup(buf);
156         }
157
158         __MOBILE_AP_FUNC_EXIT__;
159         return NULL;
160 }
161
162 static char *__gl_hide_label_get(void *data, Evas_Object *obj, const char *part)
163 {
164         __MOBILE_AP_FUNC_ENTER__;
165
166         if (data == NULL || obj == NULL || part == NULL) {
167                 ERR("Invalid param\n");
168                 return NULL;
169         }
170
171         if (!strcmp("elm.text", part))
172                 return strdup(STR_HIDE_MY_DEV);
173
174         __MOBILE_AP_FUNC_EXIT__;
175         return NULL;
176 }
177
178 static char *__gl_security_label_get(void *data, Evas_Object *obj, const char *part)
179 {
180         __MOBILE_AP_FUNC_ENTER__;
181
182         if (data == NULL || obj == NULL || part == NULL) {
183                 ERR("Invalid param\n");
184                 return NULL;
185         }
186
187         if (!strcmp("elm.text", part))
188                 return strdup(STR_SECURITY_TYPE);
189
190         __MOBILE_AP_FUNC_EXIT__;
191         return NULL;
192 }
193
194 static Evas_Object *__gl_hide_icon_get(void *data, Evas_Object *obj,
195                 const char *part)
196 {
197         __MOBILE_AP_FUNC_ENTER__;
198
199         mh_appdata_t *ad = (mh_appdata_t *)data;
200         Evas_Object *btn = NULL;
201
202         if (data == NULL || obj == NULL || part == NULL) {
203                 ERR("Invalid param\n");
204                 return NULL;
205         }
206
207         if (!strcmp("elm.swallow.end", part)) {
208                 btn = elm_check_add(obj);
209                 if (btn == NULL) {
210                         ERR("btn is NULL\n");
211                         return NULL;
212                 }
213
214                 elm_object_style_set(btn, "on&off");
215                 evas_object_show(btn);
216                 evas_object_pass_events_set(btn, EINA_TRUE);
217                 evas_object_propagate_events_set(btn, EINA_FALSE);
218                 elm_object_focus_allow_set(btn, EINA_FALSE);
219                 elm_check_state_set(btn, ad->setup.visibility_new ? EINA_FALSE : EINA_TRUE);
220                 evas_object_smart_callback_add(btn, "changed",
221                                 __hide_btn_changed_cb, (void *)ad);
222                 ad->setup.hide_btn = btn;
223         }
224
225         __MOBILE_AP_FUNC_EXIT__;
226         return btn;
227 }
228
229 static Evas_Object *__gl_security_icon_get(void *data, Evas_Object *obj,
230                 const char *part)
231 {
232         __MOBILE_AP_FUNC_ENTER__;
233
234         mh_appdata_t *ad = (mh_appdata_t *)data;
235         Evas_Object *btn = NULL;
236
237         if (data == NULL || obj == NULL || part == NULL) {
238                 ERR("Invalid param\n");
239                 return NULL;
240         }
241
242         if (!strcmp("elm.swallow.end", part)) {
243                 btn = elm_check_add(obj);
244                 elm_object_style_set(btn, "on&off");
245                 evas_object_show(btn);
246                 evas_object_pass_events_set(btn, EINA_TRUE);
247                 evas_object_propagate_events_set(btn, EINA_FALSE);
248                 elm_check_state_set(btn, ad->setup.security_type_new ==
249                                 TETHERING_WIFI_SECURITY_TYPE_NONE ?
250                                 EINA_FALSE : EINA_TRUE);
251                 evas_object_smart_callback_add(btn, "changed",
252                                 __security_btn_changed_cb, (void *)ad);
253                 ad->setup.security_btn = btn;
254         }
255
256         __MOBILE_AP_FUNC_EXIT__;
257         return btn;
258 }
259
260 static bool __save_wifi_passphrase(mh_appdata_t *ad)
261 {
262         __MOBILE_AP_FUNC_ENTER__;
263
264         if (ad == NULL) {
265                 ERR("Invalid param\n");
266                 return false;
267         }
268
269         mh_wifi_setting_view_t *st = &ad->setup;
270         int ret = 0;
271
272         ret = tethering_wifi_set_passphrase(ad->handle, st->wifi_passphrase_new);
273         if (ret != TETHERING_ERROR_NONE) {
274                 ERR("tethering_wifi_set_passphrase is failed : %d\n", ret);
275                 return false;
276         }
277
278         __MOBILE_AP_FUNC_EXIT__;
279         return true;
280 }
281
282 static void __pw_entry_changed_cb(void *data, Evas_Object *obj,
283                                 void *event_info)
284 {
285         __MOBILE_AP_FUNC_ENTER__;
286
287         mh_appdata_t *ad = (mh_appdata_t *)data;
288         mh_wifi_setting_view_t *st = &ad->setup;
289         const char *changed_text;
290         char *utf8_string;
291         int len = 0;
292
293         changed_text = elm_entry_entry_get(obj);
294         if (changed_text == NULL) {
295                 ERR("elm_entry_entry_get is failed\n");
296                 return;
297         }
298
299         utf8_string = elm_entry_markup_to_utf8(changed_text);
300
301         if (utf8_string == NULL) {
302                 ERR("elm_entry_markup_to_utf8() Failed!!!\n");
303         } else {
304                 len = strlen(utf8_string);
305                 if (WIFI_PASSPHRASE_LENGTH_MIN <= len) {
306                         elm_object_disabled_set(st->save_button, EINA_FALSE);
307                         elm_entry_input_panel_return_key_disabled_set(obj, FALSE);
308                 } else {
309                         elm_object_disabled_set(st->save_button, EINA_TRUE);
310                         elm_entry_input_panel_return_key_disabled_set(obj, TRUE);
311                 }
312                 g_strlcpy(st->wifi_passphrase_new, utf8_string,
313                                                 sizeof(st->wifi_passphrase_new));
314                 free(utf8_string);
315                 utf8_string = NULL;
316         }
317
318         if (elm_object_part_content_get(obj, "elm.swallow.clear")) {
319                 if (elm_object_focus_get(obj)) {
320                         if (elm_entry_is_empty(obj))
321                                 elm_object_signal_emit(obj, "elm,state,clear,hidden", "");
322                         else
323                                 elm_object_signal_emit(obj, "elm,state,clear,visible", "");
324                 }
325         }
326
327         __MOBILE_AP_FUNC_EXIT__;
328         return;
329 }
330
331 static void __pw_entry_maxlength_reached_cb(void *data, Evas_Object *obj,
332                 void *event_info)
333 {
334         __MOBILE_AP_FUNC_ENTER__;
335
336         if (obj == NULL) {
337                 ERR("The param is NULL\n");
338                 __MOBILE_AP_FUNC_EXIT__;
339                 return;
340         }
341         char buf[MH_LABEL_LENGTH_MAX] = { 0, };
342         char *fmt = STR_PASSWORD_MIN_MAX;
343         notification_error_e ret;
344
345         snprintf(buf, sizeof(buf), fmt,
346                         WIFI_PASSPHRASE_LENGTH_MIN, WIFI_PASSPHRASE_LENGTH_MAX);
347
348         ret = notification_status_message_post(buf);
349         if (ret != NOTIFICATION_ERROR_NONE)
350                 ERR("notification_status_message_post() is failed : %d\n", ret);
351
352         __MOBILE_AP_FUNC_EXIT__;
353 }
354
355 static void __pw_entry_activated_cb(void *data, Evas_Object *obj, void *event_info)
356 {
357         __MOBILE_AP_FUNC_ENTER__;
358
359         if (obj == NULL) {
360                 ERR("Invalid parameter");
361                 return;
362         }
363
364         elm_object_focus_set(obj, EINA_FALSE);
365         __MOBILE_AP_FUNC_EXIT__;
366         return;
367 }
368
369 static void __pw_entry_focused_cb(void *data, Evas_Object *obj, void *event_info)
370 {
371         __MOBILE_AP_FUNC_ENTER__;
372         evas_object_smart_callback_del(obj, "focused", __pw_entry_focused_cb);
373
374          elm_object_focus_set(obj, EINA_TRUE);
375          elm_entry_cursor_end_set(obj);
376          __MOBILE_AP_FUNC_EXIT__;
377 }
378
379 static void __pw_entry_unfocused_cb(void *data, Evas_Object *obj, void *event_info)
380 {
381         __MOBILE_AP_FUNC_ENTER__;
382         if (elm_object_part_content_get(obj, "elm.swallow.clear"))
383                 elm_object_signal_emit(obj, "elm,state,clear,hidden", "");
384         elm_object_signal_emit(obj, "elm,state,focus,off", "");
385         __MOBILE_AP_FUNC_EXIT__;
386 }
387
388 static void __pw_entry_show_cb(void *data, Evas *e, Evas_Object *obj, void *event_info)
389 {
390         __MOBILE_AP_FUNC_ENTER__;
391          evas_object_event_callback_del(obj, EVAS_CALLBACK_SHOW, __pw_entry_show_cb);
392
393          elm_object_focus_set(obj, EINA_TRUE);
394          elm_entry_cursor_end_set(obj);
395          __MOBILE_AP_FUNC_EXIT__;
396 }
397
398 static void __eraser_btn_clicked_cb(void *data, Evas_Object *obj, void *event_info)
399 {
400         __MOBILE_AP_FUNC_ENTER__;
401
402         elm_object_text_set(data, "");
403         elm_entry_input_panel_return_key_disabled_set(data, TRUE);
404
405         __MOBILE_AP_FUNC_EXIT__;
406 }
407
408 static void __pw_entry_language_changed_cb(void *data, Evas_Object *obj, void *event_info)
409 {
410         __MOBILE_AP_FUNC_ENTER__;
411
412         if (obj == NULL || data == NULL) {
413                 ERR("NULL param\n");
414                 return;
415         }
416         mh_appdata_t *ad = (mh_appdata_t *)data;
417         mh_wifi_setting_view_t *st = &ad->setup;
418         char buf[MH_LABEL_LENGTH_MAX];
419         char *fmt = STR_PW_GUIDE_TEXT;
420
421         snprintf(buf, sizeof(buf), fmt, WIFI_PASSPHRASE_LENGTH_MIN);
422
423         if (st->security_type_new == TETHERING_WIFI_SECURITY_TYPE_NONE) {
424                 if (st->pw_item)
425                         elm_genlist_item_update(st->pw_item);
426         } else {
427                 elm_object_part_text_set(obj, "elm.guide", buf);
428         }
429         __MOBILE_AP_FUNC_EXIT__;
430 }
431
432 static Evas_Object *__get_pw_entry(void *data, Evas_Object *parent)
433 {
434         __MOBILE_AP_FUNC_ENTER__;
435
436         static Elm_Entry_Filter_Limit_Size limit_filter_data;
437         Evas_Object *entry = NULL;
438         char *fmt = STR_PW_GUIDE_TEXT;
439         char *ptr = NULL;
440         Evas_Object * clr_btn = NULL;
441         char buf[MH_LABEL_LENGTH_MAX];
442
443         if (parent == NULL || data == NULL) {
444                 ERR("null param \n");
445                 return NULL;
446         }
447
448         mh_appdata_t *ad = (mh_appdata_t *)data;
449         mh_wifi_setting_view_t *st = &ad->setup;
450
451         entry = elm_entry_add(parent);
452
453         if (entry == NULL) {
454                 ERR("elm_entry_add returns NULL\n");
455                 st->pw_entry = NULL;
456                 return NULL;
457         }
458
459         elm_entry_single_line_set(entry, EINA_TRUE);
460         elm_entry_scrollable_set(entry, EINA_TRUE);
461         elm_entry_password_set(entry, EINA_FALSE);
462
463         evas_object_smart_callback_add(entry, "language,changed",
464                         __pw_entry_language_changed_cb, ad);
465
466         eext_entry_selection_back_event_allow_set(entry, EINA_TRUE);
467         elm_entry_prediction_allow_set(entry, EINA_FALSE);
468         elm_object_signal_emit(entry, "elm,action,hide,search_icon", "");
469         elm_entry_input_panel_layout_set(entry, ELM_INPUT_PANEL_LAYOUT_PASSWORD);
470         snprintf(buf, sizeof(buf), fmt, WIFI_PASSPHRASE_LENGTH_MIN);
471         elm_object_part_text_set(entry, "guide", buf);
472         elm_entry_cnp_mode_set(entry, ELM_CNP_MODE_PLAINTEXT);
473
474         limit_filter_data.max_char_count = 0;
475         limit_filter_data.max_byte_count = WIFI_PASSPHRASE_LENGTH_MAX;
476         elm_entry_markup_filter_append(entry, elm_entry_filter_limit_size, &limit_filter_data);
477
478         if (st->security_type_new == TETHERING_WIFI_SECURITY_TYPE_NONE) {
479                 elm_object_part_text_set(entry, "default", buf);
480                 elm_entry_input_panel_enabled_set(entry, EINA_FALSE);
481                 elm_object_disabled_set(entry, EINA_TRUE);
482                 if (st->pw_item)
483                         elm_object_item_signal_emit(st->pw_item, "elm,state,rename,hide", "");
484                 return entry;
485         } else {
486                 elm_object_disabled_set(entry, EINA_FALSE);
487                 elm_entry_input_panel_enabled_set(entry, EINA_TRUE);
488                 ptr = elm_entry_utf8_to_markup(st->wifi_passphrase_new);
489                 if (ptr != NULL) {
490                         elm_object_text_set(entry, ptr);
491                         free(ptr);
492                 } else {
493                         ERR("elm_entry_utf8_to_markup is failed\n");
494                 }
495         }
496
497         elm_entry_input_panel_return_key_type_set(entry,
498                         ELM_INPUT_PANEL_RETURN_KEY_TYPE_DONE);
499
500         clr_btn = elm_button_add(entry);
501         elm_object_style_set(clr_btn, "search_clear");
502         elm_object_focus_allow_set(clr_btn, EINA_FALSE);
503         elm_object_part_content_set(entry, "elm.swallow.clear", clr_btn);
504         evas_object_smart_callback_add(clr_btn, "clicked", __eraser_btn_clicked_cb, entry);
505         evas_object_show(clr_btn);
506
507         evas_object_smart_callback_add(entry, "changed",
508                         __pw_entry_changed_cb, ad);
509         evas_object_smart_callback_add(entry, "maxlength,reached",
510                         __pw_entry_maxlength_reached_cb, ad);
511         evas_object_smart_callback_add(entry, "activated",
512                         __pw_entry_activated_cb, NULL);
513         evas_object_smart_callback_add(entry, "focused",
514                         __pw_entry_focused_cb, NULL);
515         evas_object_smart_callback_add(entry, "unfocused",
516                         __pw_entry_unfocused_cb, NULL);
517         evas_object_event_callback_add(entry, EVAS_CALLBACK_SHOW,
518                         __pw_entry_show_cb, NULL);
519
520         elm_object_focus_set(entry, EINA_TRUE);
521         elm_entry_input_panel_show(entry);
522         elm_object_part_content_set(parent, "elm.swallow.content", entry);
523
524         st->pw_entry = entry;
525
526         __MOBILE_AP_FUNC_EXIT__;
527         return st->pw_entry;
528 }
529
530 static Evas_Object *__gl_pw_content_get(void *data, Evas_Object *obj, const char *part)
531 {
532         __MOBILE_AP_FUNC_ENTER__;
533
534         int w = 720;
535         int h = 60;
536
537         if (data == NULL) {
538                 ERR("data is null \n");
539                 return NULL;
540         }
541
542         if (!strcmp(part, "elm.swallow.content")) {
543                 Evas_Object *box = elm_box_add(obj);
544                 Evas_Object *label = elm_label_add(box);
545                 Evas_Object *layout = elm_layout_add(box);
546                 char buf[MH_LABEL_LENGTH_MAX] = {0, };
547
548                 elm_box_align_set(box, 0.0, 0.0);
549
550                 /* Set label for name field */
551                 snprintf(buf, MH_LABEL_LENGTH_MAX, "<text align=left><font_size=30>%s</font_size></text>", STR_PASSWORD);
552                 elm_object_text_set(label, buf);
553                 evas_object_size_hint_align_set(label, EVAS_HINT_FILL, EVAS_HINT_FILL);
554                 evas_object_size_hint_weight_set(label, 0.9, EVAS_HINT_EXPAND);
555                 evas_object_size_hint_padding_set(label, ELM_SCALE_SIZE(10), ELM_SCALE_SIZE(10), 0, 0);
556                 elm_box_pack_end(box, label);
557                 evas_object_show(label);
558
559                 /* Set layout for entry field */
560                 elm_layout_theme_set(layout, "layout", "editfield", "singleline");
561                 evas_object_size_hint_align_set(layout, EVAS_HINT_FILL, EVAS_HINT_FILL);
562                 evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
563
564                 __get_pw_entry(data, layout);
565                 evas_object_show(layout);
566                 elm_box_pack_end(box, layout);
567
568                 evas_object_size_hint_min_set(box, ELM_SCALE_SIZE(w), ELM_SCALE_SIZE(h));
569                 evas_object_show(box);
570
571                 return box;
572         }
573
574         __MOBILE_AP_FUNC_EXIT__;
575         return NULL;
576 }
577
578 static void __gl_hide_item_sel(void *data, Evas_Object *obj, void *event_info)
579 {
580         __MOBILE_AP_FUNC_ENTER__;
581
582         if (data == NULL || obj == NULL || event_info == NULL) {
583                 ERR("param is NULL\n");
584                 return;
585         }
586
587         mh_appdata_t *ad = (mh_appdata_t *)data;
588
589         elm_genlist_item_selected_set((Elm_Object_Item*)event_info, EINA_FALSE);
590         __hide_btn_changed_cb(ad, obj, NULL);
591
592         elm_check_state_set(ad->setup.hide_btn, ad->setup.visibility_new ?
593                         EINA_FALSE : EINA_TRUE);
594
595         __MOBILE_AP_FUNC_EXIT__;
596 }
597
598 static void __gl_security_item_sel(void *data, Evas_Object *obj, void *event_info)
599 {
600         __MOBILE_AP_FUNC_ENTER__;
601
602         if (data == NULL || obj == NULL || event_info == NULL) {
603                 ERR("param is NULL\n");
604                 return;
605         }
606
607         mh_appdata_t *ad = (mh_appdata_t *)data;
608
609         elm_genlist_item_selected_set((Elm_Object_Item*)event_info, EINA_FALSE);
610         __security_btn_changed_cb(data, obj, NULL);
611         elm_check_state_set(ad->setup.security_btn, ad->setup.security_type_new ==
612                         TETHERING_WIFI_SECURITY_TYPE_NONE ? EINA_FALSE : EINA_TRUE);
613
614         __MOBILE_AP_FUNC_EXIT__;
615 }
616
617 static void __set_genlist_itc(mh_appdata_t *ad)
618 {
619         __MOBILE_AP_FUNC_ENTER__;
620
621 #if 0 /* not used */
622         ad->setup.sp_itc = elm_genlist_item_class_new();
623         if (ad->setup.sp_itc == NULL) {
624                 ERR("elm_genlist_item_class_new failed\n");
625                 __MOBILE_AP_FUNC_EXIT__;
626                 return;
627         }
628         ad->setup.sp_itc->item_style = "dialogue/separator";
629         ad->setup.sp_itc->func.text_get = NULL;
630         ad->setup.sp_itc->func.content_get = NULL;
631         ad->setup.sp_itc->func.state_get = NULL;
632         ad->setup.sp_itc->func.del = NULL;
633 #endif
634         ad->setup.name_itc = elm_genlist_item_class_new();
635         if (ad->setup.name_itc == NULL) {
636                 ERR("elm_genlist_item_class_new failed\n");
637                 __MOBILE_AP_FUNC_EXIT__;
638                 return;
639         }
640         ad->setup.name_itc->item_style = MH_GENLIST_MULTILINE_TEXT_STYLE;
641         ad->setup.name_itc->func.text_get = __gl_device_name_title_label_get;
642         ad->setup.name_itc->func.content_get = NULL;
643         ad->setup.name_itc->func.state_get = NULL;
644         ad->setup.name_itc->func.del = NULL;
645
646         ad->setup.hide_itc = elm_genlist_item_class_new();
647         if (ad->setup.hide_itc == NULL) {
648                 ERR("elm_genlist_item_class_new failed\n");
649                 __MOBILE_AP_FUNC_EXIT__;
650                 return;
651         }
652         ad->setup.hide_itc->item_style = MH_GENLIST_1LINE_TEXT_ICON_STYLE;
653         ad->setup.hide_itc->func.text_get = __gl_hide_label_get;
654         ad->setup.hide_itc->func.content_get = __gl_hide_icon_get;
655         ad->setup.hide_itc->func.state_get = NULL;
656         ad->setup.hide_itc->func.del = NULL;
657
658         ad->setup.security_itc = elm_genlist_item_class_new();
659         if (ad->setup.security_itc == NULL) {
660                 ERR("elm_genlist_item_class_new failed\n");
661                 __MOBILE_AP_FUNC_EXIT__;
662                 return;
663         }
664         ad->setup.security_itc->item_style = MH_GENLIST_1LINE_TEXT_ICON_STYLE;
665         ad->setup.security_itc->func.text_get = __gl_security_label_get;
666         ad->setup.security_itc->func.content_get = __gl_security_icon_get;
667         ad->setup.security_itc->func.state_get = NULL;
668         ad->setup.security_itc->func.del = NULL;
669
670         ad->setup.pw_itc = elm_genlist_item_class_new();
671         if (ad->setup.pw_itc == NULL) {
672                 ERR("elm_genlist_item_class_new failed\n");
673                 __MOBILE_AP_FUNC_EXIT__;
674                 return;
675         }
676         ad->setup.pw_itc->item_style = MH_GENLIST_FULL_CONTENT_STYLE;
677         ad->setup.pw_itc->func.text_get = NULL;
678         ad->setup.pw_itc->func.content_get = __gl_pw_content_get;
679         ad->setup.pw_itc->func.state_get = NULL;
680         ad->setup.pw_itc->func.del = NULL;
681
682 #if 0 /* not used */
683         ad->setup.sp2_itc = elm_genlist_item_class_new();
684         if (ad->setup.sp2_itc == NULL) {
685                 ERR("elm_genlist_item_class_new failed\n");
686                 __MOBILE_AP_FUNC_EXIT__;
687                 return;
688         }
689         ad->setup.sp2_itc->item_style = "dialogue/separator.2";
690         ad->setup.sp2_itc->func.text_get = NULL;
691         ad->setup.sp2_itc->func.content_get = NULL;
692         ad->setup.sp2_itc->func.state_get = NULL;
693         ad->setup.sp2_itc->func.del = NULL;
694 #endif
695         __MOBILE_AP_FUNC_EXIT__;
696         return;
697 }
698
699 static void __deconstruct_wifi_setup_view(mh_wifi_setting_view_t *st)
700 {
701         __MOBILE_AP_FUNC_ENTER__;
702
703         if (st == NULL) {
704                 ERR("st is NULL\n");
705                 return;
706         }
707
708         evas_object_smart_callback_del(st->hide_btn, "changed",
709                         __hide_btn_changed_cb);
710         evas_object_smart_callback_del(st->security_btn, "changed",
711                         __security_btn_changed_cb);
712         evas_object_smart_callback_del(st->cancel_button, "clicked",
713                         __cancel_btn_cb);
714         evas_object_smart_callback_del(st->save_button, "clicked",
715                         __save_btn_cb);
716         evas_object_smart_callback_del(st->genlist, "realized",
717                         __gl_realized);
718
719         __MOBILE_AP_FUNC_EXIT__;
720 }
721
722 static void __settings_reloaded_cb(tethering_error_e result, void *user_data)
723 {
724         if (user_data == NULL) {
725                 ERR("Invalid parameter\n");
726                 return;
727         }
728
729         __MOBILE_AP_FUNC_ENTER__;
730
731         mh_appdata_t *ad = (mh_appdata_t *)user_data;
732
733         if (result != TETHERING_ERROR_NONE)
734                 ERR("tethering_wifi_reload_settings is failed [0x%X]\n", result);
735         _update_wifi_item(ad, MH_STATE_NONE);
736
737         __MOBILE_AP_FUNC_EXIT__;
738
739         return;
740 }
741
742 static void __save_btn_cb(void *data, Evas_Object *object, void *event_info)
743 {
744         DBG("+\n");
745         if (data == NULL) {
746                 ERR("data is NULL\n");
747                 return;
748         }
749
750         mh_appdata_t *ad = (mh_appdata_t *)data;
751         mh_wifi_setting_view_t *st = &ad->setup;
752         bool ret = false;
753         bool is_setting_changed = false;
754
755         /* handle hide button change */
756         if (st->visibility != st->visibility_new) {
757                 ret = __save_hide_btn_change(ad);
758                 if (ret == false) {
759                         elm_check_state_set(st->hide_btn, st->visibility ?
760                                         EINA_FALSE : EINA_TRUE);
761                 } else {
762                         st->visibility = st->visibility_new;
763                         is_setting_changed = true;
764                 }
765         }
766         /* handle security button change */
767         if (st->security_type != st->security_type_new) {
768                 ret = __save_security_btn_change(ad);
769                 if (ret == false) {
770                         elm_check_state_set(st->security_btn, st->security_type ==
771                                         TETHERING_WIFI_SECURITY_TYPE_NONE ? EINA_FALSE : EINA_TRUE);
772                 } else {
773                                 st->security_type = st->security_type_new;
774                                 is_setting_changed = true;
775                 }
776         }
777
778         /* handle wifi passphrase change */
779         if (strcmp(st->wifi_passphrase, st->wifi_passphrase_new)) {
780                 ret = __save_wifi_passphrase(ad);
781                 if (ret == false) {
782                         g_strlcpy(st->wifi_passphrase_new, st->wifi_passphrase,
783                                         sizeof(st->wifi_passphrase_new));
784                         if (st->pw_item)
785                                 elm_genlist_item_update(st->pw_item);
786                 } else {
787                         g_strlcpy(st->wifi_passphrase, st->wifi_passphrase_new,
788                                         sizeof(st->wifi_passphrase));
789                         is_setting_changed = true;
790                         if (ad->main.help_item) {
791                                 if (ad->main.help_item)
792                                         elm_genlist_item_update(ad->main.help_item);
793                         }
794                 }
795         }
796
797         if (is_setting_changed) {
798                 _update_wifi_item(ad, MH_STATE_PROCESS);
799
800                 if (ad->main.help_item)
801                         elm_genlist_item_update(ad->main.help_item);
802
803                 /* reload wifi settings */
804                 ret = tethering_wifi_reload_settings(ad->handle, __settings_reloaded_cb,
805                                 (void *)ad);
806                 if (ret != TETHERING_ERROR_NONE)
807                         ERR("reload_configuration is failed : %d\n", ret);
808         }
809
810         elm_naviframe_item_pop(ad->naviframe);
811
812         DBG("-\n");
813         return;
814 }
815
816 static void __cancel_btn_cb(void *data, Evas_Object *object, void *event_info)
817 {
818         DBG("+\n");
819
820         if (data == NULL) {
821                 ERR("The param is NULL\n");
822                 return;
823         }
824
825         mh_appdata_t *ad = (mh_appdata_t *)data;
826
827         elm_naviframe_item_pop(ad->naviframe);
828         DBG("-\n");
829         return;
830 }
831
832 Eina_Bool _setting_back_btn_cb(void *data, Elm_Object_Item *navi_item)
833 {
834         DBG("+\n");
835
836         if (data == NULL) {
837                 ERR("The param is NULL\n");
838                 return EINA_FALSE;
839         }
840
841         mh_appdata_t *ad = (mh_appdata_t *)data;
842         mh_wifi_setting_view_t *st = &ad->setup;
843
844         if (st->visibility != st->visibility_new)
845                 st->visibility_new = st->visibility;
846
847         if (st->security_type != st->security_type_new)
848                 st->security_type_new = st->security_type;
849
850         if (strcmp(st->wifi_passphrase_new, st->wifi_passphrase)) {
851                 g_strlcpy(st->wifi_passphrase_new, st->wifi_passphrase,
852                                         sizeof(st->wifi_passphrase_new));
853         }
854         st->pw_entry = NULL;
855         __deconstruct_wifi_setup_view(st);
856
857         if (ad->rename_popup != NULL) {
858                 evas_object_del(ad->rename_popup);
859                 ad->rename_popup = NULL;
860         }
861         ad->setup.navi_it = NULL;
862
863         DBG("-\n");
864         return EINA_TRUE;
865 }
866
867 static void __gl_realized(void *data, Evas_Object *obj, void *event_info)
868 {
869         __MOBILE_AP_FUNC_ENTER__;
870
871         mh_appdata_t *ad = (mh_appdata_t *)data;
872         mh_wifi_setting_view_t *st = &(ad->setup);
873         Elm_Object_Item *item = (Elm_Object_Item *)event_info;
874         Evas_Object *ao;
875         Evas_Object *btn;
876         char str[MH_LABEL_LENGTH_MAX] = {0, };
877         int no_of_sp;
878         int i;
879
880         if (item == st->hide_item)
881                 elm_object_item_signal_emit(item, "elm,state,top", "");
882         else if (item == st->security_item)
883                 elm_object_item_signal_emit(item, "elm,state,center", "");
884         else if (item == st->pw_item)
885                 elm_object_item_signal_emit(item, "elm,state,bottom", "");
886
887         no_of_sp = sizeof(st->sp_item) / sizeof(st->sp_item[0]);
888         for (i = 0; i < no_of_sp; i++) {
889                 if (item == st->sp_item[i])
890                         elm_object_item_access_unregister(item);
891         }
892
893         if (item == st->hide_item || item == st->security_item) {
894                 ao = elm_object_item_access_object_get(item);
895                 btn = elm_object_item_part_content_get(item, "on&off");
896                 snprintf(str, sizeof(str), "%s, %s", "On/off button",
897                                 (elm_check_state_get(btn) ? "On" : "Off"));
898                 elm_access_info_set(ao, ELM_ACCESS_CONTEXT_INFO, str);
899         }
900
901         if (item == st->pw_item) {
902                 elm_object_item_access_unregister(item);
903                 ao = elm_object_item_access_register(item);
904                 snprintf(str, sizeof(str), "%s, %s", STR_PASSWORD, st->wifi_passphrase_new);
905                 elm_access_info_set(ao, ELM_ACCESS_CONTEXT_INFO, str);
906         }
907
908         __MOBILE_AP_FUNC_EXIT__;
909
910         return;
911 }
912
913 static void __select_passphrase_item(void *data, Evas_Object *obj, void *event_info)
914 {
915         __MOBILE_AP_FUNC_ENTER__;
916
917         if (data == NULL) {
918                 ERR("The param is NULL\n");
919                 return;
920         }
921
922         mh_appdata_t *ad = (mh_appdata_t *)data;
923         mh_wifi_setting_view_t *st = &ad->setup;
924
925         elm_object_focus_set(st->pw_entry, EINA_TRUE);
926
927         __MOBILE_AP_FUNC_EXIT__;
928         return;
929 }
930
931 Evas_Object *__create_genlist(mh_appdata_t *ad)
932 {
933         __MOBILE_AP_FUNC_ENTER__;
934
935         if (ad == NULL) {
936                 ERR("ad is NULL\n");
937                 return NULL;
938         }
939
940         void *data = (void *)ad;
941         mh_wifi_setting_view_t *st = &ad->setup;
942         Evas_Object *genlist;
943
944         genlist = elm_genlist_add(ad->naviframe);
945         if (genlist == NULL) {
946                 ERR("genlist is NULL\n");
947                 return NULL;
948         }
949
950         elm_object_style_set(genlist, "dialogue");
951         elm_genlist_mode_set(genlist, ELM_LIST_COMPRESS);
952         evas_object_smart_callback_add(genlist, "realized", __gl_realized, ad);
953
954         __set_genlist_itc(ad);
955
956         st->name_item = elm_genlist_item_append(genlist, st->name_itc, data, NULL,
957                         ELM_GENLIST_ITEM_NONE, NULL, NULL);
958         elm_genlist_item_select_mode_set(st->name_item, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY);
959
960         if (st->name_item)
961                 elm_object_item_disabled_set(st->name_item, EINA_TRUE);
962
963         st->hide_item = elm_genlist_item_append(genlist, st->hide_itc, data, NULL,
964                         ELM_GENLIST_ITEM_NONE, __gl_hide_item_sel, data);
965
966         st->security_item = elm_genlist_item_append(genlist, st->security_itc, data, NULL,
967                         ELM_GENLIST_ITEM_NONE, __gl_security_item_sel, data);
968
969         st->pw_item = elm_genlist_item_append(genlist, st->pw_itc, data, NULL,
970                         ELM_GENLIST_ITEM_NONE, __select_passphrase_item, ad);
971         if (st->security_type == TETHERING_WIFI_SECURITY_TYPE_NONE)
972                 elm_object_item_disabled_set(st->pw_item, EINA_TRUE);
973         else
974                 elm_object_item_disabled_set(st->pw_item, EINA_FALSE);
975
976 /* End separator is removed because of P131104-03336. It is confirmed by UX team for this case.
977         item = elm_genlist_item_append(genlist, st->sp_itc, NULL, NULL,
978                         ELM_GENLIST_ITEM_NONE, NULL, NULL);
979         elm_genlist_item_select_mode_set(item, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY);
980         st->sp_item[i++] = item;
981 */
982
983         __MOBILE_AP_FUNC_EXIT__;
984
985         return genlist;
986 }
987
988 void mh_draw_wifi_setup_view(mh_appdata_t *ad)
989 {
990         DBG("+\n");
991
992         if (ad == NULL) {
993                 ERR("ad is NULL\n");
994                 DBG("-\n");
995                 return;
996         }
997         Evas_Object *btn;
998         mh_wifi_setting_view_t *st = &ad->setup;
999
1000         if (ad->setup.navi_it != NULL) {
1001                 ERR("Wi-Fi setup view already exists\n");
1002                 DBG("-\n");
1003                 return;
1004         }
1005
1006         st->genlist = __create_genlist(ad);
1007         if (st->genlist == NULL) {
1008                 ERR("__create_genlist returns NULL\n");
1009                 DBG("-\n");
1010                 return;
1011         }
1012
1013         st->navi_it = elm_naviframe_item_push(ad->naviframe, "IDS_MOBILEAP_MBODY_WI_FI_TETHERING",
1014                         NULL, NULL, st->genlist, NULL);
1015         elm_object_item_domain_text_translatable_set(st->navi_it, PKGNAME, EINA_TRUE);
1016
1017         elm_naviframe_item_pop_cb_set(st->navi_it, _setting_back_btn_cb, (void *)ad);
1018
1019         btn = elm_button_add(ad->naviframe);
1020         elm_object_style_set(btn, "naviframe/title_cancel");
1021         evas_object_smart_callback_add(btn, "clicked", __cancel_btn_cb, ad);
1022         elm_object_item_part_content_set(st->navi_it, "title_left_btn", btn);
1023         st->cancel_button = btn;
1024
1025         btn = elm_button_add(ad->naviframe);
1026         elm_object_style_set(btn, "naviframe/title_done");
1027         evas_object_smart_callback_add(btn, "clicked", __save_btn_cb, ad);
1028         elm_object_item_part_content_set(st->navi_it, "title_right_btn", btn);
1029         st->save_button = btn;
1030         DBG("-\n");
1031 }