diff --git a/src/bin/entrance_client.h b/src/bin/entrance_client.h index d0728b7..2cca3b5 100644 --- a/src/bin/entrance_client.h +++ b/src/bin/entrance_client.h @@ -14,7 +14,6 @@ #include "entrance_fill.h" #include "entrance_conf.h" #include "entrance_conf_main.h" -#include "entrance_conf_log.h" #include "entrance_conf_theme.h" #include "entrance_conf_user.h" #include "entrance_connect.h" diff --git a/src/bin/entrance_conf.c b/src/bin/entrance_conf.c index 1c80223..f7e2b5e 100644 --- a/src/bin/entrance_conf.c +++ b/src/bin/entrance_conf.c @@ -212,7 +212,6 @@ entrance_conf_init(void) entrance_conf_main_init(); entrance_conf_user_init(); entrance_conf_theme_init(); - entrance_conf_log_init(); } void @@ -224,7 +223,6 @@ entrance_conf_shutdown(void) entrance_conf_user_shutdown(); entrance_conf_main_shutdown(); entrance_conf_theme_shutdown(); - entrance_conf_log_shutdown(); EINA_LIST_FREE(_entrance_conf->modules, conf) { eina_stringshare_del(conf->label); diff --git a/src/bin/entrance_conf_log.c b/src/bin/entrance_conf_log.c deleted file mode 100644 index ab4a569..0000000 --- a/src/bin/entrance_conf_log.c +++ /dev/null @@ -1,62 +0,0 @@ -#include "entrance_client.h" - -static void _entrance_conf_log_begin(void); -static void _entrance_conf_log_end(void); -static Evas_Object *_entrance_conf_log_build(Evas_Object *obj); -static Eina_Bool _entrance_conf_log_check(void); -static void _entrance_conf_log_apply(void); - -static void -_entrance_conf_log_begin(void) -{ - -} - -static void -_entrance_conf_log_end(void) -{ - -} - -static Evas_Object * -_entrance_conf_log_build(Evas_Object *obj) -{ - Evas_Object *o; - /* Graphical Log */ - o = elm_label_add(obj); - elm_object_text_set(o, "TODO Implement graphical Log !"); - evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0); - evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL); - return o; -} - -static Eina_Bool -_entrance_conf_log_check(void) -{ - return 0; -} - -static void -_entrance_conf_log_apply(void) -{ -} - - -void -entrance_conf_log_init(void) -{ - PT("conf grapical log init\n"); - entrance_conf_module_register("Log", - _entrance_conf_log_begin, - _entrance_conf_log_end, - _entrance_conf_log_build, - _entrance_conf_log_check, - _entrance_conf_log_apply); -} - -void -entrance_conf_log_shutdown(void) -{ - PT("conf log shutdown\n"); -} - diff --git a/src/bin/entrance_conf_log.h b/src/bin/entrance_conf_log.h deleted file mode 100644 index d1ead6b..0000000 --- a/src/bin/entrance_conf_log.h +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef ENTRANCE_CONF_LOG_H_ -#define ENTRANCE_CONF_LOG_H_ - -void entrance_conf_log_init(void); -void entrance_conf_log_shutdown(void); - -#endif /* ENTRANCE_CONF_MAIN_H_ */