티스토리 뷰

etc

code

shannon. 2015. 6. 27. 23:32
반응형
#include 
#include 
#include 
#include "uiappl.h"


typedef struct appdata {
	Evas_Object *win;
	Evas_Object *conform;
	Evas_Object *label;
} appdata_s;

static void win_delete_request_cb(void *data, Evas_Object *obj,
		void *event_info) {
	ui_app_exit();
	dlog_print(DLOG_ERROR, LOG_TAG, "win delete request cb");
}

static void win_back_cb(void *data, Evas_Object *obj, void *event_info) {
	appdata_s *ad =  data;
	/* Let window go to hide state. */
	elm_win_lower(ad->win);
	dlog_print(DLOG_ERROR, LOG_TAG, "[checkpoint] elm win lower");
}

static void create_base_gui(appdata_s *ad) {
	/* Window */
	ad->win = elm_win_util_standard_add(PACKAGE, PACKAGE);
	elm_win_autodel_set(ad->win, EINA_TRUE);

	if (elm_win_wm_rotation_supported_get(ad->win)) {
		int rots[4] = { 0, 90, 180, 270 };
		elm_win_wm_rotation_available_rotations_set(ad->win,
				(const int *) (&rots), 4);
	}

	evas_object_smart_callback_add(ad->win, "delete,request",
			win_delete_request_cb, NULL);
	eext_object_event_callback_add(ad->win, EEXT_CALLBACK_BACK, win_back_cb,
			ad);

	/* Conformant */
	ad->conform = elm_conformant_add(ad->win);
	elm_win_indicator_mode_set(ad->win, ELM_WIN_INDICATOR_SHOW);
	elm_win_indicator_opacity_set(ad->win, ELM_WIN_INDICATOR_OPAQUE);
	evas_object_size_hint_weight_set(ad->conform, EVAS_HINT_EXPAND,
			EVAS_HINT_EXPAND);
	elm_win_resize_object_add(ad->win, ad->conform);
	evas_object_show(ad->conform);

	/* Label*/
	ad->label = elm_label_add(ad->conform);
	elm_object_text_set(ad->label, "Hello EFL");
	evas_object_size_hint_weight_set(ad->label, EVAS_HINT_EXPAND,
			EVAS_HINT_EXPAND);
	elm_object_content_set(ad->conform, ad->label);
	evas_object_show(ad->label);

	/* Show window after base gui is set up */
	evas_object_show(ad->win);
}

static bool app_create(void *data) {
	/* Hook to take necessary actions before main event loop starts
	 Initialize UI resources and application's data
	 If this function returns true, the main loop of application starts
	 If this function returns false, the application is terminated */

	return true;
}
bool _app_control_extra_data_cb(app_control_h app_control, const char *key, void *user_data)
{
   int ret;
   char *value;

   ret = app_control_get_extra_data(app_control, key, &value);
   if (ret != APP_CONTROL_ERROR_NONE)
   {
      dlog_print(DLOG_ERROR, LOG_TAG, "[checkpoint] app_control_get_extra_data() is failed. err = %d", ret);
   }

   if(!strcmp("v1", value)) {
	   dlog_print(DLOG_DEBUG, LOG_TAG, "[checkpoint] [value & terminate ] %s", value);
	   //ui_app_exit();
   } else {
	   dlog_print(DLOG_DEBUG, LOG_TAG, "[checkpoint] [value] %s", value);

   }
   ui_app_exit();
   return true;
}

static void app_control(app_control_h app_control, void *data) {
	/* Handle the launch request. */
	appdata_s *ad = data;
	int ret;
	ret = app_control_foreach_extra_data(app_control,_app_control_extra_data_cb, (void*) data);

	char *id = NULL;
	app_control_get_caller(app_control, &id);
	if(id != NULL && !strcmp("com.samsung.menu-screen", id)){
		create_base_gui(ad);
	}
	free(id);
}

static void app_pause(void *data) {
	/* Take necessary actions when application becomes invisible. */
	dlog_print(DLOG_ERROR, LOG_TAG, "[checkpoint] App pause");

	ui_app_exit();
}

static void app_resume(void *data) {
	/* Take necessary actions when application becomes visible. */
	dlog_print(DLOG_ERROR, LOG_TAG, "[checkpoint] app resume");

}

static void app_terminate(void *data) {
	/* Release all resources. */
	dlog_print(DLOG_ERROR, LOG_TAG, "[checkpoint] App terminated");
}

static void ui_app_lang_changed(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_LANGUAGE_CHANGED*/
	char *locale = NULL;
	system_settings_get_value_string(SYSTEM_SETTINGS_KEY_LOCALE_LANGUAGE,
			&locale);
	elm_language_set(locale);
	free(locale);
	return;
}

static void ui_app_orient_changed(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_DEVICE_ORIENTATION_CHANGED*/
	return;
}

static void ui_app_region_changed(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_REGION_FORMAT_CHANGED*/
}

static void ui_app_low_battery(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_LOW_BATTERY*/
}

static void ui_app_low_memory(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_LOW_MEMORY*/
}

int main(int argc, char *argv[]) {
	appdata_s ad = { 0, };
	int ret = 0;

	ui_app_lifecycle_callback_s event_callback = { 0, };
	app_event_handler_h handlers[5] = { NULL, };

	event_callback.create = app_create;
	event_callback.terminate = app_terminate;
	event_callback.pause = app_pause;
	event_callback.resume = app_resume;
	event_callback.app_control = app_control;

	ui_app_add_event_handler(&handlers[APP_EVENT_LOW_BATTERY],
			APP_EVENT_LOW_BATTERY, ui_app_low_battery, &ad);
	ui_app_add_event_handler(&handlers[APP_EVENT_LOW_MEMORY],
			APP_EVENT_LOW_MEMORY, ui_app_low_memory, &ad);
	ui_app_add_event_handler(&handlers[APP_EVENT_DEVICE_ORIENTATION_CHANGED],
			APP_EVENT_DEVICE_ORIENTATION_CHANGED, ui_app_orient_changed, &ad);
	ui_app_add_event_handler(&handlers[APP_EVENT_LANGUAGE_CHANGED],
			APP_EVENT_LANGUAGE_CHANGED, ui_app_lang_changed, &ad);
	ui_app_add_event_handler(&handlers[APP_EVENT_REGION_FORMAT_CHANGED],
			APP_EVENT_REGION_FORMAT_CHANGED, ui_app_region_changed, &ad);
	ui_app_remove_event_handler(handlers[APP_EVENT_LOW_MEMORY]);

	ret = ui_app_main(argc, argv, &event_callback, &ad);
	if (ret != APP_ERROR_NONE) {
		dlog_print(DLOG_ERROR, LOG_TAG, "app_main() is failed. err = %d", ret);
	}

	return ret;
}
반응형

'etc' 카테고리의 다른 글

Big data  (0) 2015.09.01
파운데이션 성분  (0) 2015.07.25
dfsfsdf  (0) 2015.05.21
apk  (0) 2015.05.18
iot links  (0) 2015.05.18
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
글 보관함