test_hover.c: added hover test case to move hover object as we wish.

hover acts like elm_menu but it has all the hover features such as:
1. positioning: left, top-left, top, top-right, right, bottom-right, bottom, bottom-left, middle
2. content: one can set any object object as hover content

"transparent" style is added to dark theme.
This commit is contained in:
Daniel Juyung Seo 2013-09-23 16:14:56 +09:00
parent 22998b5622
commit 4be5acb7fe
2 changed files with 84 additions and 4 deletions

View File

@ -47,6 +47,7 @@ void test_layout(void *data, Evas_Object *obj, void *event_info);
void test_layout2(void *data, Evas_Object *obj, void *event_info);
void test_hover(void *data, Evas_Object *obj, void *event_info);
void test_hover2(void *data, Evas_Object *obj, void *event_info);
void test_hover3(void *data, Evas_Object *obj, void *event_info);
void test_entry(void *data, Evas_Object *obj, void *event_info);
void test_entry_style_user(void *data, Evas_Object *obj, void *event_info);
void test_entry_scrolled(void *data, Evas_Object *obj, void *event_info);
@ -729,6 +730,7 @@ add_tests:
ADD_TEST(NULL, "Popups", "Ctxpopup", test_ctxpopup);
ADD_TEST(NULL, "Popups", "Hover", test_hover);
ADD_TEST(NULL, "Popups", "Hover 2", test_hover2);
ADD_TEST(NULL, "Popups", "Hover 3", test_hover3);
ADD_TEST(NULL, "Popups", "Notify", test_notify);
ADD_TEST(NULL, "Popups", "Tooltip", test_tooltip);
ADD_TEST(NULL, "Popups", "Tooltip 2", test_tooltip2);

View File

@ -18,10 +18,11 @@ my_hover_bt(void *data, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUS
}
static void
_top_bt_clicked(void *data, Evas_Object *obj EINA_UNUSED,
void *event_info EINA_UNUSED)
_dismiss_hover(void *data, Evas_Object *obj EINA_UNUSED,
void *event_info EINA_UNUSED)
{
Evas_Object *hv = (Evas_Object *)data;
Evas_Object *hv = data;
elm_hover_dismiss(hv);
}
@ -68,7 +69,7 @@ test_hover(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_inf
bt = elm_button_add(win);
elm_object_text_set(bt, "Top 1");
evas_object_smart_callback_add(bt, "clicked", _top_bt_clicked, hv);
evas_object_smart_callback_add(bt, "clicked", _dismiss_hover, hv);
elm_box_pack_end(bx, bt);
evas_object_show(bt);
bt = elm_button_add(win);
@ -169,4 +170,81 @@ test_hover2(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_in
elm_object_part_content_set(hv, "right", bt);
evas_object_show(bt);
}
static void
_hover_show_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj,
void *event_info)
{
Evas_Object *fake_obj = evas_object_data_get(obj, "fake_obj");
if (!fake_obj) return;
Evas_Event_Mouse_Down *ev = event_info;
printf("position x: %d, y: %d \n", ev->canvas.x, ev->canvas.y);
evas_object_move(fake_obj, ev->canvas.x, ev->canvas.y);
evas_object_show(data);
}
/*
* hover acts like elm_menu but it has all the hover features such as:
* 1. positioning: left, top-left, top, top-right, right, bottom-right, bottom,
* bottom-left, middle
* 2. content: one can set any object object as hover content
*/
void
test_hover3(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
void *event_info EINA_UNUSED)
{
Evas_Object *win, *fake_obj, *bx, *bt, *hv, *ic, *rect;
char buf[PATH_MAX];
win = elm_win_util_standard_add("hover3", "Hover 3");
elm_win_focus_highlight_enabled_set(win, EINA_TRUE);
elm_win_autodel_set(win, EINA_TRUE);
evas_object_resize(win, 440, 440);
evas_object_show(win);
rect = evas_object_rectangle_add(evas_object_evas_get(win));
evas_object_size_hint_weight_set(rect, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(win, rect);
evas_object_color_set(rect, 0, 0, 0, 0);
evas_object_show(rect);
// fake object to move hover object as we wish
fake_obj = elm_box_add(win);
evas_object_data_set(rect, "fake_obj", fake_obj);
hv = elm_hover_add(win);
elm_hover_parent_set(hv, win);
elm_hover_target_set(hv, fake_obj);
elm_object_style_set(hv, "transparent");
evas_object_event_callback_add(rect, EVAS_CALLBACK_MOUSE_DOWN,
_hover_show_cb, hv);
bx = elm_box_add(win);
elm_object_part_content_set(hv, "bottom-right", bx);
evas_object_show(bx);
bt = elm_button_add(win);
elm_object_text_set(bt, "Button");
elm_box_pack_end(bx, bt);
evas_object_show(bt);
evas_object_smart_callback_add(bt, "clicked", _dismiss_hover, hv);
ic = elm_icon_add(win);
snprintf(buf, sizeof(buf), "%s/images/logo_small.png",
elm_app_data_dir_get());
elm_image_file_set(ic, buf, NULL);
elm_image_resizable_set(ic, 0, 0);
elm_box_pack_end(bx, ic);
evas_object_show(ic);
bt = elm_button_add(win);
elm_object_text_set(bt, "Close");
elm_box_pack_end(bx, bt);
evas_object_show(bt);
evas_object_smart_callback_add(bt, "clicked", _dismiss_hover, hv);
}
#endif