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.
This commit is contained in:
Daniel Juyung Seo 2013-12-15 04:26:22 +09:00
parent 093e56c1f7
commit 414f7a064b
1 changed files with 5 additions and 0 deletions

View File

@ -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
*