X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fbin%2Ftest_inwin.c;h=92b1ace47d16a6ff02e75eab43d7537d4cd9dcc8;hb=7e19316fdd0102db22b7410132727a2d513be829;hp=926f5b26d48ffe7fc171831812ea9d8a22423a78;hpb=112bd08738fd3112a59bdd084d3fd40d68507ef4;p=framework%2Fuifw%2Felementary.git diff --git a/src/bin/test_inwin.c b/src/bin/test_inwin.c index 926f5b2..92b1ace 100644 --- a/src/bin/test_inwin.c +++ b/src/bin/test_inwin.c @@ -10,7 +10,7 @@ test_inwin(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info win = elm_win_add(NULL, "inwin", ELM_WIN_BASIC); elm_win_title_set(win, "Inwin"); - elm_win_autodel_set(win, 1); + elm_win_autodel_set(win, EINA_TRUE); bg = elm_bg_add(win); elm_win_resize_object_add(win, bg); @@ -22,10 +22,10 @@ test_inwin(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info lb = elm_label_add(win); elm_object_text_set(lb, - "This is an \"inwin\" - a window in a
" - "window. This is handy for quick popups
" - "you want centered, taking over the window
" - "until dismissed somehow. Unlike hovers they
" + "This is an \"inwin\" - a window in a
" + "window. This is handy for quick popups
" + "you want centered, taking over the window
" + "until dismissed somehow. Unlike hovers they
" "don't hover over their target."); elm_win_inwin_content_set(inwin, lb); evas_object_show(lb); @@ -41,7 +41,7 @@ test_inwin2(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info win = elm_win_add(NULL, "inwin2", ELM_WIN_BASIC); elm_win_title_set(win, "Inwin 2"); - elm_win_autodel_set(win, 1); + elm_win_autodel_set(win, EINA_TRUE); bg = elm_bg_add(win); elm_win_resize_object_add(win, bg); @@ -54,13 +54,13 @@ test_inwin2(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info lb = elm_label_add(win); elm_object_text_set(lb, - "This is an \"inwin\" - a window in a
" - "window. This is handy for quick popups
" - "you want centered, taking over the window
" - "until dismissed somehow. Unlike hovers they
" - "don't hover over their target.
" - "
" - "This inwin style compacts itself vertically
" + "This is an \"inwin\" - a window in a
" + "window. This is handy for quick popups
" + "you want centered, taking over the window
" + "until dismissed somehow. Unlike hovers they
" + "don't hover over their target.
" + "
" + "This inwin style compacts itself vertically
" "to the size of its contents minimum size."); elm_win_inwin_content_set(inwin, lb); evas_object_show(lb);