From: Daniel Juyung Seo Date: Sat, 14 Dec 2013 19:26:22 +0000 (+0900) Subject: win: added a suggestion to call window object evas_object_show() after X-Git-Tag: upstream/1.20.0~7116^2~14^2~3600 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=414f7a064b67b42d467c9330b028feaaa5e43abe;p=platform%2Fupstream%2Fefl.git win: added a suggestion to call window object evas_object_show() after its content creation. It triggers all smart objects' smart calculation and in case of X11, XMapWindow() is called directly. --- diff --git a/legacy/elementary/src/lib/elm_win.h b/legacy/elementary/src/lib/elm_win.h index f231ae7..cfb480b 100644 --- a/legacy/elementary/src/lib/elm_win.h +++ b/legacy/elementary/src/lib/elm_win.h @@ -89,6 +89,11 @@ * @li "focused" : When the win has received focus. (since 1.8) * @li "unfocused" : When the win has lost focus. (since 1.8) * + * Note that calling evas_object_show() after window contents creation is + * recommended. It will trigger evas_smart_objects_calculate() and some backend + * calls directly. For example, XMapWindow is called directly during + * evas_object_show() in X11 engine. + * * Examples: * @li @ref win_example_01 *