fd1a0c0a9278d6ed7997b4de954b93cf06fc18f4
[platform/core/appfw/appcore-widget.git] / include / widget_app_efl.h
1 /*
2  * Copyright (c) 2015 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __TIZEN_APPFW_WIDGET_APP_EFL_H__
18 #define __TIZEN_APPFW_WIDGET_APP_EFL_H__
19
20 #include <widget_app.h>
21 #include <Evas.h>
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 /**
28  * @addtogroup CAPI_WIDGET_APP_MODULE
29  * @{
30  */
31
32 /**
33  * @brief Gets a evas object for the widget
34  * @since_tizen 2.3.1
35  *
36  * @param[in] context The context for widget instance
37  * @param[out] win Evas object for window
38  *
39  * @return 0 on success, otherwise a negative error value
40  * @retval #WIDGET_ERROR_NONE Successfull
41  * @retval #WIDGET_ERROR_INVALID_PARAMETER Invalid parameter
42  * @retval #WIDGET_ERROR_FAULT Failed to make evas object
43  * @retval #WIDGET_ERROR_NOT_SUPPORTED Not supported
44  */
45 int widget_app_get_elm_win(widget_context_h context, Evas_Object **win);
46
47 /**
48  * @}
49  */
50
51 #ifdef __cplusplus
52 }
53 #endif
54
55 #endif /* __TIZEN_APPFW_WIDGET_APP_EFL_H__ */
56