diff options
author | Gwanglim Lee <gl77.lee@samsung.com> | 2015-01-02 20:29:55 +0900 |
---|---|---|
committer | Gwanglim Lee <gl77.lee@samsung.com> | 2015-01-02 20:29:55 +0900 |
commit | f4e33daabdcfd4928a13891eb2499965b73c95f9 (patch) | |
tree | acb0565cd03ed65f88b40a9002008703f1a2c45a /doc | |
parent | 12d91efbabbf6f43c272630e9a3f4b1e2e5d9533 (diff) | |
download | efl-util-f4e33daabdcfd4928a13891eb2499965b73c95f9.tar.gz efl-util-f4e33daabdcfd4928a13891eb2499965b73c95f9.tar.bz2 efl-util-f4e33daabdcfd4928a13891eb2499965b73c95f9.zip |
Add support for callback to check whether application can be accepted to show on top of other application's window.
Change-Id: I1bc2dab73903bf7c83cc1b8fe0aa1019f487bd1f
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ui_efl_util_doc.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/doc/ui_efl_util_doc.h b/doc/ui_efl_util_doc.h new file mode 100644 index 0000000..64de8d0 --- /dev/null +++ b/doc/ui_efl_util_doc.h @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +#ifndef __TIZEN_UI_EFL_UTIL_DOC_H__ +#define __TIZEN_UI_EFL_UTIL_DOC_H__ + +/** + * @ingroup CAPI_UI_FRAMEWORK + * @defgroup CAPI_EFL_UTIL_MODULE EFL UTIL + * @brief + * + * @section CAPI_EFL_UTIL_MODULE_HEADER Required Header + * \#include <efl_util.h> + * + * @section CAPI_EFL_UTIL_MODULE_OVERVIEW Overview + * The EFL UTIL API provides functions to get the level of given notification windows + * and to change the notification window levels with the given values. + * + * The notification window level is used in ordering the notification windows. + * The notification window which is set to #EFL_UTIL_NOTIFICATION_LEVEL_2 will be + * placed above the window which is set to #EFL_UTIL_NOTIFICATION_LEVEL_1. + * If there are notification windows that have the same levels, the latest created + * notification window is placed on top of the other window. + * + */ + +#endif /* __TIZEN_UI_EFL_UTIL_DOC_H__ */ |