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.
23 *@defgroup setting-about
24 *UG creation code for setting-about
35 * - Diagnostics and Usage
39 #include <setting-about.h>
40 #include <setting-about-main.h>
43 #define UG_MODULE_API __attribute__ ((visibility("default")))
47 * Event process when the sizeof UG view changes
54 static void setting_about_ug_cb_resize(void *data, Evas *e, Evas_Object *obj,
57 SettingAboutUG *ad = (SettingAboutUG *) data;
58 setting_view_update(&setting_view_about_main, ad);
62 * on_create function of the UG
71 static void *setting_about_ug_on_create(ui_gadget_h ug, enum ug_mode mode,
72 service_h service, void *priv)
75 setting_retvm_if((NULL == priv), NULL, "NULL == priv");
76 SettingAboutUG *aboutUG = priv;
79 aboutUG->win_main_layout = (Evas_Object *) ug_get_parent_layout(ug);
80 aboutUG->win_get = (Evas_Object *) ug_get_window();
81 evas_object_show(aboutUG->win_main_layout);
82 aboutUG->evas = evas_object_evas_get(aboutUG->win_main_layout);
84 setting_retvm_if(aboutUG->win_main_layout == NULL, NULL,
85 "cannot get main window ");
87 /* register view node table */
88 setting_view_node_table_intialize();
89 setting_view_node_table_register(&setting_view_about_main, NULL);
91 /* setting_view_node_table_register(&setting_view_about_about_view, &setting_view_about_main); */
93 /* creating a view. */
94 setting_create_Gendial_itc("dialogue/1text", &(aboutUG->itc_1text));
95 setting_create_Gendial_itc("dialogue/2text.3", &(aboutUG->itc_2text_2));
96 setting_create_Gendial_itc("dialogue/title",
97 &(aboutUG->itc_group_item));
98 setting_create_Gendial_itc("dialogue/1icon", &(aboutUG->itc_1icon));
99 setting_create_Gendial_itc("dialogue/2text.3/expandable",
100 &(aboutUG->itc_2text_3_parent));
101 setting_create_Gendial_itc("dialogue/1text.1icon/expandable2",
102 &(aboutUG->itc_1icon_1text_sub));
103 setting_create_Gendial_itc("multiline/1text",
104 &(aboutUG->itc_help_style));
106 aboutUG->itc_seperator.item_style = "dialogue/separator/21/with_line";
107 aboutUG->itc_seperator.func.text_get = NULL;
108 aboutUG->itc_seperator.func.content_get = NULL;
109 aboutUG->itc_seperator.func.state_get = NULL;
110 aboutUG->itc_seperator.func.del = NULL;
111 setting_view_node_set_cur_view(&setting_view_about_main);
112 setting_view_create(&setting_view_about_main, (void *)aboutUG);
113 evas_object_event_callback_add(aboutUG->win_main_layout,
114 EVAS_CALLBACK_RESIZE,
115 setting_about_ug_cb_resize, aboutUG);
117 aboutUG->popup_showed_flag = FALSE;
118 return aboutUG->ly_main;
121 static void setting_about_ug_on_start(ui_gadget_h ug, service_h service,
126 static void setting_about_ug_on_pause(ui_gadget_h ug, service_h service,
130 SettingAboutUG *SettingAboutUG = priv;
131 SettingAboutUG->pause_flag = TRUE;
134 static void setting_about_ug_on_resume(ui_gadget_h ug, service_h service,
138 setting_retm_if((!priv), "!priv");
139 SettingAboutUG *aboutUG = priv;
140 aboutUG->pause_flag = FALSE;
142 char str[MAX_DISPLAY_STR_LEN_ON_PHONE_INFO] = { 0, };
144 memset(str, 0x00, MAX_DISPLAY_STR_LEN_ON_PHONE_INFO);
145 if(aboutUG->item_data_wifi)
147 setting_about_main_get_wifi_mac_address_string(str, MAX_DISPLAY_STR_LEN_ON_PHONE_INFO);
148 aboutUG->item_data_wifi->sub_desc = (char*)g_strdup(str);
149 elm_object_item_data_set(aboutUG->item_data_wifi->item, aboutUG->item_data_wifi);
150 elm_genlist_item_update(aboutUG->item_data_wifi->item);
152 memset(str, 0x00, MAX_DISPLAY_STR_LEN_ON_PHONE_INFO);
153 if(aboutUG->item_data_bt)
155 setting_about_main_get_bluetooth_address_string(str, MAX_DISPLAY_STR_LEN_ON_PHONE_INFO);
156 aboutUG->item_data_bt->sub_desc = (char*)g_strdup(str);
157 elm_object_item_data_set(aboutUG->item_data_bt->item, aboutUG->item_data_bt);
158 elm_genlist_item_update(aboutUG->item_data_bt->item);
163 * on_destroy function of the UG
169 static void setting_about_ug_on_destroy(ui_gadget_h ug, service_h service,
173 setting_retm_if((!priv), "!priv");
174 SettingAboutUG *aboutUG = priv;
176 evas_object_event_callback_del(aboutUG->win_main_layout, EVAS_CALLBACK_RESIZE, setting_about_ug_cb_resize); /* fix flash issue for gallery */
179 /* delete the allocated objects. */
180 setting_view_destroy(&setting_view_about_main, aboutUG);
181 if (NULL != ug_get_layout(aboutUG->ug)) {
182 evas_object_hide((Evas_Object *) ug_get_layout(aboutUG->ug));
183 evas_object_del((Evas_Object *) ug_get_layout(aboutUG->ug));
189 static void setting_about_ug_on_message(ui_gadget_h ug, service_h msg,
190 service_h service, void *priv)
195 static void setting_about_ug_on_event(ui_gadget_h ug, enum ug_event event,
196 service_h service, void *priv)
200 case UG_EVENT_LOW_MEMORY:
202 case UG_EVENT_LOW_BATTERY:
204 case UG_EVENT_LANG_CHANGE:
206 case UG_EVENT_ROTATE_PORTRAIT:
208 case UG_EVENT_ROTATE_PORTRAIT_UPSIDEDOWN:
210 case UG_EVENT_ROTATE_LANDSCAPE:
212 case UG_EVENT_ROTATE_LANDSCAPE_UPSIDEDOWN:
214 case UG_EVENT_REGION_CHANGE:
221 static void setting_about_ug_on_key_event(ui_gadget_h ug,
222 enum ug_key_event event,
223 service_h service, void *priv)
226 SettingAboutUG *ad = (SettingAboutUG *) priv;
231 case UG_KEY_EVENT_END:
233 if (elm_naviframe_top_item_get(ad->navi_bar) ==
234 elm_naviframe_bottom_item_get(ad->navi_bar)) {
237 /* elm_naviframe_item_pop(ad->navi_bar); */
238 setting_view_cb_at_endKey(ad);
247 static void __about_gl_sel_expand(void *data, Evas_Object *obj,
250 /* SETTING_TRACE_BEGIN; */
251 retm_if(event_info == NULL, "Invalid argument: event info is NULL");
252 Elm_Object_Item *item = (Elm_Object_Item *) event_info;
253 elm_genlist_item_selected_set(item, 0);
254 bool status = !elm_genlist_item_expanded_get(item);
255 elm_genlist_item_expanded_set(item, status);
259 * @see __on_sim_get_msisdn (caller)
261 Eina_Bool __insert_item_idler(void *data)
264 retv_if(!data, FALSE);
265 SettingAboutUG *ad = data;
266 if (ad->item_dev_name) //the genlist exists already.
268 SETTING_TRACE("Beging to insert items...");
271 char sel_num[TAPI_SIM_XDN_DIALING_NUMBER_LEN + 1] = { 0, };
272 setting_get_string_slp_key(STR_SLP_SETTING_SELECT_NUM, sel_num, &err);
274 Setting_GenGroupItem_Data *item_data = NULL;
275 if (ad->my_numbers.count == 1) {
276 item_data = calloc(1, sizeof(Setting_GenGroupItem_Data));
277 setting_retvm_if(!item_data, FALSE, "calloc item_data failed");
278 item_data->keyStr = (char *)g_strdup("IDS_ST_BODY_MY_NUMBER");
279 item_data->sub_desc = (char *)g_strdup(sel_num);
280 item_data->swallow_type = SWALLOW_Type_INVALID;
282 item_data->item = elm_genlist_item_insert_after(ad->genlsit, &(ad->itc_2text_2),
284 ad->item_dev_name->item,
285 ELM_GENLIST_ITEM_NONE,
287 elm_genlist_item_select_mode_set(item_data->item, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY);
289 } else if (ad->my_numbers.count > 1) {
290 setting_enable_expandable_genlist(ad->genlsit, ad,
291 setting_about_main_exp_cb, NULL);
292 item_data = calloc(1, sizeof(Setting_GenGroupItem_Data));
293 setting_retvm_if(!item_data, FALSE, "calloc item_data failed");
294 item_data->keyStr = (char *)g_strdup("IDS_ST_BODY_MY_NUMBER");
295 item_data->sub_desc = (char *)g_strdup(sel_num);
296 item_data->swallow_type = SWALLOW_Type_INVALID;
298 item_data->int_slp_setting_binded = STR_SLP_SETTING_SELECT_NUM;
299 item_data->item = elm_genlist_item_insert_after(ad->genlsit, &(ad->itc_2text_3_parent),
301 ad->item_dev_name->item,
302 ELM_GENLIST_ITEM_TREE,
303 __about_gl_sel_expand, NULL);
311 * called at initialization of About UG
312 * @see tel_get_sim_msisnd
314 static void __on_sim_get_msisdn(TapiHandle *handle, int result, void *data, void *user_data)
317 ret_if(!user_data || !data);
318 SettingAboutUG *ad = user_data;
319 TelSimAccessResult_t access_rt = result;
320 //TelSimMsisdnList_t *list = data;
323 SETTING_TRACE("access_rt[%d]", access_rt);
327 memcpy(&(ad->my_numbers), data, sizeof(TelSimMsisdnList_t));
329 TelSimMsisdnList_t r_numbers;
330 /////////r_numbers.count = 3;
332 safeCopyStr(r_numbers.list[0].name, "n1", 30);
333 safeCopyStr(r_numbers.list[1].name, "n2", 30);
334 safeCopyStr(r_numbers.list[2].name, "n3", 30);
335 safeCopyStr(r_numbers.list[0].num, "1111111111", 30);
336 safeCopyStr(r_numbers.list[1].num, "2222222222", 30);
337 safeCopyStr(r_numbers.list[2].num, "3333333333", 30);
338 memcpy(&(ad->my_numbers), &r_numbers, sizeof(TelSimMsisdnList_t));
342 char sel_num[TAPI_SIM_XDN_DIALING_NUMBER_LEN + 1] = { 0, };
343 setting_get_string_slp_key(STR_SLP_SETTING_SELECT_NUM, sel_num, &err);
345 bool isFound = FALSE;
346 SETTING_TRACE("ad->my_numbers.count[%d]", ad->my_numbers.count);
348 for (i = 0; i < ad->my_numbers.count && i < SETTING_ABOUT_MY_NUMBERS_LEN; i++) {
349 SETTING_TRACE("index[%d] - name[%s], num[%s]", i, ad->my_numbers.list[i].name, ad->my_numbers.list[i].num);
350 if (0 == safeStrCmp(sel_num, ad->my_numbers.list[i].num)) {
354 if (!isFound && ad->my_numbers.count > 0) {//if not found, set as the first num of returned-list
355 SETTING_TRACE("Selected-num hasn't been found, to let the first one as defalut one");
356 setting_set_string_slp_key(STR_SLP_SETTING_SELECT_NUM, ad->my_numbers.list[0].num, &err);
359 ad->tapi_responsed = TRUE;
361 evas_object_del(ad->popup);
364 setting_about_generate_genlist((void *)ad);
367 UG_MODULE_API int UG_MODULE_INIT(struct ug_module_ops *ops)
370 SettingAboutUG *aboutUG = calloc(1, sizeof(SettingAboutUG));
371 setting_retvm_if(!aboutUG, -1, "Create SettingAboutUG obj failed");
373 ops->create = setting_about_ug_on_create;
374 ops->start = setting_about_ug_on_start;
375 ops->pause = setting_about_ug_on_pause;
376 ops->resume = setting_about_ug_on_resume;
377 ops->destroy = setting_about_ug_on_destroy;
378 ops->message = setting_about_ug_on_message;
379 ops->event = setting_about_ug_on_event;
380 ops->key_event = setting_about_ug_on_key_event;
382 ops->opt = UG_OPT_INDICATOR_ENABLE;
388 setting_get_int_slp_key(INT_SLP_SETTING_SIM_SLOT, &value, &err);
389 if (VCONFKEY_TELEPHONY_SIM_INSERTED == value)//There is a sim card, so do display to user
391 aboutUG->handle = tel_init(NULL);
394 SETTING_TRACE("aboutUG->handle:%p", aboutUG->handle);
395 if (aboutUG->handle) {
396 SETTING_TRACE("tel_init sucessed, and there is at least one sim card, now trying to get misidns");
397 if (tel_get_sim_msisdn(aboutUG->handle, __on_sim_get_msisdn, aboutUG) == TAPI_API_SUCCESS) {
398 SETTING_TRACE("tel_get_sim_msisdn sent");
405 SETTING_TRACE_DEBUG("There is no sim card, so skip getting misidns");
410 UG_MODULE_API void UG_MODULE_EXIT(struct ug_module_ops *ops)
413 SettingAboutUG *aboutUG;
414 setting_retm_if(!ops, "ops == NULL");
419 && tel_deinit(aboutUG->handle) == TAPI_API_SUCCESS) {
420 SETTING_TRACE("tel_deinit sucessed");
426 /* ***************************************************
430 ****************************************************/
431 void setting_about_layout_ug_cb(ui_gadget_h ug, enum ug_mode mode,
434 SettingAboutUG *ad = (SettingAboutUG *) priv;
441 base = (Evas_Object *) ug_get_layout(ug);
446 case UG_MODE_FULLVIEW:
447 evas_object_size_hint_weight_set(base, EVAS_HINT_EXPAND,
449 elm_win_resize_object_add(ad->win_get, base);
450 evas_object_show(base);
459 static void __setting_about_sub_list_sel_cb(void *data, Evas_Object *obj, void *event_info)
463 retm_if(event_info == NULL, "Invalid argument: event info is NULL");
464 Elm_Object_Item *subitem = (Elm_Object_Item *) event_info;
465 Elm_Object_Item *parentItem = elm_genlist_item_parent_get(subitem);
466 elm_genlist_item_selected_set(subitem, 0);
467 Setting_GenGroupItem_Data *data_subItem = elm_object_item_data_get(subitem);
468 Setting_GenGroupItem_Data *data_parentItem = elm_object_item_data_get(parentItem); /* parent data */
469 ret_if(NULL == data_subItem || NULL == data_parentItem);
473 setting_set_string_slp_key(data_parentItem->int_slp_setting_binded, data_subItem->keyStr, &err);
474 setting_retm_if(0 != err, "Set vconf error[%d]",data_parentItem->int_slp_setting_binded);
476 data_parentItem->sub_desc = (char *)g_strdup(_(data_subItem->keyStr));
477 elm_object_item_data_set(data_parentItem->item, data_parentItem);
478 elm_genlist_item_update(data_parentItem->item);
479 elm_radio_value_set(data_subItem->rgd, data_subItem->chk_status);
482 static void __setting_about_sub_list_rd_change(void *data, Evas_Object *obj, void *event_info)
486 retm_if(data == NULL, "Data parameter is NULL");
487 Setting_GenGroupItem_Data *list_item = (Setting_GenGroupItem_Data *) data;
489 Elm_Object_Item *subItem = list_item->item;
490 Elm_Object_Item *parentItem = elm_genlist_item_parent_get(subItem);
492 Setting_GenGroupItem_Data *data_subItem = elm_object_item_data_get(subItem); /* subItem data */
493 Setting_GenGroupItem_Data *data_parentItem = elm_object_item_data_get(parentItem); /* parent data */
494 ret_if(NULL == data_subItem || NULL == data_parentItem);
497 setting_set_string_slp_key(data_parentItem->int_slp_setting_binded, data_subItem->keyStr, &err);
500 data_parentItem->sub_desc = (char *)g_strdup(_(data_subItem->keyStr));
501 elm_object_item_data_set(data_parentItem->item, data_parentItem);
502 elm_genlist_item_update(data_parentItem->item);
503 elm_radio_value_set(obj, data_subItem->chk_status);
506 void setting_about_main_exp_cb(void *data, Evas_Object *obj, void *event_info)
509 setting_retm_if(data == NULL, "Data parameter is NULL");
510 setting_retm_if(event_info == NULL, "event_info parameter is NULL");
512 SettingAboutUG *ad = (SettingAboutUG *) data;
513 Elm_Object_Item *parentItem = event_info; /* parent item */
514 Setting_GenGroupItem_Data *data_parentItem = elm_object_item_data_get(parentItem);
515 Evas_Object *scroller = elm_object_item_widget_get(parentItem);
517 Evas_Object *rgd = elm_radio_add(scroller);
518 elm_radio_value_set(rgd, -1);
521 char sel_num[TAPI_SIM_XDN_DIALING_NUMBER_LEN + 1] = { 0, };
522 setting_get_string_slp_key(data_parentItem->int_slp_setting_binded, sel_num, &err);
523 SETTING_TRACE("binded: %d, checked: %s, err: %d", data_parentItem->int_slp_setting_binded, sel_num, err);
527 Setting_GenGroupItem_Data *item_data = NULL;
529 for(; i < ad->my_numbers.count; i++) {
530 if (ad->my_numbers.list[i].num == NULL) {
534 if (sel_idx == -1 && 0 == safeStrCmp(sel_num, ad->my_numbers.list[i].num)) {
537 item_data = setting_create_Gendial_exp_sub_field(scroller,
538 &(ad->itc_1icon_1text_sub),
539 __setting_about_sub_list_sel_cb, ad, parentItem,
540 SWALLOW_Type_1RADIO, rgd,
542 ad->my_numbers.list[i].num, __setting_about_sub_list_rd_change);
544 item_data->userdata = ad;
546 SETTING_TRACE_ERROR("item_data is NULL");
550 elm_radio_value_set(rgd, sel_idx);
555 * Reset function to 'reset' the settings of the UG, it will be invoked by 'Reset' UG
560 UG_MODULE_API int setting_plugin_reset(service_h service, void *priv)
563 #if SUPPORT_RUN_SYSTEM_COMMAND
564 return excuteCmd(SETTING_POSTINST_FILE, 1, "about");
566 return vconf_set_str(VCONFKEY_SETAPPL_DEVICE_NAME_STR, SETTING_ABOUT_DEFAULT_DEVICE_NAME);