192edcf915b6685364e6a31a625d7ca818bcd0b7
[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_bright) {
322                 str = (char*)g_strdup(get_brightness_mode_str());
323                 if ( ! str) str = g_strdup("err");
324                 ad->data_bright->sub_desc = str;
325         }
326
327         if (ad->data_moreConnect) {
328                 char sub_text[MAX_COMMON_BUFFER_LEN] = {0, };
329                 int idx = 0;
330                 while (idx < MAX_MORE_MENU_NUM && ad->more_connective_menus[idx])
331                 {
332                         if (idx != 0)
333                         {
334                                 safeStrNCat(sub_text, ", ", MAX_COMMON_BUFFER_LEN);
335                         }
336                         safeStrNCat(sub_text, _(ad->more_connective_menus[idx]), MAX_COMMON_BUFFER_LEN);
337                         idx++;
338                 }
339                 ad->data_moreConnect->sub_desc = g_strdup(sub_text);
340         }
341
342         if (ad->data_moreSystem) {
343                 char sub_text[MAX_COMMON_BUFFER_LEN] = {0, };
344                 int idx = 0;
345                 while (idx < MAX_MORE_MENU_NUM && ad->more_system_menus[idx])
346                 {
347                         if (idx != 0)
348                         {
349                                 safeStrNCat(sub_text, ", ", MAX_COMMON_BUFFER_LEN);
350                         }
351                         safeStrNCat(sub_text, _(ad->more_system_menus[idx]), MAX_COMMON_BUFFER_LEN);
352                         idx++;
353                 }
354                 ad->data_moreSystem->sub_desc = g_strdup(sub_text);
355         }
356
357         if (ad->main_genlist) elm_genlist_realized_items_update(ad->main_genlist);
358         if (ad->genlist_load) elm_genlist_realized_items_update(ad->genlist_load);
359
360         Elm_Object_Item *navi_it = NULL;
361 #if SUPPORT_MORE_ITEM_FUNCTION
362         navi_it = elm_naviframe_top_item_get(ad->navibar_main);
363         if (navi_it) elm_object_item_text_set(navi_it, _(KeyStr_MoreSystem));
364 #endif
365
366         navi_it = elm_naviframe_bottom_item_get(ad->navibar_main);
367         if (navi_it)
368                 elm_object_item_text_set(navi_it, _("IDS_COM_BODY_SETTINGS"));
369
370         if (ad->edit_item)
371         {
372 #if SUPPORT_BOTTOM_BTNS
373                 elm_object_item_text_set(ad->edit_item, _(EDIT_PREFERRED_STR));
374 #else
375                 //elm_object_text_set(ad->edit_item, _(EDIT_PREFERRED_STR));
376                 Evas_Object *eo_btn = elm_object_item_part_content_get(ad->edit_item, "object");
377                 setting_retm_if(eo_btn == NULL, "get eo_lbtn failed");
378                 elm_object_text_set(eo_btn, _(EDIT_PREFERRED_STR));
379 #endif
380         }
381
382         if (ad->segment_all) elm_object_item_text_set(ad->segment_all, _(ALL_STR));
383         if (ad->segment_preferred) elm_object_item_text_set(ad->segment_preferred,
384                                            _(PREFERRED_STR));
385
386         Elm_Object_Item *item = NULL;
387         item = elm_toolbar_first_item_get(ad->controlbar);
388         setting_retvm_if(!item, SETTING_RETURN_FAIL, "get toolbar first item failed");
389         char tmp_text[MAX_DISPLAY_NAME_LEN_ON_UI + 1] = {0,};
390         if (MAIN_PROFILE_ALL == ad->profile_type) {
391                 snprintf(tmp_text, MAX_DISPLAY_NAME_LEN_ON_UI, "%s", _(PREFERRED_STR));
392         } else if (MAIN_PROFILE_PREFERRED == ad->profile_type) {
393                 snprintf(tmp_text, MAX_DISPLAY_NAME_LEN_ON_UI, "%s", _(ALL_STR));
394         } else {
395                 /* do nothing */
396         }
397         elm_object_item_text_set(item, tmp_text);
398
399         if (ad->ug)
400                 ug_send_event(UG_EVENT_LANG_CHANGE);
401
402         return SETTING_RETURN_SUCCESS;
403 }
404
405 /**
406 * the event process when other VCONFS changes
407 */
408 static void setting_other_vconf_change_cb(keynode_t *key, void *data)
409 {
410         setting_main_appdata *ad = data;
411         retm_if(!data, "Invalid argument: data is NULL");
412
413         Setting_GenGroupItem_Data* item_to_update = NULL;
414         char *vconf_name = vconf_keynode_get_name(key);
415         //SETTING_TRACE("the value of [ %s ] just changed", vconf_name);
416
417         if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_WIDGET_THEME_STR)) {
418                 return;
419         } else if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_FLIGHT_MODE_BOOL)) {
420                 item_to_update = ad->data_flight;
421                 retm_if(!item_to_update, "ad->data_flight is NULL");
422
423                 int status = 0;
424                 vconf_get_bool(VCONFKEY_SETAPPL_FLIGHT_MODE_BOOL, &status);
425                 item_to_update->chk_status = status;
426                 if (ad->bAppPause || ad->ug) {
427                         ad->updateItems[GL_ITEM_FLIGHT] = EINA_TRUE;
428                 } else { // app is not in pause without ug
429                         elm_check_state_set(item_to_update->eo_check, status);
430                 }
431                 return;
432         } else if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_ROTATE_LOCK_BOOL)) {
433                 item_to_update = ad->data_rotationMode;
434                 retm_if(!item_to_update, "ad->data_rotationMode is NULL");
435
436                 int status = 0;
437                 vconf_get_bool(VCONFKEY_SETAPPL_ROTATE_LOCK_BOOL, &status);
438
439                 item_to_update->chk_status = !status;
440
441                 if (ad->bAppPause || ad->ug) {
442                         ad->updateItems[GL_ITEM_ROTATION] = EINA_TRUE;
443                 } else { // app is not in pause without ug
444                         elm_check_state_set(item_to_update->eo_check, item_to_update->chk_status);
445                 }
446                 return;
447         } else if (!safeStrCmp(vconf_name, VCONFKEY_NFC_STATE)) {
448                 SETTING_TRACE_DEBUG("%s updated", vconf_name);
449                 item_to_update = ad->data_nfc;
450                 retm_if(!item_to_update, "ad->data_nfc is NULL");
451
452                 item_to_update->sub_desc = (char *)g_strdup(get_NFC_on_off_str());
453
454                 SETTING_TRACE_DEBUG("%s", item_to_update->sub_desc);
455
456                 if (ad->bAppPause || ad->ug) {
457                         ad->updateItems[GL_ITEM_NFC] = EINA_TRUE;
458                 } else { // app is not in pause without ug
459                         elm_object_item_data_set(item_to_update->item, item_to_update);
460                         elm_genlist_item_update(item_to_update->item);
461                 }
462         }
463 }
464
465 /**
466 * the event process when int VCONFS changes
467 */
468 static void setting_int_vconf_change_cb(keynode_t *key, void *data)
469 {
470         setting_main_appdata *ad = data;
471         retm_if(!data, "Invalid argument: data is NULL");
472
473         int status = vconf_keynode_get_int(key);
474         char *vconf_name = vconf_keynode_get_name(key);
475         SETTING_TRACE("Enter %s(%s=%d)", __FUNCTION__, vconf_name, status);
476
477         char *pa_wifi_device = NULL;
478         Setting_GenGroupItem_Data* item_to_update = NULL;
479
480         if (!safeStrCmp(vconf_name, VCONFKEY_WIFI_STATE)) {
481                 item_to_update = ad->data_wifi;
482                 retm_if(!item_to_update, "ad->data_wifi is NULL");
483
484                 switch (status) {
485                 case VCONFKEY_WIFI_OFF:
486                         item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_OFF_M_STATUS"));
487                         break;
488
489                 case VCONFKEY_WIFI_UNCONNECTED:
490                 case VCONFKEY_WIFI_CONNECTED:
491                 case VCONFKEY_WIFI_TRANSFER:
492                         pa_wifi_device = vconf_get_str(VCONFKEY_WIFI_CONNECTED_AP_NAME);
493                         if (NULL != pa_wifi_device && '\0' != pa_wifi_device[0]) {
494                                 item_to_update->sub_desc = (char *)g_strdup(pa_wifi_device);
495                         } else {
496                                 item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_ON_M_STATUS"));
497                         }
498                         FREE(pa_wifi_device);
499                         break;
500                 default:
501                         SETTING_TRACE_ERROR("Invalid wifi status!");
502                         return;
503                 }
504
505                 if (ad->bAppPause || ad->ug) {
506                         ad->updateItems[GL_ITEM_WIFI] = EINA_TRUE;
507                 } else { // app is not in pause without ug
508                         elm_object_item_data_set(item_to_update->item, item_to_update);
509                         elm_genlist_item_update(item_to_update->item);
510                 }
511         } else if (!safeStrCmp(vconf_name, VCONFKEY_BT_STATUS)) {
512                 item_to_update = ad->data_bt;
513                 retm_if(!item_to_update, "ad->data_bt is NULL");
514
515                 if (FALSE == status) {
516                         item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_OFF_M_STATUS"));
517                 } else {
518                         item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_ON_M_STATUS"));
519                 }
520
521                 if (ad->bAppPause || ad->ug) {
522                         ad->updateItems[GL_ITEM_BT] = EINA_TRUE;
523                 } else { // app is not in pause without ug
524                         elm_object_item_data_set(item_to_update->item, item_to_update);
525                         elm_genlist_item_update(item_to_update->item);
526                 }
527         } else if (!safeStrCmp(vconf_name, VCONFKEY_SYSMAN_BATTERY_STATUS_LOW)) {
528                 if (status <= VCONFKEY_SYSMAN_BAT_CRITICAL_LOW) {
529                         if (ad->data_bright) {
530                                 setting_disable_genlist_item(ad->data_bright->item);
531                         }
532                 } else {
533                         if (ad->data_bright) {
534                                 setting_enable_genlist_item(ad->data_bright->item);
535                         }
536
537                 }
538         }else if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_BRIGHTNESS_AUTOMATIC_INT)) {
539                 //update directly
540                 if (ad->data_bright)
541                 {
542                         ad->data_bright->sub_desc = (char *)g_strdup(get_brightness_mode_str());
543                         elm_object_item_data_set(ad->data_bright->item, ad->data_bright);
544                         elm_genlist_item_update(ad->data_bright->item);
545                 }
546         } else {
547                         SETTING_TRACE_ERROR("vconf_name is bad[%s]", vconf_name);
548         }
549
550         return;
551 }
552
553 /**
554 * the event process when string VCONFS changes
555 */
556 static void setting_string_vconf_change_cb(keynode_t *key, void *data)
557 {
558         SETTING_TRACE_BEGIN;
559         setting_main_appdata *ad = data;
560         retm_if(!data, "Invalid argument: data is NULL");
561
562         char *value = vconf_keynode_get_str(key);
563         char *vconf_name = vconf_keynode_get_name(key);
564         Setting_GenGroupItem_Data* item_to_update = NULL;
565
566         if (!safeStrCmp(vconf_name, VCONFKEY_WIFI_CONNECTED_AP_NAME)) {
567                 int status;
568                 item_to_update = ad->data_wifi;
569                 retm_if(!item_to_update, "ad->data_wifi is NULL");
570
571                 if (0 != vconf_get_int(VCONFKEY_WIFI_STATE, &status)) {
572                         SETTING_TRACE_ERROR("vconf_get err: %s", VCONFKEY_WIFI_STATE);
573                         return;
574                 }
575                 SETTING_TRACE("status:%d", status);
576                 switch (status) {
577                 case VCONFKEY_WIFI_OFF:
578                         item_to_update->sub_desc =
579                                 (char *)g_strdup(setting_gettext ("IDS_COM_BODY_OFF_M_STATUS"));
580                         break;
581
582                 case VCONFKEY_WIFI_UNCONNECTED:
583                 case VCONFKEY_WIFI_CONNECTED:
584                 case VCONFKEY_WIFI_TRANSFER:
585                         if (NULL != value && '\0' != value[0]) {
586                                 SETTING_TRACE("wifi_device:%s", value);
587                                 item_to_update->sub_desc = (char *)g_strdup(value);
588                         } else {
589                                 item_to_update->sub_desc =
590                                         (char *) g_strdup(setting_gettext ("IDS_COM_BODY_ON_M_STATUS"));
591                         }
592                         break;
593                 default:
594                         SETTING_TRACE_ERROR("Invalid wifi status!");
595                         return;
596                 }
597                 if (ad->bAppPause || ad->ug) {
598                         ad->updateItems[GL_ITEM_WIFI] = EINA_TRUE;
599                 } else { // app is not in pause without ug
600                         elm_object_item_data_set(item_to_update->item, item_to_update);
601                         elm_genlist_item_update(item_to_update->item);
602                 }
603         } // vconf_name == VCONFKEY_WIFI_CONNECTED_AP_NAME
604 }
605
606
607 /**
608 * Do the process which cost much time
609 */
610 static Eina_Bool setting_on_idle_lazy(void *data)
611 {
612         SETTING_TRACE_BEGIN;
613         setting_main_appdata *ad = data;
614
615         /* A. add system event callback */
616         if (sensor_create(&ad->sf_handle) != SENSOR_ERROR_NONE) {
617                 SETTING_TRACE_ERROR("sensor attach fail");
618         }
619
620
621         if (sensor_motion_doubletap_set_cb(ad->sf_handle, __main_motion_sensor_cb, ad) != SENSOR_ERROR_NONE) {
622                 SETTING_TRACE("sensor_motion_doubletap_set_cb fail to gather data");
623         }
624
625         if (sensor_start(ad->sf_handle, SENSOR_MOTION_DOUBLETAP) != SENSOR_ERROR_NONE) {
626                 SETTING_TRACE_ERROR("sensor_start fail");
627         }
628
629         appcore_set_event_callback(APPCORE_EVENT_LANG_CHANGE,
630                                    setting_main_lang_changed_cb, ad);
631
632 #if LOW_BATTERY_DO_NOTHING
633         appcore_set_event_callback(APPCORE_EVENT_LOW_BATTERY,
634                                    setting_main_low_battery_cb, ad);
635 #endif
636
637         appcore_set_event_callback(APPCORE_EVENT_REGION_CHANGE,
638                                    setting_main_region_changed_cb, ad);
639
640 #if SUPPORT_APP_ROATION
641         appcore_set_rotation_cb(setting_main_rotate, ad);
642         evas_object_geometry_get(ad->win_main, &g_geometry_x, &g_geometry_y, &g_geometry_w, &g_geometry_h);
643 #endif
644
645         return FALSE;
646 }
647
648 /**
649 * The function is called to create Setting view widgets
650 */
651 static int setting_main_app_create(void *data)
652 {
653         SETTING_TRACE_BEGIN;
654         //fprintf(stderr, "[TIME] 3. it taked %d msec from main to setting_main_app_create \n", appcore_measure_time());
655         SETTING_TRACE("[TIME] 3. it taked %d msec from main to setting_main_app_create ", appcore_measure_time());
656         appcore_measure_start();
657         setting_main_appdata *ad = data;
658
659         ad->data_roaming_popup = NULL;
660
661         /* create window */
662         ad->win_main = setting_main_create_win(SETTING_PACKAGE);
663         setting_retvm_if(ad->win_main == NULL, SETTING_RETURN_FAIL, "window is null");
664         evas_object_show(ad->win_main);
665         UG_INIT_EFL(ad->win_main, UG_OPT_INDICATOR_ENABLE);
666         ad->evas = evas_object_evas_get(ad->win_main);
667
668         /* load config file */
669         int cfg_operation_ret = setting_cfg_init();
670         PLUGIN_INIT;
671
672         elm_theme_extension_add(NULL, SETTING_THEME_EDJ_NAME);
673 #if SUPPORT_LCD_TIMEOUT_KEEPING
674         /* to keep according with each other */
675         int origin_backlight_value;
676         if (0 !=
677             vconf_get_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL,
678                           &origin_backlight_value)) {
679                 /* error handle.. */
680                 vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, 30);
681                 origin_backlight_value = 30;
682         }
683         /* to set intial value */
684         vconf_set_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP,
685                       origin_backlight_value);
686
687         /* Firstly, Setting is running in foreground, LCD_TIMEOUT must be 600s(/10m) */
688         vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, 600);
689 #endif
690
691         elm_win_indicator_mode_set(ad->win_main, ELM_WIN_INDICATOR_SHOW);
692
693         setting_view_create(&setting_view_main, ad);
694         setting_view_node_table_register(&setting_view_main, NULL);
695         setting_view_node_table_register(&setting_view_more_menu, &setting_view_main);
696
697         /* error handling */
698         if (Cfg_Error_Type_Sucess != cfg_operation_ret) {
699                 SETTING_TRACE_ERROR("cfg_operation_ret: %d", cfg_operation_ret);
700                 const char *notifyStr = NULL;
701                 switch (cfg_operation_ret) {
702
703                 case Cfg_Error_Type_CreateCfg_Failed:
704                         {
705                                 notifyStr = _("failed to create config file, <br>re-install org.tizen.setting please");
706                                 break;
707                         }
708                 case Cfg_Error_Type_Mkdir_Failed:
709                         {
710                                 notifyStr = _("file system missed<br>/opt/data/setting, <br>re-install org.tizen.setting please");
711                                 break;
712                         }
713                 case Cfg_Error_Type_RemoveCfg_Failed:
714                         {
715                                 notifyStr = _("config file size 0 byte<br>and failed to re-create it.<br>try to startup the app again");
716                                 break;
717                         }
718                 case Cfg_Error_Type_ReadCfg_Failed:
719                         {
720                                 notifyStr = _("failed to read config file, <br>try to startup the app again");
721                                 break;
722                         }
723                 case Cfg_Error_Type_DirPermissionDenied:
724                         {
725                                 notifyStr =
726                                     _("the dir of config file permission denied");
727                                 break;
728                         }
729                 case Cfg_Error_Type_FilePermissionDenied:
730                         {
731                                 notifyStr = _("config file permission denied");
732                                 break;
733                         }
734                 default:
735                         {
736                                 notifyStr = _("Invalid Result, try to startup the app again");
737                                 break;
738                         }
739                 }
740                 setting_create_popup_without_btn(ad, ad->win_main, NULL, (char *)notifyStr, NULL, 10, FALSE, FALSE);
741                 return SETTING_RETURN_FAIL;
742         }
743         //fprintf(stderr, "[TIME] 4. setting_main_app_create taked %d msec \n", appcore_measure_time());
744         SETTING_TRACE("[TIME] 4. setting_main_app_create taked %d msec ", appcore_measure_time());
745         appcore_measure_start();
746
747         return 0;
748 }
749
750 /**
751 * The function is called when Setting is terminated
752 */
753 static int setting_main_app_terminate(void *data)
754 {
755         SETTING_TRACE_BEGIN;
756         setting_main_appdata *ad = data;
757         PLUGIN_FINI;
758         setting_cfg_exit();
759         clear_system_service_data();
760
761         ug_destroy_all();
762         ad->ug = NULL;
763
764         SETTING_TRACE("%s*** SETTING APPLICATION CLOSED ***%s",
765                       SETTING_FONT_BGREEN, SETTING_FONT_BLACK);
766
767         DEREGISTER_VCONFS(ad->listened_list);
768
769         if (sensor_motion_doubletap_unset_cb(ad->sf_handle) != SENSOR_ERROR_NONE) {
770                 SETTING_TRACE("sensor_motion_doubletap_unset_cb fail to gather data");
771         }
772         sensor_stop(ad->sf_handle, SENSOR_MOTION_DOUBLETAP);
773         sensor_destroy(ad->sf_handle);
774
775 #if SUPPORT_LCD_TIMEOUT_KEEPING
776         /* once Setting is not running, LCD_TIMEOUT must be backuped */
777         int back_value = 0;
778         vconf_get_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP, &back_value);
779         vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, back_value);
780 #endif
781         setting_view_destroy(&setting_view_more_menu, ad);
782         setting_view_destroy(&setting_view_main, ad);
783         SETTING_TRACE("!!! After setting_view_destroy");
784         if (ad->win_main) {
785                 evas_object_del(ad->win_main);
786                 ad->win_main = NULL;
787         }
788
789         SETTING_TRACE_END;
790         return 0;
791 }
792
793 /**
794 * The function is called when Setting begins run in background from forground
795 */
796 static int setting_main_app_pause(void *data)
797 {
798         SETTING_TRACE_BEGIN;
799         setting_main_appdata *ad = data;
800
801         ad->bAppPause = EINA_TRUE;
802         if (ad->ug)
803                 ug_pause();
804
805 #if SUPPORT_LCD_TIMEOUT_KEEPING
806         /* once Setting is running in background, LCD_TIMEOUT must be backuped */
807         int back_value = 0;
808         vconf_get_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP, &back_value);
809         vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, back_value);
810 #endif
811
812         sensor_stop(ad->sf_handle, SENSOR_MOTION_DOUBLETAP);
813
814         return 0;
815 }
816
817 /**
818 * The function is called when Setting begins run in forground from background
819 */
820 static int setting_main_app_resume(void *data)
821 {
822         SETTING_TRACE_BEGIN;
823         setting_main_appdata *ad = data;
824
825         if (sensor_start(ad->sf_handle, SENSOR_MOTION_DOUBLETAP) != SENSOR_ERROR_NONE) {
826                 SETTING_TRACE_ERROR("sf_start fail");
827         }
828
829         if (ad->ug)
830                 ug_resume();
831
832 #if SUPPORT_LCD_TIMEOUT_KEEPING
833         /* once Setting is running in foreground, LCD_TIMEOUT must be reset to 600 */
834         vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, 600);
835 #endif
836
837         // update main genlist in resuming app.
838         ad->bAppPause = EINA_FALSE;
839         if(!ad->ug) {   // top-level view is not on UG
840                 SETTING_TRACE("update main genlist in resuming app without UG");
841                 setting_update_gl_item(ad);     // update genlist sub-texts
842         }
843
844         return 0;
845 }
846
847 /**
848 * The function is called by app-fwk after app_create. It always do the process which cost much time.
849 */
850 static int setting_main_app_reset(service_h service, void *data)
851 {
852         SETTING_TRACE_BEGIN;
853         setting_main_appdata *ad = data;
854
855 #if SUPPORT_LIVEBOX_DEMO
856         char *ug_name = NULL;
857         if(b != NULL)
858         {
859                 ug_name = (char*)appsvc_get_data(b, "ug");
860                 if(ug_name)
861                 {
862                         SETTING_TRACE_DEBUG("get ug_name : %s", ug_name);
863                         struct ug_cbs *cbs = (struct ug_cbs *)calloc(1, sizeof(struct ug_cbs));
864                         setting_retm_if(!cbs, "calloc failed");
865                         cbs->layout_cb = setting_main_layout_ug_cb;
866                         cbs->result_cb = setting_main_result_ug_cb;
867                         cbs->destroy_cb = setting_main_destroy_ug_cb;
868                         cbs->priv = (void *)ad;
869
870                         char *path = get_ug_path_from_ug_args(data);
871                         service_h svc = get_bundle_from_ug_args(data);
872                         ad->ug = ug_create(NULL, ug_name, UG_MODE_FULLVIEW, svc, cbs);
873                         if (ad->ug) {
874                                 ad->isInUGMode = TRUE;
875                         } else {
876
877                                 evas_object_show(ad->ly_main);
878
879                                 SETTING_TRACE_ERROR("errno:%d", errno);
880                                 setting_create_simple_popup(ad, ad->win_main, NULL, NO_UG_FOUND_MSG);
881                         }
882                         if (path)
883                                 FREE(path);
884                         if (cbs)
885                                 FREE(cbs);
886                         path = NULL;
887                         cbs = NULL;
888                         service_destroy(svc);
889                 }
890                 else
891                 {
892                         SETTING_TRACE_DEBUG("ug_name is NULL");
893                 }
894         }
895         else
896         {
897                 SETTING_TRACE_DEBUG("bundle is NULL");
898         }
899 #endif
900         vconf_callback_fn cb = NULL;
901
902         cb = setting_int_vconf_change_cb;
903         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_BT_STATUS, cb, data);
904         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_WIFI_STATE, cb, ad);
905         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SYSMAN_BATTERY_STATUS_LOW, cb, ad);
906         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_BRIGHTNESS_AUTOMATIC_INT, cb, data);
907
908         cb = setting_string_vconf_change_cb;
909         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_WIFI_CONNECTED_AP_NAME, cb, ad);
910
911         cb = setting_other_vconf_change_cb;
912         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_USB_MODE_INT, cb, ad);
913         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_WIDGET_THEME_STR, cb, ad);
914
915         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_FLIGHT_MODE_BOOL, cb, ad);
916         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_SETAPPL_ROTATE_LOCK_BOOL, cb, ad);
917         REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_NFC_STATE, cb, ad);
918
919         if (ad->win_main)
920                 elm_win_activate(ad->win_main);
921
922         ecore_idler_add(setting_on_idle_lazy, ad);
923
924         //fprintf(stderr, "[TIME] 5. app_create -> app_resume (first display) : %d msec\n", appcore_measure_time());
925         SETTING_TRACE("[TIME] 5. app_create -> app_resume (first display) : %d msec", appcore_measure_time());
926         //fprintf(stderr, "[TIME] Total. aul_launch -> app_resume (first display) : %d msec\n", appcore_measure_time_from("APP_START_TIME"));
927         SETTING_TRACE("[TIME] Total. aul_launch -> app_resume (first display) : %d msec", appcore_measure_time_from("APP_START_TIME"));
928
929         return 0;
930 }
931
932 int main(int argc, char *argv[])
933 {
934         int r = 0;
935         setting_main_appdata ad;
936
937         elm_init(argc, argv);
938 #if SUPPORT_GL_ENGINE
939         // opengl_x11 or software_x11
940         elm_config_preferred_engine_set("software_x11");
941 #endif
942
943         //fprintf(stderr, "[TIME] 1. aul_launch -> main :: Setting main : %d msec \n", appcore_measure_time_from("APP_START_TIME"));
944         SETTING_TRACE("[TIME] 1. aul_launch -> main :: Setting main : %d msec ", appcore_measure_time_from("APP_START_TIME"));
945         appcore_measure_start();
946
947         struct appcore_ops ops = {
948                 .create = setting_main_app_create,
949                 .terminate = setting_main_app_terminate,
950                 .pause = setting_main_app_pause,
951                 .resume = setting_main_app_resume,
952                 .reset = setting_main_app_reset,
953         };
954
955         memset(&ad, 0x0, sizeof(setting_main_appdata));
956         ops.data = &ad;
957
958         //fprintf(stderr, "[TIME] 2. main : %d msec \n", appcore_measure_time());
959         SETTING_TRACE("[TIME] 2. main : %d msec ", appcore_measure_time());
960         appcore_measure_start();
961         r = appcore_efl_main(SETTING_PACKAGE, &argc, &argv, &ops);
962         retv_if(r == -1, -1);
963
964         return 0;
965 }