#include <notification.h>
#include <account.h>
#include <app_manager.h>
+
+#include <efl_extension.h>
#include <efl_assist.h>
#include <dd-display.h>
/*#include <tethering.h> */
Name: org.tizen.setting
Summary: Setting application
-Version: 0.1.99
+Version: 0.2.0
Release: 99
Group: misc
License: Apache-1.0
BuildRequires: pkgconfig(contacts-service2)
BuildRequires: pkgconfig(deviced)
BuildRequires: pkgconfig(badge)
+BuildRequires: pkgconfig(efl-extension)
BuildRequires: pkgconfig(efl-assist)
BuildRequires: pkgconfig(sqlite3)
BuildRequires: pkgconfig(capi-media-camera)
INCLUDE(FindPkgConfig)
pkg_check_modules(pkgs_about REQUIRED
- elementary appcore-common appcore-efl efl-assist
+ elementary appcore-common appcore-efl efl-extension efl-assist
ui-gadget-1
capi-appfw-application capi-appfw-app-manager evas ecore
tapi capi-system-info capi-system-system-settings capi-network-bluetooth
#include <app_manager.h>
#include <efl_assist_events.h>
+#include <efl_extension.h>
#include <ITapiModem.h>
ad = (SettingAboutUG *) data;
popup = elm_popup_add(ad->win_main_layout);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb, NULL);
elm_object_part_text_set(popup, "title,text", _(KeyStr_Regulatory_Info));
layout = elm_layout_add(popup);
INCLUDE(FindPkgConfig)
pkg_check_modules(pkgs_acc REQUIRED elementary ui-gadget-1 capi-appfw-application
evas dlog edje glib-2.0 appcore-efl eina appsvc capi-appfw-app-manager
- vconf efl-assist app2sd json-glib-1.0)
+ vconf efl-extension efl-assist app2sd json-glib-1.0)
FOREACH(flag ${pkgs_acc_CFLAGS})
SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
INCLUDE(FindPkgConfig)
pkg_check_modules(pkgs_display REQUIRED elementary ecore edje evas appcore-common appcore-efl ui-gadget-1 capi-appfw-application dlog capi-system-device
-deviced efl-assist json-glib-1.0 capi-appfw-package-manager)
+deviced efl-extension efl-assist json-glib-1.0 capi-appfw-package-manager)
FOREACH(flag ${pkgs_display_CFLAGS})
SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
capi-appfw-app-manager
vconf
pkgmgr-info
+ efl-extension
efl-assist
app2sd
json-glib-1.0
*
*/
#include <appsvc.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include "setting-appmgr-utils.h"
#include "setting-appmgr-runinfo.h"
elm_object_style_set(popup, "default");
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_object_part_text_set(popup, "title,text", _(MGRAPP_STR_SORT_BY));
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, appmgrUg_popup_del, ad);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, appmgrUg_popup_del, ad);
evas_object_smart_callback_add(popup, "block,clicked", appmgrUg_popup_del, ad);
evas_object_show(popup);
ctxpopup = elm_ctxpopup_add(ad->navi);
elm_object_style_set(ctxpopup, "more/default");
elm_ctxpopup_auto_hide_disabled_set(ctxpopup, EINA_TRUE);
- ea_object_event_callback_add(ctxpopup, EA_CALLBACK_BACK, ea_ctxpopup_back_cb, NULL);
- ea_object_event_callback_add(ctxpopup, EA_CALLBACK_MORE, ea_ctxpopup_back_cb, NULL);
+ eext_object_event_callback_add(ctxpopup, EEXT_CALLBACK_BACK, eext_ctxpopup_back_cb, NULL);
+ eext_object_event_callback_add(ctxpopup, EEXT_CALLBACK_MORE, eext_ctxpopup_back_cb, NULL);
evas_object_smart_callback_add(ctxpopup, "dismissed", appmgrUg_popup_del, ad);
evas_object_smart_callback_add(elm_object_top_widget_get(ctxpopup),
elm_object_item_domain_text_translatable_set(it, SETTING_PACKAGE, EINA_TRUE);
Evas_Object *ao = elm_object_part_access_object_get(ctxpopup, "access.outline");
- ea_screen_reader_access_info_prepend_cb_set(ao, ELM_ACCESS_CONTEXT_INFO,
+ eext_screen_reader_access_info_prepend_cb_set(ao, ELM_ACCESS_CONTEXT_INFO,
_appmgrUg_access_info_prepend_cb, 2);
if (ad->popup)
#define UG_MODULE_API __attribute__ ((visibility("default")))
#endif
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <setting-cfg.h>
#include "setting-appmgr-pkginfo.h"
navi = elm_naviframe_add(parent);
elm_naviframe_prev_btn_auto_pushed_set(navi, EINA_FALSE);
- ea_object_event_callback_add(navi, EA_CALLBACK_BACK, appmgrUg_navi_back, ad);
- ea_object_event_callback_add(navi, EA_CALLBACK_MORE, ea_naviframe_more_cb, ad);
+ eext_object_event_callback_add(navi, EEXT_CALLBACK_BACK, appmgrUg_navi_back, ad);
+ eext_object_event_callback_add(navi, EEXT_CALLBACK_MORE, eext_naviframe_more_cb, ad);
evas_object_show(navi);
return navi;
pkg_check_modules(pkgs_common_data REQUIRED appcore-efl elementary vconf openssl evas
ecore ecore-imf json-glib-1.0 edje glib-2.0 libxml-2.0 ui-gadget-1 alarm-service cairo
capi-appfw-application capi-system-info capi-system-system-settings pkgmgr-info
-efl-assist notification feedback capi-media-player capi-media-sound-manager dbus-1 icu-i18n icu-io icu-le icu-lx icu-uc eventsystem)
+efl-extension efl-assist notification feedback capi-media-player capi-media-sound-manager dbus-1 icu-i18n icu-io icu-le icu-lx icu-uc eventsystem)
FOREACH(flag ${pkgs_common_data_CFLAGS})
extern Evas_Object *setting_create_gif(Evas_Object *parent, const char **png_list);
extern void setting_add_hardkey_features(Evas_Object *popup, void *data);
-extern void ea_popup_back_cb_2(void *data, Evas_Object *obj, void *event_info);
+extern void eext_popup_back_cb_2(void *data, Evas_Object *obj, void *event_info);
/**
* @ create a popup window which contents a progressbar
* @return a popup window which contents a progressbar
#include <setting-common-draw-widget.h>
#include <glib.h>
#include <system_settings.h>
+#include <efl_extension.h>
#include <efl_assist.h>
#include <setting-debug.h>
Setting_GenGroupItem_Data *item_data = param->item_data;
Evas_Object *popup = elm_popup_add(parent);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb, NULL);
Evas_Object *cancel_btn = elm_button_add(popup);
elm_object_style_set(cancel_btn, "popup");
#include <setting-common-draw-widget.h>
#include <glib.h>
#include <Elementary.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
extern Eina_List *elm_widget_scrollable_children_get(Evas_Object *obj);
Evas_Object *ctxpopup = elm_ctxpopup_add(btn_data->parent);
elm_object_style_set(ctxpopup, "more/default");
elm_ctxpopup_auto_hide_disabled_set(ctxpopup, EINA_TRUE); /*to disable the rotating dismiss issue */
- ea_object_event_callback_add(ctxpopup, EA_CALLBACK_BACK, ea_ctxpopup_back_cb, NULL); /*to make ctxpopup get the "Back" key event */
- ea_object_event_callback_add(ctxpopup, EA_CALLBACK_MORE, ea_ctxpopup_back_cb, NULL);/*to make ctxpopup get the "More" key event */
+ eext_object_event_callback_add(ctxpopup, EEXT_CALLBACK_BACK, eext_ctxpopup_back_cb, NULL); /*to make ctxpopup get the "Back" key event */
+ eext_object_event_callback_add(ctxpopup, EEXT_CALLBACK_MORE, eext_ctxpopup_back_cb, NULL);/*to make ctxpopup get the "More" key event */
Ecore_Event_Handler *event_handler = ecore_event_handler_add(ECORE_EVENT_KEY_DOWN, __ctxpopup_key_press_cb, ctxpopup);
evas_object_data_set(ctxpopup, "event_handler", event_handler);
elm_naviframe_prev_btn_auto_pushed_set(navi, EINA_FALSE);
- ea_object_event_callback_add(navi, EA_CALLBACK_BACK, ea_naviframe_back_cb, NULL);
- ea_object_event_callback_add(navi, EA_CALLBACK_MORE, ea_naviframe_more_cb, NULL);
+ eext_object_event_callback_add(navi, EEXT_CALLBACK_BACK, eext_naviframe_back_cb, NULL);
+ eext_object_event_callback_add(navi, EEXT_CALLBACK_MORE, eext_naviframe_more_cb, NULL);
/*elm_object_item_signal_callback_event(navi */
#include <setting-common-draw-widget.h>
#include <glib.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <notification.h>
#include <notification_internal.h>
#endif
}
-EXPORT_PUBLIC void ea_popup_back_cb_2(void *data, Evas_Object *obj, void *event_info)
+EXPORT_PUBLIC void eext_popup_back_cb_2(void *data, Evas_Object *obj, void *event_info)
{
SETTING_TRACE_BEGIN;
popup_handle_hardkey(data, obj);
}
#endif
evas_object_event_callback_add(popup, EVAS_CALLBACK_DEL, __popup_del_cb, NULL);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, __ignore_back_key_cb, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, __ignore_back_key_cb, NULL);
}
}
SETTING_TRACE_BEGIN;
Evas_Object *popup = elm_popup_add(parent);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, __ignore_back_key_cb, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, __ignore_back_key_cb, NULL);
/*setting_add_hardkey_features(popup, data); */
int value = 0;
vconf_get_bool(VCONFKEY_SETAPPL_ACCESSIBILITY_TTS, &value);
{
SETTING_TRACE_BEGIN;
Evas_Object *popup = elm_popup_add(parent);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, data);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, data);
setting_add_hardkey_features(popup, data);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
bool keygrab_flag)
{
Evas_Object *popup = elm_popup_add(parent);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, data);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, data);
setting_add_hardkey_features(popup, data);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
"popup_checkview_image", NULL, timeout);
setting_add_hardkey_features(popup, data);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, data);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, data);
/*evas_object_size_hint_align_set(scroller, EVAS_HINT_FILL, EVAS_HINT_FILL); */
/*evas_object_size_hint_weight_set(scroller, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); */
/*evas_object_size_hint_min_set(scroller, ELM_SCALE_SIZE(480), ELM_SCALE_SIZE(700)); */
/*struct appdata *ad = (struct appdata *) data; */
popup = elm_popup_add(parent);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, data);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, data);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_object_text_set(popup, _(text));
ADD_POPUP_MULTI_LANGUAGE_AUTO_UPDATE(popup, NULL, text, NULL, NULL, NULL);
int btn_num, ...)
{
Evas_Object *popup = elm_popup_add(parent);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, data);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, data);
setting_add_hardkey_features(popup, data);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
Evas_Object *popup = setting_create_popup_with_checkview(parent, title, check_str, scroller,
"popup_checkview_image", check, timeout);
setting_add_hardkey_features(popup, data);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, data);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, data);
ADD_POPUP_BTN(btn_num, popup, response_cb, data);
evas_object_show(popup);
elm_object_content_set(popup, scroller);
setting_add_hardkey_features(popup, data);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, data);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, data);
return popup;
}
*/
#include <setting-common-draw-widget.h>
#include <glib.h>
+#include <efl_extension.h>
#include <efl_assist.h>
/**
*/
#include <setting-common-draw-widget.h>
#include <glib.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#if SUPPORT_HELPUI
#include <libhelpui.h>
INCLUDE(FindPkgConfig)
pkg_check_modules(pkgs_display REQUIRED elementary ecore edje evas appcore-common appcore-efl ui-gadget-1 capi-appfw-application dlog capi-system-device
-deviced efl-assist json-glib-1.0)
+deviced efl-extension efl-assist json-glib-1.0)
FOREACH(flag ${pkgs_display_CFLAGS})
SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
INCLUDE(FindPkgConfig)
pkg_check_modules(pkgs_locktype REQUIRED ecore evas elementary dlog
ui-gadget-1 capi-appfw-application appcore-common security-server ail
-capi-media-recorder deviced efl-assist pkgmgr-info
+capi-media-recorder deviced efl-extension efl-assist pkgmgr-info
)
FOREACH(flag ${pkgs_locktype_CFLAGS})
#include <security-server.h>
#include <pkgmgr-info.h>
#include <ail.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#if SUPPORT_ENCRYPTION
#include <ode.h>
#endif
*/
#include <setting-locktype.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <security-server.h>
dlog
capi-system-device
deviced
+ efl-extension
efl-assist
json-glib-1.0)
appcore-common appcore-efl
ui-gadget-1 capi-appfw-application
capi-network-connection
-tapi dlog efl-assist
+tapi dlog efl-extension efl-assist
notification json-glib-1.0 eventsystem)
FOREACH(flag ${pkgs_network_CFLAGS})
*/
#include <setting-network-main.h>
#include <app_preference.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <eventsystem.h>
#include <bundle_internal.h>
Evas_Object *_create_popup(Evas_Object *parent, char *content, setting_call_back_func response_cb, void *data)
{
Evas_Object *popup = elm_popup_add(parent);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, response_cb, data);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, response_cb, data);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
{
SETTING_TRACE_BEGIN;
Evas_Object *popup = elm_popup_add(parent);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, NULL);
setting_add_hardkey_features(popup, data);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
*
*/
#include <setting-network-preferred-network-delete.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
static int setting_network_preferred_network_delete_create(void *cb);
static int setting_network_preferred_network_delete_destroy(void *cb);
}
Evas_Object *popup;
popup = elm_popup_add(ad->win_get);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb_2, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, NULL);
setting_add_hardkey_features(popup, ad);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
*
*/
#include <setting-network-preferred-network.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
static int setting_network_preferred_network_create(void *cb);
static int setting_network_preferred_network_destroy(void *cb);
SettingNetworkUG *ad = (SettingNetworkUG *) data;
ad->popup = elm_ctxpopup_add(ad->navi_bar);
- ea_object_event_callback_add(ad->popup, EA_CALLBACK_BACK, ea_ctxpopup_back_cb, NULL);
+ eext_object_event_callback_add(ad->popup, EEXT_CALLBACK_BACK, eext_ctxpopup_back_cb, NULL);
/* evas_object_smart_callback_add(ad->popup, "hide", _ctxpopup_cb, ad->popup); */
#include <setting-network-preferred-network-delete.h>
#include <setting-network-preferred-network.h>
#include <setting-debug.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <setting-cfg.h>
setting_network_update_sel_network(ad);
Evas_Object *popup = elm_popup_add(ad->win_get);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb, NULL);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
char r_str_text[128] = { 0, };
SettingNetworkUG *ad = list_item->userdata;
Evas_Object *popup = elm_popup_add(ad->win_get);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, __ignore_back_key_cb, list_item);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, __ignore_back_key_cb, list_item);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
SettingNetworkUG *ad = list_item->userdata;
Evas_Object *popup = elm_popup_add(ad->ly_main);
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, __search_network_cancel_cb, list_item);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, __search_network_cancel_cb, list_item);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
elementary appcore-common appcore-efl
ui-gadget-1 capi-appfw-application capi-appfw-app-manager vconf
capi-media-player capi-media-sound-manager
- dlog feedback deviced capi-system-device efl-assist
+ dlog feedback deviced capi-system-device efl-extension efl-assist
cairo mm-keysound capi-media-metadata-extractor json-glib-1.0 eventsystem)
FOREACH(flag ${pkgs_profile_CFLAGS})
#include <setting-common-general-func.h>
#include <setting-common-draw-widget.h>
#include <setting-common-view.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <feedback.h>
#define VOLUME_APP_NAME "org.tizen.setting.volume"
#include <app_manager.h>
#include <metadata_extractor.h>
#include <player.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <sound_manager_internal.h>
#define PLAY_FEEDBACK(f_type, f_pattern) {\
INCLUDE(FindPkgConfig)
pkg_check_modules(pkgs_ringtone REQUIRED
elementary appcore-common appcore-efl ui-gadget-1 capi-appfw-application evas capi-media-metadata-extractor
-ecore edje efl-assist glib-2.0 capi-media-player capi-media-sound-manager)
+ecore edje efl-extension efl-assist glib-2.0 capi-media-player capi-media-sound-manager)
FOREACH(flag ${pkgs_ringtone_CFLAGS})
SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
INCLUDE(FindPkgConfig)
pkg_check_modules(pkgs_security REQUIRED ecore evas elementary tapi dlog
ui-gadget-1 capi-appfw-application capi-appfw-app-manager appcore-common security-server ail
-deviced capi-media-recorder capi-network-connection efl-assist json-glib-1.0)
+deviced capi-media-recorder capi-network-connection efl-extension efl-assist json-glib-1.0)
FOREACH(flag ${pkgs_security_CFLAGS})
SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
#include <setting-security-main.h>
#include <setting-debug.h>
#include <app.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
static int setting_view_security_update_create(void *cb);
static int setting_view_security_update_destroy(void *cb);
/*POP_UP */
ad->pop_progress = elm_popup_add(ad->win_get);
- ea_object_event_callback_add(ad->pop_progress, EA_CALLBACK_BACK, ea_popup_back_cb_2, NULL);
+ eext_object_event_callback_add(ad->pop_progress, EEXT_CALLBACK_BACK, eext_popup_back_cb_2, NULL);
setting_add_hardkey_features(ad->pop_progress, ad);
evas_object_size_hint_weight_set(ad->pop_progress, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);
#include <setting-security.h>
#include <setting-cfg.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <app_manager.h>
#if SUPPORT_ENCRYPTION
#include <ode.h>
setting_security_pin1_blocked_resp_cb,
0, 1,
"IDS_ST_BUTTON_OK");
- ea_object_event_callback_del(ad->sim_popup, EA_CALLBACK_BACK, ea_popup_back_cb_2);
+ eext_object_event_callback_del(ad->sim_popup, EEXT_CALLBACK_BACK, eext_popup_back_cb_2);
/* End. */
return 0;
INCLUDE(FindPkgConfig)
pkg_check_modules(pkgs_storage REQUIRED elementary capi-appfw-application deviced storage
pkgmgr capi-content-media-content cairo appcore-efl ui-gadget-1 capi-appfw-package-manager
- efl-assist json-glib-1.0)
+ efl-extension json-glib-1.0)
FOREACH(flag ${pkgs_storage_CFLAGS})
SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
#define UG_MODULE_API __attribute__ ((visibility("default")))
#endif
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <media_content.h>
#include "setting-cfg.h"
navi = elm_naviframe_add(parent);
elm_naviframe_prev_btn_auto_pushed_set(navi, EINA_FALSE);
- ea_object_event_callback_add(navi, EA_CALLBACK_BACK, storageUg_navi_back, ad);
- /*ea_object_event_callback_add(navi, EA_CALLBACK_MORE, ea_naviframe_more_cb, NULL); */
+ eext_object_event_callback_add(navi, EEXT_CALLBACK_BACK, storageUg_navi_back, ad);
+ /*eext_object_event_callback_add(navi, EEXT_CALLBACK_MORE, eext_naviframe_more_cb, NULL); */
evas_object_show(navi);
return navi;
ui-gadget-1
notification
alarm-service
+ efl-extension
efl-assist
tapi
pkgmgr
#include <stdio.h>
#include <string.h>
#include <unistd.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <appcore-efl.h>
#include <aul.h>
Evas_Object *layout;
ad = (struct appdata *) data;
- popup = ea_center_popup_add(parent);
+ popup = eext_center_popup_add(parent);
layout = elm_layout_add(popup);
elm_layout_file_set(layout, POPUP_EDJ, "popup_processingview_1button"); /*u can use add button or not */
Evas_Object *label;
Evas_Object *layout;
Evas_Object *progressbar = NULL;
- popup = ea_center_popup_add(parent);
+ popup = eext_center_popup_add(parent);
/* [UI] add lable */
if (progressbar_lable) {
label = elm_label_add(popup);
}
-static void ea_popup_back_cb_overide(void *data, Evas_Object *obj, void *event_info)
+static void eext_popup_back_cb_overide(void *data, Evas_Object *obj, void *event_info)
{
- ea_popup_back_cb(data, obj, event_info);
+ eext_popup_back_cb(data, obj, event_info);
if (NULL == data) return;
struct appdata *ad = data;
static void timeout_response_cb(void *data, Evas_Object *obj, void *event_info)
{
- ea_popup_back_cb(data, obj, event_info);
+ eext_popup_back_cb(data, obj, event_info);
if (NULL == data) return;
struct appdata *ad = data;
if (!ad) return NULL;
Evas_Object *popup = elm_popup_add(parent);
#if 0
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb, NULL);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
if (title) {
elm_object_part_text_set(popup, "title,text", _(title));
evas_object_show(popup);
return popup;
#endif
- ea_object_event_callback_add(popup, EA_CALLBACK_BACK, ea_popup_back_cb, NULL);
+ eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, eext_popup_back_cb, NULL);
/*setting_add_hardkey_features(popup, data); */
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
notification
capi-appfw-app-manager
pkgmgr-info
+ efl-extension
efl-assist
sqlite3
accounts-svc
#include <setting-common-general-func.h>
#include <stdio.h>
#include <Elementary.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <vconf.h>
#include <app.h>
#include <ode.h>
#include <feedback.h>
#include <dd-led.h>
#include <device.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <setting-common-general-func.h>
#define EXPORT_PUBLIC __attribute__((visibility("default")))
#include <feedback.h>
#include <dd-led.h>
#include <device.h>
-#include <efl_assist.h>
+#include <efl_extension.h>
#include <setting-common-general-func.h>
#define EXPORT_PUBLIC __attribute__((visibility("default")))