Create sub-text of 'More connectivity' and 'More system' menu.
[apps/core/preloaded/settings.git] / src / setting.c
1 /*
2  * setting
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
5  *
6  * Contact: MyoungJune Park <mj2004.park@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 #include <setting.h>
22 #include <appcore-common.h>
23 #include <heynoti.h>
24 #include <Ecore_X.h>
25 #include <sensor.h>
26 #include <aul.h>
27 #include "setting-plugin.h"
28 #include "setting-main.h"
29 #include <elm_object.h>
30 #include <appsvc.h>
31
32 extern void setting_update_gl_item(void* data);
33
34 #define KEY_END "XF86Stop"
35
36 int g_geometry_x, g_geometry_y, g_geometry_w, g_geometry_h;
37 extern int aul_listen_app_dead_signal(int (*func)(int signal, void *data), void *data);
38
39 static void __main_motion_sensor_cb( unsigned long long timestamp, void *data)
40 {
41         /* The code 'return ;' will be deleted after the defect of elm_genlist_item_top_show() is fixed */
42
43         setting_retm_if(NULL == data, "NULL == data");
44         SETTING_TRACE_BEGIN;
45         setting_main_appdata *ad = (setting_main_appdata *) data;
46
47         SETTING_TRACE(">>>>>>>Double tap event detected");
48         //If it is in UG mode, Setting just send the event to the loaded UG
49
50         if (ad->isInUGMode && ad->ug) {
51         #ifdef SUPPORT_UG_MESSAGE
52                 SETTING_TRACE(">>>>>>>Send event to UG");
53
54                 service_h svc;
55                 if(service_create(&svc))
56                         return;
57
58                 service_add_extra_data(svc, "Detected", "Double_tap_event");
59                 if (ug_send_message(ad->ug, svc) != 0) {
60                         SETTING_TRACE_ERROR("call ug_send_message fail");
61                 }
62
63                 service_destroy(svc);
64         #else
65                 //Methord: instead of send message to UG and its sub-UGs,
66                 //1.To get the layout of UG ,and then
67                 //2.To get the naviframe of the layout, and then,
68                 //3.To get the toppest item  of naviframe, and then
69                 //4.To get the content of naviframe toppest item,that is content
70                 //5.content ia mainly a genlist,but it is not fixed,it maybe a conformant or another layout
71                 //  if it is a genlist,directly show its top item
72                 //  if it is a conformant or another layout,to get all of its sub-objects,then ask turnly
73                 //     whether it is a genlist,if it is(some sub-object), topply show it.
74                 //That's all
75                 Evas_Object *layout = (Evas_Object *)ug_get_layout(ad->ug);
76                 if (layout) {
77                         Evas_Object *genlist = NULL;
78                         Evas_Object *navi_bar = elm_object_part_content_get(layout, "elm.swallow.content");
79                         Elm_Object_Item *item = elm_naviframe_top_item_get(navi_bar);
80                         Evas_Object *content = elm_object_item_content_get(item);
81                         //SETTING_TRACE("content:%p", content);
82
83                         const char *type = elm_object_widget_type_get(content);
84                         SETTING_TRACE("content type:%s", type);
85                         if (0 == safeStrCmp(type, "genlist")) {
86                                 genlist = content;
87                         //} else if (0 == safeStrCmp(type, "layout") || 0 == safeStrCmp(type, "conformant")) {
88                         } else if (NULL != type) {//type="layout","conformant" etc..
89                                 //layout
90                                 //genlist = elm_object_part_content_get(content, "elm.swallow.contents");
91                                 const Eina_List *subobjs = elm_widget_sub_object_list_get(content);
92                                 ret_if(!subobjs);
93                                 Evas_Object *subobj;
94                                 const Eina_List *l;
95
96                                 //just only search the first objects level
97                                 EINA_LIST_FOREACH(subobjs, l, subobj) {
98                                         if (!subobj) continue;
99                                         type = elm_object_widget_type_get(subobj);
100                                         if (0 == safeStrCmp(type, "genlist")) {
101                                                 genlist = subobj;
102                                                 SETTING_TRACE("Get the genlist:%p", genlist);
103                                                 Elm_Object_Item *first_item = elm_genlist_first_item_get(genlist);
104                                                 if (first_item) {
105                                                         elm_genlist_item_show(first_item, ELM_GENLIST_ITEM_SCROLLTO_TOP);
106                                                 }
107                                         }
108                                 }
109                                 return;//to return,because for this case,we need special process.
110                         } else {
111                                 //keep genlist to be NULL.
112                         }
113                         SETTING_TRACE("genlist(:%p) type:%s", genlist, elm_object_widget_type_get(genlist));
114                         if (genlist && 0 == safeStrCmp(elm_object_widget_type_get(genlist), "genlist")) {
115                                 SETTING_TRACE("Get the genlist:%p", genlist);
116                                 Elm_Object_Item *first_item = elm_genlist_first_item_get(genlist);
117                                 if (first_item) {
118                                         elm_genlist_item_show(first_item, ELM_GENLIST_ITEM_SCROLLTO_TOP);
119                                 }
120                         }
121                 }
122         #endif
123         } else {
124                 setting_go_to_navibar_list_top(ad->navibar_main);
125         }
126 }
127
128 /**
129 * The event process when hard key is pressed.
130 */
131 #if DISABLED_CODE
132 static int setting_main_keydown_cb(void *data, int type, void *event)
133 {
134         SETTING_TRACE_BEGIN;
135
136         static int s_count = 0;
137         Ecore_Event_Key *ev = event;
138 #if APPLIED_BACK_KEY_UG
139         if (!safeStrCmp(ev->keyname, KEY_END)) {
140                 Evas_Object *popup = get_toppest_popup_window(ad->evas);
141                 if (popup) {
142                         /* "progressbar"ÀàÐ͵Äpopup, ²»×÷´¦Àí */
143                         Evas_Object *content = elm_object_content_get(popup);
144                         const char *type = elm_widget_type_get(content);
145                         if (type && !safeStrCmp(type, "progressbar")) {
146                                 SETTING_TRACE_DEBUG
147                                     ("Found popup[%p], but it respresent a progress bar, so skip it.",
148                                      popup);
149                         } else {
150                                 evas_object_smart_callback_call(popup,
151                                                                 "timeout",
152                                                                 NULL);
153
154                                 /* error handling */
155                                 /*Evas_Object *popup2 = get_toppest_popup_window(ad->evas);
156                                    if (popup == popup2)
157                                    {
158                                    SETTING_TRACE_ERROR("error handling");
159                                    evas_object_del(popup);
160                                    } */
161                         }
162                 }
163                 return;
164         }
165
166         if (ad->isInUGMode) {   /* have some ug being loaded, it was reset to be FALSE in  setting_main_destroy_ug_cb() */
167                 SETTING_TRACE("Send UG_KEY_EVENT_END to ug");
168                 ug_send_key_event(UG_KEY_EVENT_END);
169         } else {
170                 if (elm_naviframe_top_item_get(ad->navibar_main)
171                     == elm_naviframe_bottom_item_get(ad->navibar_main)) {
172                         SETTING_TRACE("To exit Setting App");
173                         elm_exit();
174                 } else {
175                         SETTING_TRACE("To pre-view of Setting App");
176                         elm_naviframe_item_pop(ad->navibar_main);
177                 }
178         }
179 }
180 #else                           /* FOR MWC DEMO 2010.02.07 */
181         if (ev && !safeStrCmp(ev->keyname, KEY_END)) {
182                 /* do nothing except exit */
183                 SETTING_TRACE("before --- elm_exit ");
184
185                 elm_exit();
186                 s_count = s_count + 1;
187                 SETTING_TRACE("after --- elm_exit = %d ", s_count);
188         }
189 #endif
190         SETTING_TRACE_END;
191         return 1;
192 }
193 #endif
194
195 #if LOW_BATTERY_DO_NOTHING
196
197 /*  in case of low battery, don't terminate itself.*/
198
199 /**
200 * The event process when battery becomes low.
201 */
202 static int setting_main_low_battery_cb(void *data)
203 {
204         SETTING_TRACE_BEGIN;
205         setting_main_appdata *ad = data;
206
207         if (ad->ug)
208                 ug_send_event(UG_EVENT_LOW_BATTERY);
209
210         return 0;
211 }
212 #endif
213
214 #if SUPPORT_APP_ROATION
215
216 /**
217 * To active rotation effect in Setting App
218 */
219 static int setting_main_rotate(enum appcore_rm m, void *data)
220 {
221         SETTING_TRACE_BEGIN;
222         setting_main_appdata *ad = data;
223         int r;
224
225         if (ad == NULL || ad->win_main == NULL)
226                 return 0;
227
228         switch (m) {
229         case APPCORE_RM_PORTRAIT_NORMAL:
230                 r = 0;
231                 break;
232         case APPCORE_RM_PORTRAIT_REVERSE:
233                 r = 180;
234                 break;
235         case APPCORE_RM_LANDSCAPE_NORMAL:
236                 r = 270;
237                 break;
238         case APPCORE_RM_LANDSCAPE_REVERSE:
239                 r = 90;
240                 break;
241         default:
242                 r = -1;
243                 break;
244         }
245
246         if (r >= 0)
247                 elm_win_rotation_with_resize_set(ad->win_main, r);
248
249         return 0;
250 }
251 #endif
252
253 /**
254 * The event process when region is changes.
255 */
256 static int setting_main_region_changed_cb(void *data)
257 {
258         setting_main_appdata *ad = data;
259
260         if (ad->ug)
261                 ug_send_event(UG_EVENT_REGION_CHANGE);
262
263         return 0;
264 }
265
266 /**
267 * The event process when win object is destroyed
268 */
269 static void setting_main_del_win(void *data, Evas_Object *obj, void *event)
270 {
271         elm_exit();
272 }
273
274 /**
275 * To create a win object, the win is shared between the App and all its UGs
276 */
277 static Evas_Object *setting_main_create_win(const char *name)
278 {
279         SETTING_TRACE_BEGIN;
280         Evas_Object *eo;
281         int w, h;
282
283         eo = elm_win_add(NULL, name, ELM_WIN_BASIC);
284         if (eo) {
285                 elm_win_title_set(eo, name);
286                 elm_win_borderless_set(eo, EINA_TRUE);
287                 evas_object_smart_callback_add(eo, "delete,request",
288                                                setting_main_del_win, NULL);
289                 ecore_x_window_size_get(ecore_x_window_root_first_get(),
290                                         &w, &h);
291                 evas_object_resize(eo, w, h);
292         }
293
294         return eo;
295 }
296
297 /**
298 * exceptional process, reset the env vars by Setting vconf VCONFKEY_LANGSET
299 */
300 static int setting_main_lang_changed_cb(void *data)
301 {
302         SETTING_TRACE_BEGIN;
303         setting_main_appdata *ad = data;
304
305         char* str = NULL;
306         if (ad->data_wifi) {
307             str = (char *)get_pa_Wi_Fi_on_off_str();
308                 if ( ! str) str = g_strdup("err");
309             ad->data_wifi->sub_desc = str;
310         }
311         if (ad->data_bt) {
312             str = (char *)g_strdup(get_BT_on_off_str());
313                 if ( ! str) str = g_strdup("err");
314             ad->data_bt->sub_desc = str;
315         }
316         if (ad->data_nfc) {
317             str = (char *)g_strdup(get_NFC_on_off_str());
318                 if ( ! str) str = g_strdup("err");
319             ad->data_nfc->sub_desc = str;
320         }
321         if (ad->data_mobileApp) {
322             str = (char *)g_strdup(get_Mobile_AP_on_off_str());
323                 if ( ! str) str = g_strdup("err");
324             ad->data_mobileApp->sub_desc = str;
325         }
326         if (ad->data_bright) {
327                 str = (char*)g_strdup(get_brightness_mode_str());
328                 if ( ! str) str = g_strdup("err");
329                 ad->data_bright->sub_desc = str;
330         }
331
332         if (ad->data_moreConnect) {
333                 char sub_text[MAX_COMMON_BUFFER_LEN] = {0, };
334                 int idx = 0;
335                 while (idx < MAX_MORE_MENU_NUM && ad->more_connective_menus[idx])
336                 {
337                         if (idx != 0)
338                         {
339                                 safeStrNCat(sub_text, ", ", MAX_COMMON_BUFFER_LEN);
340                         }
341                         safeStrNCat(sub_text, _(ad->more_connective_menus[idx]), MAX_COMMON_BUFFER_LEN);
342                         idx++;
343                 }
344                 ad->data_moreConnect->sub_desc = g_strdup(sub_text);
345         }
346
347         if (ad->data_moreSystem) {
348                 char sub_text[MAX_COMMON_BUFFER_LEN] = {0, };
349                 int idx = 0;
350                 while (idx < MAX_MORE_MENU_NUM && ad->more_system_menus[idx])
351                 {
352                         if (idx != 0)
353                         {
354                                 safeStrNCat(sub_text, ", ", MAX_COMMON_BUFFER_LEN);
355                         }
356                         safeStrNCat(sub_text, _(ad->more_system_menus[idx]), MAX_COMMON_BUFFER_LEN);
357                         idx++;
358                 }
359                 ad->data_moreSystem->sub_desc = g_strdup(sub_text);
360         }
361
362         if (ad->main_genlist) elm_genlist_realized_items_update(ad->main_genlist);
363         if (ad->genlist_load) elm_genlist_realized_items_update(ad->genlist_load);
364
365         Elm_Object_Item *navi_it = NULL;
366 #if SUPPORT_MORE_ITEM_FUNCTION
367         navi_it = elm_naviframe_top_item_get(ad->navibar_main);
368         if (navi_it) elm_object_item_text_set(navi_it, _(KeyStr_MoreSystem));
369 #endif
370
371         navi_it = elm_naviframe_bottom_item_get(ad->navibar_main);
372         if (navi_it)
373                 elm_object_item_text_set(navi_it, _("IDS_COM_BODY_SETTINGS"));
374
375         if (ad->edit_item)
376         {
377 #if SUPPORT_BOTTOM_BTNS
378                 elm_object_item_text_set(ad->edit_item, _(EDIT_PREFERRED_STR));
379 #else
380                 //elm_object_text_set(ad->edit_item, _(EDIT_PREFERRED_STR));
381                 Evas_Object *eo_btn = elm_object_item_part_content_get(ad->edit_item, "object");
382                 setting_retm_if(eo_btn == NULL, "get eo_lbtn failed");
383                 elm_object_text_set(eo_btn, _(EDIT_PREFERRED_STR));
384 #endif
385         }
386
387         if (ad->segment_all) elm_object_item_text_set(ad->segment_all, _(ALL_STR));
388         if (ad->segment_preferred) elm_object_item_text_set(ad->segment_preferred,
389                                            _(PREFERRED_STR));
390
391         Elm_Object_Item *item = NULL;
392         item = elm_toolbar_first_item_get(ad->controlbar);
393         setting_retvm_if(!item, SETTING_RETURN_FAIL, "get toolbar first item failed");
394         char tmp_text[MAX_DISPLAY_NAME_LEN_ON_UI + 1] = {0,};
395         if (MAIN_PROFILE_ALL == ad->profile_type) {
396                 snprintf(tmp_text, MAX_DISPLAY_NAME_LEN_ON_UI, "%s", _(PREFERRED_STR));
397         } else if (MAIN_PROFILE_PREFERRED == ad->profile_type) {
398                 snprintf(tmp_text, MAX_DISPLAY_NAME_LEN_ON_UI, "%s", _(ALL_STR));
399         } else {
400                 /* do nothing */
401         }
402         elm_object_item_text_set(item, tmp_text);
403
404         if (ad->ug)
405                 ug_send_event(UG_EVENT_LANG_CHANGE);
406
407         return SETTING_RETURN_SUCCESS;
408 }
409
410 /**
411 * the event process when other VCONFS changes
412 */
413 static void setting_other_vconf_change_cb(keynode_t *key, void *data)
414 {
415         setting_main_appdata *ad = data;
416         retm_if(!data, "Invalid argument: data is NULL");
417
418         Setting_GenGroupItem_Data* item_to_update = NULL;
419         char *vconf_name = vconf_keynode_get_name(key);
420         //SETTING_TRACE("the value of [ %s ] just changed", vconf_name);
421
422         if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_WIDGET_THEME_STR)) {
423                 return;
424         } else if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_FLIGHT_MODE_BOOL)) {
425                 item_to_update = ad->data_flight;
426                 retm_if(!item_to_update, "ad->data_flight is NULL");
427
428                 int status = 0;
429                 vconf_get_bool(VCONFKEY_SETAPPL_FLIGHT_MODE_BOOL, &status);
430                 item_to_update->chk_status = status;
431                 if (ad->bAppPause || ad->ug) {
432                         ad->updateItems[GL_ITEM_FLIGHT] = EINA_TRUE;
433                 } else { // app is not in pause without ug
434                         elm_check_state_set(item_to_update->eo_check, status);
435                 }
436                 return;
437         } else if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_ROTATE_LOCK_BOOL)) {
438                 item_to_update = ad->data_rotationMode;
439                 retm_if(!item_to_update, "ad->data_rotationMode is NULL");
440
441                 int status = 0;
442                 vconf_get_bool(VCONFKEY_SETAPPL_ROTATE_LOCK_BOOL, &status);
443
444                 item_to_update->chk_status = !status;
445
446                 if (ad->bAppPause || ad->ug) {
447                         ad->updateItems[GL_ITEM_ROTATION] = EINA_TRUE;
448                 } else { // app is not in pause without ug
449                         elm_check_state_set(item_to_update->eo_check, item_to_update->chk_status);
450                 }
451                 return;
452         } else if (!safeStrCmp(vconf_name, VCONFKEY_NFC_STATE)) {
453                 SETTING_TRACE_DEBUG("%s updated", vconf_name);
454                 item_to_update = ad->data_nfc;
455                 retm_if(!item_to_update, "ad->data_nfc is NULL");
456
457                 item_to_update->sub_desc = (char *)g_strdup(get_NFC_on_off_str());
458
459                 SETTING_TRACE_DEBUG("%s", item_to_update->sub_desc);
460
461                 if (ad->bAppPause || ad->ug) {
462                         ad->updateItems[GL_ITEM_NFC] = EINA_TRUE;
463                 } else { // app is not in pause without ug
464                         elm_object_item_data_set(item_to_update->item, item_to_update);
465                         elm_genlist_item_update(item_to_update->item);
466                 }
467         }
468 }
469
470 /**
471 * the event process when int VCONFS changes
472 */
473 static void setting_int_vconf_change_cb(keynode_t *key, void *data)
474 {
475         setting_main_appdata *ad = data;
476         retm_if(!data, "Invalid argument: data is NULL");
477
478         int status = vconf_keynode_get_int(key);
479         char *vconf_name = vconf_keynode_get_name(key);
480         SETTING_TRACE("Enter %s(%s=%d)", __FUNCTION__, vconf_name, status);
481
482         char *pa_wifi_device = NULL;
483         Setting_GenGroupItem_Data* item_to_update = NULL;
484
485         if (!safeStrCmp(vconf_name, VCONFKEY_WIFI_STATE)) {
486                 item_to_update = ad->data_wifi;
487                 retm_if(!item_to_update, "ad->data_wifi is NULL");
488
489                 switch (status) {
490                 case VCONFKEY_WIFI_OFF:
491                         item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_OFF_M_STATUS"));
492                         break;
493
494                 case VCONFKEY_WIFI_UNCONNECTED:
495                 case VCONFKEY_WIFI_CONNECTED:
496                 case VCONFKEY_WIFI_TRANSFER:
497                         pa_wifi_device = vconf_get_str(VCONFKEY_WIFI_CONNECTED_AP_NAME);
498                         if (NULL != pa_wifi_device && '\0' != pa_wifi_device[0]) {
499                                 item_to_update->sub_desc = (char *)g_strdup(pa_wifi_device);
500                         } else {
501                                 item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_ON_M_STATUS"));
502                         }
503                         FREE(pa_wifi_device);
504                         break;
505                 default:
506                         SETTING_TRACE_ERROR("Invalid wifi status!");
507                         return;
508                 }
509
510                 if (ad->bAppPause || ad->ug) {
511                         ad->updateItems[GL_ITEM_WIFI] = EINA_TRUE;
512                 } else { // app is not in pause without ug
513                         elm_object_item_data_set(item_to_update->item, item_to_update);
514                         elm_genlist_item_update(item_to_update->item);
515                 }
516         } else if (!safeStrCmp(vconf_name, VCONFKEY_BT_STATUS)) {
517                 item_to_update = ad->data_bt;
518                 retm_if(!item_to_update, "ad->data_bt is NULL");
519
520                 if (FALSE == status) {
521                         item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_OFF_M_STATUS"));
522                 } else {
523                         item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_ON_M_STATUS"));
524                 }
525
526                 if (ad->bAppPause || ad->ug) {
527                         ad->updateItems[GL_ITEM_BT] = EINA_TRUE;
528                 } else { // app is not in pause without ug
529                         elm_object_item_data_set(item_to_update->item, item_to_update);
530                         elm_genlist_item_update(item_to_update->item);
531                 }
532         } else if (!safeStrCmp(vconf_name, VCONFKEY_MOBILE_HOTSPOT_MODE)) {
533                 item_to_update = ad->data_mobileApp;
534                 retm_if(!item_to_update, "ad->data_mobileApp is NULL");
535
536                 /* For other vconfs */
537                 if (FALSE == status) {
538                         item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_OFF_M_STATUS"));
539                 } else {
540                         item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_ON_M_STATUS"));
541                 }
542
543                 if (ad->bAppPause || ad->ug) {
544                         ad->updateItems[GL_ITEM_MAP] = EINA_TRUE;
545                 } else { // app is not in pause without ug
546                         elm_object_item_data_set(item_to_update->item, item_to_update);
547                         elm_genlist_item_update(item_to_update->item);
548                 }
549         } else if (!safeStrCmp(vconf_name, VCONFKEY_SYSMAN_BATTERY_STATUS_LOW)) {
550                 if (status <= VCONFKEY_SYSMAN_BAT_CRITICAL_LOW) {
551                         if (ad->data_bright) {
552                                 setting_disable_genlist_item(ad->data_bright->item);
553                         }
554                 } else {
555                         if (ad->data_bright) {
556                                 setting_enable_genlist_item(ad->data_bright->item);
557                         }
558
559                 }
560         }else if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_BRIGHTNESS_AUTOMATIC_INT)) {
561                 //update directly
562                 if (ad->data_bright)
563                 {
564                         ad->data_bright->sub_desc = (char *)g_strdup(get_brightness_mode_str());
565                         elm_object_item_data_set(ad->data_bright->item, ad->data_bright);
566                         elm_genlist_item_update(ad->data_bright->item);
567                 }
568         } else {
569                         SETTING_TRACE_ERROR("vconf_name is bad[%s]", vconf_name);
570         }
571
572         return;
573 }
574
575 /**
576 * the event process when string VCONFS changes
577 */
578 static void setting_string_vconf_change_cb(keynode_t *key, void *data)
579 {
580         SETTING_TRACE_BEGIN;
581         setting_main_appdata *ad = data;
582         retm_if(!data, "Invalid argument: data is NULL");
583
584         char *value = vconf_keynode_get_str(key);
585         char *vconf_name = vconf_keynode_get_name(key);
586         Setting_GenGroupItem_Data* item_to_update = NULL;
587
588         if (!safeStrCmp(vconf_name, VCONFKEY_WIFI_CONNECTED_AP_NAME)) {
589                 int status;
590                 item_to_update = ad->data_wifi;
591                 retm_if(!item_to_update, "ad->data_wifi is NULL");
592
593                 if (0 != vconf_get_int(VCONFKEY_WIFI_STATE, &status)) {
594                         SETTING_TRACE_ERROR("vconf_get err: %s", VCONFKEY_WIFI_STATE);
595                         return;
596                 }
597                 SETTING_TRACE("status:%d", status);
598                 switch (status) {
599                 case VCONFKEY_WIFI_OFF:
600                         item_to_update->sub_desc =
601                                 (char *)g_strdup(setting_gettext ("IDS_COM_BODY_OFF_M_STATUS"));
602                         break;
603
604                 case VCONFKEY_WIFI_UNCONNECTED:
605                 case VCONFKEY_WIFI_CONNECTED:
606                 case VCONFKEY_WIFI_TRANSFER:
607                         if (NULL != value && '\0' != value[0]) {
608                                 SETTING_TRACE("wifi_device:%s", value);
609                                 item_to_update->sub_desc = (char *)g_strdup(value);
610                         } else {
611                                 item_to_update->sub_desc =
612                                         (char *) g_strdup(setting_gettext ("IDS_COM_BODY_ON_M_STATUS"));
613                         }
614                         break;
615                 default:
616                         SETTING_TRACE_ERROR("Invalid wifi status!");
617                         return;
618                 }
619                 if (ad->bAppPause || ad->ug) {
620                         ad->updateItems[GL_ITEM_WIFI] = EINA_TRUE;
621                 } else { // app is not in pause without ug
622                         elm_object_item_data_set(item_to_update->item, item_to_update);
623                         elm_genlist_item_update(item_to_update->item);
624                 }
625         } // vconf_name == VCONFKEY_WIFI_CONNECTED_AP_NAME
626 }
627
628
629 /**
630 * Do the process which cost much time
631 */
632 static Eina_Bool setting_on_idle_lazy(void *data)
633 {
634         SETTING_TRACE_BEGIN;
635         setting_main_appdata *ad = data;
636
637         /* A. add system event callback */
638         if (sensor_create(&ad->sf_handle) != SENSOR_ERROR_NONE) {
639                 SETTING_TRACE_ERROR("sensor attach fail");
640         }
641
642
643         if (sensor_motion_doubletap_set_cb(ad->sf_handle, __main_motion_sensor_cb, ad) != SENSOR_ERROR_NONE) {
644                 SETTING_TRACE("sensor_motion_doubletap_set_cb fail to gather data");
645         }
646
647         if (sensor_start(ad->sf_handle, SENSOR_MOTION_DOUBLETAP) != SENSOR_ERROR_NONE) {
648                 SETTING_TRACE_ERROR("sensor_start fail");
649         }
650
651         appcore_set_event_callback(APPCORE_EVENT_LANG_CHANGE,
652                                    setting_main_lang_changed_cb, ad);
653
654 #if LOW_BATTERY_DO_NOTHING
655         appcore_set_event_callback(APPCORE_EVENT_LOW_BATTERY,
656                                    setting_main_low_battery_cb, ad);
657 #endif
658
659         appcore_set_event_callback(APPCORE_EVENT_REGION_CHANGE,
660                                    setting_main_region_changed_cb, ad);
661
662 #if SUPPORT_APP_ROATION
663         appcore_set_rotation_cb(setting_main_rotate, ad);
664         evas_object_geometry_get(ad->win_main, &g_geometry_x, &g_geometry_y, &g_geometry_w, &g_geometry_h);
665 #endif
666
667         return FALSE;
668 }
669
670 /**
671 * The function is called to create Setting view widgets
672 */
673 static int setting_main_app_create(void *data)
674 {
675         SETTING_TRACE_BEGIN;
676         //fprintf(stderr, "[TIME] 3. it taked %d msec from main to setting_main_app_create \n", appcore_measure_time());
677         SETTING_TRACE("[TIME] 3. it taked %d msec from main to setting_main_app_create ", appcore_measure_time());
678         appcore_measure_start();
679         setting_main_appdata *ad = data;
680
681         ad->data_roaming_popup = NULL;
682
683         /* create window */
684         ad->win_main = setting_main_create_win(SETTING_PACKAGE);
685         setting_retvm_if(ad->win_main == NULL, SETTING_RETURN_FAIL, "window is null");
686         evas_object_show(ad->win_main);
687         UG_INIT_EFL(ad->win_main, UG_OPT_INDICATOR_ENABLE);
688         ad->evas = evas_object_evas_get(ad->win_main);
689
690         /* load config file */
691         int cfg_operation_ret = setting_cfg_init();
692         PLUGIN_INIT;
693
694         elm_theme_extension_add(NULL, SETTING_THEME_EDJ_NAME);
695 #if SUPPORT_LCD_TIMEOUT_KEEPING
696         /* to keep according with each other */
697         int origin_backlight_value;
698         if (0 !=
699             vconf_get_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL,
700                           &origin_backlight_value)) {
701                 /* error handle.. */
702                 vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, 30);
703                 origin_backlight_value = 30;
704         }
705         /* to set intial value */
706         vconf_set_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP,
707                       origin_backlight_value);
708
709         /* Firstly, Setting is running in foreground, LCD_TIMEOUT must be 600s(/10m) */
710         vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, 600);
711 #endif
712
713         elm_win_indicator_mode_set(ad->win_main, ELM_WIN_INDICATOR_SHOW);
714
715         setting_view_create(&setting_view_main, ad);
716         setting_view_node_table_register(&setting_view_main, NULL);
717         setting_view_node_table_register(&setting_view_more_menu, &setting_view_main);
718
719         /* error handling */
720         if (Cfg_Error_Type_Sucess != cfg_operation_ret) {
721                 SETTING_TRACE_ERROR("cfg_operation_ret: %d", cfg_operation_ret);
722                 const char *notifyStr = NULL;
723                 switch (cfg_operation_ret) {
724
725                 case Cfg_Error_Type_CreateCfg_Failed:
726                         {
727                                 notifyStr = _("failed to create config file, <br>re-install com.samsung.setting please");
728                                 break;
729                         }
730                 case Cfg_Error_Type_Mkdir_Failed:
731                         {
732                                 notifyStr = _("file system missed<br>/opt/data/setting, <br>re-install com.samsung.setting please");
733                                 break;
734                         }
735                 case Cfg_Error_Type_RemoveCfg_Failed:
736                         {
737                                 notifyStr = _("config file size 0 byte<br>and failed to re-create it.<br>try to startup the app again");
738                                 break;
739                         }
740                 case Cfg_Error_Type_ReadCfg_Failed:
741                         {
742                                 notifyStr = _("failed to read config file, <br>try to startup the app again");
743                                 break;
744                         }
745                 case Cfg_Error_Type_DirPermissionDenied:
746                         {
747                                 notifyStr =
748                                     _("the dir of config file permission denied");
749                                 break;
750                         }
751                 case Cfg_Error_Type_FilePermissionDenied:
752                         {
753                                 notifyStr = _("config file permission denied");
754                                 break;
755                         }
756                 default:
757                         {
758                                 notifyStr = _("Invalid Result, try to startup the app again");
759                                 break;
760                         }
761                 }
762                 setting_create_popup_without_btn(ad, ad->win_main, NULL, (char *)notifyStr, NULL, 10, FALSE, FALSE);
763                 return SETTING_RETURN_FAIL;
764         }
765         //fprintf(stderr, "[TIME] 4. setting_main_app_create taked %d msec \n", appcore_measure_time());
766         SETTING_TRACE("[TIME] 4. setting_main_app_create taked %d msec ", appcore_measure_time());
767         appcore_measure_start();
768
769         return 0;
770 }
771
772 /**
773 * The function is called when Setting is terminated
774 */
775 static int setting_main_app_terminate(void *data)
776 {
777         SETTING_TRACE_BEGIN;
778         setting_main_appdata *ad = data;
779         PLUGIN_FINI;
780         setting_cfg_exit();
781         clear_system_service_data();
782
783         ug_destroy_all();
784         ad->ug = NULL;
785
786         SETTING_TRACE("%s*** SETTING APPLICATION CLOSED ***%s",
787                       SETTING_FONT_BGREEN, SETTING_FONT_BLACK);
788
789         DEREGISTER_VCONFS(ad->listened_list);
790
791         if (sensor_motion_doubletap_unset_cb(ad->sf_handle) != SENSOR_ERROR_NONE) {
792                 SETTING_TRACE("sensor_motion_doubletap_unset_cb fail to gather data");
793         }
794         sensor_stop(ad->sf_handle, SENSOR_MOTION_DOUBLETAP);
795         sensor_destroy(ad->sf_handle);
796
797 #if SUPPORT_LCD_TIMEOUT_KEEPING
798         /* once Setting is not running, LCD_TIMEOUT must be backuped */
799         int back_value = 0;
800         vconf_get_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP, &back_value);
801         vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, back_value);
802 #endif
803         setting_view_destroy(&setting_view_more_menu, ad);
804         setting_view_destroy(&setting_view_main, ad);
805         SETTING_TRACE("!!! After setting_view_destroy");
806         if (ad->win_main) {
807                 evas_object_del(ad->win_main);
808                 ad->win_main = NULL;
809         }
810
811         SETTING_TRACE_END;
812         return 0;
813 }
814
815 /**
816 * The function is called when Setting begins run in background from forground
817 */
818 static int setting_main_app_pause(void *data)
819 {
820         SETTING_TRACE_BEGIN;
821         setting_main_appdata *ad = data;
822
823         ad->bAppPause = EINA_TRUE;
824         if (ad->ug)
825                 ug_pause();
826
827 #if SUPPORT_LCD_TIMEOUT_KEEPING
828         /* once Setting is running in background, LCD_TIMEOUT must be backuped */
829         int back_value = 0;
830         vconf_get_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP, &back_value);
831         vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, back_value);
832 #endif
833
834         sensor_stop(ad->sf_handle, SENSOR_MOTION_DOUBLETAP);
835
836         return 0;
837 }
838
839 /**
840 * The function is called when Setting begins run in forground from background
841 */
842 static int setting_main_app_resume(void *data)
843 {
844         SETTING_TRACE_BEGIN;
845         setting_main_appdata *ad = data;
846
847         if (sensor_start(ad->sf_handle, SENSOR_MOTION_DOUBLETAP) != SENSOR_ERROR_NONE) {
848                 SETTING_TRACE_ERROR("sf_start fail");
849         }
850
851         if (ad->ug)
852                 ug_resume();
853
854 #if SUPPORT_LCD_TIMEOUT_KEEPING
855         /* once Setting is running in foreground, LCD_TIMEOUT must be reset to 600 */
856         vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, 600);
857 #endif
858
859         // update main genlist in resuming app.
860         ad->bAppPause = EINA_FALSE;
861         if(!ad->ug) {   // top-level view is not on UG
862                 SETTING_TRACE("update main genlist in resuming app without UG");
863                 setting_update_gl_item(ad);     // update genlist sub-texts
864         }
865
866         return 0;
867 }
868
869 /**
870 * The function is called by app-fwk after app_create. It always do the process which cost much time.
871 */
872 static int setting_main_app_reset(service_h service, void *data)
873 {
874         SETTING_TRACE_BEGIN;
875         setting_main_appdata *ad = data;
876
877 #if SUPPORT_LIVEBOX_DEMO
878         char *ug_name = NULL;
879         if(b != NULL)
880         {
881                 ug_name = (char*)appsvc_get_data(b, "ug");
882                 if(ug_name)
883                 {
884                         SETTING_TRACE_DEBUG("get ug_name : %s", ug_name);
885                         struct ug_cbs *cbs = (struct ug_cbs *)calloc(1, sizeof(struct ug_cbs));
886                         setting_retm_if(!cbs, "calloc failed");
887                         cbs->layout_cb = setting_main_layout_ug_cb;
888                         cbs->result_cb = setting_main_result_ug_cb;
889                         cbs->destroy_cb = setting_main_destroy_ug_cb;
890                         cbs->priv = (void *)ad;
891
892                         char *path = get_ug_path_from_ug_args(data);
893                         service_h svc = get_bundle_from_ug_args(data);
894                         ad->ug = ug_create(NULL, ug_name, UG_MODE_FULLVIEW, svc, cbs);
895                         if (ad->ug) {
896                                 ad->isInUGMode = TRUE;
897                         } else {
898
899                                 evas_object_show(ad->ly_main);
900
901                                 SETTING_TRACE_ERROR("errno:%d", errno);
902                                 setting_create_simple_popup(ad, ad->win_main, NULL, NO_UG_FOUND_MSG);
903                         }
904                         if (path)
905                                 FREE(path);
906                         if (cbs)
907                                 FREE(cbs);
908                         path = NULL;
909                         cbs = NULL;
910                         service_destroy(svc);
911                 }
912                 else
913                 {
914                         SETTING_TRACE_DEBUG("ug_name is NULL");
915                 }
916         }
917         else
918         {
919                 SETTING_TRACE_DEBUG("bundle is NULL");
920         }
921 #endif
922         vconf_callback_fn cb = NULL;
923
924         cb = setting_int_vconf_change_cb;
925         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_BT_STATUS, cb, data);
926         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_WIFI_STATE, cb, ad);
927         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_MOBILE_HOTSPOT_MODE, cb, ad);
928         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SYSMAN_BATTERY_STATUS_LOW, cb, ad);
929         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_BRIGHTNESS_AUTOMATIC_INT, cb, data);
930
931         cb = setting_string_vconf_change_cb;
932         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_WIFI_CONNECTED_AP_NAME, cb, ad);
933
934         cb = setting_other_vconf_change_cb;
935         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_USB_MODE_INT, cb, ad);
936         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_WIDGET_THEME_STR, cb, ad);
937
938         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_FLIGHT_MODE_BOOL, cb, ad);
939         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_ROTATE_LOCK_BOOL, cb, ad);
940         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_NFC_STATE, cb, ad);
941
942         if (ad->win_main)
943                 elm_win_activate(ad->win_main);
944
945         ecore_idler_add(setting_on_idle_lazy, ad);
946
947         //fprintf(stderr, "[TIME] 5. app_create -> app_resume (first display) : %d msec\n", appcore_measure_time());
948         SETTING_TRACE("[TIME] 5. app_create -> app_resume (first display) : %d msec", appcore_measure_time());
949         //fprintf(stderr, "[TIME] Total. aul_launch -> app_resume (first display) : %d msec\n", appcore_measure_time_from("APP_START_TIME"));
950         SETTING_TRACE("[TIME] Total. aul_launch -> app_resume (first display) : %d msec", appcore_measure_time_from("APP_START_TIME"));
951
952         return 0;
953 }
954
955 int main(int argc, char *argv[])
956 {
957         int r = 0;
958         setting_main_appdata ad;
959
960         elm_init(argc, argv);
961 #if SUPPORT_GL_ENGINE
962         // opengl_x11 or software_x11
963         elm_config_engine_set("software_x11");
964 #endif
965
966         //fprintf(stderr, "[TIME] 1. aul_launch -> main :: Setting main : %d msec \n", appcore_measure_time_from("APP_START_TIME"));
967         SETTING_TRACE("[TIME] 1. aul_launch -> main :: Setting main : %d msec ", appcore_measure_time_from("APP_START_TIME"));
968         appcore_measure_start();
969
970         struct appcore_ops ops = {
971                 .create = setting_main_app_create,
972                 .terminate = setting_main_app_terminate,
973                 .pause = setting_main_app_pause,
974                 .resume = setting_main_app_resume,
975                 .reset = setting_main_app_reset,
976         };
977
978         memset(&ad, 0x0, sizeof(setting_main_appdata));
979         ops.data = &ad;
980
981         //fprintf(stderr, "[TIME] 2. main : %d msec \n", appcore_measure_time());
982         SETTING_TRACE("[TIME] 2. main : %d msec ", appcore_measure_time());
983         appcore_measure_start();
984         r = appcore_efl_main(SETTING_PACKAGE, &argc, &argv, &ops);
985         retv_if(r == -1, -1);
986
987         return 0;
988 }