header and docs for elm_win_center got lost in an earlier merge I guess

SVN revision: 65866
This commit is contained in:
Mike Blumenkrantz 2011-12-04 05:02:02 +00:00
parent d3b755cbe6
commit 762c57d0d9
1 changed files with 10 additions and 0 deletions

View File

@ -4187,6 +4187,16 @@ extern "C" {
* @param obj The window object
*/
EAPI void elm_win_raise(Evas_Object *obj) EINA_ARG_NONNULL(1);
/**
* Center a window on its screen
*
* This function centers window @p obj horizontally and/or vertically based on the values
* of @p h and @v.
* @param obj The window object
* @param h If true, center horizontally. If false, do not change horizontal location.
* @param v If true, center vertically. If false, do not change vertical location.
*/
EAPI void elm_win_center(Evas_Object *obj, Eina_Bool h, Eina_Bool v) EINA_ARG_NONNULL(1);
/**
* Set the borderless state of a window.
*