4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
6 * Contact: MyoungJune Park <mj2004.park@samsung.com>
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <appcore-common.h>
27 #include "setting-plugin.h"
28 #include "setting-main.h"
29 #include <elm_object.h>
32 extern void setting_update_gl_item(void* data);
34 #define KEY_END "XF86Stop"
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);
39 static void __main_motion_sensor_cb( unsigned long long timestamp, void *data)
41 /* The code 'return ;' will be deleted after the defect of elm_genlist_item_top_show() is fixed */
43 setting_retm_if(NULL == data, "NULL == data");
45 setting_main_appdata *ad = (setting_main_appdata *) data;
47 SETTING_TRACE(">>>>>>>Double tap event detected");
48 //If it is in UG mode, Setting just send the event to the loaded UG
50 if (ad->isInUGMode && ad->ug) {
51 #ifdef SUPPORT_UG_MESSAGE
52 SETTING_TRACE(">>>>>>>Send event to UG");
55 if(service_create(&svc))
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");
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.
75 Evas_Object *layout = (Evas_Object *)ug_get_layout(ad->ug);
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);
83 const char *type = elm_object_widget_type_get(content);
84 SETTING_TRACE("content type:%s", type);
85 if (0 == safeStrCmp(type, "genlist")) {
87 //} else if (0 == safeStrCmp(type, "layout") || 0 == safeStrCmp(type, "conformant")) {
88 } else if (NULL != type) {//type="layout","conformant" etc..
90 //genlist = elm_object_part_content_get(content, "elm.swallow.contents");
91 const Eina_List *subobjs = elm_widget_sub_object_list_get(content);
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")) {
102 SETTING_TRACE("Get the genlist:%p", genlist);
103 Elm_Object_Item *first_item = elm_genlist_first_item_get(genlist);
105 elm_genlist_item_show(first_item, ELM_GENLIST_ITEM_SCROLLTO_TOP);
109 return;//to return,because for this case,we need special process.
111 //keep genlist to be NULL.
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);
118 elm_genlist_item_show(first_item, ELM_GENLIST_ITEM_SCROLLTO_TOP);
124 setting_go_to_navibar_list_top(ad->navibar_main);
129 * The event process when hard key is pressed.
132 static int setting_main_keydown_cb(void *data, int type, void *event)
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);
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")) {
147 ("Found popup[%p], but it respresent a progress bar, so skip it.",
150 evas_object_smart_callback_call(popup,
155 /*Evas_Object *popup2 = get_toppest_popup_window(ad->evas);
158 SETTING_TRACE_ERROR("error handling");
159 evas_object_del(popup);
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);
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");
175 SETTING_TRACE("To pre-view of Setting App");
176 elm_naviframe_item_pop(ad->navibar_main);
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 ");
186 s_count = s_count + 1;
187 SETTING_TRACE("after --- elm_exit = %d ", s_count);
195 #if LOW_BATTERY_DO_NOTHING
197 /* in case of low battery, don't terminate itself.*/
200 * The event process when battery becomes low.
202 static int setting_main_low_battery_cb(void *data)
205 setting_main_appdata *ad = data;
208 ug_send_event(UG_EVENT_LOW_BATTERY);
214 #if SUPPORT_APP_ROATION
217 * To active rotation effect in Setting App
219 static int setting_main_rotate(enum appcore_rm m, void *data)
222 setting_main_appdata *ad = data;
225 if (ad == NULL || ad->win_main == NULL)
229 case APPCORE_RM_PORTRAIT_NORMAL:
232 case APPCORE_RM_PORTRAIT_REVERSE:
235 case APPCORE_RM_LANDSCAPE_NORMAL:
238 case APPCORE_RM_LANDSCAPE_REVERSE:
247 elm_win_rotation_with_resize_set(ad->win_main, r);
254 * The event process when region is changes.
256 static int setting_main_region_changed_cb(void *data)
258 setting_main_appdata *ad = data;
261 ug_send_event(UG_EVENT_REGION_CHANGE);
267 * The event process when win object is destroyed
269 static void setting_main_del_win(void *data, Evas_Object *obj, void *event)
275 * To create a win object, the win is shared between the App and all its UGs
277 static Evas_Object *setting_main_create_win(const char *name)
283 eo = elm_win_add(NULL, name, ELM_WIN_BASIC);
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(),
291 evas_object_resize(eo, w, h);
298 * exceptional process, reset the env vars by Setting vconf VCONFKEY_LANGSET
300 static int setting_main_lang_changed_cb(void *data)
303 setting_main_appdata *ad = data;
307 str = (char *)get_pa_Wi_Fi_on_off_str();
308 if ( ! str) str = g_strdup("err");
309 ad->data_wifi->sub_desc = str;
312 str = (char *)g_strdup(get_BT_on_off_str());
313 if ( ! str) str = g_strdup("err");
314 ad->data_bt->sub_desc = str;
317 str = (char *)g_strdup(get_NFC_on_off_str());
318 if ( ! str) str = g_strdup("err");
319 ad->data_nfc->sub_desc = str;
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;
327 if (ad->data_moreConnect) {
328 char sub_text[MAX_COMMON_BUFFER_LEN] = {0, };
330 while (idx < MAX_MORE_MENU_NUM && ad->more_connective_menus[idx])
334 safeStrNCat(sub_text, ", ", MAX_COMMON_BUFFER_LEN);
336 safeStrNCat(sub_text, _(ad->more_connective_menus[idx]), MAX_COMMON_BUFFER_LEN);
339 ad->data_moreConnect->sub_desc = g_strdup(sub_text);
342 if (ad->data_moreSystem) {
343 char sub_text[MAX_COMMON_BUFFER_LEN] = {0, };
345 while (idx < MAX_MORE_MENU_NUM && ad->more_system_menus[idx])
349 safeStrNCat(sub_text, ", ", MAX_COMMON_BUFFER_LEN);
351 safeStrNCat(sub_text, _(ad->more_system_menus[idx]), MAX_COMMON_BUFFER_LEN);
354 ad->data_moreSystem->sub_desc = g_strdup(sub_text);
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);
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));
366 navi_it = elm_naviframe_bottom_item_get(ad->navibar_main);
368 elm_object_item_text_set(navi_it, _("IDS_COM_BODY_SETTINGS"));
372 #if SUPPORT_BOTTOM_BTNS
373 elm_object_item_text_set(ad->edit_item, _(EDIT_PREFERRED_STR));
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));
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,
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));
397 elm_object_item_text_set(item, tmp_text);
400 ug_send_event(UG_EVENT_LANG_CHANGE);
402 return SETTING_RETURN_SUCCESS;
406 * the event process when other VCONFS changes
408 static void setting_other_vconf_change_cb(keynode_t *key, void *data)
410 setting_main_appdata *ad = data;
411 retm_if(!data, "Invalid argument: data is NULL");
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);
417 if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_WIDGET_THEME_STR)) {
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");
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);
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");
437 vconf_get_bool(VCONFKEY_SETAPPL_ROTATE_LOCK_BOOL, &status);
439 item_to_update->chk_status = !status;
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);
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");
452 item_to_update->sub_desc = (char *)g_strdup(get_NFC_on_off_str());
454 SETTING_TRACE_DEBUG("%s", item_to_update->sub_desc);
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);
466 * the event process when int VCONFS changes
468 static void setting_int_vconf_change_cb(keynode_t *key, void *data)
470 setting_main_appdata *ad = data;
471 retm_if(!data, "Invalid argument: data is NULL");
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);
477 char *pa_wifi_device = NULL;
478 Setting_GenGroupItem_Data* item_to_update = NULL;
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");
485 case VCONFKEY_WIFI_OFF:
486 item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_OFF_M_STATUS"));
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);
496 item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_ON_M_STATUS"));
498 FREE(pa_wifi_device);
501 SETTING_TRACE_ERROR("Invalid wifi status!");
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);
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");
515 if (FALSE == status) {
516 item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_OFF_M_STATUS"));
518 item_to_update->sub_desc = (char *)g_strdup(_("IDS_COM_BODY_ON_M_STATUS"));
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);
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);
533 if (ad->data_bright) {
534 setting_enable_genlist_item(ad->data_bright->item);
538 }else if (!safeStrCmp(vconf_name, VCONFKEY_SETAPPL_BRIGHTNESS_AUTOMATIC_INT)) {
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);
547 SETTING_TRACE_ERROR("vconf_name is bad[%s]", vconf_name);
554 * the event process when string VCONFS changes
556 static void setting_string_vconf_change_cb(keynode_t *key, void *data)
559 setting_main_appdata *ad = data;
560 retm_if(!data, "Invalid argument: data is NULL");
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;
566 if (!safeStrCmp(vconf_name, VCONFKEY_WIFI_CONNECTED_AP_NAME)) {
568 item_to_update = ad->data_wifi;
569 retm_if(!item_to_update, "ad->data_wifi is NULL");
571 if (0 != vconf_get_int(VCONFKEY_WIFI_STATE, &status)) {
572 SETTING_TRACE_ERROR("vconf_get err: %s", VCONFKEY_WIFI_STATE);
575 SETTING_TRACE("status:%d", status);
577 case VCONFKEY_WIFI_OFF:
578 item_to_update->sub_desc =
579 (char *)g_strdup(setting_gettext ("IDS_COM_BODY_OFF_M_STATUS"));
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);
589 item_to_update->sub_desc =
590 (char *) g_strdup(setting_gettext ("IDS_COM_BODY_ON_M_STATUS"));
594 SETTING_TRACE_ERROR("Invalid wifi status!");
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);
603 } // vconf_name == VCONFKEY_WIFI_CONNECTED_AP_NAME
608 * Do the process which cost much time
610 static Eina_Bool setting_on_idle_lazy(void *data)
613 setting_main_appdata *ad = data;
615 /* A. add system event callback */
616 if (sensor_create(&ad->sf_handle) != SENSOR_ERROR_NONE) {
617 SETTING_TRACE_ERROR("sensor attach fail");
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");
625 if (sensor_start(ad->sf_handle, SENSOR_MOTION_DOUBLETAP) != SENSOR_ERROR_NONE) {
626 SETTING_TRACE_ERROR("sensor_start fail");
629 appcore_set_event_callback(APPCORE_EVENT_LANG_CHANGE,
630 setting_main_lang_changed_cb, ad);
632 #if LOW_BATTERY_DO_NOTHING
633 appcore_set_event_callback(APPCORE_EVENT_LOW_BATTERY,
634 setting_main_low_battery_cb, ad);
637 appcore_set_event_callback(APPCORE_EVENT_REGION_CHANGE,
638 setting_main_region_changed_cb, ad);
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);
649 * The function is called to create Setting view widgets
651 static int setting_main_app_create(void *data)
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;
659 ad->data_roaming_popup = NULL;
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);
668 /* load config file */
669 int cfg_operation_ret = setting_cfg_init();
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;
677 vconf_get_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL,
678 &origin_backlight_value)) {
680 vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, 30);
681 origin_backlight_value = 30;
683 /* to set intial value */
684 vconf_set_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP,
685 origin_backlight_value);
687 /* Firstly, Setting is running in foreground, LCD_TIMEOUT must be 600s(/10m) */
688 vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, 600);
691 elm_win_indicator_mode_set(ad->win_main, ELM_WIN_INDICATOR_SHOW);
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);
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) {
703 case Cfg_Error_Type_CreateCfg_Failed:
705 notifyStr = _("failed to create config file, <br>re-install org.tizen.setting please");
708 case Cfg_Error_Type_Mkdir_Failed:
710 notifyStr = _("file system missed<br>/opt/data/setting, <br>re-install org.tizen.setting please");
713 case Cfg_Error_Type_RemoveCfg_Failed:
715 notifyStr = _("config file size 0 byte<br>and failed to re-create it.<br>try to startup the app again");
718 case Cfg_Error_Type_ReadCfg_Failed:
720 notifyStr = _("failed to read config file, <br>try to startup the app again");
723 case Cfg_Error_Type_DirPermissionDenied:
726 _("the dir of config file permission denied");
729 case Cfg_Error_Type_FilePermissionDenied:
731 notifyStr = _("config file permission denied");
736 notifyStr = _("Invalid Result, try to startup the app again");
740 setting_create_popup_without_btn(ad, ad->win_main, NULL, (char *)notifyStr, NULL, 10, FALSE, FALSE);
741 return SETTING_RETURN_FAIL;
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();
751 * The function is called when Setting is terminated
753 static int setting_main_app_terminate(void *data)
756 setting_main_appdata *ad = data;
759 clear_system_service_data();
764 SETTING_TRACE("%s*** SETTING APPLICATION CLOSED ***%s",
765 SETTING_FONT_BGREEN, SETTING_FONT_BLACK);
767 DEREGISTER_VCONFS(ad->listened_list);
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");
772 sensor_stop(ad->sf_handle, SENSOR_MOTION_DOUBLETAP);
773 sensor_destroy(ad->sf_handle);
775 #if SUPPORT_LCD_TIMEOUT_KEEPING
776 /* once Setting is not running, LCD_TIMEOUT must be backuped */
778 vconf_get_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP, &back_value);
779 vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, back_value);
781 setting_view_destroy(&setting_view_more_menu, ad);
782 setting_view_destroy(&setting_view_main, ad);
783 SETTING_TRACE("!!! After setting_view_destroy");
785 evas_object_del(ad->win_main);
794 * The function is called when Setting begins run in background from forground
796 static int setting_main_app_pause(void *data)
799 setting_main_appdata *ad = data;
801 ad->bAppPause = EINA_TRUE;
805 #if SUPPORT_LCD_TIMEOUT_KEEPING
806 /* once Setting is running in background, LCD_TIMEOUT must be backuped */
808 vconf_get_int(VCONFKEY_LCD_TIMEOUT_NORMAL_BACKUP, &back_value);
809 vconf_set_int(VCONFKEY_SETAPPL_LCD_TIMEOUT_NORMAL, back_value);
812 sensor_stop(ad->sf_handle, SENSOR_MOTION_DOUBLETAP);
818 * The function is called when Setting begins run in forground from background
820 static int setting_main_app_resume(void *data)
823 setting_main_appdata *ad = data;
825 if (sensor_start(ad->sf_handle, SENSOR_MOTION_DOUBLETAP) != SENSOR_ERROR_NONE) {
826 SETTING_TRACE_ERROR("sf_start fail");
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);
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
848 * The function is called by app-fwk after app_create. It always do the process which cost much time.
850 static int setting_main_app_reset(service_h service, void *data)
853 setting_main_appdata *ad = data;
855 #if SUPPORT_LIVEBOX_DEMO
856 char *ug_name = NULL;
859 ug_name = (char*)appsvc_get_data(b, "ug");
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;
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);
874 ad->isInUGMode = TRUE;
877 evas_object_show(ad->ly_main);
879 SETTING_TRACE_ERROR("errno:%d", errno);
880 setting_create_simple_popup(ad, ad->win_main, NULL, NO_UG_FOUND_MSG);
888 service_destroy(svc);
892 SETTING_TRACE_DEBUG("ug_name is NULL");
897 SETTING_TRACE_DEBUG("bundle is NULL");
900 vconf_callback_fn cb = NULL;
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);
908 cb = setting_string_vconf_change_cb;
909 REGISTER_VCONF_NODE(ad->listened_list, VCONFKEY_WIFI_CONNECTED_AP_NAME, cb, ad);
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);
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);
920 elm_win_activate(ad->win_main);
922 ecore_idler_add(setting_on_idle_lazy, ad);
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"));
932 int main(int argc, char *argv[])
935 setting_main_appdata ad;
937 elm_init(argc, argv);
938 #if SUPPORT_GL_ENGINE
939 // opengl_x11 or software_x11
940 elm_config_preferred_engine_set("software_x11");
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();
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,
955 memset(&ad, 0x0, sizeof(setting_main_appdata));
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);