test_focus: Added focus highlight clip disable example to the focus 3

test.
This commit is contained in:
Daniel Juyung Seo 2014-03-09 03:42:40 +09:00
parent 7e35760942
commit c2eb6cbb01
1 changed files with 16 additions and 1 deletions

View File

@ -678,10 +678,17 @@ create_button(Evas_Object *parent, const char *text, Eina_Bool expand)
return btn;
}
static void
_focus_highlight_clip_disable_changed_cb(void *data EINA_UNUSED, Evas_Object *obj, void *event_info)
{
Eina_Bool disable = elm_check_state_get(obj);
elm_config_focus_highlight_clip_disabled_set(disable);
}
void
test_focus3(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
Evas_Object *win, *box, *sc, *btn_top, *btn_down, *btn[20], *box_btn, *lb, *fr;
Evas_Object *win, *box, *sc, *btn_top, *btn_down, *btn[20], *box_btn, *lb, *fr, *ck;
char win_focus_theme[PATH_MAX] = { 0 };
char item_name[PATH_MAX];
@ -746,6 +753,14 @@ test_focus3(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_in
evas_object_show(btn_down);
elm_box_pack_end(box, btn_down);
ck = elm_check_add(box);
elm_object_text_set(ck, "Focus Highlight Clip Disable");
elm_box_pack_end(box, ck);
evas_object_show(ck);
evas_object_smart_callback_add(ck, "changed",
_focus_highlight_clip_disable_changed_cb,
NULL);
evas_object_show(win);
}