rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=f58a3591fc327d2ab932d8444a48569bd4e9fd54
commit f58a3591fc327d2ab932d8444a48569bd4e9fd54 Author: Andrii Kroitor <[email protected]> Date: Fri Dec 11 12:05:59 2015 +0200 group_navigator: add stubs for up and down buttons --- src/bin/ui/group_navigator.c | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/bin/ui/group_navigator.c b/src/bin/ui/group_navigator.c index 145804f..cd46492 100644 --- a/src/bin/ui/group_navigator.c +++ b/src/bin/ui/group_navigator.c @@ -1192,6 +1192,21 @@ _on_btn_minus_clicked(void *data, ap.project->changed = true; } +static void +_on_btn_down_clicked(void *data __UNUSED__, + Evas_Object *obj __UNUSED__, + void *ei __UNUSED__) +{ + printf("btn_down clicked\n"); +} + +static void +_on_btn_up_clicked(void *data __UNUSED__, + Evas_Object *obj __UNUSED__, + void *ei __UNUSED__) +{ + printf("btn_up clicked\n"); +} Evas_Object * group_navigator_add(Group *group) @@ -1224,8 +1239,8 @@ group_navigator_add(Group *group) BTN_ADD(btn_add, "elm.swallow.btn3", "plus", _on_btn_plus_clicked); BTN_ADD(btn_del, "elm.swallow.btn2", "minus", _on_btn_minus_clicked); - BTN_ADD(btn_down, "elm.swallow.btn1", "arrow_down", NULL); - BTN_ADD(btn_up, "elm.swallow.btn0", "arrow_up", NULL); + BTN_ADD(btn_down, "elm.swallow.btn1", "arrow_down", _on_btn_down_clicked); + BTN_ADD(btn_up, "elm.swallow.btn0", "arrow_up", _on_btn_up_clicked); elm_object_disabled_set(pl->btn_del, true); --
