setting_sound_main_create_myfile_ug(ad, list_item->keyStr);
__setting_sound_ug_key_ungrab(ad);
} else if (!safeStrCmp("IDS_ST_MBODY_DO_NOT_DISTURB_ABB", list_item->keyStr)) {
+#if 0
SettingProfileUG *ad = (SettingProfileUG *) data;
struct ug_cbs *cbs = (struct ug_cbs *)calloc(1, sizeof(struct ug_cbs));
setting_retm_if(!cbs, "calloc failed");
SETTING_TRACE("To load ug[%s]", "ug-setting-notification-do-not-disturb-efl");
ug_create(ad->ug, "ug-setting-notification-do-not-disturb-efl", UG_MODE_FULLVIEW, NULL, cbs);
FREE(cbs);
-
+#else
+ app_launcher("ug-setting-notification-do-not-disturb-efl");
+#endif
} else if (!safeStrCmp("IDS_ST_MBODY_APP_NOTIFICATIONS", list_item->keyStr)) {
+#if 0
SettingProfileUG *ad = (SettingProfileUG *) data;
struct ug_cbs *cbs = (struct ug_cbs *)calloc(1, sizeof(struct ug_cbs));
setting_retm_if(!cbs, "calloc failed");
SETTING_TRACE("To load ug[%s]", "ug-setting-notification-app-notifications-efl");
ug_create(ad->ug, "ug-setting-notification-app-notifications-efl", UG_MODE_FULLVIEW, NULL, cbs);
FREE(cbs);
+#else
+ app_launcher("ug-setting-notification-app-notifications-efl");
+#endif
}
/* additional */
return EINA_FALSE;
}
-Eina_Bool __freeze_event_timer_cb(void *cb)
+static Eina_Bool __freeze_event_timer_cb(void *cb)
{
SETTING_TRACE_BEGIN;
retv_if(cb == NULL, EINA_FALSE);
SETTING_TRACE("clicking item[%s]", _(list_item->keyStr));
if (!safeStrCmp(KeyStr_LockScreen, list_item->keyStr)) {
-#if 0
- int window_id = elm_win_xwindow_get(ad->win_get);
+#if 1
if (0 == app_launcher("lockscreen-options")) {
+ //if (0 == app_launcher("setting-lockscreen-options-efl")) {
ad->update_view_timer = ecore_timer_add(1, __freeze_event_timer_cb, ad);
evas_object_freeze_events_set(ad->navi_bar, EINA_TRUE);
}
}
}
+
gboolean setting_security_create_lockscreen_options_sg(void *data)
{
/* error check */
SETTING_TRACE("Password UG is already loaded.");
return FALSE;
}
+
+
+#if 1
+ app_launcher("lockscreen-options");
+#else
struct ug_cbs *cbs = (struct ug_cbs *)calloc(1, sizeof(struct ug_cbs));
if (!cbs)
}
FREE(cbs);
+#endif
return TRUE;
}